Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 571 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 22510395 | 280 days ago | IN | 0 ETH | 0.00003902 | ||||
| Set Approval For... | 22044120 | 346 days ago | IN | 0 ETH | 0.00002324 | ||||
| Transfer From | 21918017 | 363 days ago | IN | 0 ETH | 0.00011803 | ||||
| Set Approval For... | 21098136 | 478 days ago | IN | 0 ETH | 0.00013915 | ||||
| Set Approval For... | 19448114 | 708 days ago | IN | 0 ETH | 0.00095742 | ||||
| Transfer From | 19149721 | 750 days ago | IN | 0 ETH | 0.00136833 | ||||
| Transfer From | 19149719 | 750 days ago | IN | 0 ETH | 0.00137623 | ||||
| Transfer From | 19149713 | 750 days ago | IN | 0 ETH | 0.00140855 | ||||
| Set Approval For... | 18964775 | 776 days ago | IN | 0 ETH | 0.00086433 | ||||
| Set Approval For... | 17232064 | 1019 days ago | IN | 0 ETH | 0.00291132 | ||||
| Set Approval For... | 16601511 | 1108 days ago | IN | 0 ETH | 0.00226982 | ||||
| Safe Transfer Fr... | 16309433 | 1149 days ago | IN | 0 ETH | 0.00135466 | ||||
| Safe Transfer Fr... | 16309424 | 1149 days ago | IN | 0 ETH | 0.00145737 | ||||
| Set Approval For... | 16066833 | 1183 days ago | IN | 0 ETH | 0.00025577 | ||||
| Set Approval For... | 15392912 | 1280 days ago | IN | 0 ETH | 0.00020583 | ||||
| Set Approval For... | 15208197 | 1309 days ago | IN | 0 ETH | 0.00067069 | ||||
| Set Approval For... | 15135604 | 1320 days ago | IN | 0 ETH | 0.00132599 | ||||
| Set Approval For... | 15065334 | 1331 days ago | IN | 0 ETH | 0.00019096 | ||||
| Set Approval For... | 14738917 | 1386 days ago | IN | 0 ETH | 0.0005093 | ||||
| Transfer From | 14726803 | 1388 days ago | IN | 0 ETH | 0.00281552 | ||||
| Set Approval For... | 14656806 | 1399 days ago | IN | 0 ETH | 0.00200709 | ||||
| Set Approval For... | 14653154 | 1400 days ago | IN | 0 ETH | 0.00078139 | ||||
| Set Approval For... | 14609887 | 1406 days ago | IN | 0 ETH | 0.00144485 | ||||
| Set Approval For... | 14578947 | 1411 days ago | IN | 0 ETH | 0.00231187 | ||||
| Set Approval For... | 14495383 | 1424 days ago | IN | 0 ETH | 0.00222011 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
To
|
|||
|---|---|---|---|---|---|---|---|
| - | 14058941 | 1492 days ago | 59.5 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
NekoZamurai
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-01-21
*/
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.1 (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 {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: NekoZamurai.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
pragma solidity ^0.8.0;
/*
╔═╗ ╔╗╔═══╗╔╗╔═╗╔═══╗ ╔════╗╔═══╗╔═╗╔═╗╔╗ ╔╗╔═══╗╔═══╗╔══╗
║║╚╗║║║╔══╝║║║╔╝║╔═╗║ ╚══╗ ║║╔═╗║║║╚╝║║║║ ║║║╔═╗║║╔═╗║╚╣╠╝
║╔╗╚╝║║╚══╗║╚╝╝ ║║ ║║ ╔╝╔╝║║ ║║║╔╗╔╗║║║ ║║║╚═╝║║║ ║║ ║║
║║╚╗║║║╔══╝║╔╗║ ║║ ║║ ╔╝╔╝ ║╚═╝║║║║║║║║║ ║║║╔╗╔╝║╚═╝║ ║║
║║ ║║║║╚══╗║║║╚╗║╚═╝║ ╔╝ ╚═╗║╔═╗║║║║║║║║╚═╝║║║║╚╗║╔═╗║╔╣╠╗
╚╝ ╚═╝╚═══╝╚╝╚═╝╚═══╝ ╚════╝╚╝ ╚╝╚╝╚╝╚╝╚═══╝╚╝╚═╝╚╝ ╚╝╚══╝
Contract made with ❤️ by NekoZamurai
Socials:
Opensea: TBA
Twitter: https://twitter.com/NekoZamuraiNFT
Website: https://nekozamurai.io/
*/
contract NekoZamurai is ERC721Enumerable, Ownable {
using Strings for uint256;
using SafeMath for uint256;
using ECDSA for bytes32;
// Constant variables
// ------------------------------------------------------------------------
uint public constant publicSupply = 5217;
uint public constant presaleSupply = 2560;
uint public constant maxSupply = presaleSupply + publicSupply;
uint public constant cost = 0.14 ether;
uint public constant maxMintPerTx = 5;
// Mapping variables
// ------------------------------------------------------------------------
mapping(address => bool) public presalerList;
mapping(address => uint256) public presalerListPurchases;
mapping(address => uint256) public publicListPurchases;
// Public variables
// ------------------------------------------------------------------------
uint256 public publicAmountMinted;
uint256 public presalePurchaseLimit = 1;
uint256 public publicPurchaseLimit = 5;
uint256 public reservedAmountMinted;
// URI variables
// ------------------------------------------------------------------------
string private contractURI;
string private baseTokenURI = "";
// Deployer address
// ------------------------------------------------------------------------
address public constant creatorAddress = 0x8707db291A13d9585b9Bc8e2289F64EbB6f5B672;
address private signerAddress = 0x8707db291A13d9585b9Bc8e2289F64EbB6f5B672; // tbd
bool public saleLive;
bool public presaleLive;
bool public revealed = false;
bool public metadataLock;
// Constructor
// ------------------------------------------------------------------------
constructor(string memory unrevealedBaseURI) ERC721("NekoZamurai", "NEKO") {
setBaseURI(unrevealedBaseURI);
// setBaseURI("ipfs://QmXTsae772LDETthjkCNR4pPrEWShJ9UbuP7gCKWi26XV6/"); // testing purposes
}
modifier notLocked {
require(!metadataLock, "Contract metadata methods are locked");
_;
}
// Mint function
// ------------------------------------------------------------------------
function mintPublic(uint256 mintQuantity) external payable {
require(saleLive, "Sale closed");
require(!presaleLive, "Only available for presale");
require(totalSupply() < maxSupply, "Out of stock");
require(publicAmountMinted + mintQuantity <= publicSupply, "Out of public stock");
require(publicListPurchases[msg.sender] + mintQuantity <= publicPurchaseLimit, "Public mint limit exceeded");
require(mintQuantity <= maxMintPerTx, "Exceeded mint limit");
require(cost * mintQuantity <= msg.value, "Insufficient funds");
for(uint256 i = 1; i <= mintQuantity; i++) {
publicAmountMinted++;
publicListPurchases[msg.sender]++;
_safeMint(msg.sender, totalSupply() + 1);
}
}
// Presale mint function
// ------------------------------------------------------------------------
function mintPresale(uint256 mintQuantity) external payable {
uint256 callSupply = totalSupply();
require(!saleLive && presaleLive, "Presale closed");
require(presalerList[msg.sender], "Not on presale list");
require(callSupply < maxSupply, "Out of stock");
require(publicAmountMinted + mintQuantity <= publicSupply, "Out of public stock");
require(presalerListPurchases[msg.sender] + mintQuantity <= presalePurchaseLimit, "Presale mint limit exceeded");
require(cost * mintQuantity <= msg.value, "Insufficient funds");
presalerListPurchases[msg.sender] += mintQuantity;
publicAmountMinted += mintQuantity;
for (uint256 i = 0; i < mintQuantity; i++) {
_safeMint(msg.sender, callSupply + 1);
}
}
// Reserved mint function
// ------------------------------------------------------------------------
function mintReserved(uint256 mintQuantity) external onlyOwner {
require(saleLive, "Sale closed");
require(totalSupply() < maxSupply, "Out of stock");
require(reservedAmountMinted + mintQuantity <= presaleSupply, "Out of reserved stock");
for(uint256 i = 1; i <= mintQuantity; i++) {
reservedAmountMinted++;
_safeMint(msg.sender, totalSupply() + 1);
}
}
// Get cost amount
// ------------------------------------------------------------------------
function getCost(uint256 _count) public pure returns (uint256) {
return cost.mul(_count);
}
// Get hash transaction
// ------------------------------------------------------------------------
function hashTransaction(address sender, uint256 qty, string memory nonce) public pure returns(bytes32) {
bytes32 hash = keccak256(abi.encodePacked(
"\x19Ethereum Signed Message:\n32",
keccak256(abi.encodePacked(sender, qty, nonce)))
);
return hash;
}
// Get match from address signer
// ------------------------------------------------------------------------
function matchAddressSigner(bytes32 hash, bytes memory signature) private view returns(bool) {
return signerAddress == hash.recover(signature);
}
// Get total supply leftover amount
// ------------------------------------------------------------------------
function getUnsoldRemaining() external view returns (uint256) {
return maxSupply - totalSupply();
}
// Get contract URI
// ------------------------------------------------------------------------
function getContractURI() public view returns (string memory) {
return contractURI;
}
// Get base token URI
// ------------------------------------------------------------------------
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
if (!revealed) {
return baseTokenURI;
}
return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, tokenId.toString(), ".json")): "";
}
// Owner functions
// Toggle reveal function (True by default)
// ------------------------------------------------------------------------
function reveal() public onlyOwner {
revealed = true;
}
// Togle lock metadata function (True by default)
// ------------------------------------------------------------------------
function lockMetadata() external onlyOwner {
metadataLock = true;
}
// Toggle presale (False by default)
// ------------------------------------------------------------------------
function togglePresale() external onlyOwner {
presaleLive = !presaleLive;
}
// Toggle sale (False by default)
// ------------------------------------------------------------------------
function toggleSale() external onlyOwner {
saleLive = !saleLive;
}
// Add address to presael list
// ------------------------------------------------------------------------
function addToPresaleList(address[] calldata entries) external onlyOwner {
for(uint256 i = 0; i < entries.length; i++) {
address entry = entries[i];
require(entry != address(0), "Null address");
require(!presalerList[entry], "Duplicate entry");
presalerList[entry] = true;
}
}
// Remove address from presale list
// ------------------------------------------------------------------------
function removeFromPresaleList(address[] calldata entries) external onlyOwner {
for(uint256 i = 0; i < entries.length; i++) {
address entry = entries[i];
require(entry != address(0), "Null address");
presalerList[entry] = false;
}
}
// Approve signer address
// ------------------------------------------------------------------------
function setSignerAddress(address addr) external onlyOwner {
signerAddress = addr;
}
// Set contract URI
// ------------------------------------------------------------------------
function setContractURI(string calldata URI) external onlyOwner notLocked {
contractURI = URI;
}
// Set base URI
// ------------------------------------------------------------------------
function setBaseURI(string memory baseURI) public onlyOwner notLocked {
baseTokenURI = baseURI;
}
// Withdrawal function
// ------------------------------------------------------------------------
function withdraw() external onlyOwner {
uint256 balance = address(this).balance;
require(balance > 0);
(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
require(success);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"unrevealedBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getUnsoldRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"nonce","type":"string"}],"name":"hashTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6001600f55600560105560a0604081905260006080819052620000259160139162000249565b5060148054600162ff000160a01b031916738707db291a13d9585b9bc8e2289f64ebb6f5b6721790553480156200005b57600080fd5b5060405162003526380380620035268339810160408190526200007e91620002ef565b604080518082018252600b81526a4e656b6f5a616d7572616960a81b6020808301918252835180850190945260048452634e454b4f60e01b908401528151919291620000cd9160009162000249565b508051620000e390600190602084019062000249565b50505062000100620000fa6200011260201b60201c565b62000116565b6200010b8162000168565b506200041e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601454600160b81b900460ff1615620002305760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b6064820152608401620001bf565b80516200024590601390602084019062000249565b5050565b8280546200025790620003cb565b90600052602060002090601f0160209004810192826200027b5760008555620002c6565b82601f106200029657805160ff1916838001178555620002c6565b82800160010185558215620002c6579182015b82811115620002c6578251825591602001919060010190620002a9565b50620002d4929150620002d8565b5090565b5b80821115620002d45760008155600101620002d9565b600060208083850312156200030357600080fd5b82516001600160401b03808211156200031b57600080fd5b818501915085601f8301126200033057600080fd5b81518181111562000345576200034562000408565b604051601f8201601f19908116603f0116810190838211818310171562000370576200037062000408565b8160405282815288868487010111156200038957600080fd5b600093505b82841015620003ad57848401860151818501870152928501926200038e565b82841115620003bf5760008684830101525b98975050505050505050565b600181811c90821680620003e057607f821691505b602082108114156200040257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6130f8806200042e6000396000f3fe60806040526004361061031a5760003560e01c806383a9e049116101ab578063b3a196e9116100f7578063e927fc5c11610095578063f2fde38b1161006f578063f2fde38b1461091e578063f47430701461093e578063f759867a14610954578063fd2131091461096757600080fd5b8063e927fc5c1461089a578063e985e9c5146108c2578063efd0cbf91461090b57600080fd5b8063cba8cc15116100d1578063cba8cc1514610839578063d5abeb011461084f578063de7fcb1d14610864578063e081b7811461087957600080fd5b8063b3a196e9146107e3578063b88d4fde146107f9578063c87b56dd1461081957600080fd5b8063989bdbb6116101645780639cf2e8d61161013e5780639cf2e8d61461075e578063a22cb4651461078e578063a475b5dd146107ae578063b179e060146107c357600080fd5b8063989bdbb6146106fc5780639a5d140b146107115780639bf803161461073157600080fd5b806383a9e049146106455780638da5cb5b14610666578063938e3d7b14610684578063940f1ada146106a4578063953dafe0146106ba57806395d89b41146106e757600080fd5b8063465153151161026a5780636352211e11610223578063715018a6116101fd578063715018a6146105e65780637204a3c9146105fb5780637b423dc91461061b5780637d8966e41461063057600080fd5b80636352211e1461058657806367717e2a146105a657806370a08231146105c657600080fd5b806346515315146104ce5780634f6ccce7146104ef578063518302271461050f57806355f804b3146105305780635a4dd47d146105505780635e84d7231461057057600080fd5b806318160ddd116102d757806334393743116102b1578063343937431461046f57806337929eb4146104845780633ccfd60b1461049957806342842e0e146104ae57600080fd5b806318160ddd1461041a57806323b872dd1461042f5780632f745c591461044f57600080fd5b806301ffc9a71461031f578063046dc1661461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d057806313faede6146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612b8a565b61097d565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612952565b6109a8565b005b34801561038257600080fd5b5061038b6109fd565b60405161034b9190612df1565b3480156103a457600080fd5b506103b86103b3366004612c59565b610a8f565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb366004612a94565b610b24565b3480156103fc57600080fd5b5061040c6701f161421c8e000081565b60405190815260200161034b565b34801561042657600080fd5b5060085461040c565b34801561043b57600080fd5b5061037461044a3660046129a0565b610c3a565b34801561045b57600080fd5b5061040c61046a366004612a94565b610c6b565b34801561047b57600080fd5b50610374610d01565b34801561049057600080fd5b5061038b610d4c565b3480156104a557600080fd5b50610374610d5b565b3480156104ba57600080fd5b506103746104c93660046129a0565b610de9565b3480156104da57600080fd5b5060145461033f90600160b81b900460ff1681565b3480156104fb57600080fd5b5061040c61050a366004612c59565b610e04565b34801561051b57600080fd5b5060145461033f90600160b01b900460ff1681565b34801561053c57600080fd5b5061037461054b366004612c24565b610e97565b34801561055c57600080fd5b5061040c61056b366004612c59565b610efe565b34801561057c57600080fd5b5061040c61146181565b34801561059257600080fd5b506103b86105a1366004612c59565b610f12565b3480156105b257600080fd5b5061040c6105c1366004612abe565b610f89565b3480156105d257600080fd5b5061040c6105e1366004612952565b61100b565b3480156105f257600080fd5b50610374611092565b34801561060757600080fd5b50610374610616366004612b15565b6110c8565b34801561062757600080fd5b5061040c6111fc565b34801561063c57600080fd5b50610374611224565b34801561065157600080fd5b5060145461033f90600160a81b900460ff1681565b34801561067257600080fd5b50600a546001600160a01b03166103b8565b34801561069057600080fd5b5061037461069f366004612bc4565b61126f565b3480156106b057600080fd5b5061040c600e5481565b3480156106c657600080fd5b5061040c6106d5366004612952565b600d6020526000908152604090205481565b3480156106f357600080fd5b5061038b6112cf565b34801561070857600080fd5b506103746112de565b34801561071d57600080fd5b5061037461072c366004612c59565b61131d565b34801561073d57600080fd5b5061040c61074c366004612952565b600c6020526000908152604090205481565b34801561076a57600080fd5b5061033f610779366004612952565b600b6020526000908152604090205460ff1681565b34801561079a57600080fd5b506103746107a9366004612a58565b611461565b3480156107ba57600080fd5b5061037461146c565b3480156107cf57600080fd5b506103746107de366004612b15565b6114ab565b3480156107ef57600080fd5b5061040c610a0081565b34801561080557600080fd5b506103746108143660046129dc565b611581565b34801561082557600080fd5b5061038b610834366004612c59565b6115b9565b34801561084557600080fd5b5061040c60115481565b34801561085b57600080fd5b5061040c611737565b34801561087057600080fd5b5061040c600581565b34801561088557600080fd5b5060145461033f90600160a01b900460ff1681565b3480156108a657600080fd5b506103b8738707db291a13d9585b9bc8e2289f64ebb6f5b67281565b3480156108ce57600080fd5b5061033f6108dd36600461296d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610374610919366004612c59565b611748565b34801561092a57600080fd5b50610374610939366004612952565b6119d3565b34801561094a57600080fd5b5061040c600f5481565b610374610962366004612c59565b611a6e565b34801561097357600080fd5b5061040c60105481565b60006001600160e01b0319821663780e9d6360e01b14806109a257506109a282611cde565b92915050565b600a546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612e7c565b60405180910390fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a0c90612fd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890612fd4565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b506000908152600460205260409020546001600160a01b031690565b6000610b2f82610f12565b9050806001600160a01b0316836001600160a01b03161415610b9d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d2565b336001600160a01b0382161480610bb95750610bb981336108dd565b610c2b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109d2565b610c358383611d2e565b505050565b610c443382611d9c565b610c605760405162461bcd60e51b81526004016109d290612ef5565b610c35838383611e93565b6000610c768361100b565b8210610cd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d2b5760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60a81b198116600160a81b9182900460ff1615909102179055565b606060128054610a0c90612fd4565b600a546001600160a01b03163314610d855760405162461bcd60e51b81526004016109d290612e7c565b4780610d9057600080fd5b604051600090339047908381818185875af1925050503d8060008114610dd2576040519150601f19603f3d011682016040523d82523d6000602084013e610dd7565b606091505b5050905080610de557600080fd5b5050565b610c3583838360405180602001604052806000815250611581565b6000610e0f60085490565b8210610e725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109d2565b60088281548110610e8557610e85613080565b90600052602060002001549050919050565b600a546001600160a01b03163314610ec15760405162461bcd60e51b81526004016109d290612e7c565b601454600160b81b900460ff1615610eeb5760405162461bcd60e51b81526004016109d290612eb1565b8051610de5906013906020840190612793565b60006109a26701f161421c8e00008361203e565b6000818152600260205260408120546001600160a01b0316806109a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109d2565b600080848484604051602001610fa193929190612cba565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051808303601f19018152919052805160209091012095945050505050565b60006001600160a01b0382166110765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016109d290612e7c565b6110c66000612051565b565b600a546001600160a01b031633146110f25760405162461bcd60e51b81526004016109d290612e7c565b60005b81811015610c3557600083838381811061111157611111613080565b90506020020160208101906111269190612952565b90506001600160a01b03811661116d5760405162461bcd60e51b815260206004820152600c60248201526b4e756c6c206164647265737360a01b60448201526064016109d2565b6001600160a01b0381166000908152600b602052604090205460ff16156111c85760405162461bcd60e51b815260206004820152600f60248201526e4475706c696361746520656e74727960881b60448201526064016109d2565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055806111f48161300f565b9150506110f5565b600061120760085490565b611215611461610a00612f46565b61121f9190612f91565b905090565b600a546001600160a01b0316331461124e5760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031633146112995760405162461bcd60e51b81526004016109d290612e7c565b601454600160b81b900460ff16156112c35760405162461bcd60e51b81526004016109d290612eb1565b610c3560128383612817565b606060018054610a0c90612fd4565b600a546001600160a01b031633146113085760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60b81b1916600160b81b179055565b600a546001600160a01b031633146113475760405162461bcd60e51b81526004016109d290612e7c565b601454600160a01b900460ff1661138e5760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b60448201526064016109d2565b61139c611461610a00612f46565b600854106113bc5760405162461bcd60e51b81526004016109d290612e56565b610a00816011546113cd9190612f46565b11156114135760405162461bcd60e51b81526020600482015260156024820152744f7574206f662072657365727665642073746f636b60581b60448201526064016109d2565b60015b818111610de5576011805490600061142d8361300f565b919050555061144f3361143f60085490565b61144a906001612f46565b6120a3565b806114598161300f565b915050611416565b610de53383836120bd565b600a546001600160a01b031633146114965760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60b01b1916600160b01b179055565b600a546001600160a01b031633146114d55760405162461bcd60e51b81526004016109d290612e7c565b60005b81811015610c355760008383838181106114f4576114f4613080565b90506020020160208101906115099190612952565b90506001600160a01b0381166115505760405162461bcd60e51b815260206004820152600c60248201526b4e756c6c206164647265737360a01b60448201526064016109d2565b6001600160a01b03166000908152600b60205260409020805460ff19169055806115798161300f565b9150506114d8565b61158b3383611d9c565b6115a75760405162461bcd60e51b81526004016109d290612ef5565b6115b38484848461218c565b50505050565b6000818152600260205260409020546060906001600160a01b03166116385760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d2565b601454600160b01b900460ff166116db576013805461165690612fd4565b80601f016020809104026020016040519081016040528092919081815260200182805461168290612fd4565b80156116cf5780601f106116a4576101008083540402835291602001916116cf565b820191906000526020600020905b8154815290600101906020018083116116b257829003601f168201915b50505050509050919050565b6000601380546116ea90612fd4565b90501161170657604051806020016040528060008152506109a2565b6013611711836121bf565b604051602001611722929190612cf9565b60405160208183030381529060405292915050565b611745611461610a00612f46565b81565b601454600160a01b900460ff1661178f5760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b60448201526064016109d2565b601454600160a81b900460ff16156117e95760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920617661696c61626c6520666f722070726573616c6500000000000060448201526064016109d2565b6117f7611461610a00612f46565b600854106118175760405162461bcd60e51b81526004016109d290612e56565b61146181600e546118289190612f46565b111561186c5760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016109d2565b601054336000908152600d602052604090205461188a908390612f46565b11156118d85760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206c696d697420657863656564656400000000000060448201526064016109d2565b600581111561191f5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591959081b5a5b9d081b1a5b5a5d606a1b60448201526064016109d2565b34611932826701f161421c8e0000612f72565b11156119755760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109d2565b60015b818111610de557600e805490600061198f8361300f565b9091555050336000908152600d602052604081208054916119af8361300f565b91905055506119c13361143f60085490565b806119cb8161300f565b915050611978565b600a546001600160a01b031633146119fd5760405162461bcd60e51b81526004016109d290612e7c565b6001600160a01b038116611a625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b611a6b81612051565b50565b6000611a7960085490565b601454909150600160a01b900460ff16158015611a9f5750601454600160a81b900460ff165b611adc5760405162461bcd60e51b815260206004820152600e60248201526d141c995cd85b194818db1bdcd95960921b60448201526064016109d2565b336000908152600b602052604090205460ff16611b315760405162461bcd60e51b8152602060048201526013602482015272139bdd081bdb881c1c995cd85b19481b1a5cdd606a1b60448201526064016109d2565b611b3f611461610a00612f46565b8110611b5d5760405162461bcd60e51b81526004016109d290612e56565b61146182600e54611b6e9190612f46565b1115611bb25760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016109d2565b600f54336000908152600c6020526040902054611bd0908490612f46565b1115611c1e5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c65206d696e74206c696d6974206578636565646564000000000060448201526064016109d2565b34611c31836701f161421c8e0000612f72565b1115611c745760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109d2565b336000908152600c602052604081208054849290611c93908490612f46565b9250508190555081600e6000828254611cac9190612f46565b90915550600090505b82811015610c3557611ccc3361144a846001612f46565b80611cd68161300f565b915050611cb5565b60006001600160e01b031982166380ac58cd60e01b1480611d0f57506001600160e01b03198216635b5e139f60e01b145b806109a257506301ffc9a760e01b6001600160e01b03198316146109a2565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6382610f12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b6000611e2083610f12565b9050806001600160a01b0316846001600160a01b03161480611e5b5750836001600160a01b0316611e5084610a8f565b6001600160a01b0316145b80611e8b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ea682610f12565b6001600160a01b031614611f0e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109d2565b6001600160a01b038216611f705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b611f7b8383836122bd565b611f86600082611d2e565b6001600160a01b0383166000908152600360205260408120805460019290611faf908490612f91565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fdd908490612f46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061204a8284612f72565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610de5828260405180602001604052806000815250612375565b816001600160a01b0316836001600160a01b0316141561211f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612197848484611e93565b6121a3848484846123a8565b6115b35760405162461bcd60e51b81526004016109d290612e04565b6060816121e35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561220d57806121f78161300f565b91506122069050600a83612f5e565b91506121e7565b60008167ffffffffffffffff81111561222857612228613096565b6040519080825280601f01601f191660200182016040528015612252576020820181803683370190505b5090505b8415611e8b57612267600183612f91565b9150612274600a8661302a565b61227f906030612f46565b60f81b81838151811061229457612294613080565b60200101906001600160f81b031916908160001a9053506122b6600a86612f5e565b9450612256565b6001600160a01b0383166123185761231381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61233b565b816001600160a01b0316836001600160a01b03161461233b5761233b83826124b5565b6001600160a01b03821661235257610c3581612552565b826001600160a01b0316826001600160a01b031614610c3557610c358282612601565b61237f8383612645565b61238c60008484846123a8565b610c355760405162461bcd60e51b81526004016109d290612e04565b60006001600160a01b0384163b156124aa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123ec903390899088908890600401612db4565b602060405180830381600087803b15801561240657600080fd5b505af1925050508015612436575060408051601f3d908101601f1916820190925261243391810190612ba7565b60015b612490573d808015612464576040519150601f19603f3d011682016040523d82523d6000602084013e612469565b606091505b5080516124885760405162461bcd60e51b81526004016109d290612e04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e8b565b506001949350505050565b600060016124c28461100b565b6124cc9190612f91565b60008381526007602052604090205490915080821461251f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061256490600190612f91565b6000838152600960205260408120546008805493945090928490811061258c5761258c613080565b9060005260206000200154905080600883815481106125ad576125ad613080565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125e5576125e561306a565b6001900381819060005260206000200160009055905550505050565b600061260c8361100b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661269b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d2565b6000818152600260205260409020546001600160a01b0316156127005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d2565b61270c600083836122bd565b6001600160a01b0382166000908152600360205260408120805460019290612735908490612f46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461279f90612fd4565b90600052602060002090601f0160209004810192826127c15760008555612807565b82601f106127da57805160ff1916838001178555612807565b82800160010185558215612807579182015b828111156128075782518255916020019190600101906127ec565b5061281392915061288b565b5090565b82805461282390612fd4565b90600052602060002090601f0160209004810192826128455760008555612807565b82601f1061285e5782800160ff19823516178555612807565b82800160010185558215612807579182015b82811115612807578235825591602001919060010190612870565b5b80821115612813576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb613096565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e3613096565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b600082601f83011261294357600080fd5b61204a838335602085016128a0565b60006020828403121561296457600080fd5b61204a82612916565b6000806040838503121561298057600080fd5b61298983612916565b915061299760208401612916565b90509250929050565b6000806000606084860312156129b557600080fd5b6129be84612916565b92506129cc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129f257600080fd5b6129fb85612916565b9350612a0960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a2c57600080fd5b8501601f81018713612a3d57600080fd5b612a4c878235602084016128a0565b91505092959194509250565b60008060408385031215612a6b57600080fd5b612a7483612916565b915060208301358015158114612a8957600080fd5b809150509250929050565b60008060408385031215612aa757600080fd5b612ab083612916565b946020939093013593505050565b600080600060608486031215612ad357600080fd5b612adc84612916565b925060208401359150604084013567ffffffffffffffff811115612aff57600080fd5b612b0b86828701612932565b9150509250925092565b60008060208385031215612b2857600080fd5b823567ffffffffffffffff80821115612b4057600080fd5b818501915085601f830112612b5457600080fd5b813581811115612b6357600080fd5b8660208260051b8501011115612b7857600080fd5b60209290920196919550909350505050565b600060208284031215612b9c57600080fd5b813561204a816130ac565b600060208284031215612bb957600080fd5b815161204a816130ac565b60008060208385031215612bd757600080fd5b823567ffffffffffffffff80821115612bef57600080fd5b818501915085601f830112612c0357600080fd5b813581811115612c1257600080fd5b866020828501011115612b7857600080fd5b600060208284031215612c3657600080fd5b813567ffffffffffffffff811115612c4d57600080fd5b611e8b84828501612932565b600060208284031215612c6b57600080fd5b5035919050565b60008151808452612c8a816020860160208601612fa8565b601f01601f19169290920160200192915050565b60008151612cb0818560208601612fa8565b9290920192915050565b6bffffffffffffffffffffffff198460601b16815282601482015260008251612cea816034850160208701612fa8565b91909101603401949350505050565b600080845481600182811c915080831680612d1557607f831692505b6020808410821415612d3557634e487b7160e01b86526022600452602486fd5b818015612d495760018114612d5a57612d87565b60ff19861689528489019650612d87565b60008b81526020902060005b86811015612d7f5781548b820152908501908301612d66565b505084890196505b505050505050612dab612d9a8286612c9e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612de790830184612c72565b9695505050505050565b60208152600061204a6020830184612c72565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600c908201526b4f7574206f662073746f636b60a01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f5957612f5961303e565b500190565b600082612f6d57612f6d613054565b500490565b6000816000190483118215151615612f8c57612f8c61303e565b500290565b600082821015612fa357612fa361303e565b500390565b60005b83811015612fc3578181015183820152602001612fab565b838111156115b35750506000910152565b600181811c90821680612fe857607f821691505b6020821081141561300957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130235761302361303e565b5060010190565b60008261303957613039613054565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a6b57600080fdfea26469706673582212203dca26f9c7458b60e8ce3c12bf773833b55456a6a79ca22a1d8566693e6012a264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031a5760003560e01c806383a9e049116101ab578063b3a196e9116100f7578063e927fc5c11610095578063f2fde38b1161006f578063f2fde38b1461091e578063f47430701461093e578063f759867a14610954578063fd2131091461096757600080fd5b8063e927fc5c1461089a578063e985e9c5146108c2578063efd0cbf91461090b57600080fd5b8063cba8cc15116100d1578063cba8cc1514610839578063d5abeb011461084f578063de7fcb1d14610864578063e081b7811461087957600080fd5b8063b3a196e9146107e3578063b88d4fde146107f9578063c87b56dd1461081957600080fd5b8063989bdbb6116101645780639cf2e8d61161013e5780639cf2e8d61461075e578063a22cb4651461078e578063a475b5dd146107ae578063b179e060146107c357600080fd5b8063989bdbb6146106fc5780639a5d140b146107115780639bf803161461073157600080fd5b806383a9e049146106455780638da5cb5b14610666578063938e3d7b14610684578063940f1ada146106a4578063953dafe0146106ba57806395d89b41146106e757600080fd5b8063465153151161026a5780636352211e11610223578063715018a6116101fd578063715018a6146105e65780637204a3c9146105fb5780637b423dc91461061b5780637d8966e41461063057600080fd5b80636352211e1461058657806367717e2a146105a657806370a08231146105c657600080fd5b806346515315146104ce5780634f6ccce7146104ef578063518302271461050f57806355f804b3146105305780635a4dd47d146105505780635e84d7231461057057600080fd5b806318160ddd116102d757806334393743116102b1578063343937431461046f57806337929eb4146104845780633ccfd60b1461049957806342842e0e146104ae57600080fd5b806318160ddd1461041a57806323b872dd1461042f5780632f745c591461044f57600080fd5b806301ffc9a71461031f578063046dc1661461035457806306fdde0314610376578063081812fc14610398578063095ea7b3146103d057806313faede6146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612b8a565b61097d565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5061037461036f366004612952565b6109a8565b005b34801561038257600080fd5b5061038b6109fd565b60405161034b9190612df1565b3480156103a457600080fd5b506103b86103b3366004612c59565b610a8f565b6040516001600160a01b03909116815260200161034b565b3480156103dc57600080fd5b506103746103eb366004612a94565b610b24565b3480156103fc57600080fd5b5061040c6701f161421c8e000081565b60405190815260200161034b565b34801561042657600080fd5b5060085461040c565b34801561043b57600080fd5b5061037461044a3660046129a0565b610c3a565b34801561045b57600080fd5b5061040c61046a366004612a94565b610c6b565b34801561047b57600080fd5b50610374610d01565b34801561049057600080fd5b5061038b610d4c565b3480156104a557600080fd5b50610374610d5b565b3480156104ba57600080fd5b506103746104c93660046129a0565b610de9565b3480156104da57600080fd5b5060145461033f90600160b81b900460ff1681565b3480156104fb57600080fd5b5061040c61050a366004612c59565b610e04565b34801561051b57600080fd5b5060145461033f90600160b01b900460ff1681565b34801561053c57600080fd5b5061037461054b366004612c24565b610e97565b34801561055c57600080fd5b5061040c61056b366004612c59565b610efe565b34801561057c57600080fd5b5061040c61146181565b34801561059257600080fd5b506103b86105a1366004612c59565b610f12565b3480156105b257600080fd5b5061040c6105c1366004612abe565b610f89565b3480156105d257600080fd5b5061040c6105e1366004612952565b61100b565b3480156105f257600080fd5b50610374611092565b34801561060757600080fd5b50610374610616366004612b15565b6110c8565b34801561062757600080fd5b5061040c6111fc565b34801561063c57600080fd5b50610374611224565b34801561065157600080fd5b5060145461033f90600160a81b900460ff1681565b34801561067257600080fd5b50600a546001600160a01b03166103b8565b34801561069057600080fd5b5061037461069f366004612bc4565b61126f565b3480156106b057600080fd5b5061040c600e5481565b3480156106c657600080fd5b5061040c6106d5366004612952565b600d6020526000908152604090205481565b3480156106f357600080fd5b5061038b6112cf565b34801561070857600080fd5b506103746112de565b34801561071d57600080fd5b5061037461072c366004612c59565b61131d565b34801561073d57600080fd5b5061040c61074c366004612952565b600c6020526000908152604090205481565b34801561076a57600080fd5b5061033f610779366004612952565b600b6020526000908152604090205460ff1681565b34801561079a57600080fd5b506103746107a9366004612a58565b611461565b3480156107ba57600080fd5b5061037461146c565b3480156107cf57600080fd5b506103746107de366004612b15565b6114ab565b3480156107ef57600080fd5b5061040c610a0081565b34801561080557600080fd5b506103746108143660046129dc565b611581565b34801561082557600080fd5b5061038b610834366004612c59565b6115b9565b34801561084557600080fd5b5061040c60115481565b34801561085b57600080fd5b5061040c611737565b34801561087057600080fd5b5061040c600581565b34801561088557600080fd5b5060145461033f90600160a01b900460ff1681565b3480156108a657600080fd5b506103b8738707db291a13d9585b9bc8e2289f64ebb6f5b67281565b3480156108ce57600080fd5b5061033f6108dd36600461296d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610374610919366004612c59565b611748565b34801561092a57600080fd5b50610374610939366004612952565b6119d3565b34801561094a57600080fd5b5061040c600f5481565b610374610962366004612c59565b611a6e565b34801561097357600080fd5b5061040c60105481565b60006001600160e01b0319821663780e9d6360e01b14806109a257506109a282611cde565b92915050565b600a546001600160a01b031633146109db5760405162461bcd60e51b81526004016109d290612e7c565b60405180910390fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a0c90612fd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890612fd4565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b506000908152600460205260409020546001600160a01b031690565b6000610b2f82610f12565b9050806001600160a01b0316836001600160a01b03161415610b9d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d2565b336001600160a01b0382161480610bb95750610bb981336108dd565b610c2b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109d2565b610c358383611d2e565b505050565b610c443382611d9c565b610c605760405162461bcd60e51b81526004016109d290612ef5565b610c35838383611e93565b6000610c768361100b565b8210610cd85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d2b5760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60a81b198116600160a81b9182900460ff1615909102179055565b606060128054610a0c90612fd4565b600a546001600160a01b03163314610d855760405162461bcd60e51b81526004016109d290612e7c565b4780610d9057600080fd5b604051600090339047908381818185875af1925050503d8060008114610dd2576040519150601f19603f3d011682016040523d82523d6000602084013e610dd7565b606091505b5050905080610de557600080fd5b5050565b610c3583838360405180602001604052806000815250611581565b6000610e0f60085490565b8210610e725760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109d2565b60088281548110610e8557610e85613080565b90600052602060002001549050919050565b600a546001600160a01b03163314610ec15760405162461bcd60e51b81526004016109d290612e7c565b601454600160b81b900460ff1615610eeb5760405162461bcd60e51b81526004016109d290612eb1565b8051610de5906013906020840190612793565b60006109a26701f161421c8e00008361203e565b6000818152600260205260408120546001600160a01b0316806109a25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109d2565b600080848484604051602001610fa193929190612cba565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051808303601f19018152919052805160209091012095945050505050565b60006001600160a01b0382166110765760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109d2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016109d290612e7c565b6110c66000612051565b565b600a546001600160a01b031633146110f25760405162461bcd60e51b81526004016109d290612e7c565b60005b81811015610c3557600083838381811061111157611111613080565b90506020020160208101906111269190612952565b90506001600160a01b03811661116d5760405162461bcd60e51b815260206004820152600c60248201526b4e756c6c206164647265737360a01b60448201526064016109d2565b6001600160a01b0381166000908152600b602052604090205460ff16156111c85760405162461bcd60e51b815260206004820152600f60248201526e4475706c696361746520656e74727960881b60448201526064016109d2565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055806111f48161300f565b9150506110f5565b600061120760085490565b611215611461610a00612f46565b61121f9190612f91565b905090565b600a546001600160a01b0316331461124e5760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031633146112995760405162461bcd60e51b81526004016109d290612e7c565b601454600160b81b900460ff16156112c35760405162461bcd60e51b81526004016109d290612eb1565b610c3560128383612817565b606060018054610a0c90612fd4565b600a546001600160a01b031633146113085760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60b81b1916600160b81b179055565b600a546001600160a01b031633146113475760405162461bcd60e51b81526004016109d290612e7c565b601454600160a01b900460ff1661138e5760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b60448201526064016109d2565b61139c611461610a00612f46565b600854106113bc5760405162461bcd60e51b81526004016109d290612e56565b610a00816011546113cd9190612f46565b11156114135760405162461bcd60e51b81526020600482015260156024820152744f7574206f662072657365727665642073746f636b60581b60448201526064016109d2565b60015b818111610de5576011805490600061142d8361300f565b919050555061144f3361143f60085490565b61144a906001612f46565b6120a3565b806114598161300f565b915050611416565b610de53383836120bd565b600a546001600160a01b031633146114965760405162461bcd60e51b81526004016109d290612e7c565b6014805460ff60b01b1916600160b01b179055565b600a546001600160a01b031633146114d55760405162461bcd60e51b81526004016109d290612e7c565b60005b81811015610c355760008383838181106114f4576114f4613080565b90506020020160208101906115099190612952565b90506001600160a01b0381166115505760405162461bcd60e51b815260206004820152600c60248201526b4e756c6c206164647265737360a01b60448201526064016109d2565b6001600160a01b03166000908152600b60205260409020805460ff19169055806115798161300f565b9150506114d8565b61158b3383611d9c565b6115a75760405162461bcd60e51b81526004016109d290612ef5565b6115b38484848461218c565b50505050565b6000818152600260205260409020546060906001600160a01b03166116385760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d2565b601454600160b01b900460ff166116db576013805461165690612fd4565b80601f016020809104026020016040519081016040528092919081815260200182805461168290612fd4565b80156116cf5780601f106116a4576101008083540402835291602001916116cf565b820191906000526020600020905b8154815290600101906020018083116116b257829003601f168201915b50505050509050919050565b6000601380546116ea90612fd4565b90501161170657604051806020016040528060008152506109a2565b6013611711836121bf565b604051602001611722929190612cf9565b60405160208183030381529060405292915050565b611745611461610a00612f46565b81565b601454600160a01b900460ff1661178f5760405162461bcd60e51b815260206004820152600b60248201526a14d85b194818db1bdcd95960aa1b60448201526064016109d2565b601454600160a81b900460ff16156117e95760405162461bcd60e51b815260206004820152601a60248201527f4f6e6c7920617661696c61626c6520666f722070726573616c6500000000000060448201526064016109d2565b6117f7611461610a00612f46565b600854106118175760405162461bcd60e51b81526004016109d290612e56565b61146181600e546118289190612f46565b111561186c5760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016109d2565b601054336000908152600d602052604090205461188a908390612f46565b11156118d85760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206c696d697420657863656564656400000000000060448201526064016109d2565b600581111561191f5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591959081b5a5b9d081b1a5b5a5d606a1b60448201526064016109d2565b34611932826701f161421c8e0000612f72565b11156119755760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109d2565b60015b818111610de557600e805490600061198f8361300f565b9091555050336000908152600d602052604081208054916119af8361300f565b91905055506119c13361143f60085490565b806119cb8161300f565b915050611978565b600a546001600160a01b031633146119fd5760405162461bcd60e51b81526004016109d290612e7c565b6001600160a01b038116611a625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d2565b611a6b81612051565b50565b6000611a7960085490565b601454909150600160a01b900460ff16158015611a9f5750601454600160a81b900460ff165b611adc5760405162461bcd60e51b815260206004820152600e60248201526d141c995cd85b194818db1bdcd95960921b60448201526064016109d2565b336000908152600b602052604090205460ff16611b315760405162461bcd60e51b8152602060048201526013602482015272139bdd081bdb881c1c995cd85b19481b1a5cdd606a1b60448201526064016109d2565b611b3f611461610a00612f46565b8110611b5d5760405162461bcd60e51b81526004016109d290612e56565b61146182600e54611b6e9190612f46565b1115611bb25760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016109d2565b600f54336000908152600c6020526040902054611bd0908490612f46565b1115611c1e5760405162461bcd60e51b815260206004820152601b60248201527f50726573616c65206d696e74206c696d6974206578636565646564000000000060448201526064016109d2565b34611c31836701f161421c8e0000612f72565b1115611c745760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109d2565b336000908152600c602052604081208054849290611c93908490612f46565b9250508190555081600e6000828254611cac9190612f46565b90915550600090505b82811015610c3557611ccc3361144a846001612f46565b80611cd68161300f565b915050611cb5565b60006001600160e01b031982166380ac58cd60e01b1480611d0f57506001600160e01b03198216635b5e139f60e01b145b806109a257506301ffc9a760e01b6001600160e01b03198316146109a2565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6382610f12565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109d2565b6000611e2083610f12565b9050806001600160a01b0316846001600160a01b03161480611e5b5750836001600160a01b0316611e5084610a8f565b6001600160a01b0316145b80611e8b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ea682610f12565b6001600160a01b031614611f0e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109d2565b6001600160a01b038216611f705760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d2565b611f7b8383836122bd565b611f86600082611d2e565b6001600160a01b0383166000908152600360205260408120805460019290611faf908490612f91565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fdd908490612f46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061204a8284612f72565b9392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610de5828260405180602001604052806000815250612375565b816001600160a01b0316836001600160a01b0316141561211f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612197848484611e93565b6121a3848484846123a8565b6115b35760405162461bcd60e51b81526004016109d290612e04565b6060816121e35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561220d57806121f78161300f565b91506122069050600a83612f5e565b91506121e7565b60008167ffffffffffffffff81111561222857612228613096565b6040519080825280601f01601f191660200182016040528015612252576020820181803683370190505b5090505b8415611e8b57612267600183612f91565b9150612274600a8661302a565b61227f906030612f46565b60f81b81838151811061229457612294613080565b60200101906001600160f81b031916908160001a9053506122b6600a86612f5e565b9450612256565b6001600160a01b0383166123185761231381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61233b565b816001600160a01b0316836001600160a01b03161461233b5761233b83826124b5565b6001600160a01b03821661235257610c3581612552565b826001600160a01b0316826001600160a01b031614610c3557610c358282612601565b61237f8383612645565b61238c60008484846123a8565b610c355760405162461bcd60e51b81526004016109d290612e04565b60006001600160a01b0384163b156124aa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123ec903390899088908890600401612db4565b602060405180830381600087803b15801561240657600080fd5b505af1925050508015612436575060408051601f3d908101601f1916820190925261243391810190612ba7565b60015b612490573d808015612464576040519150601f19603f3d011682016040523d82523d6000602084013e612469565b606091505b5080516124885760405162461bcd60e51b81526004016109d290612e04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e8b565b506001949350505050565b600060016124c28461100b565b6124cc9190612f91565b60008381526007602052604090205490915080821461251f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061256490600190612f91565b6000838152600960205260408120546008805493945090928490811061258c5761258c613080565b9060005260206000200154905080600883815481106125ad576125ad613080565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125e5576125e561306a565b6001900381819060005260206000200160009055905550505050565b600061260c8361100b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661269b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d2565b6000818152600260205260409020546001600160a01b0316156127005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d2565b61270c600083836122bd565b6001600160a01b0382166000908152600360205260408120805460019290612735908490612f46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461279f90612fd4565b90600052602060002090601f0160209004810192826127c15760008555612807565b82601f106127da57805160ff1916838001178555612807565b82800160010185558215612807579182015b828111156128075782518255916020019190600101906127ec565b5061281392915061288b565b5090565b82805461282390612fd4565b90600052602060002090601f0160209004810192826128455760008555612807565b82601f1061285e5782800160ff19823516178555612807565b82800160010185558215612807579182015b82811115612807578235825591602001919060010190612870565b5b80821115612813576000815560010161288c565b600067ffffffffffffffff808411156128bb576128bb613096565b604051601f8501601f19908116603f011681019082821181831017156128e3576128e3613096565b816040528093508581528686860111156128fc57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461292d57600080fd5b919050565b600082601f83011261294357600080fd5b61204a838335602085016128a0565b60006020828403121561296457600080fd5b61204a82612916565b6000806040838503121561298057600080fd5b61298983612916565b915061299760208401612916565b90509250929050565b6000806000606084860312156129b557600080fd5b6129be84612916565b92506129cc60208501612916565b9150604084013590509250925092565b600080600080608085870312156129f257600080fd5b6129fb85612916565b9350612a0960208601612916565b925060408501359150606085013567ffffffffffffffff811115612a2c57600080fd5b8501601f81018713612a3d57600080fd5b612a4c878235602084016128a0565b91505092959194509250565b60008060408385031215612a6b57600080fd5b612a7483612916565b915060208301358015158114612a8957600080fd5b809150509250929050565b60008060408385031215612aa757600080fd5b612ab083612916565b946020939093013593505050565b600080600060608486031215612ad357600080fd5b612adc84612916565b925060208401359150604084013567ffffffffffffffff811115612aff57600080fd5b612b0b86828701612932565b9150509250925092565b60008060208385031215612b2857600080fd5b823567ffffffffffffffff80821115612b4057600080fd5b818501915085601f830112612b5457600080fd5b813581811115612b6357600080fd5b8660208260051b8501011115612b7857600080fd5b60209290920196919550909350505050565b600060208284031215612b9c57600080fd5b813561204a816130ac565b600060208284031215612bb957600080fd5b815161204a816130ac565b60008060208385031215612bd757600080fd5b823567ffffffffffffffff80821115612bef57600080fd5b818501915085601f830112612c0357600080fd5b813581811115612c1257600080fd5b866020828501011115612b7857600080fd5b600060208284031215612c3657600080fd5b813567ffffffffffffffff811115612c4d57600080fd5b611e8b84828501612932565b600060208284031215612c6b57600080fd5b5035919050565b60008151808452612c8a816020860160208601612fa8565b601f01601f19169290920160200192915050565b60008151612cb0818560208601612fa8565b9290920192915050565b6bffffffffffffffffffffffff198460601b16815282601482015260008251612cea816034850160208701612fa8565b91909101603401949350505050565b600080845481600182811c915080831680612d1557607f831692505b6020808410821415612d3557634e487b7160e01b86526022600452602486fd5b818015612d495760018114612d5a57612d87565b60ff19861689528489019650612d87565b60008b81526020902060005b86811015612d7f5781548b820152908501908301612d66565b505084890196505b505050505050612dab612d9a8286612c9e565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612de790830184612c72565b9695505050505050565b60208152600061204a6020830184612c72565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600c908201526b4f7574206f662073746f636b60a01b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f5957612f5961303e565b500190565b600082612f6d57612f6d613054565b500490565b6000816000190483118215151615612f8c57612f8c61303e565b500290565b600082821015612fa357612fa361303e565b500390565b60005b83811015612fc3578181015183820152602001612fab565b838111156115b35750506000910152565b600181811c90821680612fe857607f821691505b6020821081141561300957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130235761302361303e565b5060010190565b60008261303957613039613054565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a6b57600080fdfea26469706673582212203dca26f9c7458b60e8ce3c12bf773833b55456a6a79ca22a1d8566693e6012a264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : unrevealedBaseURI (string): ipfs://
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
62435:10196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52329:224;;;;;;;;;;-1:-1:-1;52329:224:0;;;;;:::i;:::-;;:::i;:::-;;;9631:14:1;;9624:22;9606:41;;9594:2;9579:18;52329:224:0;;;;;;;;71607:106;;;;;;;;;;-1:-1:-1;71607:106:0;;;;;:::i;:::-;;:::i;:::-;;39823:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41382:221::-;;;;;;;;;;-1:-1:-1;41382:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8929:32:1;;;8911:51;;8899:2;8884:18;41382:221:0;8765:203:1;40905:411:0;;;;;;;;;;-1:-1:-1;40905:411:0;;;;;:::i;:::-;;:::i;62896:38::-;;;;;;;;;;;;62924:10;62896:38;;;;;9804:25:1;;;9792:2;9777:18;62896:38:0;9658:177:1;52969:113:0;;;;;;;;;;-1:-1:-1;53057:10:0;:17;52969:113;;42132:339;;;;;;;;;;-1:-1:-1;42132:339:0;;;;;:::i;:::-;;:::i;52637:256::-;;;;;;;;;;-1:-1:-1;52637:256:0;;;;;:::i;:::-;;:::i;70135:97::-;;;;;;;;;;;;;:::i;68809:107::-;;;;;;;;;;;;;:::i;72351:263::-;;;;;;;;;;;;;:::i;42542:185::-;;;;;;;;;;-1:-1:-1;42542:185:0;;;;;:::i;:::-;;:::i;64219:24::-;;;;;;;;;;-1:-1:-1;64219:24:0;;;;-1:-1:-1;;;64219:24:0;;;;;;53159:233;;;;;;;;;;-1:-1:-1;53159:233:0;;;;;:::i;:::-;;:::i;64180:28::-;;;;;;;;;;-1:-1:-1;64180:28:0;;;;-1:-1:-1;;;64180:28:0;;;;;;72095:119;;;;;;;;;;-1:-1:-1;72095:119:0;;;;;:::i;:::-;;:::i;67507:113::-;;;;;;;;;;-1:-1:-1;67507:113:0;;;;;:::i;:::-;;:::i;62721:40::-;;;;;;;;;;;;62757:4;62721:40;;39517:239;;;;;;;;;;-1:-1:-1;39517:239:0;;;;;:::i;:::-;;:::i;67758:339::-;;;;;;;;;;-1:-1:-1;67758:339:0;;;;;:::i;:::-;;:::i;39247:208::-;;;;;;;;;;-1:-1:-1;39247:208:0;;;;;:::i;:::-;;:::i;60190:103::-;;;;;;;;;;;;;:::i;70613:384::-;;;;;;;;;;-1:-1:-1;70613:384:0;;;;;:::i;:::-;;:::i;68554:121::-;;;;;;;;;;;;;:::i;70380:88::-;;;;;;;;;;;;;:::i;64146:23::-;;;;;;;;;;-1:-1:-1;64146:23:0;;;;-1:-1:-1;;;64146:23:0;;;;;;59539:87;;;;;;;;;;-1:-1:-1;59612:6:0;;-1:-1:-1;;;;;59612:6:0;59539:87;;71847:118;;;;;;;;;;-1:-1:-1;71847:118:0;;;;;:::i;:::-;;:::i;63429:33::-;;;;;;;;;;;;;;;;63240:54;;;;;;;;;;-1:-1:-1;63240:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;39992:104;;;;;;;;;;;;;:::i;69895:89::-;;;;;;;;;;;;;:::i;66885:489::-;;;;;;;;;;-1:-1:-1;66885:489:0;;;;;:::i;:::-;;:::i;63173:56::-;;;;;;;;;;-1:-1:-1;63173:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;63118:44;;;;;;;;;;-1:-1:-1;63118:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41675:155;;;;;;;;;;-1:-1:-1;41675:155:0;;;;;:::i;:::-;;:::i;69654:77::-;;;;;;;;;;;;;:::i;71139:336::-;;;;;;;;;;-1:-1:-1;71139:336:0;;;;;:::i;:::-;;:::i;62772:41::-;;;;;;;;;;;;62809:4;62772:41;;42798:328;;;;;;;;;;-1:-1:-1;42798:328:0;;;;;:::i;:::-;;:::i;69052:416::-;;;;;;;;;;-1:-1:-1;69052:416:0;;;;;:::i;:::-;;:::i;63572:35::-;;;;;;;;;;;;;;;;62824:61;;;;;;;;;;;;;:::i;62945:37::-;;;;;;;;;;;;62981:1;62945:37;;64115:20;;;;;;;;;;-1:-1:-1;64115:20:0;;;;-1:-1:-1;;;64115:20:0;;;;;;63927:83;;;;;;;;;;;;63968:42;63927:83;;41901:164;;;;;;;;;;-1:-1:-1;41901:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;42022:25:0;;;41998:4;42022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41901:164;64869:859;;;;;;:::i;:::-;;:::i;60448:201::-;;;;;;;;;;-1:-1:-1;60448:201:0;;;;;:::i;:::-;;:::i;63473:39::-;;;;;;;;;;;;;;;;65859:884;;;;;;:::i;:::-;;:::i;63523:38::-;;;;;;;;;;;;;;;;52329:224;52431:4;-1:-1:-1;;;;;;52455:50:0;;-1:-1:-1;;;52455:50:0;;:90;;;52509:36;52533:11;52509:23;:36::i;:::-;52448:97;52329:224;-1:-1:-1;;52329:224:0:o;71607:106::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;;;;;;;;;71681:13:::1;:20:::0;;-1:-1:-1;;;;;;71681:20:0::1;-1:-1:-1::0;;;;;71681:20:0;;;::::1;::::0;;;::::1;::::0;;71607:106::o;39823:100::-;39877:13;39910:5;39903:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39823:100;:::o;41382:221::-;41458:7;44725:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44725:16:0;41478:73;;;;-1:-1:-1;;;41478:73:0;;17416:2:1;41478:73:0;;;17398:21:1;17455:2;17435:18;;;17428:30;17494:34;17474:18;;;17467:62;-1:-1:-1;;;17545:18:1;;;17538:42;17597:19;;41478:73:0;17214:408:1;41478:73:0;-1:-1:-1;41571:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41571:24:0;;41382:221::o;40905:411::-;40986:13;41002:23;41017:7;41002:14;:23::i;:::-;40986:39;;41050:5;-1:-1:-1;;;;;41044:11:0;:2;-1:-1:-1;;;;;41044:11:0;;;41036:57;;;;-1:-1:-1;;;41036:57:0;;20124:2:1;41036:57:0;;;20106:21:1;20163:2;20143:18;;;20136:30;20202:34;20182:18;;;20175:62;-1:-1:-1;;;20253:18:1;;;20246:31;20294:19;;41036:57:0;19922:397:1;41036:57:0;37352:10;-1:-1:-1;;;;;41128:21:0;;;;:62;;-1:-1:-1;41153:37:0;41170:5;37352:10;41901:164;:::i;41153:37::-;41106:168;;;;-1:-1:-1;;;41106:168:0;;15121:2:1;41106:168:0;;;15103:21:1;15160:2;15140:18;;;15133:30;15199:34;15179:18;;;15172:62;15270:26;15250:18;;;15243:54;15314:19;;41106:168:0;14919:420:1;41106:168:0;41287:21;41296:2;41300:7;41287:8;:21::i;:::-;40975:341;40905:411;;:::o;42132:339::-;42327:41;37352:10;42360:7;42327:18;:41::i;:::-;42319:103;;;;-1:-1:-1;;;42319:103:0;;;;;;;:::i;:::-;42435:28;42445:4;42451:2;42455:7;42435:9;:28::i;52637:256::-;52734:7;52770:23;52787:5;52770:16;:23::i;:::-;52762:5;:31;52754:87;;;;-1:-1:-1;;;52754:87:0;;10622:2:1;52754:87:0;;;10604:21:1;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:1;;;10744:41;10802:19;;52754:87:0;10420:407:1;52754:87:0;-1:-1:-1;;;;;;52859:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;52637:256::o;70135:97::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;70209:11:::1;::::0;;-1:-1:-1;;;;70194:26:0;::::1;-1:-1:-1::0;;;70209:11:0;;;::::1;;;70208:12;70194:26:::0;;::::1;;::::0;;70135:97::o;68809:107::-;68856:13;68893:11;68886:18;;;;;:::i;72351:263::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;72423:21:::1;72467:11:::0;72459:20:::1;;;::::0;::::1;;72513:58;::::0;72495:12:::1;::::0;72521:10:::1;::::0;72545:21:::1;::::0;72495:12;72513:58;72495:12;72513:58;72545:21;72521:10;72513:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72494:77;;;72594:7;72586:16;;;::::0;::::1;;72390:224;;72351:263::o:0;42542:185::-;42680:39;42697:4;42703:2;42707:7;42680:39;;;;;;;;;;;;:16;:39::i;53159:233::-;53234:7;53270:30;53057:10;:17;;52969:113;53270:30;53262:5;:38;53254:95;;;;-1:-1:-1;;;53254:95:0;;21294:2:1;53254:95:0;;;21276:21:1;21333:2;21313:18;;;21306:30;21372:34;21352:18;;;21345:62;-1:-1:-1;;;21423:18:1;;;21416:42;21475:19;;53254:95:0;21092:408:1;53254:95:0;53367:10;53378:5;53367:17;;;;;;;;:::i;:::-;;;;;;;;;53360:24;;53159:233;;;:::o;72095:119::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;64665:12:::1;::::0;-1:-1:-1;;;64665:12:0;::::1;;;64664:13;64656:62;;;;-1:-1:-1::0;;;64656:62:0::1;;;;;;;:::i;:::-;72180:22:::0;;::::2;::::0;:12:::2;::::0;:22:::2;::::0;::::2;::::0;::::2;:::i;67507:113::-:0;67561:7;67592:16;62924:10;67601:6;67592:8;:16::i;39517:239::-;39589:7;39625:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39625:16:0;39660:19;39652:73;;;;-1:-1:-1;;;39652:73:0;;15957:2:1;39652:73:0;;;15939:21:1;15996:2;15976:18;;;15969:30;16035:34;16015:18;;;16008:62;-1:-1:-1;;;16086:18:1;;;16079:39;16135:19;;39652:73:0;15755:405:1;67758:339:0;67853:7;67877:12;68009:6;68017:3;68022:5;67992:36;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;67992:36:0;;;;;;;;;;67982:47;;67992:36;67982:47;;;;8412:66:1;67902:128:0;;;8400:79:1;;;;8495:12;;;8488:28;8532:12;;67902:128:0;;;;;;-1:-1:-1;;67902:128:0;;;;;;67892:153;;67902:128;67892:153;;;;;67758:339;-1:-1:-1;;;;;67758:339:0:o;39247:208::-;39319:7;-1:-1:-1;;;;;39347:19:0;;39339:74;;;;-1:-1:-1;;;39339:74:0;;15546:2:1;39339:74:0;;;15528:21:1;15585:2;15565:18;;;15558:30;15624:34;15604:18;;;15597:62;-1:-1:-1;;;15675:18:1;;;15668:40;15725:19;;39339:74:0;15344:406:1;39339:74:0;-1:-1:-1;;;;;;39431:16:0;;;;;:9;:16;;;;;;;39247:208::o;60190:103::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;60255:30:::1;60282:1;60255:18;:30::i;:::-;60190:103::o:0;70613:384::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;70705:9:::1;70701:282;70720:18:::0;;::::1;70701:282;;;70764:13;70780:7;;70788:1;70780:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;70764:26:::0;-1:-1:-1;;;;;;70817:19:0;::::1;70809:44;;;::::0;-1:-1:-1;;;70809:44:0;;13679:2:1;70809:44:0::1;::::0;::::1;13661:21:1::0;13718:2;13698:18;;;13691:30;-1:-1:-1;;;13737:18:1;;;13730:42;13789:18;;70809:44:0::1;13477:336:1::0;70809:44:0::1;-1:-1:-1::0;;;;;70881:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;;::::1;;70880:20;70872:48;;;::::0;-1:-1:-1;;;70872:48:0;;22050:2:1;70872:48:0::1;::::0;::::1;22032:21:1::0;22089:2;22069:18;;;22062:30;-1:-1:-1;;;22108:18:1;;;22101:45;22163:18;;70872:48:0::1;21848:339:1::0;70872:48:0::1;-1:-1:-1::0;;;;;70941:19:0::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;70941:26:0::1;70963:4;70941:26;::::0;;70740:3;::::1;::::0;::::1;:::i;:::-;;;;70701:282;;68554:121:::0;68607:7;68650:13;53057:10;:17;;52969:113;68650:13;62857:28;62757:4;62809;62857:28;:::i;:::-;68638:25;;;;:::i;:::-;68631:32;;68554:121;:::o;70380:88::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;70448:8:::1;::::0;;-1:-1:-1;;;;70436:20:0;::::1;-1:-1:-1::0;;;70448:8:0;;;::::1;;;70447:9;70436:20:::0;;::::1;;::::0;;70380:88::o;71847:118::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;64665:12:::1;::::0;-1:-1:-1;;;64665:12:0;::::1;;;64664:13;64656:62;;;;-1:-1:-1::0;;;64656:62:0::1;;;;;;;:::i;:::-;71936:17:::2;:11;71950:3:::0;;71936:17:::2;:::i;39992:104::-:0;40048:13;40081:7;40074:14;;;;;:::i;69895:89::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;69953:12:::1;:19:::0;;-1:-1:-1;;;;69953:19:0::1;-1:-1:-1::0;;;69953:19:0::1;::::0;;69895:89::o;66885:489::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;66971:8:::1;::::0;-1:-1:-1;;;66971:8:0;::::1;;;66963:32;;;::::0;-1:-1:-1;;;66963:32:0;;16367:2:1;66963:32:0::1;::::0;::::1;16349:21:1::0;16406:2;16386:18;;;16379:30;-1:-1:-1;;;16425:18:1;;;16418:41;16476:18;;66963:32:0::1;16165:335:1::0;66963:32:0::1;62857:28;62757:4;62809;62857:28;:::i;:::-;53057:10:::0;:17;67018:25:::1;67010:50;;;;-1:-1:-1::0;;;67010:50:0::1;;;;;;;:::i;:::-;62809:4;67106:12;67083:20;;:35;;;;:::i;:::-;:52;;67075:86;;;::::0;-1:-1:-1;;;67075:86:0;;20944:2:1;67075:86:0::1;::::0;::::1;20926:21:1::0;20983:2;20963:18;;;20956:30;-1:-1:-1;;;21002:18:1;;;20995:51;21063:18;;67075:86:0::1;20742:345:1::0;67075:86:0::1;67206:1;67190:159;67214:12;67209:1;:17;67190:159;;67252:20;:22:::0;;;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;67293:40;67303:10;67315:13;53057:10:::0;:17;;52969:113;67315:13:::1;:17;::::0;67331:1:::1;67315:17;:::i;:::-;67293:9;:40::i;:::-;67228:3:::0;::::1;::::0;::::1;:::i;:::-;;;;67190:159;;41675:155:::0;41770:52;37352:10;41803:8;41813;41770:18;:52::i;69654:77::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;69704:8:::1;:15:::0;;-1:-1:-1;;;;69704:15:0::1;-1:-1:-1::0;;;69704:15:0::1;::::0;;69654:77::o;71139:336::-;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;71236:9:::1;71232:232;71251:18:::0;;::::1;71232:232;;;71295:13;71311:7;;71319:1;71311:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;71295:26:::0;-1:-1:-1;;;;;;71348:19:0;::::1;71340:44;;;::::0;-1:-1:-1;;;71340:44:0;;13679:2:1;71340:44:0::1;::::0;::::1;13661:21:1::0;13718:2;13698:18;;;13691:30;-1:-1:-1;;;13737:18:1;;;13730:42;13789:18;;71340:44:0::1;13477:336:1::0;71340:44:0::1;-1:-1:-1::0;;;;;71421:19:0::1;71443:5;71421:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;71421:27:0::1;::::0;;71271:3;::::1;::::0;::::1;:::i;:::-;;;;71232:232;;42798:328:::0;42973:41;37352:10;43006:7;42973:18;:41::i;:::-;42965:103;;;;-1:-1:-1;;;42965:103:0;;;;;;;:::i;:::-;43079:39;43093:4;43099:2;43103:7;43112:5;43079:13;:39::i;:::-;42798:328;;;;:::o;69052:416::-;44701:4;44725:16;;;:7;:16;;;;;;69125:13;;-1:-1:-1;;;;;44725:16:0;69155:76;;;;-1:-1:-1;;;69155:76:0;;18948:2:1;69155:76:0;;;18930:21:1;18987:2;18967:18;;;18960:30;19026:34;19006:18;;;18999:62;-1:-1:-1;;;19077:18:1;;;19070:45;19132:19;;69155:76:0;18746:411:1;69155:76:0;69253:8;;-1:-1:-1;;;69253:8:0;;;;69248:69;;69289:12;69282:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69052:416;;;:::o;69248:69::-;69381:1;69358:12;69352:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;69409:12;69423:18;:7;:16;:18::i;:::-;69392:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69345:111;69052:416;-1:-1:-1;;69052:416:0:o;62824:61::-;62857:28;62757:4;62809;62857:28;:::i;:::-;62824:61;:::o;64869:859::-;64951:8;;-1:-1:-1;;;64951:8:0;;;;64943:32;;;;-1:-1:-1;;;64943:32:0;;16367:2:1;64943:32:0;;;16349:21:1;16406:2;16386:18;;;16379:30;-1:-1:-1;;;16425:18:1;;;16418:41;16476:18;;64943:32:0;16165:335:1;64943:32:0;64999:11;;-1:-1:-1;;;64999:11:0;;;;64998:12;64990:51;;;;-1:-1:-1;;;64990:51:0;;12208:2:1;64990:51:0;;;12190:21:1;12247:2;12227:18;;;12220:30;12286:28;12266:18;;;12259:56;12332:18;;64990:51:0;12006:350:1;64990:51:0;62857:28;62757:4;62809;62857:28;:::i;:::-;53057:10;:17;65064:25;65056:50;;;;-1:-1:-1;;;65056:50:0;;;;;;;:::i;:::-;62757:4;65150:12;65129:18;;:33;;;;:::i;:::-;:49;;65121:81;;;;-1:-1:-1;;;65121:81:0;;11453:2:1;65121:81:0;;;11435:21:1;11492:2;11472:18;;;11465:30;-1:-1:-1;;;11511:18:1;;;11504:49;11570:18;;65121:81:0;11251:343:1;65121:81:0;65275:19;;65245:10;65225:31;;;;:19;:31;;;;;;:46;;65259:12;;65225:46;:::i;:::-;:69;;65217:108;;;;-1:-1:-1;;;65217:108:0;;19769:2:1;65217:108:0;;;19751:21:1;19808:2;19788:18;;;19781:30;19847:28;19827:18;;;19820:56;19893:18;;65217:108:0;19567:350:1;65217:108:0;62981:1;65348:12;:28;;65340:60;;;;-1:-1:-1;;;65340:60:0;;16707:2:1;65340:60:0;;;16689:21:1;16746:2;16726:18;;;16719:30;-1:-1:-1;;;16765:18:1;;;16758:49;16824:18;;65340:60:0;16505:343:1;65340:60:0;65446:9;65423:19;65430:12;62924:10;65423:19;:::i;:::-;:32;;65415:63;;;;-1:-1:-1;;;65415:63:0;;14774:2:1;65415:63:0;;;14756:21:1;14813:2;14793:18;;;14786:30;-1:-1:-1;;;14832:18:1;;;14825:48;14890:18;;65415:63:0;14572:342:1;65415:63:0;65524:1;65508:209;65532:12;65527:1;:17;65508:209;;65570:18;:20;;;:18;:20;;;:::i;:::-;;;;-1:-1:-1;;65629:10:0;65609:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;;;65661:40;65671:10;65683:13;53057:10;:17;;52969:113;65661:40;65546:3;;;;:::i;:::-;;;;65508:209;;60448:201;59612:6;;-1:-1:-1;;;;;59612:6:0;37352:10;59759:23;59751:68;;;;-1:-1:-1;;;59751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60537:22:0;::::1;60529:73;;;::::0;-1:-1:-1;;;60529:73:0;;11801:2:1;60529:73:0::1;::::0;::::1;11783:21:1::0;11840:2;11820:18;;;11813:30;11879:34;11859:18;;;11852:62;-1:-1:-1;;;11930:18:1;;;11923:36;11976:19;;60529:73:0::1;11599:402:1::0;60529:73:0::1;60613:28;60632:8;60613:18;:28::i;:::-;60448:201:::0;:::o;65859:884::-;65934:18;65955:13;53057:10;:17;;52969:113;65955:13;65994:8;;65934:34;;-1:-1:-1;;;;65994:8:0;;;;65993:9;:24;;;;-1:-1:-1;66006:11:0;;-1:-1:-1;;;66006:11:0;;;;65993:24;65985:51;;;;-1:-1:-1;;;65985:51:0;;21707:2:1;65985:51:0;;;21689:21:1;21746:2;21726:18;;;21719:30;-1:-1:-1;;;21765:18:1;;;21758:44;21819:18;;65985:51:0;21505:338:1;65985:51:0;66072:10;66059:24;;;;:12;:24;;;;;;;;66051:56;;;;-1:-1:-1;;;66051:56:0;;18190:2:1;66051:56:0;;;18172:21:1;18229:2;18209:18;;;18202:30;-1:-1:-1;;;18248:18:1;;;18241:49;18307:18;;66051:56:0;17988:343:1;66051:56:0;62857:28;62757:4;62809;62857:28;:::i;:::-;66133:10;:22;66125:47;;;;-1:-1:-1;;;66125:47:0;;;;;;;:::i;:::-;62757:4;66216:12;66195:18;;:33;;;;:::i;:::-;:49;;66187:81;;;;-1:-1:-1;;;66187:81:0;;11453:2:1;66187:81:0;;;11435:21:1;11492:2;11472:18;;;11465:30;-1:-1:-1;;;11511:18:1;;;11504:49;11570:18;;66187:81:0;11251:343:1;66187:81:0;66343:20;;66313:10;66291:33;;;;:21;:33;;;;;;:48;;66327:12;;66291:48;:::i;:::-;:72;;66283:112;;;;-1:-1:-1;;;66283:112:0;;10266:2:1;66283:112:0;;;10248:21:1;10305:2;10285:18;;;10278:30;10344:29;10324:18;;;10317:57;10391:18;;66283:112:0;10064:351:1;66283:112:0;66441:9;66418:19;66425:12;62924:10;66418:19;:::i;:::-;:32;;66410:63;;;;-1:-1:-1;;;66410:63:0;;14774:2:1;66410:63:0;;;14756:21:1;14813:2;14793:18;;;14786:30;-1:-1:-1;;;14832:18:1;;;14825:48;14890:18;;66410:63:0;14572:342:1;66410:63:0;66524:10;66502:33;;;;:21;:33;;;;;:49;;66539:12;;66502:33;:49;;66539:12;;66502:49;:::i;:::-;;;;;;;;66588:12;66566:18;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;66622:9:0;;-1:-1:-1;66617:115:0;66641:12;66637:1;:16;66617:115;;;66679:37;66689:10;66701:14;:10;66714:1;66701:14;:::i;66679:37::-;66655:3;;;;:::i;:::-;;;;66617:115;;38878:305;38980:4;-1:-1:-1;;;;;;39017:40:0;;-1:-1:-1;;;39017:40:0;;:105;;-1:-1:-1;;;;;;;39074:48:0;;-1:-1:-1;;;39074:48:0;39017:105;:158;;;-1:-1:-1;;;;;;;;;;22763:40:0;;;39139:36;22654:157;48618:174;48693:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;48693:29:0;-1:-1:-1;;;;;48693:29:0;;;;;;;;:24;;48747:23;48693:24;48747:14;:23::i;:::-;-1:-1:-1;;;;;48738:46:0;;;;;;;;;;;48618:174;;:::o;44930:348::-;45023:4;44725:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44725:16:0;45040:73;;;;-1:-1:-1;;;45040:73:0;;14020:2:1;45040:73:0;;;14002:21:1;14059:2;14039:18;;;14032:30;14098:34;14078:18;;;14071:62;-1:-1:-1;;;14149:18:1;;;14142:42;14201:19;;45040:73:0;13818:408:1;45040:73:0;45124:13;45140:23;45155:7;45140:14;:23::i;:::-;45124:39;;45193:5;-1:-1:-1;;;;;45182:16:0;:7;-1:-1:-1;;;;;45182:16:0;;:51;;;;45226:7;-1:-1:-1;;;;;45202:31:0;:20;45214:7;45202:11;:20::i;:::-;-1:-1:-1;;;;;45202:31:0;;45182:51;:87;;;-1:-1:-1;;;;;;42022:25:0;;;41998:4;42022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;45237:32;45174:96;44930:348;-1:-1:-1;;;;44930:348:0:o;47922:578::-;48081:4;-1:-1:-1;;;;;48054:31:0;:23;48069:7;48054:14;:23::i;:::-;-1:-1:-1;;;;;48054:31:0;;48046:85;;;;-1:-1:-1;;;48046:85:0;;18538:2:1;48046:85:0;;;18520:21:1;18577:2;18557:18;;;18550:30;18616:34;18596:18;;;18589:62;-1:-1:-1;;;18667:18:1;;;18660:39;18716:19;;48046:85:0;18336:405:1;48046:85:0;-1:-1:-1;;;;;48150:16:0;;48142:65;;;;-1:-1:-1;;;48142:65:0;;12920:2:1;48142:65:0;;;12902:21:1;12959:2;12939:18;;;12932:30;12998:34;12978:18;;;12971:62;-1:-1:-1;;;13049:18:1;;;13042:34;13093:19;;48142:65:0;12718:400:1;48142:65:0;48220:39;48241:4;48247:2;48251:7;48220:20;:39::i;:::-;48324:29;48341:1;48345:7;48324:8;:29::i;:::-;-1:-1:-1;;;;;48366:15:0;;;;;;:9;:15;;;;;:20;;48385:1;;48366:15;:20;;48385:1;;48366:20;:::i;:::-;;;;-1:-1:-1;;;;;;;48397:13:0;;;;;;:9;:13;;;;;:18;;48414:1;;48397:13;:18;;48414:1;;48397:18;:::i;:::-;;;;-1:-1:-1;;48426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48426:21:0;-1:-1:-1;;;;;48426:21:0;;;;;;;;;48465:27;;48426:16;;48465:27;;;;;;;47922:578;;;:::o;33166:98::-;33224:7;33251:5;33255:1;33251;:5;:::i;:::-;33244:12;33166:98;-1:-1:-1;;;33166:98:0:o;60809:191::-;60902:6;;;-1:-1:-1;;;;;60919:17:0;;;-1:-1:-1;;;;;;60919:17:0;;;;;;;60952:40;;60902:6;;;60919:17;60902:6;;60952:40;;60883:16;;60952:40;60872:128;60809:191;:::o;45620:110::-;45696:26;45706:2;45710:7;45696:26;;;;;;;;;;;;:9;:26::i;48934:315::-;49089:8;-1:-1:-1;;;;;49080:17:0;:5;-1:-1:-1;;;;;49080:17:0;;;49072:55;;;;-1:-1:-1;;;49072:55:0;;13325:2:1;49072:55:0;;;13307:21:1;13364:2;13344:18;;;13337:30;13403:27;13383:18;;;13376:55;13448:18;;49072:55:0;13123:349:1;49072:55:0;-1:-1:-1;;;;;49138:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;49138:46:0;;;;;;;;;;49200:41;;9606::1;;;49200::0;;9579:18:1;49200:41:0;;;;;;;48934:315;;;:::o;44008:::-;44165:28;44175:4;44181:2;44185:7;44165:9;:28::i;:::-;44212:48;44235:4;44241:2;44245:7;44254:5;44212:22;:48::i;:::-;44204:111;;;;-1:-1:-1;;;44204:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;54005:589;-1:-1:-1;;;;;54211:18:0;;54207:187;;54246:40;54278:7;55421:10;:17;;55394:24;;;;:15;:24;;;;;:44;;;55449:24;;;;;;;;;;;;55317:164;54246:40;54207:187;;;54316:2;-1:-1:-1;;;;;54308:10:0;:4;-1:-1:-1;;;;;54308:10:0;;54304:90;;54335:47;54368:4;54374:7;54335:32;:47::i;:::-;-1:-1:-1;;;;;54408:16:0;;54404:183;;54441:45;54478:7;54441:36;:45::i;54404:183::-;54514:4;-1:-1:-1;;;;;54508:10:0;:2;-1:-1:-1;;;;;54508:10:0;;54504:83;;54535:40;54563:2;54567:7;54535:27;:40::i;45957:321::-;46087:18;46093:2;46097:7;46087:5;:18::i;:::-;46138:54;46169:1;46173:2;46177:7;46186:5;46138:22;:54::i;:::-;46116:154;;;;-1:-1:-1;;;46116:154:0;;;;;;;:::i;49814:799::-;49969:4;-1:-1:-1;;;;;49990:13:0;;12833:20;12881:8;49986:620;;50026:72;;-1:-1:-1;;;50026:72:0;;-1:-1:-1;;;;;50026:36:0;;;;;:72;;37352:10;;50077:4;;50083:7;;50092:5;;50026:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50026:72:0;;;;;;;;-1:-1:-1;;50026:72:0;;;;;;;;;;;;:::i;:::-;;;50022:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50268:13:0;;50264:272;;50311:60;;-1:-1:-1;;;50311:60:0;;;;;;;:::i;50264:272::-;50486:6;50480:13;50471:6;50467:2;50463:15;50456:38;50022:529;-1:-1:-1;;;;;;50149:51:0;-1:-1:-1;;;50149:51:0;;-1:-1:-1;50142:58:0;;49986:620;-1:-1:-1;50590:4:0;49814:799;;;;;;:::o;56108:988::-;56374:22;56424:1;56399:22;56416:4;56399:16;:22::i;:::-;:26;;;;:::i;:::-;56436:18;56457:26;;;:17;:26;;;;;;56374:51;;-1:-1:-1;56590:28:0;;;56586:328;;-1:-1:-1;;;;;56657:18:0;;56635:19;56657:18;;;:12;:18;;;;;;;;:34;;;;;;;;;56708:30;;;;;;:44;;;56825:30;;:17;:30;;;;;:43;;;56586:328;-1:-1:-1;57010:26:0;;;;:17;:26;;;;;;;;57003:33;;;-1:-1:-1;;;;;57054:18:0;;;;;:12;:18;;;;;:34;;;;;;;57047:41;56108:988::o;57391:1079::-;57669:10;:17;57644:22;;57669:21;;57689:1;;57669:21;:::i;:::-;57701:18;57722:24;;;:15;:24;;;;;;58095:10;:26;;57644:46;;-1:-1:-1;57722:24:0;;57644:46;;58095:26;;;;;;:::i;:::-;;;;;;;;;58073:48;;58159:11;58134:10;58145;58134:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;58239:28;;;:15;:28;;;;;;;:41;;;58411:24;;;;;58404:31;58446:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;57462:1008;;;57391:1079;:::o;54895:221::-;54980:14;54997:20;55014:2;54997:16;:20::i;:::-;-1:-1:-1;;;;;55028:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;55073:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;54895:221:0:o;46614:382::-;-1:-1:-1;;;;;46694:16:0;;46686:61;;;;-1:-1:-1;;;46686:61:0;;17055:2:1;46686:61:0;;;17037:21:1;;;17074:18;;;17067:30;17133:34;17113:18;;;17106:62;17185:18;;46686:61:0;16853:356:1;46686:61:0;44701:4;44725:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44725:16:0;:30;46758:58;;;;-1:-1:-1;;;46758:58:0;;12563:2:1;46758:58:0;;;12545:21:1;12602:2;12582:18;;;12575:30;12641;12621:18;;;12614:58;12689:18;;46758:58:0;12361:352:1;46758:58:0;46829:45;46858:1;46862:2;46866:7;46829:20;:45::i;:::-;-1:-1:-1;;;;;46887:13:0;;;;;;:9;:13;;;;;:18;;46904:1;;46887:13;:18;;46904:1;;46887:18;:::i;:::-;;;;-1:-1:-1;;46916:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46916:21:0;-1:-1:-1;;;;;46916:21:0;;;;;;;;46955:33;;46916:16;;;46955:33;;46916:16;;46955:33;46614:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:464::-;3212:6;3220;3228;3281:2;3269:9;3260:7;3256:23;3252:32;3249:52;;;3297:1;3294;3287:12;3249:52;3320:29;3339:9;3320:29;:::i;:::-;3310:39;;3396:2;3385:9;3381:18;3368:32;3358:42;;3451:2;3440:9;3436:18;3423:32;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533;3575:7;3566:6;3555:9;3551:22;3533:50;:::i;:::-;3523:60;;;3125:464;;;;;:::o;3594:615::-;3680:6;3688;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3797:9;3784:23;3826:18;3867:2;3859:6;3856:14;3853:34;;;3883:1;3880;3873:12;3853:34;3921:6;3910:9;3906:22;3896:32;;3966:7;3959:4;3955:2;3951:13;3947:27;3937:55;;3988:1;3985;3978:12;3937:55;4028:2;4015:16;4054:2;4046:6;4043:14;4040:34;;;4070:1;4067;4060:12;4040:34;4123:7;4118:2;4108:6;4105:1;4101:14;4097:2;4093:23;4089:32;4086:45;4083:65;;;4144:1;4141;4134:12;4083:65;4175:2;4167:11;;;;;4197:6;;-1:-1:-1;3594:615:1;;-1:-1:-1;;;;3594:615:1:o;4214:245::-;4272:6;4325:2;4313:9;4304:7;4300:23;4296:32;4293:52;;;4341:1;4338;4331:12;4293:52;4380:9;4367:23;4399:30;4423:5;4399:30;:::i;4464:249::-;4533:6;4586:2;4574:9;4565:7;4561:23;4557:32;4554:52;;;4602:1;4599;4592:12;4554:52;4634:9;4628:16;4653:30;4677:5;4653:30;:::i;4718:592::-;4789:6;4797;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4906:9;4893:23;4935:18;4976:2;4968:6;4965:14;4962:34;;;4992:1;4989;4982:12;4962:34;5030:6;5019:9;5015:22;5005:32;;5075:7;5068:4;5064:2;5060:13;5056:27;5046:55;;5097:1;5094;5087:12;5046:55;5137:2;5124:16;5163:2;5155:6;5152:14;5149:34;;;5179:1;5176;5169:12;5149:34;5224:7;5219:2;5210:6;5206:2;5202:15;5198:24;5195:37;5192:57;;;5245:1;5242;5235:12;5315:322;5384:6;5437:2;5425:9;5416:7;5412:23;5408:32;5405:52;;;5453:1;5450;5443:12;5405:52;5493:9;5480:23;5526:18;5518:6;5515:30;5512:50;;;5558:1;5555;5548:12;5512:50;5581;5623:7;5614:6;5603:9;5599:22;5581:50;:::i;5642:180::-;5701:6;5754:2;5742:9;5733:7;5729:23;5725:32;5722:52;;;5770:1;5767;5760:12;5722:52;-1:-1:-1;5793:23:1;;5642:180;-1:-1:-1;5642:180:1:o;5827:257::-;5868:3;5906:5;5900:12;5933:6;5928:3;5921:19;5949:63;6005:6;5998:4;5993:3;5989:14;5982:4;5975:5;5971:16;5949:63;:::i;:::-;6066:2;6045:15;-1:-1:-1;;6041:29:1;6032:39;;;;6073:4;6028:50;;5827:257;-1:-1:-1;;5827:257:1:o;6089:185::-;6131:3;6169:5;6163:12;6184:52;6229:6;6224:3;6217:4;6210:5;6206:16;6184:52;:::i;:::-;6252:16;;;;;6089:185;-1:-1:-1;;6089:185:1:o;6397:462::-;6639:26;6635:31;6626:6;6622:2;6618:15;6614:53;6609:3;6602:66;6698:6;6693:2;6688:3;6684:12;6677:28;6584:3;6734:6;6728:13;6750:62;6805:6;6800:2;6795:3;6791:12;6784:4;6776:6;6772:17;6750:62;:::i;:::-;6832:16;;;;6850:2;6828:25;;6397:462;-1:-1:-1;;;;6397:462:1:o;6864:1301::-;7141:3;7170:1;7203:6;7197:13;7233:3;7255:1;7283:9;7279:2;7275:18;7265:28;;7343:2;7332:9;7328:18;7365;7355:61;;7409:4;7401:6;7397:17;7387:27;;7355:61;7435:2;7483;7475:6;7472:14;7452:18;7449:38;7446:165;;;-1:-1:-1;;;7510:33:1;;7566:4;7563:1;7556:15;7596:4;7517:3;7584:17;7446:165;7627:18;7654:104;;;;7772:1;7767:320;;;;7620:467;;7654:104;-1:-1:-1;;7687:24:1;;7675:37;;7732:16;;;;-1:-1:-1;7654:104:1;;7767:320;22447:1;22440:14;;;22484:4;22471:18;;7862:1;7876:165;7890:6;7887:1;7884:13;7876:165;;;7968:14;;7955:11;;;7948:35;8011:16;;;;7905:10;;7876:165;;;7880:3;;8070:6;8065:3;8061:16;8054:23;;7620:467;;;;;;;8103:56;8128:30;8154:3;8146:6;8128:30;:::i;:::-;-1:-1:-1;;;6339:20:1;;6384:1;6375:11;;6279:113;8103:56;8096:63;6864:1301;-1:-1:-1;;;;;6864:1301:1:o;8973:488::-;-1:-1:-1;;;;;9242:15:1;;;9224:34;;9294:15;;9289:2;9274:18;;9267:43;9341:2;9326:18;;9319:34;;;9389:3;9384:2;9369:18;;9362:31;;;9167:4;;9410:45;;9435:19;;9427:6;9410:45;:::i;:::-;9402:53;8973:488;-1:-1:-1;;;;;;8973:488:1:o;9840:219::-;9989:2;9978:9;9971:21;9952:4;10009:44;10049:2;10038:9;10034:18;10026:6;10009:44;:::i;10832:414::-;11034:2;11016:21;;;11073:2;11053:18;;;11046:30;11112:34;11107:2;11092:18;;11085:62;-1:-1:-1;;;11178:2:1;11163:18;;11156:48;11236:3;11221:19;;10832:414::o;14231:336::-;14433:2;14415:21;;;14472:2;14452:18;;;14445:30;-1:-1:-1;;;14506:2:1;14491:18;;14484:42;14558:2;14543:18;;14231:336::o;17627:356::-;17829:2;17811:21;;;17848:18;;;17841:30;17907:34;17902:2;17887:18;;17880:62;17974:2;17959:18;;17627:356::o;19162:400::-;19364:2;19346:21;;;19403:2;19383:18;;;19376:30;19442:34;19437:2;19422:18;;19415:62;-1:-1:-1;;;19508:2:1;19493:18;;19486:34;19552:3;19537:19;;19162:400::o;20324:413::-;20526:2;20508:21;;;20565:2;20545:18;;;20538:30;20604:34;20599:2;20584:18;;20577:62;-1:-1:-1;;;20670:2:1;20655:18;;20648:47;20727:3;20712:19;;20324:413::o;22500:128::-;22540:3;22571:1;22567:6;22564:1;22561:13;22558:39;;;22577:18;;:::i;:::-;-1:-1:-1;22613:9:1;;22500:128::o;22633:120::-;22673:1;22699;22689:35;;22704:18;;:::i;:::-;-1:-1:-1;22738:9:1;;22633:120::o;22758:168::-;22798:7;22864:1;22860;22856:6;22852:14;22849:1;22846:21;22841:1;22834:9;22827:17;22823:45;22820:71;;;22871:18;;:::i;:::-;-1:-1:-1;22911:9:1;;22758:168::o;22931:125::-;22971:4;22999:1;22996;22993:8;22990:34;;;23004:18;;:::i;:::-;-1:-1:-1;23041:9:1;;22931:125::o;23061:258::-;23133:1;23143:113;23157:6;23154:1;23151:13;23143:113;;;23233:11;;;23227:18;23214:11;;;23207:39;23179:2;23172:10;23143:113;;;23274:6;23271:1;23268:13;23265:48;;;-1:-1:-1;;23309:1:1;23291:16;;23284:27;23061:258::o;23324:380::-;23403:1;23399:12;;;;23446;;;23467:61;;23521:4;23513:6;23509:17;23499:27;;23467:61;23574:2;23566:6;23563:14;23543:18;23540:38;23537:161;;;23620:10;23615:3;23611:20;23608:1;23601:31;23655:4;23652:1;23645:15;23683:4;23680:1;23673:15;23537:161;;23324:380;;;:::o;23709:135::-;23748:3;-1:-1:-1;;23769:17:1;;23766:43;;;23789:18;;:::i;:::-;-1:-1:-1;23836:1:1;23825:13;;23709:135::o;23849:112::-;23881:1;23907;23897:35;;23912:18;;:::i;:::-;-1:-1:-1;23946:9:1;;23849:112::o;23966:127::-;24027:10;24022:3;24018:20;24015:1;24008:31;24058:4;24055:1;24048:15;24082:4;24079:1;24072:15;24098:127;24159:10;24154:3;24150:20;24147:1;24140:31;24190:4;24187:1;24180:15;24214:4;24211:1;24204:15;24230:127;24291:10;24286:3;24282:20;24279:1;24272:31;24322:4;24319:1;24312:15;24346:4;24343:1;24336:15;24362:127;24423:10;24418:3;24414:20;24411:1;24404:31;24454:4;24451:1;24444:15;24478:4;24475:1;24468:15;24494:127;24555:10;24550:3;24546:20;24543:1;24536:31;24586:4;24583:1;24576:15;24610:4;24607:1;24600:15;24626:131;-1:-1:-1;;;;;;24700:32:1;;24690:43;;24680:71;;24747:1;24744;24737:12
Swarm Source
ipfs://3dca26f9c7458b60e8ce3c12bf773833b55456a6a79ca22a1d8566693e6012a2
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.