ERC-721
Overview
Max Total Supply
257 MNFKEYZ
Holders
87
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MNFKEYZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MasterNFKeyz
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 subtraction 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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/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/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * constructor function */ constructor() { _setupRole(0x00, 0xF05eA7d9d9AAA317742fA3a637E842D2A5a95756); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/NFKeyzNew.sol pragma solidity ^0.8.0; contract MasterNFKeyz is ERC721, ReentrancyGuard, AccessControl { using SafeMath for uint256; using SafeMath for uint16; using SafeMath for uint8; uint16 private _tokenId = 1; address usdcAddress = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; mapping(address => uint256) private checked; uint256 private checkIndex = 1; uint16 public totalSupply = 257; bool public revealStatus = false; bytes32 public constant ADMIN = keccak256("ADMIN"); string private realBaseURI = "https://nfkeyz.mypinata.cloud/ipfs/QmYajR8qEFqZwY9hqHvVY3QbFZmetK83y1W9UvR8qW5Gj8/"; string private virtualURI = "https://placeholder.com/"; modifier onlyAdmin() { require((hasRole(ADMIN, _msgSender()) || hasRole(0x00, _msgSender())), "not allowed"); _; } constructor() ERC721("Master NFKeyz", "MNFKEYZ") { for (uint16 i = 1; i <= totalSupply; i++) { _safeMint(msg.sender, _tokenId); _tokenId++; } _grantRole(ADMIN, _msgSender()); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function _baseURI() internal view override returns (string memory) { if (revealStatus) { return realBaseURI; } else { return virtualURI; } } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "Token does not exist"); uint256 jsonId = tokenId; if (tokenId > 250) jsonId = tokenId + 750; if (revealStatus) { return string(abi.encodePacked(_baseURI(), Strings.toString(jsonId), ".json")); } else { return string(abi.encodePacked(_baseURI(), "symbol.json")); } } function getBalance() external view returns (uint256) { return address(this).balance; } function withdraw() external onlyAdmin { require(address(this).balance != 0, "withdrawFunds: must have funds to withdraw"); uint256 balance = address(this).balance; payable(_msgSender()).transfer(balance); } function setRealBaseURI(string memory _realBaseURI) external onlyAdmin returns (string memory) { realBaseURI = _realBaseURI; return realBaseURI; } function getTokenList(address account) external view returns (uint256[] memory) { require(account != address(0)); uint256 count = balanceOf(account); uint256[] memory tokenIdList = new uint256[](count); if (count == 0) return tokenIdList; uint256 cnt = 0; for (uint256 i = 1; i < (_tokenId + 1); i++) { if (_exists(i) && (ownerOf(i) == account)) { tokenIdList[cnt++] = i; } if (cnt == count) break; } return tokenIdList; } function grantRole(bytes32 _role, address _user) public override onlyAdmin { _grantRole(_role, _user); } function revokeRole(bytes32 _role, address _user) public override onlyAdmin { _revokeRole(_role, _user); } function setRevealStatus(bool _status) public onlyAdmin { revealStatus = _status; } function burn(uint256 tokenId) public onlyAdmin { _burn(tokenId); } function depositUsdc(uint256 amount) public { require(IERC20(usdcAddress).allowance(_msgSender(), address(this)) >= amount, "Not allowed for the usdc amount"); IERC20(usdcAddress).transferFrom(_msgSender(), address(this), amount); } function splitFunds() public onlyAdmin { require(IERC20(usdcAddress).balanceOf(address(this)) > 0, "Not enough balance, deposit first"); uint256 share = SafeMath.div(IERC20(usdcAddress).balanceOf(address(this)), totalSupply); for(uint256 i = 1; i < _tokenId; i++) { address curOwner = ownerOf(i); if(checked[curOwner] == checkIndex) continue; checked[curOwner] = checkIndex; IERC20(usdcAddress).transfer(curOwner, share * balanceOf(curOwner)); } checkIndex = checkIndex + 1; } function withdrawUsdc(address withdrawer, uint256 amount) public onlyAdmin { require(IERC20(usdcAddress).balanceOf(address(this)) >= amount, "Not enough balance"); IERC20(usdcAddress).transfer(withdrawer, amount); } function depositBy(address from, uint256 amount) public onlyAdmin { require(IERC20(usdcAddress).allowance(from, address(this)) >= amount, "Not enough allowance"); IERC20(usdcAddress).transferFrom(from, address(this), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositBy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositUsdc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTokenList","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"},{"internalType":"address","name":"_user","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"},{"internalType":"address","name":"_user","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_realBaseURI","type":"string"}],"name":"setRealBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRevealStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"splitFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawer","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawUsdc","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60088054600161ffff19918216811762010000600160b01b03191675a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000017909255600a91909155600b805461010192169190911762ff000019169055610100604052605260808181529062002f2e60a03980516200007b91600c916020909101906200059f565b506040805180820190915260188082527f68747470733a2f2f706c616365686f6c6465722e636f6d2f00000000000000006020909201918252620000c291600d916200059f565b50348015620000d057600080fd5b50604080518082018252600d81526c26b0b9ba32b910272325b2bcbd60991b60208083019182528351808501909452600784526626a72325a2acad60c91b90840152815191929162000125916000916200059f565b5080516200013b9060019060208401906200059f565b505060016006555062000164600073f05ea7d9d9aaa317742fa3a637e842d2a5a9575662000210565b60015b600b5461ffff90811690821611620001d4576008546200018d90339061ffff1662000220565b6008805461ffff16906000620001a38362000805565b91906101000a81548161ffff021916908361ffff160217905550508080620001cb9062000805565b91505062000167565b506200020a7fdf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec426200020462000242565b62000246565b62000840565b6200021c828262000246565b5050565b6200021c828260405180602001604052806000815250620002d260201b60201c565b3390565b6200025282826200031a565b6200021c5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200028e62000242565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620002de838362000345565b620002ed60008484846200043a565b620003155760405162461bcd60e51b81526004016200030c90620006ef565b60405180910390fd5b505050565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6001600160a01b0382166200036e5760405162461bcd60e51b81526004016200030c9062000778565b620003798162000573565b15620003995760405162461bcd60e51b81526004016200030c9062000741565b620003a76000838362000315565b6001600160a01b0382166000908152600360205260408120805460019290620003d2908490620007ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46200021c6000838362000315565b60006200045b846001600160a01b03166200059060201b620013251760201c565b1562000567576001600160a01b03841663150b7a026200047a62000242565b8786866040518563ffffffff1660e01b81526004016200049e949392919062000676565b602060405180830381600087803b158015620004b957600080fd5b505af1925050508015620004ec575060408051601f3d908101601f19168201909252620004e99181019062000645565b60015b6200054c573d8080156200051d576040519150601f19603f3d011682016040523d82523d6000602084013e62000522565b606091505b508051620005445760405162461bcd60e51b81526004016200030c90620006ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200056b565b5060015b949350505050565b6000908152600260205260409020546001600160a01b0316151590565b6001600160a01b03163b151590565b828054620005ad90620007c8565b90600052602060002090601f016020900481019282620005d157600085556200061c565b82601f10620005ec57805160ff19168380011785556200061c565b828001600101855582156200061c579182015b828111156200061c578251825591602001919060010190620005ff565b506200062a9291506200062e565b5090565b5b808211156200062a57600081556001016200062f565b60006020828403121562000657578081fd5b81516001600160e01b0319811681146200066f578182fd5b9392505050565b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b82811015620006c45785810182015185820160a001528101620006a6565b82811115620006d6578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60008219821115620007c357620007c36200082a565b500190565b600281046001821680620007dd57607f821691505b60208210811415620007ff57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156200082057620008206200082a565b6001019392505050565b634e487b7160e01b600052601160045260246000fd5b6126de80620008506000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806342966c681161010f578063a22cb465116100a2578063d8a3073211610071578063d8a30732146103f2578063e58a5e9014610412578063e985e9c514610425578063f67ba77514610438576101f0565b8063a22cb465146103a6578063b88d4fde146103b9578063c87b56dd146103cc578063d547741f146103df576101f0565b806384c99fb4116100de57806384c99fb41461037057806391d148541461038357806395d89b4114610396578063a217fddf1461039e576101f0565b806342966c68146103245780636352211e1461033757806370a082311461034a5780637370b13f1461035d576101f0565b806323b872dd116101875780632f2ff15d116101565780632f2ff15d146102e357806336568abe146102f65780633ccfd60b1461030957806342842e0e14610311576101f0565b806323b872dd146102ad578063248a9ca3146102c0578063263e4f5e146102d35780632a0acc6a146102db576101f0565b806312065fe0116101c357806312065fe01461026857806318160ddd1461027d5780631b814f02146102925780632357928e1461029a576101f0565b806301ffc9a7146101f557806306fdde031461021e578063081812fc14610233578063095ea7b314610253575b600080fd5b610208610203366004611e7c565b61044b565b6040516102159190612098565b60405180910390f35b61022661045e565b60405161021591906120ac565b610246610241366004611e42565b6104f1565b6040516102159190611fac565b610266610261366004611de1565b610518565b005b6102706105b9565b60405161021591906120a3565b6102856105bd565b60405161021591906124fb565b6102666105c7565b6102666102a8366004611e42565b610871565b6102666102bb366004611cf7565b6109b3565b6102706102ce366004611e42565b6109eb565b610208610a00565b610270610a0f565b6102666102f1366004611e5a565b610a21565b610266610304366004611e5a565b610a74565b610266610ab6565b61026661031f366004611cf7565b610b5d565b610266610332366004611e42565b610b78565b610246610345366004611e42565b610bcd565b610270610358366004611cab565b610c02565b61022661036b366004611eb4565b610c46565b61026661037e366004611e0a565b610d37565b610208610391366004611e5a565b610d9c565b610226610dc7565b610270610dd6565b6102666103b4366004611dab565b610ddb565b6102666103c7366004611d32565b610ded565b6102266103da366004611e42565b610e2c565b6102666103ed366004611e5a565b610ed4565b610405610400366004611cab565b610f1d565b6040516102159190612054565b610266610420366004611de1565b611059565b610208610433366004611cc5565b6111cf565b610266610446366004611de1565b6111fd565b600061045682611334565b90505b919050565b60606000805461046d906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610499906125be565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b505050505090505b90565b60006104fc82611359565b506000908152600460205260409020546001600160a01b031690565b600061052382610bcd565b9050806001600160a01b0316836001600160a01b031614156105605760405162461bcd60e51b81526004016105579061239c565b60405180910390fd5b806001600160a01b031661057261137e565b6001600160a01b0316148061058e575061058e8161043361137e565b6105aa5760405162461bcd60e51b8152600401610557906122da565b6105b48383611382565b505050565b4790565b600b5461ffff1681565b6105e160008051602061268983398151915261039161137e565b806105f457506105f4600061039161137e565b6106105760405162461bcd60e51b815260040161055790612240565b6008546040516370a0823160e01b81526000916201000090046001600160a01b0316906370a0823190610647903090600401611fac565b60206040518083038186803b15801561065f57600080fd5b505afa158015610673573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106979190611efa565b116106b45760405162461bcd60e51b815260040161055790612156565b6008546040516370a0823160e01b815260009161074c91620100009091046001600160a01b0316906370a08231906106f0903090600401611fac565b60206040518083038186803b15801561070857600080fd5b505afa15801561071c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107409190611efa565b600b5461ffff166113f0565b905060015b60085461ffff1681101561085c57600061076a82610bcd565b600a546001600160a01b0382166000908152600960205260409020549192501415610795575061084a565b600a546001600160a01b038083166000908152600960205260409020919091556008546201000090041663a9059cbb826107ce81610c02565b6107d8908761255c565b6040518363ffffffff1660e01b81526004016107f592919061203b565b602060405180830381600087803b15801561080f57600080fd5b505af1158015610823573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108479190611e26565b50505b80610854816125f3565b915050610751565b50600a5461086b906001612530565b600a5550565b60085481906201000090046001600160a01b031663dd62ed3e61089261137e565b306040518363ffffffff1660e01b81526004016108b0929190611fc0565b60206040518083038186803b1580156108c857600080fd5b505afa1580156108dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109009190611efa565b101561091e5760405162461bcd60e51b8152600401610557906124c4565b6008546201000090046001600160a01b03166323b872dd61093d61137e565b30846040518463ffffffff1660e01b815260040161095d93929190611fda565b602060405180830381600087803b15801561097757600080fd5b505af115801561098b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109af9190611e26565b5050565b6109c46109be61137e565b82611403565b6109e05760405162461bcd60e51b815260040161055790612427565b6105b4838383611462565b60009081526007602052604090206001015490565b600b5462010000900460ff1681565b60008051602061268983398151915281565b610a3b60008051602061268983398151915261039161137e565b80610a4e5750610a4e600061039161137e565b610a6a5760405162461bcd60e51b815260040161055790612240565b6109af8282611595565b610a7c61137e565b6001600160a01b0316816001600160a01b031614610aac5760405162461bcd60e51b815260040161055790612475565b6109af828261161c565b610ad060008051602061268983398151915261039161137e565b80610ae35750610ae3600061039161137e565b610aff5760405162461bcd60e51b815260040161055790612240565b47610b1c5760405162461bcd60e51b8152600401610557906123dd565b47610b2561137e565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109af573d6000803e3d6000fd5b6105b483838360405180602001604052806000815250610ded565b610b9260008051602061268983398151915261039161137e565b80610ba55750610ba5600061039161137e565b610bc15760405162461bcd60e51b815260040161055790612240565b610bca816116a1565b50565b6000818152600260205260408120546001600160a01b0316806104565760405162461bcd60e51b815260040161055790612365565b60006001600160a01b038216610c2a5760405162461bcd60e51b815260040161055790612291565b506001600160a01b031660009081526003602052604090205490565b6060610c6260008051602061268983398151915261039161137e565b80610c755750610c75600061039161137e565b610c915760405162461bcd60e51b815260040161055790612240565b8151610ca490600c906020850190611b85565b50600c8054610cb2906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde906125be565b8015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b50505050509050919050565b610d5160008051602061268983398151915261039161137e565b80610d645750610d64600061039161137e565b610d805760405162461bcd60e51b815260040161055790612240565b600b8054911515620100000262ff000019909216919091179055565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461046d906125be565b600081565b6109af610de661137e565b8383611750565b610dfe610df861137e565b83611403565b610e1a5760405162461bcd60e51b815260040161055790612427565b610e26848484846117f3565b50505050565b6060610e3782611826565b610e535760405162461bcd60e51b815260040161055790612212565b8160fa811115610e6c57610e69836102ee612530565b90505b600b5462010000900460ff1615610eb657610e85611843565b610e8e826118f6565b604051602001610e9f929190611f3e565b604051602081830303815290604052915050610459565b610ebe611843565b604051602001610e9f9190611f7d565b50919050565b610eee60008051602061268983398151915261039161137e565b80610f015750610f01600061039161137e565b610aac5760405162461bcd60e51b815260040161055790612240565b60606001600160a01b038216610f3257600080fd5b6000610f3d83610c02565b905060008167ffffffffffffffff811115610f6857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f91578160200160208202803683370190505b50905081610fa25791506104599050565b600060015b600854610fb99061ffff16600161250a565b61ffff1681101561104f57610fcd81611826565b8015610ff25750856001600160a01b0316610fe782610bcd565b6001600160a01b0316145b1561103057808383611003816125f3565b94508151811061102357634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b8382141561103d5761104f565b80611047816125f3565b915050610fa7565b5090949350505050565b61107360008051602061268983398151915261039161137e565b806110865750611086600061039161137e565b6110a25760405162461bcd60e51b815260040161055790612240565b6008546040516370a0823160e01b815282916201000090046001600160a01b0316906370a08231906110d8903090600401611fac565b60206040518083038186803b1580156110f057600080fd5b505afa158015611104573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111289190611efa565b10156111465760405162461bcd60e51b815260040161055790612265565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b03169063a9059cbb9061117d908590859060040161203b565b602060405180830381600087803b15801561119757600080fd5b505af11580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b49190611e26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61121760008051602061268983398151915261039161137e565b8061122a575061122a600061039161137e565b6112465760405162461bcd60e51b815260040161055790612240565b600854604051636eb1769f60e11b815282916201000090046001600160a01b03169063dd62ed3e9061127e9086903090600401611fc0565b60206040518083038186803b15801561129657600080fd5b505afa1580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190611efa565b10156112ec5760405162461bcd60e51b815260040161055790612337565b6008546040516323b872dd60e01b8152620100009091046001600160a01b0316906323b872dd9061117d90859030908690600401611fda565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b1480610456575061045682611a11565b61136281611826565b610bca5760405162461bcd60e51b815260040161055790612365565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b782610bcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fc8284612548565b9392505050565b60008061140f83610bcd565b9050806001600160a01b0316846001600160a01b03161480611436575061143681856111cf565b8061145a5750836001600160a01b031661144f846104f1565b6001600160a01b0316145b949350505050565b826001600160a01b031661147582610bcd565b6001600160a01b03161461149b5760405162461bcd60e51b815260040161055790612111565b6001600160a01b0382166114c15760405162461bcd60e51b815260040161055790612197565b6114cc8383836105b4565b6114d7600082611382565b6001600160a01b038316600090815260036020526040812080546001929061150090849061257b565b90915550506001600160a01b038216600090815260036020526040812080546001929061152e908490612530565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46105b48383836105b4565b61159f8282610d9c565b6109af5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115d861137e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6116268282610d9c565b156109af5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff1916905561165d61137e565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006116ac82610bcd565b90506116ba816000846105b4565b6116c5600083611382565b6001600160a01b03811660009081526003602052604081208054600192906116ee90849061257b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46109af816000846105b4565b816001600160a01b0316836001600160a01b031614156117825760405162461bcd60e51b8152600401610557906121db565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906117e6908590612098565b60405180910390a3505050565b6117fe848484611462565b61180a84848484611a51565b610e265760405162461bcd60e51b8152600401610557906120bf565b6000908152600260205260409020546001600160a01b0316151590565b600b5460609062010000900460ff16156118e957600c8054611864906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054611890906125be565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b505050505090506104ee565b600d8054611864906125be565b60608161191b57506040805180820190915260018152600360fc1b6020820152610459565b8160005b8115611945578061192f816125f3565b915061193e9050600a83612548565b915061191f565b60008167ffffffffffffffff81111561196e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611998576020820181803683370190505b5090505b841561145a576119ad60018361257b565b91506119ba600a8661260e565b6119c5906030612530565b60f81b8183815181106119e857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a0a600a86612548565b945061199c565b60006001600160e01b031982166380ac58cd60e01b1480611a4257506001600160e01b03198216635b5e139f60e01b145b80610456575061045682611b6c565b6000611a65846001600160a01b0316611325565b15611b6157836001600160a01b031663150b7a02611a8161137e565b8786866040518563ffffffff1660e01b8152600401611aa39493929190611ffe565b602060405180830381600087803b158015611abd57600080fd5b505af1925050508015611aed575060408051601f3d908101601f19168201909252611aea91810190611e98565b60015b611b47573d808015611b1b576040519150601f19603f3d011682016040523d82523d6000602084013e611b20565b606091505b508051611b3f5760405162461bcd60e51b8152600401610557906120bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061145a565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611b91906125be565b90600052602060002090601f016020900481019282611bb35760008555611bf9565b82601f10611bcc57805160ff1916838001178555611bf9565b82800160010185558215611bf9579182015b82811115611bf9578251825591602001919060010190611bde565b50611c05929150611c09565b5090565b5b80821115611c055760008155600101611c0a565b600067ffffffffffffffff80841115611c3957611c3961264e565b604051601f8501601f19908116603f01168101908282118183101715611c6157611c6161264e565b81604052809350858152868686011115611c7a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461045957600080fd5b600060208284031215611cbc578081fd5b6113fc82611c94565b60008060408385031215611cd7578081fd5b611ce083611c94565b9150611cee60208401611c94565b90509250929050565b600080600060608486031215611d0b578081fd5b611d1484611c94565b9250611d2260208501611c94565b9150604084013590509250925092565b60008060008060808587031215611d47578081fd5b611d5085611c94565b9350611d5e60208601611c94565b925060408501359150606085013567ffffffffffffffff811115611d80578182fd5b8501601f81018713611d90578182fd5b611d9f87823560208401611c1e565b91505092959194509250565b60008060408385031215611dbd578182fd5b611dc683611c94565b91506020830135611dd681612664565b809150509250929050565b60008060408385031215611df3578182fd5b611dfc83611c94565b946020939093013593505050565b600060208284031215611e1b578081fd5b81356113fc81612664565b600060208284031215611e37578081fd5b81516113fc81612664565b600060208284031215611e53578081fd5b5035919050565b60008060408385031215611e6c578182fd5b82359150611cee60208401611c94565b600060208284031215611e8d578081fd5b81356113fc81612672565b600060208284031215611ea9578081fd5b81516113fc81612672565b600060208284031215611ec5578081fd5b813567ffffffffffffffff811115611edb578182fd5b8201601f81018413611eeb578182fd5b61145a84823560208401611c1e565b600060208284031215611f0b578081fd5b5051919050565b60008151808452611f2a816020860160208601612592565b601f01601f19169290920160200192915050565b60008351611f50818460208801612592565b835190830190611f64818360208801612592565b64173539b7b760d91b9101908152600501949350505050565b60008251611f8f818460208701612592565b6a39bcb6b137b6173539b7b760a91b920191825250600b01919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203190830184611f12565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b8181101561208c57835183529284019291840191600101612070565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526113fc6020830184611f12565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526021908201527f4e6f7420656e6f7567682062616c616e63652c206465706f73697420666972736040820152601d60fa1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252601290820152714e6f7420656e6f7567682062616c616e636560701b604082015260600190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616040820152683634b21037bbb732b960b91b606082015260800190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252601490820152734e6f7420656e6f75676820616c6c6f77616e636560601b604082015260600190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602a908201527f776974686472617746756e64733a206d75737420686176652066756e647320746040820152696f20776974686472617760b01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f4e6f7420616c6c6f77656420666f7220746865207573646320616d6f756e7400604082015260600190565b61ffff91909116815260200190565b600061ffff80831681851680830382111561252757612527612622565b01949350505050565b6000821982111561254357612543612622565b500190565b60008261255757612557612638565b500490565b600081600019048311821515161561257657612576612622565b500290565b60008282101561258d5761258d612622565b500390565b60005b838110156125ad578181015183820152602001612595565b83811115610e265750506000910152565b6002810460018216806125d257607f821691505b60208210811415610ece57634e487b7160e01b600052602260045260246000fd5b600060001982141561260757612607612622565b5060010190565b60008261261d5761261d612638565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610bca57600080fd5b6001600160e01b031981168114610bca57600080fdfedf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42a2646970667358221220d0887ae2f1b988688c3da52aad50f53011fc7e6902c8a4bcc7a5e8881b40a67a64736f6c6343000801003368747470733a2f2f6e666b65797a2e6d7970696e6174612e636c6f75642f697066732f516d59616a5238714546715a775939687148765659335162465a6d65744b38337931573955765238715735476a382f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806342966c681161010f578063a22cb465116100a2578063d8a3073211610071578063d8a30732146103f2578063e58a5e9014610412578063e985e9c514610425578063f67ba77514610438576101f0565b8063a22cb465146103a6578063b88d4fde146103b9578063c87b56dd146103cc578063d547741f146103df576101f0565b806384c99fb4116100de57806384c99fb41461037057806391d148541461038357806395d89b4114610396578063a217fddf1461039e576101f0565b806342966c68146103245780636352211e1461033757806370a082311461034a5780637370b13f1461035d576101f0565b806323b872dd116101875780632f2ff15d116101565780632f2ff15d146102e357806336568abe146102f65780633ccfd60b1461030957806342842e0e14610311576101f0565b806323b872dd146102ad578063248a9ca3146102c0578063263e4f5e146102d35780632a0acc6a146102db576101f0565b806312065fe0116101c357806312065fe01461026857806318160ddd1461027d5780631b814f02146102925780632357928e1461029a576101f0565b806301ffc9a7146101f557806306fdde031461021e578063081812fc14610233578063095ea7b314610253575b600080fd5b610208610203366004611e7c565b61044b565b6040516102159190612098565b60405180910390f35b61022661045e565b60405161021591906120ac565b610246610241366004611e42565b6104f1565b6040516102159190611fac565b610266610261366004611de1565b610518565b005b6102706105b9565b60405161021591906120a3565b6102856105bd565b60405161021591906124fb565b6102666105c7565b6102666102a8366004611e42565b610871565b6102666102bb366004611cf7565b6109b3565b6102706102ce366004611e42565b6109eb565b610208610a00565b610270610a0f565b6102666102f1366004611e5a565b610a21565b610266610304366004611e5a565b610a74565b610266610ab6565b61026661031f366004611cf7565b610b5d565b610266610332366004611e42565b610b78565b610246610345366004611e42565b610bcd565b610270610358366004611cab565b610c02565b61022661036b366004611eb4565b610c46565b61026661037e366004611e0a565b610d37565b610208610391366004611e5a565b610d9c565b610226610dc7565b610270610dd6565b6102666103b4366004611dab565b610ddb565b6102666103c7366004611d32565b610ded565b6102266103da366004611e42565b610e2c565b6102666103ed366004611e5a565b610ed4565b610405610400366004611cab565b610f1d565b6040516102159190612054565b610266610420366004611de1565b611059565b610208610433366004611cc5565b6111cf565b610266610446366004611de1565b6111fd565b600061045682611334565b90505b919050565b60606000805461046d906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610499906125be565b80156104e65780601f106104bb576101008083540402835291602001916104e6565b820191906000526020600020905b8154815290600101906020018083116104c957829003601f168201915b505050505090505b90565b60006104fc82611359565b506000908152600460205260409020546001600160a01b031690565b600061052382610bcd565b9050806001600160a01b0316836001600160a01b031614156105605760405162461bcd60e51b81526004016105579061239c565b60405180910390fd5b806001600160a01b031661057261137e565b6001600160a01b0316148061058e575061058e8161043361137e565b6105aa5760405162461bcd60e51b8152600401610557906122da565b6105b48383611382565b505050565b4790565b600b5461ffff1681565b6105e160008051602061268983398151915261039161137e565b806105f457506105f4600061039161137e565b6106105760405162461bcd60e51b815260040161055790612240565b6008546040516370a0823160e01b81526000916201000090046001600160a01b0316906370a0823190610647903090600401611fac565b60206040518083038186803b15801561065f57600080fd5b505afa158015610673573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106979190611efa565b116106b45760405162461bcd60e51b815260040161055790612156565b6008546040516370a0823160e01b815260009161074c91620100009091046001600160a01b0316906370a08231906106f0903090600401611fac565b60206040518083038186803b15801561070857600080fd5b505afa15801561071c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107409190611efa565b600b5461ffff166113f0565b905060015b60085461ffff1681101561085c57600061076a82610bcd565b600a546001600160a01b0382166000908152600960205260409020549192501415610795575061084a565b600a546001600160a01b038083166000908152600960205260409020919091556008546201000090041663a9059cbb826107ce81610c02565b6107d8908761255c565b6040518363ffffffff1660e01b81526004016107f592919061203b565b602060405180830381600087803b15801561080f57600080fd5b505af1158015610823573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108479190611e26565b50505b80610854816125f3565b915050610751565b50600a5461086b906001612530565b600a5550565b60085481906201000090046001600160a01b031663dd62ed3e61089261137e565b306040518363ffffffff1660e01b81526004016108b0929190611fc0565b60206040518083038186803b1580156108c857600080fd5b505afa1580156108dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109009190611efa565b101561091e5760405162461bcd60e51b8152600401610557906124c4565b6008546201000090046001600160a01b03166323b872dd61093d61137e565b30846040518463ffffffff1660e01b815260040161095d93929190611fda565b602060405180830381600087803b15801561097757600080fd5b505af115801561098b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109af9190611e26565b5050565b6109c46109be61137e565b82611403565b6109e05760405162461bcd60e51b815260040161055790612427565b6105b4838383611462565b60009081526007602052604090206001015490565b600b5462010000900460ff1681565b60008051602061268983398151915281565b610a3b60008051602061268983398151915261039161137e565b80610a4e5750610a4e600061039161137e565b610a6a5760405162461bcd60e51b815260040161055790612240565b6109af8282611595565b610a7c61137e565b6001600160a01b0316816001600160a01b031614610aac5760405162461bcd60e51b815260040161055790612475565b6109af828261161c565b610ad060008051602061268983398151915261039161137e565b80610ae35750610ae3600061039161137e565b610aff5760405162461bcd60e51b815260040161055790612240565b47610b1c5760405162461bcd60e51b8152600401610557906123dd565b47610b2561137e565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109af573d6000803e3d6000fd5b6105b483838360405180602001604052806000815250610ded565b610b9260008051602061268983398151915261039161137e565b80610ba55750610ba5600061039161137e565b610bc15760405162461bcd60e51b815260040161055790612240565b610bca816116a1565b50565b6000818152600260205260408120546001600160a01b0316806104565760405162461bcd60e51b815260040161055790612365565b60006001600160a01b038216610c2a5760405162461bcd60e51b815260040161055790612291565b506001600160a01b031660009081526003602052604090205490565b6060610c6260008051602061268983398151915261039161137e565b80610c755750610c75600061039161137e565b610c915760405162461bcd60e51b815260040161055790612240565b8151610ca490600c906020850190611b85565b50600c8054610cb2906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde906125be565b8015610d2b5780601f10610d0057610100808354040283529160200191610d2b565b820191906000526020600020905b815481529060010190602001808311610d0e57829003601f168201915b50505050509050919050565b610d5160008051602061268983398151915261039161137e565b80610d645750610d64600061039161137e565b610d805760405162461bcd60e51b815260040161055790612240565b600b8054911515620100000262ff000019909216919091179055565b60009182526007602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461046d906125be565b600081565b6109af610de661137e565b8383611750565b610dfe610df861137e565b83611403565b610e1a5760405162461bcd60e51b815260040161055790612427565b610e26848484846117f3565b50505050565b6060610e3782611826565b610e535760405162461bcd60e51b815260040161055790612212565b8160fa811115610e6c57610e69836102ee612530565b90505b600b5462010000900460ff1615610eb657610e85611843565b610e8e826118f6565b604051602001610e9f929190611f3e565b604051602081830303815290604052915050610459565b610ebe611843565b604051602001610e9f9190611f7d565b50919050565b610eee60008051602061268983398151915261039161137e565b80610f015750610f01600061039161137e565b610aac5760405162461bcd60e51b815260040161055790612240565b60606001600160a01b038216610f3257600080fd5b6000610f3d83610c02565b905060008167ffffffffffffffff811115610f6857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f91578160200160208202803683370190505b50905081610fa25791506104599050565b600060015b600854610fb99061ffff16600161250a565b61ffff1681101561104f57610fcd81611826565b8015610ff25750856001600160a01b0316610fe782610bcd565b6001600160a01b0316145b1561103057808383611003816125f3565b94508151811061102357634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b8382141561103d5761104f565b80611047816125f3565b915050610fa7565b5090949350505050565b61107360008051602061268983398151915261039161137e565b806110865750611086600061039161137e565b6110a25760405162461bcd60e51b815260040161055790612240565b6008546040516370a0823160e01b815282916201000090046001600160a01b0316906370a08231906110d8903090600401611fac565b60206040518083038186803b1580156110f057600080fd5b505afa158015611104573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111289190611efa565b10156111465760405162461bcd60e51b815260040161055790612265565b60085460405163a9059cbb60e01b8152620100009091046001600160a01b03169063a9059cbb9061117d908590859060040161203b565b602060405180830381600087803b15801561119757600080fd5b505af11580156111ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105b49190611e26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61121760008051602061268983398151915261039161137e565b8061122a575061122a600061039161137e565b6112465760405162461bcd60e51b815260040161055790612240565b600854604051636eb1769f60e11b815282916201000090046001600160a01b03169063dd62ed3e9061127e9086903090600401611fc0565b60206040518083038186803b15801561129657600080fd5b505afa1580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190611efa565b10156112ec5760405162461bcd60e51b815260040161055790612337565b6008546040516323b872dd60e01b8152620100009091046001600160a01b0316906323b872dd9061117d90859030908690600401611fda565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b1480610456575061045682611a11565b61136281611826565b610bca5760405162461bcd60e51b815260040161055790612365565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113b782610bcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fc8284612548565b9392505050565b60008061140f83610bcd565b9050806001600160a01b0316846001600160a01b03161480611436575061143681856111cf565b8061145a5750836001600160a01b031661144f846104f1565b6001600160a01b0316145b949350505050565b826001600160a01b031661147582610bcd565b6001600160a01b03161461149b5760405162461bcd60e51b815260040161055790612111565b6001600160a01b0382166114c15760405162461bcd60e51b815260040161055790612197565b6114cc8383836105b4565b6114d7600082611382565b6001600160a01b038316600090815260036020526040812080546001929061150090849061257b565b90915550506001600160a01b038216600090815260036020526040812080546001929061152e908490612530565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46105b48383836105b4565b61159f8282610d9c565b6109af5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115d861137e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6116268282610d9c565b156109af5760008281526007602090815260408083206001600160a01b03851684529091529020805460ff1916905561165d61137e565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006116ac82610bcd565b90506116ba816000846105b4565b6116c5600083611382565b6001600160a01b03811660009081526003602052604081208054600192906116ee90849061257b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a46109af816000846105b4565b816001600160a01b0316836001600160a01b031614156117825760405162461bcd60e51b8152600401610557906121db565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906117e6908590612098565b60405180910390a3505050565b6117fe848484611462565b61180a84848484611a51565b610e265760405162461bcd60e51b8152600401610557906120bf565b6000908152600260205260409020546001600160a01b0316151590565b600b5460609062010000900460ff16156118e957600c8054611864906125be565b80601f0160208091040260200160405190810160405280929190818152602001828054611890906125be565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b505050505090506104ee565b600d8054611864906125be565b60608161191b57506040805180820190915260018152600360fc1b6020820152610459565b8160005b8115611945578061192f816125f3565b915061193e9050600a83612548565b915061191f565b60008167ffffffffffffffff81111561196e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611998576020820181803683370190505b5090505b841561145a576119ad60018361257b565b91506119ba600a8661260e565b6119c5906030612530565b60f81b8183815181106119e857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a0a600a86612548565b945061199c565b60006001600160e01b031982166380ac58cd60e01b1480611a4257506001600160e01b03198216635b5e139f60e01b145b80610456575061045682611b6c565b6000611a65846001600160a01b0316611325565b15611b6157836001600160a01b031663150b7a02611a8161137e565b8786866040518563ffffffff1660e01b8152600401611aa39493929190611ffe565b602060405180830381600087803b158015611abd57600080fd5b505af1925050508015611aed575060408051601f3d908101601f19168201909252611aea91810190611e98565b60015b611b47573d808015611b1b576040519150601f19603f3d011682016040523d82523d6000602084013e611b20565b606091505b508051611b3f5760405162461bcd60e51b8152600401610557906120bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061145a565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b828054611b91906125be565b90600052602060002090601f016020900481019282611bb35760008555611bf9565b82601f10611bcc57805160ff1916838001178555611bf9565b82800160010185558215611bf9579182015b82811115611bf9578251825591602001919060010190611bde565b50611c05929150611c09565b5090565b5b80821115611c055760008155600101611c0a565b600067ffffffffffffffff80841115611c3957611c3961264e565b604051601f8501601f19908116603f01168101908282118183101715611c6157611c6161264e565b81604052809350858152868686011115611c7a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461045957600080fd5b600060208284031215611cbc578081fd5b6113fc82611c94565b60008060408385031215611cd7578081fd5b611ce083611c94565b9150611cee60208401611c94565b90509250929050565b600080600060608486031215611d0b578081fd5b611d1484611c94565b9250611d2260208501611c94565b9150604084013590509250925092565b60008060008060808587031215611d47578081fd5b611d5085611c94565b9350611d5e60208601611c94565b925060408501359150606085013567ffffffffffffffff811115611d80578182fd5b8501601f81018713611d90578182fd5b611d9f87823560208401611c1e565b91505092959194509250565b60008060408385031215611dbd578182fd5b611dc683611c94565b91506020830135611dd681612664565b809150509250929050565b60008060408385031215611df3578182fd5b611dfc83611c94565b946020939093013593505050565b600060208284031215611e1b578081fd5b81356113fc81612664565b600060208284031215611e37578081fd5b81516113fc81612664565b600060208284031215611e53578081fd5b5035919050565b60008060408385031215611e6c578182fd5b82359150611cee60208401611c94565b600060208284031215611e8d578081fd5b81356113fc81612672565b600060208284031215611ea9578081fd5b81516113fc81612672565b600060208284031215611ec5578081fd5b813567ffffffffffffffff811115611edb578182fd5b8201601f81018413611eeb578182fd5b61145a84823560208401611c1e565b600060208284031215611f0b578081fd5b5051919050565b60008151808452611f2a816020860160208601612592565b601f01601f19169290920160200192915050565b60008351611f50818460208801612592565b835190830190611f64818360208801612592565b64173539b7b760d91b9101908152600501949350505050565b60008251611f8f818460208701612592565b6a39bcb6b137b6173539b7b760a91b920191825250600b01919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203190830184611f12565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b8181101561208c57835183529284019291840191600101612070565b50909695505050505050565b901515815260200190565b90815260200190565b6000602082526113fc6020830184611f12565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526021908201527f4e6f7420656e6f7567682062616c616e63652c206465706f73697420666972736040820152601d60fa1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260149082015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604082015260600190565b6020808252600b908201526a1b9bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252601290820152714e6f7420656e6f7567682062616c616e636560701b604082015260600190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616040820152683634b21037bbb732b960b91b606082015260800190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252601490820152734e6f7420656e6f75676820616c6c6f77616e636560601b604082015260600190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602a908201527f776974686472617746756e64733a206d75737420686176652066756e647320746040820152696f20776974686472617760b01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f4e6f7420616c6c6f77656420666f7220746865207573646320616d6f756e7400604082015260600190565b61ffff91909116815260200190565b600061ffff80831681851680830382111561252757612527612622565b01949350505050565b6000821982111561254357612543612622565b500190565b60008261255757612557612638565b500490565b600081600019048311821515161561257657612576612622565b500290565b60008282101561258d5761258d612622565b500390565b60005b838110156125ad578181015183820152602001612595565b83811115610e265750506000910152565b6002810460018216806125d257607f821691505b60208210811415610ece57634e487b7160e01b600052602260045260246000fd5b600060001982141561260757612607612622565b5060010190565b60008261261d5761261d612638565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610bca57600080fd5b6001600160e01b031981168114610bca57600080fdfedf8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42a2646970667358221220d0887ae2f1b988688c3da52aad50f53011fc7e6902c8a4bcc7a5e8881b40a67a64736f6c63430008010033
Deployed Bytecode Sourcemap
68187:4912:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69262:176;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55849:100;;;:::i;:::-;;;;;;;:::i;57362:171::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56879:417::-;;;;;;:::i;:::-;;:::i;:::-;;70141:101;;;:::i;:::-;;;;;;;:::i;68554:31::-;;;:::i;:::-;;;;;;;:::i;72010:582::-;;;:::i;71747:255::-;;;;;;:::i;:::-;;:::i;58062:336::-;;;;;;:::i;:::-;;:::i;40968:131::-;;;;;;:::i;:::-;;:::i;68594:32::-;;;:::i;68633:50::-;;;:::i;71279:118::-;;;;;;:::i;:::-;;:::i;42553:218::-;;;;;;:::i;:::-;;:::i;70250:239::-;;;:::i;58469:185::-;;;;;;:::i;:::-;;:::i;71658:81::-;;;;;;:::i;:::-;;:::i;55560:222::-;;;;;;:::i;:::-;;:::i;55291:207::-;;;;;;:::i;:::-;;:::i;70497:169::-;;;;;;:::i;:::-;;:::i;71553:97::-;;;;;;:::i;:::-;;:::i;39428:147::-;;;;;;:::i;:::-;;:::i;56018:104::-;;;:::i;38533:49::-;;;:::i;57605:155::-;;;;;;:::i;:::-;;:::i;58725:323::-;;;;;;:::i;:::-;;:::i;69661:472::-;;;;;;:::i;:::-;;:::i;71405:140::-;;;;;;:::i;:::-;;:::i;70674:597::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72600:238::-;;;;;;:::i;:::-;;:::i;57831:164::-;;;;;;:::i;:::-;;:::i;72846:250::-;;;;;;:::i;:::-;;:::i;69262:176::-;69370:4;69394:36;69418:11;69394:23;:36::i;:::-;69387:43;;69262:176;;;;:::o;55849:100::-;55903:13;55936:5;55929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55849:100;;:::o;57362:171::-;57438:7;57458:23;57473:7;57458:14;:23::i;:::-;-1:-1:-1;57501:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57501:24:0;;57362:171::o;56879:417::-;56960:13;56976:23;56991:7;56976:14;:23::i;:::-;56960:39;;57024:5;-1:-1:-1;;;;;57018:11:0;:2;-1:-1:-1;;;;;57018:11:0;;;57010:57;;;;-1:-1:-1;;;57010:57:0;;;;;;;:::i;:::-;;;;;;;;;57118:5;-1:-1:-1;;;;;57102:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;57102:21:0;;:62;;;;57127:37;57144:5;57151:12;:10;:12::i;57127:37::-;57080:174;;;;-1:-1:-1;;;57080:174:0;;;;;;;:::i;:::-;57267:21;57276:2;57280:7;57267:8;:21::i;:::-;56879:417;;;:::o;70141:101::-;70213:21;70141:101;:::o;68554:31::-;;;;;;:::o;72010:582::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;72075:11:::1;::::0;72068:44:::1;::::0;-1:-1:-1;;;72068:44:0;;72115:1:::1;::::0;72075:11;;::::1;-1:-1:-1::0;;;;;72075:11:0::1;::::0;72068:29:::1;::::0;:44:::1;::::0;72106:4:::1;::::0;72068:44:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;72060:94;;;;-1:-1:-1::0;;;72060:94:0::1;;;;;;;:::i;:::-;72201:11;::::0;72194:44:::1;::::0;-1:-1:-1;;;72194:44:0;;72165:13:::1;::::0;72181:71:::1;::::0;72201:11;;;::::1;-1:-1:-1::0;;;;;72201:11:0::1;::::0;72194:29:::1;::::0;:44:::1;::::0;72232:4:::1;::::0;72194:44:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72240:11;::::0;::::1;;72181:12;:71::i;:::-;72165:87:::0;-1:-1:-1;72281:1:0::1;72265:282;72288:8;::::0;::::1;;72284:12:::0;::::1;72265:282;;;72318:16;72337:10;72345:1;72337:7;:10::i;:::-;72386;::::0;-1:-1:-1;;;;;72365:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;72318:29;;-1:-1:-1;72365:31:0::1;72362:44;;;72398:8;;;72362:44;72443:10;::::0;-1:-1:-1;;;;;72423:17:0;;::::1;;::::0;;;:7:::1;:17;::::0;;;;:30;;;;72475:11:::1;::::0;;;::::1;;72468:28;72431:8:::0;72515:19:::1;72431:8:::0;72515:9:::1;:19::i;:::-;72507:27;::::0;:5;:27:::1;:::i;:::-;72468:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72265:282;;72298:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72265:282;;;-1:-1:-1::0;72570:10:0::1;::::0;:14:::1;::::0;72583:1:::1;72570:14;:::i;:::-;72557:10;:27:::0;-1:-1:-1;72010:582:0:o;71747:255::-;71817:11;;71872:6;;71817:11;;;-1:-1:-1;;;;;71817:11:0;71810:29;71840:12;:10;:12::i;:::-;71862:4;71810:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;;71802:112;;;;-1:-1:-1;;;71802:112:0;;;;;;;:::i;:::-;71932:11;;;;;-1:-1:-1;;;;;71932:11:0;71925:32;71958:12;:10;:12::i;:::-;71980:4;71987:6;71925:69;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71747:255;:::o;58062:336::-;58257:41;58276:12;:10;:12::i;:::-;58290:7;58257:18;:41::i;:::-;58249:100;;;;-1:-1:-1;;;58249:100:0;;;;;;;:::i;:::-;58362:28;58372:4;58378:2;58382:7;58362:9;:28::i;40968:131::-;41042:7;41069:12;;;:6;:12;;;;;:22;;;;40968:131::o;68594:32::-;;;;;;;;;:::o;68633:50::-;-1:-1:-1;;;;;;;;;;;68633:50:0;:::o;71279:118::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;71365:24:::1;71376:5;71383;71365:10;:24::i;42553:218::-:0;42660:12;:10;:12::i;:::-;-1:-1:-1;;;;;42649:23:0;:7;-1:-1:-1;;;;;42649:23:0;;42641:83;;;;-1:-1:-1;;;42641:83:0;;;;;;;:::i;:::-;42737:26;42749:4;42755:7;42737:11;:26::i;70250:239::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;70308:21:::1;70300:81;;;;-1:-1:-1::0;;;70300:81:0::1;;;;;;;:::i;:::-;70410:21;70450:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;70442:30:0::1;:39;70473:7;70442:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;58469:185:::0;58607:39;58624:4;58630:2;58634:7;58607:39;;;;;;;;;;;;:16;:39::i;71658:81::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;71717:14:::1;71723:7;71717:5;:14::i;:::-;71658:81:::0;:::o;55560:222::-;55632:7;55668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;55668:16:0;55703:19;55695:56;;;;-1:-1:-1;;;55695:56:0;;;;;;;:::i;55291:207::-;55363:7;-1:-1:-1;;;;;55391:19:0;;55383:73;;;;-1:-1:-1;;;55383:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;55474:16:0;;;;;:9;:16;;;;;;;55291:207::o;70497:169::-;70577:13;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;70603:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70647:11;70640:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70497:169:::0;;;:::o;71553:97::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;71620:12:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;71620:22:0;;::::1;::::0;;;::::1;::::0;;71553:97::o;39428:147::-;39514:4;39538:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;39538:29:0;;;;;;;;;;;;;;;39428:147::o;56018:104::-;56074:13;56107:7;56100:14;;;;;:::i;38533:49::-;38578:4;38533:49;:::o;57605:155::-;57700:52;57719:12;:10;:12::i;:::-;57733:8;57743;57700:18;:52::i;58725:323::-;58899:41;58918:12;:10;:12::i;:::-;58932:7;58899:18;:41::i;:::-;58891:100;;;;-1:-1:-1;;;58891:100:0;;;;;;;:::i;:::-;59002:38;59016:4;59022:2;59026:7;59035:4;59002:13;:38::i;:::-;58725:323;;;;:::o;69661:472::-;69726:13;69760:16;69768:7;69760;:16::i;:::-;69752:49;;;;-1:-1:-1;;;69752:49:0;;;;;;;:::i;:::-;69831:7;69863:3;69853:13;;69849:41;;;69877:13;:7;69887:3;69877:13;:::i;:::-;69868:22;;69849:41;69907:12;;;;;;;69903:223;;;69967:10;:8;:10::i;:::-;69979:24;69996:6;69979:16;:24::i;:::-;69950:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69936:78;;;;;69903:223;70087:10;:8;:10::i;:::-;70070:43;;;;;;;;:::i;69903:223::-;69661:472;;;;:::o;71405:140::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;70674:597::-;70736:16;-1:-1:-1;;;;;70773:21:0;;70765:30;;;;;;70808:13;70824:18;70834:7;70824:9;:18::i;:::-;70808:34;;70853:28;70898:5;70884:20;;;;;;-1:-1:-1;;;70884:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70884:20:0;-1:-1:-1;70853:51:0;-1:-1:-1;70921:10:0;70917:47;;70953:11;-1:-1:-1;70946:18:0;;-1:-1:-1;70946:18:0;70917:47;70977:11;71020:1;71003:230;71028:8;;:12;;:8;;;:12;:::i;:::-;71023:18;;:1;:18;71003:230;;;71069:10;71077:1;71069:7;:10::i;:::-;:37;;;;;71098:7;-1:-1:-1;;;;;71084:21:0;:10;71092:1;71084:7;:10::i;:::-;-1:-1:-1;;;;;71084:21:0;;71069:37;71065:100;;;71148:1;71127:11;71139:5;;;;:::i;:::-;;;71127:18;;;;;;-1:-1:-1;;;71127:18:0;;;;;;;;;;;;;;:22;;;;;71065:100;71192:5;71185:3;:12;71181:40;;;71216:5;;71181:40;71043:3;;;;:::i;:::-;;;;71003:230;;;-1:-1:-1;71252:11:0;;70674:597;-1:-1:-1;;;;70674:597:0:o;72600:238::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;72701:11:::1;::::0;72694:44:::1;::::0;-1:-1:-1;;;72694:44:0;;72742:6;;72701:11;;::::1;-1:-1:-1::0;;;;;72701:11:0::1;::::0;72694:29:::1;::::0;:44:::1;::::0;72732:4:::1;::::0;72694:44:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;72686:85;;;;-1:-1:-1::0;;;72686:85:0::1;;;;;;;:::i;:::-;72789:11;::::0;72782:48:::1;::::0;-1:-1:-1;;;72782:48:0;;72789:11;;;::::1;-1:-1:-1::0;;;;;72789:11:0::1;::::0;72782:28:::1;::::0;:48:::1;::::0;72811:10;;72823:6;;72782:48:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;57831:164::-:0;-1:-1:-1;;;;;57952:25:0;;;57928:4;57952:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57831:164::o;72846:250::-;68916:28;-1:-1:-1;;;;;;;;;;;68931:12:0;:10;:12::i;68916:28::-;:59;;;-1:-1:-1;68948:27:0;68956:4;68962:12;:10;:12::i;68948:27::-;68907:85;;;;-1:-1:-1;;;68907:85:0;;;;;;;:::i;:::-;72938:11:::1;::::0;72931:50:::1;::::0;-1:-1:-1;;;72931:50:0;;72985:6;;72938:11;;::::1;-1:-1:-1::0;;;;;72938:11:0::1;::::0;72931:29:::1;::::0;:50:::1;::::0;72961:4;;72975::::1;::::0;72931:50:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:60;;72923:93;;;;-1:-1:-1::0;;;72923:93:0::1;;;;;;;:::i;:::-;73034:11;::::0;73027:61:::1;::::0;-1:-1:-1;;;73027:61:0;;73034:11;;;::::1;-1:-1:-1::0;;;;;73034:11:0::1;::::0;73027:32:::1;::::0;:61:::1;::::0;73060:4;;73074::::1;::::0;73081:6;;73027:61:::1;;;:::i;46195:326::-:0;-1:-1:-1;;;;;46490:19:0;;:23;;;46195:326::o;39132:204::-;39217:4;-1:-1:-1;;;;;;39241:47:0;;-1:-1:-1;;;39241:47:0;;:87;;;39292:36;39316:11;39292:23;:36::i;65337:135::-;65419:16;65427:7;65419;:16::i;:::-;65411:53;;;;-1:-1:-1;;;65411:53:0;;;;;;;:::i;33844:98::-;33924:10;33844:98;:::o;64616:174::-;64691:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;64691:29:0;-1:-1:-1;;;;;64691:29:0;;;;;;;;:24;;64745:23;64691:24;64745:14;:23::i;:::-;-1:-1:-1;;;;;64736:46:0;;;;;;;;;;;64616:174;;:::o;21450:98::-;21508:7;21535:5;21539:1;21535;:5;:::i;:::-;21528:12;21450:98;-1:-1:-1;;;21450:98:0:o;60849:264::-;60942:4;60959:13;60975:23;60990:7;60975:14;:23::i;:::-;60959:39;;61028:5;-1:-1:-1;;;;;61017:16:0;:7;-1:-1:-1;;;;;61017:16:0;;:52;;;;61037:32;61054:5;61061:7;61037:16;:32::i;:::-;61017:87;;;;61097:7;-1:-1:-1;;;;;61073:31:0;:20;61085:7;61073:11;:20::i;:::-;-1:-1:-1;;;;;61073:31:0;;61017:87;61009:96;60849:264;-1:-1:-1;;;;60849:264:0:o;63872:625::-;64031:4;-1:-1:-1;;;;;64004:31:0;:23;64019:7;64004:14;:23::i;:::-;-1:-1:-1;;;;;64004:31:0;;63996:81;;;;-1:-1:-1;;;63996:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64096:16:0;;64088:65;;;;-1:-1:-1;;;64088:65:0;;;;;;;:::i;:::-;64166:39;64187:4;64193:2;64197:7;64166:20;:39::i;:::-;64270:29;64287:1;64291:7;64270:8;:29::i;:::-;-1:-1:-1;;;;;64312:15:0;;;;;;:9;:15;;;;;:20;;64331:1;;64312:15;:20;;64331:1;;64312:20;:::i;:::-;;;;-1:-1:-1;;;;;;;64343:13:0;;;;;;:9;:13;;;;;:18;;64360:1;;64343:13;:18;;64360:1;;64343:18;:::i;:::-;;;;-1:-1:-1;;64372:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;64372:21:0;-1:-1:-1;;;;;64372:21:0;;;;;;;;;64411:27;;64372:16;;64411:27;;;;;;;64451:38;64471:4;64477:2;64481:7;64451:19;:38::i;44298:238::-;44382:22;44390:4;44396:7;44382;:22::i;:::-;44377:152;;44421:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;44421:29:0;;;;;;;;;:36;;-1:-1:-1;;44421:36:0;44453:4;44421:36;;;44504:12;:10;:12::i;:::-;-1:-1:-1;;;;;44477:40:0;44495:7;-1:-1:-1;;;;;44477:40:0;44489:4;44477:40;;;;;;;;;;44298:238;;:::o;44716:239::-;44800:22;44808:4;44814:7;44800;:22::i;:::-;44796:152;;;44871:5;44839:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;44839:29:0;;;;;;;;;:37;;-1:-1:-1;;44839:37:0;;;44923:12;:10;:12::i;:::-;-1:-1:-1;;;;;44896:40:0;44914:7;-1:-1:-1;;;;;44896:40:0;44908:4;44896:40;;;;;;;;;;44716:239;;:::o;63115:420::-;63175:13;63191:23;63206:7;63191:14;:23::i;:::-;63175:39;;63227:48;63248:5;63263:1;63267:7;63227:20;:48::i;:::-;63316:29;63333:1;63337:7;63316:8;:29::i;:::-;-1:-1:-1;;;;;63358:16:0;;;;;;:9;:16;;;;;:21;;63378:1;;63358:16;:21;;63378:1;;63358:21;:::i;:::-;;;;-1:-1:-1;;63397:16:0;;;;:7;:16;;;;;;63390:23;;-1:-1:-1;;;;;;63390:23:0;;;63431:36;63405:7;;63397:16;-1:-1:-1;;;;;63431:36:0;;;;;63397:16;;63431:36;63480:47;63500:5;63515:1;63519:7;63480:19;:47::i;64933:315::-;65088:8;-1:-1:-1;;;;;65079:17:0;:5;-1:-1:-1;;;;;65079:17:0;;;65071:55;;;;-1:-1:-1;;;65071:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;65137:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;65137:46:0;;;;;;;65199:41;;;;;65137:46;;65199:41;:::i;:::-;;;;;;;;64933:315;;;:::o;59929:313::-;60085:28;60095:4;60101:2;60105:7;60085:9;:28::i;:::-;60132:47;60155:4;60161:2;60165:7;60174:4;60132:22;:47::i;:::-;60124:110;;;;-1:-1:-1;;;60124:110:0;;;;;;;:::i;60555:127::-;60620:4;60644:16;;;:7;:16;;;;;;-1:-1:-1;;;;;60644:16:0;:30;;;60555:127::o;69446:207::-;69528:12;;69498:13;;69528:12;;;;;69524:122;;;69564:11;69557:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69524:122;69624:10;69617:17;;;;;:::i;34488:723::-;34544:13;34765:10;34761:53;;-1:-1:-1;34792:10:0;;;;;;;;;;;;-1:-1:-1;;;34792:10:0;;;;;;34761:53;34839:5;34824:12;34880:78;34887:9;;34880:78;;34913:8;;;;:::i;:::-;;-1:-1:-1;34936:10:0;;-1:-1:-1;34944:2:0;34936:10;;:::i;:::-;;;34880:78;;;34968:19;35000:6;34990:17;;;;;;-1:-1:-1;;;34990:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34990:17:0;;34968:39;;35018:154;35025:10;;35018:154;;35052:11;35062:1;35052:11;;:::i;:::-;;-1:-1:-1;35121:10:0;35129:2;35121:5;:10;:::i;:::-;35108:24;;:2;:24;:::i;:::-;35095:39;;35078:6;35085;35078:14;;;;;;-1:-1:-1;;;35078:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;35078:56:0;;;;;;;;-1:-1:-1;35149:11:0;35158:2;35149:11;;:::i;:::-;;;35018:154;;54922:305;55024:4;-1:-1:-1;;;;;;55061:40:0;;-1:-1:-1;;;55061:40:0;;:105;;-1:-1:-1;;;;;;;55118:48:0;;-1:-1:-1;;;55118:48:0;55061:105;:158;;;;55183:36;55207:11;55183:23;:36::i;66036:853::-;66190:4;66211:15;:2;-1:-1:-1;;;;;66211:13:0;;:15::i;:::-;66207:675;;;66263:2;-1:-1:-1;;;;;66247:36:0;;66284:12;:10;:12::i;:::-;66298:4;66304:7;66313:4;66247:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66247:71:0;;;;;;;;-1:-1:-1;;66247:71:0;;;;;;;;;;;;:::i;:::-;;;66243:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66488:13:0;;66484:328;;66531:60;;-1:-1:-1;;;66531:60:0;;;;;;;:::i;66484:328::-;66762:6;66756:13;66747:6;66743:2;66739:15;66732:38;66243:584;-1:-1:-1;;;;;;66369:51:0;-1:-1:-1;;;66369:51:0;;-1:-1:-1;66362:58:0;;66207:675;-1:-1:-1;66866:4:0;66036:853;;;;;;:::o;27314:157::-;-1:-1:-1;;;;;;27423:40:0;;-1:-1:-1;;;27423:40:0;27314:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:198;;944:2;932:9;923:7;919:23;915:32;912:2;;;965:6;957;950:22;912:2;993:31;1014:9;993:31;:::i;1035:274::-;;;1164:2;1152:9;1143:7;1139:23;1135:32;1132:2;;;1185:6;1177;1170:22;1132:2;1213:31;1234:9;1213:31;:::i;:::-;1203:41;;1263:40;1299:2;1288:9;1284:18;1263:40;:::i;:::-;1253:50;;1122:187;;;;;:::o;1314:342::-;;;;1460:2;1448:9;1439:7;1435:23;1431:32;1428:2;;;1481:6;1473;1466:22;1428:2;1509:31;1530:9;1509:31;:::i;:::-;1499:41;;1559:40;1595:2;1584:9;1580:18;1559:40;:::i;:::-;1549:50;;1646:2;1635:9;1631:18;1618:32;1608:42;;1418:238;;;;;:::o;1661:702::-;;;;;1833:3;1821:9;1812:7;1808:23;1804:33;1801:2;;;1855:6;1847;1840:22;1801:2;1883:31;1904:9;1883:31;:::i;:::-;1873:41;;1933:40;1969:2;1958:9;1954:18;1933:40;:::i;:::-;1923:50;;2020:2;2009:9;2005:18;1992:32;1982:42;;2075:2;2064:9;2060:18;2047:32;2102:18;2094:6;2091:30;2088:2;;;2139:6;2131;2124:22;2088:2;2167:22;;2220:4;2212:13;;2208:27;-1:-1:-1;2198:2:1;;2254:6;2246;2239:22;2198:2;2282:75;2349:7;2344:2;2331:16;2326:2;2322;2318:11;2282:75;:::i;:::-;2272:85;;;1791:572;;;;;;;:::o;2368:329::-;;;2494:2;2482:9;2473:7;2469:23;2465:32;2462:2;;;2515:6;2507;2500:22;2462:2;2543:31;2564:9;2543:31;:::i;:::-;2533:41;;2624:2;2613:9;2609:18;2596:32;2637:30;2661:5;2637:30;:::i;:::-;2686:5;2676:15;;;2452:245;;;;;:::o;2702:266::-;;;2831:2;2819:9;2810:7;2806:23;2802:32;2799:2;;;2852:6;2844;2837:22;2799:2;2880:31;2901:9;2880:31;:::i;:::-;2870:41;2958:2;2943:18;;;;2930:32;;-1:-1:-1;;;2789:179:1:o;2973:253::-;;3082:2;3070:9;3061:7;3057:23;3053:32;3050:2;;;3103:6;3095;3088:22;3050:2;3147:9;3134:23;3166:30;3190:5;3166:30;:::i;3231:257::-;;3351:2;3339:9;3330:7;3326:23;3322:32;3319:2;;;3372:6;3364;3357:22;3319:2;3409:9;3403:16;3428:30;3452:5;3428:30;:::i;3493:190::-;;3605:2;3593:9;3584:7;3580:23;3576:32;3573:2;;;3626:6;3618;3611:22;3573:2;-1:-1:-1;3654:23:1;;3563:120;-1:-1:-1;3563:120:1:o;3688:266::-;;;3817:2;3805:9;3796:7;3792:23;3788:32;3785:2;;;3838:6;3830;3823:22;3785:2;3879:9;3866:23;3856:33;;3908:40;3944:2;3933:9;3929:18;3908:40;:::i;3959:257::-;;4070:2;4058:9;4049:7;4045:23;4041:32;4038:2;;;4091:6;4083;4076:22;4038:2;4135:9;4122:23;4154:32;4180:5;4154:32;:::i;4221:261::-;;4343:2;4331:9;4322:7;4318:23;4314:32;4311:2;;;4364:6;4356;4349:22;4311:2;4401:9;4395:16;4420:32;4446:5;4420:32;:::i;4487:482::-;;4609:2;4597:9;4588:7;4584:23;4580:32;4577:2;;;4630:6;4622;4615:22;4577:2;4675:9;4662:23;4708:18;4700:6;4697:30;4694:2;;;4745:6;4737;4730:22;4694:2;4773:22;;4826:4;4818:13;;4814:27;-1:-1:-1;4804:2:1;;4860:6;4852;4845:22;4804:2;4888:75;4955:7;4950:2;4937:16;4932:2;4928;4924:11;4888:75;:::i;5169:194::-;;5292:2;5280:9;5271:7;5267:23;5263:32;5260:2;;;5313:6;5305;5298:22;5260:2;-1:-1:-1;5341:16:1;;5250:113;-1:-1:-1;5250:113:1:o;5368:259::-;;5449:5;5443:12;5476:6;5471:3;5464:19;5492:63;5548:6;5541:4;5536:3;5532:14;5525:4;5518:5;5514:16;5492:63;:::i;:::-;5609:2;5588:15;-1:-1:-1;;5584:29:1;5575:39;;;;5616:4;5571:50;;5419:208;-1:-1:-1;;5419:208:1:o;5632:637::-;;5950:6;5944:13;5966:53;6012:6;6007:3;6000:4;5992:6;5988:17;5966:53;:::i;:::-;6082:13;;6041:16;;;;6104:57;6082:13;6041:16;6138:4;6126:17;;6104:57;:::i;:::-;-1:-1:-1;;;6183:20:1;;6212:22;;;6261:1;6250:13;;5920:349;-1:-1:-1;;;;5920:349:1:o;6274:450::-;;6544:6;6538:13;6560:53;6606:6;6601:3;6594:4;6586:6;6582:17;6560:53;:::i;:::-;-1:-1:-1;;;6635:16:1;;6660:28;;;-1:-1:-1;6715:2:1;6704:14;;6514:210;-1:-1:-1;6514:210:1:o;6729:203::-;-1:-1:-1;;;;;6893:32:1;;;;6875:51;;6863:2;6848:18;;6830:102::o;6937:304::-;-1:-1:-1;;;;;7167:15:1;;;7149:34;;7219:15;;7214:2;7199:18;;7192:43;7099:2;7084:18;;7066:175::o;7246:375::-;-1:-1:-1;;;;;7504:15:1;;;7486:34;;7556:15;;;;7551:2;7536:18;;7529:43;7603:2;7588:18;;7581:34;;;;7436:2;7421:18;;7403:218::o;7626:490::-;-1:-1:-1;;;;;7895:15:1;;;7877:34;;7947:15;;7942:2;7927:18;;7920:43;7994:2;7979:18;;7972:34;;;8042:3;8037:2;8022:18;;8015:31;;;7626:490;;8063:47;;8090:19;;8082:6;8063:47;:::i;:::-;8055:55;7829:287;-1:-1:-1;;;;;;7829:287:1:o;8121:274::-;-1:-1:-1;;;;;8313:32:1;;;;8295:51;;8377:2;8362:18;;8355:34;8283:2;8268:18;;8250:145::o;8400:635::-;8571:2;8623:21;;;8693:13;;8596:18;;;8715:22;;;8400:635;;8571:2;8794:15;;;;8768:2;8753:18;;;8400:635;8840:169;8854:6;8851:1;8848:13;8840:169;;;8915:13;;8903:26;;8984:15;;;;8949:12;;;;8876:1;8869:9;8840:169;;;-1:-1:-1;9026:3:1;;8551:484;-1:-1:-1;;;;;;8551:484:1:o;9040:187::-;9205:14;;9198:22;9180:41;;9168:2;9153:18;;9135:92::o;9232:177::-;9378:25;;;9366:2;9351:18;;9333:76::o;9414:221::-;;9563:2;9552:9;9545:21;9583:46;9625:2;9614:9;9610:18;9602:6;9583:46;:::i;9640:414::-;9842:2;9824:21;;;9881:2;9861:18;;;9854:30;9920:34;9915:2;9900:18;;9893:62;-1:-1:-1;;;9986:2:1;9971:18;;9964:48;10044:3;10029:19;;9814:240::o;10059:401::-;10261:2;10243:21;;;10300:2;10280:18;;;10273:30;10339:34;10334:2;10319:18;;10312:62;-1:-1:-1;;;10405:2:1;10390:18;;10383:35;10450:3;10435:19;;10233:227::o;10465:397::-;10667:2;10649:21;;;10706:2;10686:18;;;10679:30;10745:34;10740:2;10725:18;;10718:62;-1:-1:-1;;;10811:2:1;10796:18;;10789:31;10852:3;10837:19;;10639:223::o;10867:400::-;11069:2;11051:21;;;11108:2;11088:18;;;11081:30;11147:34;11142:2;11127:18;;11120:62;-1:-1:-1;;;11213:2:1;11198:18;;11191:34;11257:3;11242:19;;11041:226::o;11272:349::-;11474:2;11456:21;;;11513:2;11493:18;;;11486:30;11552:27;11547:2;11532:18;;11525:55;11612:2;11597:18;;11446:175::o;11626:344::-;11828:2;11810:21;;;11867:2;11847:18;;;11840:30;-1:-1:-1;;;11901:2:1;11886:18;;11879:50;11961:2;11946:18;;11800:170::o;11975:335::-;12177:2;12159:21;;;12216:2;12196:18;;;12189:30;-1:-1:-1;;;12250:2:1;12235:18;;12228:41;12301:2;12286:18;;12149:161::o;12315:342::-;12517:2;12499:21;;;12556:2;12536:18;;;12529:30;-1:-1:-1;;;12590:2:1;12575:18;;12568:48;12648:2;12633:18;;12489:168::o;12662:405::-;12864:2;12846:21;;;12903:2;12883:18;;;12876:30;12942:34;12937:2;12922:18;;12915:62;-1:-1:-1;;;13008:2:1;12993:18;;12986:39;13057:3;13042:19;;12836:231::o;13072:426::-;13274:2;13256:21;;;13313:2;13293:18;;;13286:30;13352:34;13347:2;13332:18;;13325:62;13423:32;13418:2;13403:18;;13396:60;13488:3;13473:19;;13246:252::o;13503:344::-;13705:2;13687:21;;;13744:2;13724:18;;;13717:30;-1:-1:-1;;;13778:2:1;13763:18;;13756:50;13838:2;13823:18;;13677:170::o;13852:348::-;14054:2;14036:21;;;14093:2;14073:18;;;14066:30;14132:26;14127:2;14112:18;;14105:54;14191:2;14176:18;;14026:174::o;14205:397::-;14407:2;14389:21;;;14446:2;14426:18;;;14419:30;14485:34;14480:2;14465:18;;14458:62;-1:-1:-1;;;14551:2:1;14536:18;;14529:31;14592:3;14577:19;;14379:223::o;14607:406::-;14809:2;14791:21;;;14848:2;14828:18;;;14821:30;14887:34;14882:2;14867:18;;14860:62;-1:-1:-1;;;14953:2:1;14938:18;;14931:40;15003:3;14988:19;;14781:232::o;15018:410::-;15220:2;15202:21;;;15259:2;15239:18;;;15232:30;15298:34;15293:2;15278:18;;15271:62;-1:-1:-1;;;15364:2:1;15349:18;;15342:44;15418:3;15403:19;;15192:236::o;15433:411::-;15635:2;15617:21;;;15674:2;15654:18;;;15647:30;15713:34;15708:2;15693:18;;15686:62;-1:-1:-1;;;15779:2:1;15764:18;;15757:45;15834:3;15819:19;;15607:237::o;15849:355::-;16051:2;16033:21;;;16090:2;16070:18;;;16063:30;16129:33;16124:2;16109:18;;16102:61;16195:2;16180:18;;16023:181::o;16209:188::-;16383:6;16371:19;;;;16353:38;;16341:2;16326:18;;16308:89::o;16584:224::-;;16651:6;16684:2;16681:1;16677:10;16714:2;16711:1;16707:10;16745:3;16741:2;16737:12;16732:3;16729:21;16726:2;;;16753:18;;:::i;:::-;16789:13;;16631:177;-1:-1:-1;;;;16631:177:1:o;16813:128::-;;16884:1;16880:6;16877:1;16874:13;16871:2;;;16890:18;;:::i;:::-;-1:-1:-1;16926:9:1;;16861:80::o;16946:120::-;;17012:1;17002:2;;17017:18;;:::i;:::-;-1:-1:-1;17051:9:1;;16992:74::o;17071:168::-;;17177:1;17173;17169:6;17165:14;17162:1;17159:21;17154:1;17147:9;17140:17;17136:45;17133:2;;;17184:18;;:::i;:::-;-1:-1:-1;17224:9:1;;17123:116::o;17244:125::-;;17312:1;17309;17306:8;17303:2;;;17317:18;;:::i;:::-;-1:-1:-1;17354:9:1;;17293:76::o;17374:258::-;17446:1;17456:113;17470:6;17467:1;17464:13;17456:113;;;17546:11;;;17540:18;17527:11;;;17520:39;17492:2;17485:10;17456:113;;;17587:6;17584:1;17581:13;17578:2;;;-1:-1:-1;;17622:1:1;17604:16;;17597:27;17427:205::o;17637:380::-;17722:1;17712:12;;17769:1;17759:12;;;17780:2;;17834:4;17826:6;17822:17;17812:27;;17780:2;17887;17879:6;17876:14;17856:18;17853:38;17850:2;;;17933:10;17928:3;17924:20;17921:1;17914:31;17968:4;17965:1;17958:15;17996:4;17993:1;17986:15;18022:135;;-1:-1:-1;;18082:17:1;;18079:2;;;18102:18;;:::i;:::-;-1:-1:-1;18149:1:1;18138:13;;18069:88::o;18162:112::-;;18220:1;18210:2;;18225:18;;:::i;:::-;-1:-1:-1;18259:9:1;;18200:74::o;18279:127::-;18340:10;18335:3;18331:20;18328:1;18321:31;18371:4;18368:1;18361:15;18395:4;18392:1;18385:15;18411:127;18472:10;18467:3;18463:20;18460:1;18453:31;18503:4;18500:1;18493:15;18527:4;18524:1;18517:15;18543:127;18604:10;18599:3;18595:20;18592:1;18585:31;18635:4;18632:1;18625:15;18659:4;18656:1;18649:15;18675:120;18763:5;18756:13;18749:21;18742:5;18739:32;18729:2;;18785:1;18782;18775:12;18800:133;-1:-1:-1;;;;;;18876:32:1;;18866:43;;18856:2;;18923:1;18920;18913:12
Swarm Source
ipfs://d0887ae2f1b988688c3da52aad50f53011fc7e6902c8a4bcc7a5e8881b40a67a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.