More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 20 from a total of 20 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 16549724 | 1135 days ago | IN | 0 ETH | 0.00093989 | ||||
| Pause | 16549722 | 1135 days ago | IN | 0 ETH | 0.00142927 | ||||
| Mint | 16184423 | 1186 days ago | IN | 0.21 ETH | 0.00158732 | ||||
| Pause | 16184298 | 1186 days ago | IN | 0 ETH | 0.00122707 | ||||
| Transfer From | 16178794 | 1187 days ago | IN | 0 ETH | 0.00133067 | ||||
| Transfer From | 16178787 | 1187 days ago | IN | 0 ETH | 0.00138887 | ||||
| Transfer From | 16178710 | 1187 days ago | IN | 0 ETH | 0.00214262 | ||||
| Transfer From | 16178706 | 1187 days ago | IN | 0 ETH | 0.00203864 | ||||
| Transfer From | 16178700 | 1187 days ago | IN | 0 ETH | 0.00341819 | ||||
| Pause | 16178518 | 1187 days ago | IN | 0 ETH | 0.00098904 | ||||
| Transfer From | 16178155 | 1187 days ago | IN | 0 ETH | 0.00104309 | ||||
| Withdraw | 16177461 | 1187 days ago | IN | 0 ETH | 0.00092902 | ||||
| Mint | 16177427 | 1187 days ago | IN | 0.07 ETH | 0.00266705 | ||||
| Mint | 16177377 | 1187 days ago | IN | 0.42 ETH | 0.00240961 | ||||
| Pause | 16177365 | 1187 days ago | IN | 0 ETH | 0.00061516 | ||||
| Transfer Ownersh... | 16171904 | 1188 days ago | IN | 0 ETH | 0.00046401 | ||||
| Set Max_supply | 16171901 | 1188 days ago | IN | 0 ETH | 0.00052329 | ||||
| Set Price | 16171894 | 1188 days ago | IN | 0 ETH | 0.00044386 | ||||
| Transfer Ownersh... | 16011280 | 1211 days ago | IN | 0 ETH | 0.00035827 | ||||
| Set Base URI | 16006182 | 1211 days ago | IN | 0 ETH | 0.00113907 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ScribsNFT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-11-19
*/
// SPDX-License-Identifier: MIT
// File: contracts/IOperatorFilterRegistry.sol
// Developed by https://transcendnt.io
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function unregister(address addr) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/OperatorFilterer.sol
pragma solidity ^0.8.13;
/**
* @title OperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
*/
abstract contract OperatorFilterer {
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (subscribe) {
OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
OPERATOR_FILTER_REGISTRY.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from == msg.sender) {
_;
return;
}
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
revert OperatorNotAllowed(msg.sender);
}
}
_;
}
modifier onlyAllowedOperatorApproval(address operator) virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
_;
}
}
// File: contracts/DefaultOperatorFilterer.sol
pragma solidity ^0.8.13;
/**
* @title DefaultOperatorFilterer
* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: contracts/Scribs.sol
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
// Developed by https://transcendnt.io
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev 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: erc721a/contracts/IERC721A.sol
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of an ERC721A compliant contract.
*/
interface IERC721A is IERC721, IERC721Metadata {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
error ApproveToCaller();
/**
* The caller cannot approve to the current owner.
*/
error ApprovalToCurrentOwner();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
/**
* @dev Returns the total amount of tokens stored by the contract.
*
* Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
*/
function totalSupply() external view returns (uint256);
}
// File: erc721a/contracts/ERC721A.sol
// ERC721A Contracts v3.3.0
pragma solidity ^0.8.4;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721A {
using Address for address;
using Strings for uint256;
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr) if (curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override virtual{
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_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 {
_transfer(from, to, tokenId);
if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex < end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 quantity) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex < end);
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// 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)
}
}
}
// Developed by https://transcendnt.io
pragma solidity ^0.8.4;
contract ScribsNFT is ERC721A, Ownable, DefaultOperatorFilterer {
uint256 public max_supply = 10000;
uint256 public price = 0.1 ether;
bool public onlyWhitelisted = false;
bool public paused = true;
string public baseURI = "ipfs://replace/";
using Counters for Counters.Counter;
bytes32 public root;
Counters.Counter private _tokenIdCounter;
constructor(bytes32 _root) ERC721A("Scribs NFT", "S") {
root = _root;
}
function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
function WLmint(uint256 quantity, bytes32[] memory proof) external payable {
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
if (msg.sender != owner()) {
require(paused == false, "Mint is paused");
require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "User is not on the whitelist");
require(msg.value >= price * quantity, "Insufficient funds");
}
_safeMint(msg.sender, quantity);
}
function mint(uint256 quantity) external payable {
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
if (msg.sender != owner()) {
require(paused == false, "Mint is paused");
require (onlyWhitelisted == false, "WL only");
require(msg.value >= price * quantity, "Insufficient funds");
}
_safeMint(msg.sender, quantity);
}
function ownerMint(uint256 quantity) external payable {
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
require(msg.sender == owner(), "User is not the owner");
_safeMint(msg.sender, quantity);
}
function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
return MerkleProof.verify(proof, root, leaf);
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function withdraw() external payable onlyOwner {
payable(owner()).transfer(address(this).balance);
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setMax_supply(uint256 _max_supply) public onlyOwner {
max_supply = _max_supply;
}
function setPrice(uint256 _price) public onlyOwner {
price = _price;
}
function setRoot(bytes32 _root) public onlyOwner {
root = _root;
}
function setOnlyWhitelisted(bool _state) public onlyOwner {
onlyWhitelisted = _state;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WLmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setMax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
61271060095567016345785d8a0000600a55600b805461ffff191661010017905560c0604052600f60809081526e697066733a2f2f7265706c6163652f60881b60a052600c9062000051908262000350565b503480156200005f57600080fd5b50604051620028ad380380620028ad83398101604081905262000082916200041c565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020016914d8dc9a589cc813919560b21b815250604051806040016040528060018152602001605360f81b8152508160029081620000e7919062000350565b506003620000f6828262000350565b5050600160005550620001093362000259565b6daaeb6d7670e522a718067333cd4e3b156200024e5780156200019c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017d57600080fd5b505af115801562000192573d6000803e3d6000fd5b505050506200024e565b6001600160a01b03821615620001ed5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000162565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023457600080fd5b505af115801562000249573d6000803e3d6000fd5b505050505b5050600d5562000436565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002d657607f821691505b602082108103620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034b57600081815260208120601f850160051c81016020861015620003265750805b601f850160051c820191505b81811015620003475782815560010162000332565b5050505b505050565b81516001600160401b038111156200036c576200036c620002ab565b62000384816200037d8454620002c1565b84620002fd565b602080601f831160018114620003bc5760008415620003a35750858301515b600019600386901b1c1916600185901b17855562000347565b600085815260208120601f198616915b82811015620003ed57888601518255948401946001909101908401620003cc565b50858210156200040c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200042f57600080fd5b5051919050565b61246780620004466000396000f3fe6080604052600436106102045760003560e01c80638a333b5011610118578063b88d4fde116100a0578063dab5f3401161006f578063dab5f34014610598578063e985e9c5146105b8578063ebf0c71714610601578063f19e75d414610617578063f2fde38b1461062a57600080fd5b8063b88d4fde14610518578063b8a20ed014610538578063c87b56dd14610558578063cd8861791461057857600080fd5b806395d89b41116100e757806395d89b41146104a05780639c70b512146104b5578063a035b1fe146104cf578063a0712d68146104e5578063a22cb465146104f857600080fd5b80638a333b50146104395780638da5cb5b1461044f57806391b7f5ed1461046d57806393c7efbb1461048d57600080fd5b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103b05780636352211e146103cf5780636c0360eb146103ef57806370a0823114610404578063715018a61461042457600080fd5b80633ccfd60b1461034657806341f434341461034e57806342842e0e1461037057806355f804b31461039057600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146103065780633c9527641461032657600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611cdb565b61064a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611d06565b61069c565b005b34801561026c57600080fd5b506102756106e9565b6040516102359190611d73565b34801561028e57600080fd5b506102a261029d366004611d86565b61077b565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611dbb565b6107bf565b3480156102e657600080fd5b506102f8600154600054036000190190565b604051908152602001610235565b34801561031257600080fd5b5061025e610321366004611de5565b610888565b34801561033257600080fd5b5061025e610341366004611d06565b610961565b61025e61099e565b34801561035a57600080fd5b506102a26daaeb6d7670e522a718067333cd4e81565b34801561037c57600080fd5b5061025e61038b366004611de5565b610a04565b34801561039c57600080fd5b5061025e6103ab366004611ebe565b610ad2565b3480156103bc57600080fd5b50600b5461022990610100900460ff1681565b3480156103db57600080fd5b506102a26103ea366004611d86565b610b0c565b3480156103fb57600080fd5b50610275610b1e565b34801561041057600080fd5b506102f861041f366004611f06565b610bac565b34801561043057600080fd5b5061025e610bfa565b34801561044557600080fd5b506102f860095481565b34801561045b57600080fd5b506008546001600160a01b03166102a2565b34801561047957600080fd5b5061025e610488366004611d86565b610c30565b61025e61049b366004611fa0565b610c5f565b3480156104ac57600080fd5b50610275610dde565b3480156104c157600080fd5b50600b546102299060ff1681565b3480156104db57600080fd5b506102f8600a5481565b61025e6104f3366004611d86565b610ded565b34801561050457600080fd5b5061025e610513366004611fe6565b610f1e565b34801561052457600080fd5b5061025e61053336600461201d565b610fe2565b34801561054457600080fd5b50610229610553366004612098565b6110be565b34801561056457600080fd5b50610275610573366004611d86565b6110d4565b34801561058457600080fd5b5061025e610593366004611d86565b611157565b3480156105a457600080fd5b5061025e6105b3366004611d86565b611186565b3480156105c457600080fd5b506102296105d33660046120dc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060d57600080fd5b506102f8600d5481565b61025e610625366004611d86565b6111b5565b34801561063657600080fd5b5061025e610645366004611f06565b611244565b60006001600160e01b031982166380ac58cd60e01b148061067b57506001600160e01b03198216635b5e139f60e01b145b8061069657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106cf5760405162461bcd60e51b81526004016106c69061210f565b60405180910390fd5b600b80549115156101000261ff0019909216919091179055565b6060600280546106f890612144565b80601f016020809104026020016040519081016040528092919081815260200182805461072490612144565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b6000610786826112dc565b6107a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561087957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561082d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610851919061217e565b61087957604051633b79c77360e21b81526001600160a01b03821660048201526024016106c6565b6108838383611315565b505050565b826daaeb6d7670e522a718067333cd4e3b1561095057336001600160a01b038216036108be576108b9848484611396565b61095b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561090d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610931919061217e565b61095057604051633b79c77360e21b81523360048201526024016106c6565b61095b848484611396565b50505050565b6008546001600160a01b0316331461098b5760405162461bcd60e51b81526004016106c69061210f565b600b805460ff1916911515919091179055565b6008546001600160a01b031633146109c85760405162461bcd60e51b81526004016106c69061210f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a01573d6000803e3d6000fd5b50565b826daaeb6d7670e522a718067333cd4e3b15610ac757336001600160a01b03821603610a35576108b98484846113a1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa8919061217e565b610ac757604051633b79c77360e21b81523360048201526024016106c6565b61095b8484846113a1565b6008546001600160a01b03163314610afc5760405162461bcd60e51b81526004016106c69061210f565b600c610b0882826121e9565b5050565b6000610b17826113bc565b5192915050565b600c8054610b2b90612144565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5790612144565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081565b60006001600160a01b038216610bd5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c245760405162461bcd60e51b81526004016106c69061210f565b610c2e60006114de565b565b6008546001600160a01b03163314610c5a5760405162461bcd60e51b81526004016106c69061210f565b600a55565b60095482610c74600154600054036000190190565b610c7e91906122be565b1115610c9c5760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610dd457600b54610100900460ff1615610cf75760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b60448201526064016106c6565b6040516bffffffffffffffffffffffff193360601b166020820152610d36908290603401604051602081830303815290604052805190602001206110be565b610d825760405162461bcd60e51b815260206004820152601c60248201527f55736572206973206e6f74206f6e207468652077686974656c6973740000000060448201526064016106c6565b81600a54610d909190612301565b341015610dd45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016106c6565b610b083383611530565b6060600380546106f890612144565b60095481610e02600154600054036000190190565b610e0c91906122be565b1115610e2a5760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610f1457600b54610100900460ff1615610e855760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b60448201526064016106c6565b600b5460ff1615610ec25760405162461bcd60e51b8152602060048201526007602482015266574c206f6e6c7960c81b60448201526064016106c6565b80600a54610ed09190612301565b341015610f145760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016106c6565b610a013382611530565b816daaeb6d7670e522a718067333cd4e3b15610fd857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb0919061217e565b610fd857604051633b79c77360e21b81526001600160a01b03821660048201526024016106c6565b610883838361154a565b836daaeb6d7670e522a718067333cd4e3b156110ab57336001600160a01b0382160361101957611014858585856115df565b6110b7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108c919061217e565b6110ab57604051633b79c77360e21b81523360048201526024016106c6565b6110b7858585856115df565b5050505050565b60006110cd83600d5484611623565b9392505050565b60606110df826112dc565b6110fc57604051630a14c4b560e41b815260040160405180910390fd5b6000611106611639565b9050805160000361112657604051806020016040528060008152506110cd565b8061113084611648565b604051602001611141929190612318565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146111815760405162461bcd60e51b81526004016106c69061210f565b600955565b6008546001600160a01b031633146111b05760405162461bcd60e51b81526004016106c69061210f565b600d55565b600954816111ca600154600054036000190190565b6111d491906122be565b11156111f25760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610f145760405162461bcd60e51b81526020600482015260156024820152742ab9b2b91034b9903737ba103a34329037bbb732b960591b60448201526064016106c6565b6008546001600160a01b0316331461126e5760405162461bcd60e51b81526004016106c69061210f565b6001600160a01b0381166112d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b610a01816114de565b6000816001111580156112f0575060005482105b8015610696575050600090815260046020526040902054600160e01b900460ff161590565b600061132082610b0c565b9050806001600160a01b0316836001600160a01b0316036113545760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461138b5761136e81336105d3565b61138b576040516367d9dca160e11b815260040160405180910390fd5b610883838383611750565b6108838383836117ac565b61088383838360405180602001604052806000815250610fe2565b604080516060810182526000808252602082018190529181019190915281806001116114c5576000548110156114c557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114c35780516001600160a01b03161561145a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114be579392505050565b61145a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b08828260405180602001604052806000815250611997565b336001600160a01b038316036115735760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ea8484846117ac565b6001600160a01b0383163b1561095b5761160684848484611b5e565b61095b576040516368d2bf6b60e11b815260040160405180910390fd5b6000826116308584611c49565b14949350505050565b6060600c80546106f890612144565b60608160000361166f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611699578061168381612357565b91506116929050600a83612386565b9150611673565b6000816001600160401b038111156116b3576116b3611e21565b6040519080825280601f01601f1916602001820160405280156116dd576020820181803683370190505b5090505b8415611748576116f260018361239a565b91506116ff600a866123ad565b61170a9060306122be565b60f81b81838151811061171f5761171f6123c1565b60200101906001600160f81b031916908160001a905350611741600a86612386565b94506116e1565b949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117b7826113bc565b9050836001600160a01b031681600001516001600160a01b0316146117ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061180c575061180c85336105d3565b8061182757503361181c8461077b565b6001600160a01b0316145b90508061184757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661186e57604051633a954ecd60e21b815260040160405180910390fd5b61187a60008487611750565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661194e57600054821461194e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b7565b6000546001600160a01b0384166119c057604051622e076360e81b815260040160405180910390fd5b826000036119e15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b09575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ad26000878480600101955087611b5e565b611aef576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a87578260005414611b0457600080fd5b611b4e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b0a575b50600090815561095b9085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b939033908990889088906004016123d7565b6020604051808303816000875af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb91810190612414565b60015b611c2c573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051600003611c24576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015611c8e57611c7a82868381518110611c6d57611c6d6123c1565b6020026020010151611c96565b915080611c8681612357565b915050611c4e565b509392505050565b6000818310611cb25760008281526020849052604090206110cd565b60008381526020839052604090206110cd565b6001600160e01b031981168114610a0157600080fd5b600060208284031215611ced57600080fd5b81356110cd81611cc5565b8015158114610a0157600080fd5b600060208284031215611d1857600080fd5b81356110cd81611cf8565b60005b83811015611d3e578181015183820152602001611d26565b50506000910152565b60008151808452611d5f816020860160208601611d23565b601f01601f19169290920160200192915050565b6020815260006110cd6020830184611d47565b600060208284031215611d9857600080fd5b5035919050565b80356001600160a01b0381168114611db657600080fd5b919050565b60008060408385031215611dce57600080fd5b611dd783611d9f565b946020939093013593505050565b600080600060608486031215611dfa57600080fd5b611e0384611d9f565b9250611e1160208501611d9f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611e5f57611e5f611e21565b604052919050565b60006001600160401b03831115611e8057611e80611e21565b611e93601f8401601f1916602001611e37565b9050828152838383011115611ea757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ed057600080fd5b81356001600160401b03811115611ee657600080fd5b8201601f81018413611ef757600080fd5b61174884823560208401611e67565b600060208284031215611f1857600080fd5b6110cd82611d9f565b600082601f830112611f3257600080fd5b813560206001600160401b03821115611f4d57611f4d611e21565b8160051b611f5c828201611e37565b9283528481018201928281019087851115611f7657600080fd5b83870192505b84831015611f9557823582529183019190830190611f7c565b979650505050505050565b60008060408385031215611fb357600080fd5b8235915060208301356001600160401b03811115611fd057600080fd5b611fdc85828601611f21565b9150509250929050565b60008060408385031215611ff957600080fd5b61200283611d9f565b9150602083013561201281611cf8565b809150509250929050565b6000806000806080858703121561203357600080fd5b61203c85611d9f565b935061204a60208601611d9f565b92506040850135915060608501356001600160401b0381111561206c57600080fd5b8501601f8101871361207d57600080fd5b61208c87823560208401611e67565b91505092959194509250565b600080604083850312156120ab57600080fd5b82356001600160401b038111156120c157600080fd5b6120cd85828601611f21565b95602094909401359450505050565b600080604083850312156120ef57600080fd5b6120f883611d9f565b915061210660208401611d9f565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215857607f821691505b60208210810361217857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561219057600080fd5b81516110cd81611cf8565b601f82111561088357600081815260208120601f850160051c810160208610156121c25750805b601f850160051c820191505b818110156121e1578281556001016121ce565b505050505050565b81516001600160401b0381111561220257612202611e21565b612216816122108454612144565b8461219b565b602080601f83116001811461224b57600084156122335750858301515b600019600386901b1c1916600185901b1785556121e1565b600085815260208120601f198616915b8281101561227a5788860151825594840194600190910190840161225b565b50858210156122985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610696576106966122a8565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b8082028115828204841417610696576106966122a8565b6000835161232a818460208801611d23565b83519083019061233e818360208801611d23565b64173539b7b760d91b9101908152600501949350505050565b600060018201612369576123696122a8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261239557612395612370565b500490565b81810381811115610696576106966122a8565b6000826123bc576123bc612370565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240a90830184611d47565b9695505050505050565b60006020828403121561242657600080fd5b81516110cd81611cc556fea26469706673582212207cef5a09ee591b81724e452bb9f50e7c93b7b18ffa53d6f0ccc9ca289064a3ce64736f6c634300081100333947d6a74a22f843e54d7be4a660d005d0bc5385c548fd7c8b9c569a373089f4
Deployed Bytecode
0x6080604052600436106102045760003560e01c80638a333b5011610118578063b88d4fde116100a0578063dab5f3401161006f578063dab5f34014610598578063e985e9c5146105b8578063ebf0c71714610601578063f19e75d414610617578063f2fde38b1461062a57600080fd5b8063b88d4fde14610518578063b8a20ed014610538578063c87b56dd14610558578063cd8861791461057857600080fd5b806395d89b41116100e757806395d89b41146104a05780639c70b512146104b5578063a035b1fe146104cf578063a0712d68146104e5578063a22cb465146104f857600080fd5b80638a333b50146104395780638da5cb5b1461044f57806391b7f5ed1461046d57806393c7efbb1461048d57600080fd5b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103b05780636352211e146103cf5780636c0360eb146103ef57806370a0823114610404578063715018a61461042457600080fd5b80633ccfd60b1461034657806341f434341461034e57806342842e0e1461037057806355f804b31461039057600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806318160ddd146102da57806323b872dd146103065780633c9527641461032657600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611cdb565b61064a565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611d06565b61069c565b005b34801561026c57600080fd5b506102756106e9565b6040516102359190611d73565b34801561028e57600080fd5b506102a261029d366004611d86565b61077b565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611dbb565b6107bf565b3480156102e657600080fd5b506102f8600154600054036000190190565b604051908152602001610235565b34801561031257600080fd5b5061025e610321366004611de5565b610888565b34801561033257600080fd5b5061025e610341366004611d06565b610961565b61025e61099e565b34801561035a57600080fd5b506102a26daaeb6d7670e522a718067333cd4e81565b34801561037c57600080fd5b5061025e61038b366004611de5565b610a04565b34801561039c57600080fd5b5061025e6103ab366004611ebe565b610ad2565b3480156103bc57600080fd5b50600b5461022990610100900460ff1681565b3480156103db57600080fd5b506102a26103ea366004611d86565b610b0c565b3480156103fb57600080fd5b50610275610b1e565b34801561041057600080fd5b506102f861041f366004611f06565b610bac565b34801561043057600080fd5b5061025e610bfa565b34801561044557600080fd5b506102f860095481565b34801561045b57600080fd5b506008546001600160a01b03166102a2565b34801561047957600080fd5b5061025e610488366004611d86565b610c30565b61025e61049b366004611fa0565b610c5f565b3480156104ac57600080fd5b50610275610dde565b3480156104c157600080fd5b50600b546102299060ff1681565b3480156104db57600080fd5b506102f8600a5481565b61025e6104f3366004611d86565b610ded565b34801561050457600080fd5b5061025e610513366004611fe6565b610f1e565b34801561052457600080fd5b5061025e61053336600461201d565b610fe2565b34801561054457600080fd5b50610229610553366004612098565b6110be565b34801561056457600080fd5b50610275610573366004611d86565b6110d4565b34801561058457600080fd5b5061025e610593366004611d86565b611157565b3480156105a457600080fd5b5061025e6105b3366004611d86565b611186565b3480156105c457600080fd5b506102296105d33660046120dc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060d57600080fd5b506102f8600d5481565b61025e610625366004611d86565b6111b5565b34801561063657600080fd5b5061025e610645366004611f06565b611244565b60006001600160e01b031982166380ac58cd60e01b148061067b57506001600160e01b03198216635b5e139f60e01b145b8061069657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106cf5760405162461bcd60e51b81526004016106c69061210f565b60405180910390fd5b600b80549115156101000261ff0019909216919091179055565b6060600280546106f890612144565b80601f016020809104026020016040519081016040528092919081815260200182805461072490612144565b80156107715780601f1061074657610100808354040283529160200191610771565b820191906000526020600020905b81548152906001019060200180831161075457829003601f168201915b5050505050905090565b6000610786826112dc565b6107a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b1561087957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561082d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610851919061217e565b61087957604051633b79c77360e21b81526001600160a01b03821660048201526024016106c6565b6108838383611315565b505050565b826daaeb6d7670e522a718067333cd4e3b1561095057336001600160a01b038216036108be576108b9848484611396565b61095b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561090d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610931919061217e565b61095057604051633b79c77360e21b81523360048201526024016106c6565b61095b848484611396565b50505050565b6008546001600160a01b0316331461098b5760405162461bcd60e51b81526004016106c69061210f565b600b805460ff1916911515919091179055565b6008546001600160a01b031633146109c85760405162461bcd60e51b81526004016106c69061210f565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a01573d6000803e3d6000fd5b50565b826daaeb6d7670e522a718067333cd4e3b15610ac757336001600160a01b03821603610a35576108b98484846113a1565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa8919061217e565b610ac757604051633b79c77360e21b81523360048201526024016106c6565b61095b8484846113a1565b6008546001600160a01b03163314610afc5760405162461bcd60e51b81526004016106c69061210f565b600c610b0882826121e9565b5050565b6000610b17826113bc565b5192915050565b600c8054610b2b90612144565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5790612144565b8015610ba45780601f10610b7957610100808354040283529160200191610ba4565b820191906000526020600020905b815481529060010190602001808311610b8757829003601f168201915b505050505081565b60006001600160a01b038216610bd5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c245760405162461bcd60e51b81526004016106c69061210f565b610c2e60006114de565b565b6008546001600160a01b03163314610c5a5760405162461bcd60e51b81526004016106c69061210f565b600a55565b60095482610c74600154600054036000190190565b610c7e91906122be565b1115610c9c5760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610dd457600b54610100900460ff1615610cf75760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b60448201526064016106c6565b6040516bffffffffffffffffffffffff193360601b166020820152610d36908290603401604051602081830303815290604052805190602001206110be565b610d825760405162461bcd60e51b815260206004820152601c60248201527f55736572206973206e6f74206f6e207468652077686974656c6973740000000060448201526064016106c6565b81600a54610d909190612301565b341015610dd45760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016106c6565b610b083383611530565b6060600380546106f890612144565b60095481610e02600154600054036000190190565b610e0c91906122be565b1115610e2a5760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610f1457600b54610100900460ff1615610e855760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d081a5cc81c185d5cd95960921b60448201526064016106c6565b600b5460ff1615610ec25760405162461bcd60e51b8152602060048201526007602482015266574c206f6e6c7960c81b60448201526064016106c6565b80600a54610ed09190612301565b341015610f145760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016106c6565b610a013382611530565b816daaeb6d7670e522a718067333cd4e3b15610fd857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb0919061217e565b610fd857604051633b79c77360e21b81526001600160a01b03821660048201526024016106c6565b610883838361154a565b836daaeb6d7670e522a718067333cd4e3b156110ab57336001600160a01b0382160361101957611014858585856115df565b6110b7565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611068573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108c919061217e565b6110ab57604051633b79c77360e21b81523360048201526024016106c6565b6110b7858585856115df565b5050505050565b60006110cd83600d5484611623565b9392505050565b60606110df826112dc565b6110fc57604051630a14c4b560e41b815260040160405180910390fd5b6000611106611639565b9050805160000361112657604051806020016040528060008152506110cd565b8061113084611648565b604051602001611141929190612318565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146111815760405162461bcd60e51b81526004016106c69061210f565b600955565b6008546001600160a01b031633146111b05760405162461bcd60e51b81526004016106c69061210f565b600d55565b600954816111ca600154600054036000190190565b6111d491906122be565b11156111f25760405162461bcd60e51b81526004016106c6906122d1565b6008546001600160a01b03163314610f145760405162461bcd60e51b81526020600482015260156024820152742ab9b2b91034b9903737ba103a34329037bbb732b960591b60448201526064016106c6565b6008546001600160a01b0316331461126e5760405162461bcd60e51b81526004016106c69061210f565b6001600160a01b0381166112d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c6565b610a01816114de565b6000816001111580156112f0575060005482105b8015610696575050600090815260046020526040902054600160e01b900460ff161590565b600061132082610b0c565b9050806001600160a01b0316836001600160a01b0316036113545760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461138b5761136e81336105d3565b61138b576040516367d9dca160e11b815260040160405180910390fd5b610883838383611750565b6108838383836117ac565b61088383838360405180602001604052806000815250610fe2565b604080516060810182526000808252602082018190529181019190915281806001116114c5576000548110156114c557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114c35780516001600160a01b03161561145a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114be579392505050565b61145a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b08828260405180602001604052806000815250611997565b336001600160a01b038316036115735760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ea8484846117ac565b6001600160a01b0383163b1561095b5761160684848484611b5e565b61095b576040516368d2bf6b60e11b815260040160405180910390fd5b6000826116308584611c49565b14949350505050565b6060600c80546106f890612144565b60608160000361166f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611699578061168381612357565b91506116929050600a83612386565b9150611673565b6000816001600160401b038111156116b3576116b3611e21565b6040519080825280601f01601f1916602001820160405280156116dd576020820181803683370190505b5090505b8415611748576116f260018361239a565b91506116ff600a866123ad565b61170a9060306122be565b60f81b81838151811061171f5761171f6123c1565b60200101906001600160f81b031916908160001a905350611741600a86612386565b94506116e1565b949350505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117b7826113bc565b9050836001600160a01b031681600001516001600160a01b0316146117ee5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061180c575061180c85336105d3565b8061182757503361181c8461077b565b6001600160a01b0316145b90508061184757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661186e57604051633a954ecd60e21b815260040160405180910390fd5b61187a60008487611750565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661194e57600054821461194e57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b7565b6000546001600160a01b0384166119c057604051622e076360e81b815260040160405180910390fd5b826000036119e15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b09575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ad26000878480600101955087611b5e565b611aef576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a87578260005414611b0457600080fd5b611b4e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b0a575b50600090815561095b9085838684565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b939033908990889088906004016123d7565b6020604051808303816000875af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb91810190612414565b60015b611c2c573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051600003611c24576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081815b8451811015611c8e57611c7a82868381518110611c6d57611c6d6123c1565b6020026020010151611c96565b915080611c8681612357565b915050611c4e565b509392505050565b6000818310611cb25760008281526020849052604090206110cd565b60008381526020839052604090206110cd565b6001600160e01b031981168114610a0157600080fd5b600060208284031215611ced57600080fd5b81356110cd81611cc5565b8015158114610a0157600080fd5b600060208284031215611d1857600080fd5b81356110cd81611cf8565b60005b83811015611d3e578181015183820152602001611d26565b50506000910152565b60008151808452611d5f816020860160208601611d23565b601f01601f19169290920160200192915050565b6020815260006110cd6020830184611d47565b600060208284031215611d9857600080fd5b5035919050565b80356001600160a01b0381168114611db657600080fd5b919050565b60008060408385031215611dce57600080fd5b611dd783611d9f565b946020939093013593505050565b600080600060608486031215611dfa57600080fd5b611e0384611d9f565b9250611e1160208501611d9f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611e5f57611e5f611e21565b604052919050565b60006001600160401b03831115611e8057611e80611e21565b611e93601f8401601f1916602001611e37565b9050828152838383011115611ea757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ed057600080fd5b81356001600160401b03811115611ee657600080fd5b8201601f81018413611ef757600080fd5b61174884823560208401611e67565b600060208284031215611f1857600080fd5b6110cd82611d9f565b600082601f830112611f3257600080fd5b813560206001600160401b03821115611f4d57611f4d611e21565b8160051b611f5c828201611e37565b9283528481018201928281019087851115611f7657600080fd5b83870192505b84831015611f9557823582529183019190830190611f7c565b979650505050505050565b60008060408385031215611fb357600080fd5b8235915060208301356001600160401b03811115611fd057600080fd5b611fdc85828601611f21565b9150509250929050565b60008060408385031215611ff957600080fd5b61200283611d9f565b9150602083013561201281611cf8565b809150509250929050565b6000806000806080858703121561203357600080fd5b61203c85611d9f565b935061204a60208601611d9f565b92506040850135915060608501356001600160401b0381111561206c57600080fd5b8501601f8101871361207d57600080fd5b61208c87823560208401611e67565b91505092959194509250565b600080604083850312156120ab57600080fd5b82356001600160401b038111156120c157600080fd5b6120cd85828601611f21565b95602094909401359450505050565b600080604083850312156120ef57600080fd5b6120f883611d9f565b915061210660208401611d9f565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061215857607f821691505b60208210810361217857634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561219057600080fd5b81516110cd81611cf8565b601f82111561088357600081815260208120601f850160051c810160208610156121c25750805b601f850160051c820191505b818110156121e1578281556001016121ce565b505050505050565b81516001600160401b0381111561220257612202611e21565b612216816122108454612144565b8461219b565b602080601f83116001811461224b57600084156122335750858301515b600019600386901b1c1916600185901b1785556121e1565b600085815260208120601f198616915b8281101561227a5788860151825594840194600190910190840161225b565b50858210156122985787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610696576106966122a8565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b8082028115828204841417610696576106966122a8565b6000835161232a818460208801611d23565b83519083019061233e818360208801611d23565b64173539b7b760d91b9101908152600501949350505050565b600060018201612369576123696122a8565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261239557612395612370565b500490565b81810381811115610696576106966122a8565b6000826123bc576123bc612370565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240a90830184611d47565b9695505050505050565b60006020828403121561242657600080fd5b81516110cd81611cc556fea26469706673582212207cef5a09ee591b81724e452bb9f50e7c93b7b18ffa53d6f0ccc9ca289064a3ce64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
3947d6a74a22f843e54d7be4a660d005d0bc5385c548fd7c8b9c569a373089f4
-----Decoded View---------------
Arg [0] : _root (bytes32): 0x3947d6a74a22f843e54d7be4a660d005d0bc5385c548fd7c8b9c569a373089f4
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 3947d6a74a22f843e54d7be4a660d005d0bc5385c548fd7c8b9c569a373089f4
Deployed Bytecode Sourcemap
63230:3674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34269:305;;;;;;;;;;-1:-1:-1;34269:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34269:305:0;;;;;;;;66087:75;;;;;;;;;;-1:-1:-1;66087:75:0;;;;;:::i;:::-;;:::i;:::-;;37384:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38904:204::-;;;;;;;;;;-1:-1:-1;38904:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;38904:204:0;1902:203:1;63906:157:0;;;;;;;;;;-1:-1:-1;63906:157:0;;;;;:::i;:::-;;:::i;33509:312::-;;;;;;;;;;;;33366:1;33772:12;33562:7;33756:13;:28;-1:-1:-1;;33756:46:0;;33509:312;;;;2693:25:1;;;2681:2;2666:18;33509:312:0;2547:177:1;64071:163:0;;;;;;;;;;-1:-1:-1;64071:163:0;;;;;:::i;:::-;;:::i;66800:101::-;;;;;;;;;;-1:-1:-1;66800:101:0;;;;;:::i;:::-;;:::i;66170:114::-;;;:::i;2960:143::-;;;;;;;;;;;;3060:42;2960:143;;64242:171;;;;;;;;;;-1:-1:-1;64242:171:0;;;;;:::i;:::-;;:::i;66400:100::-;;;;;;;;;;-1:-1:-1;66400:100:0;;;;;:::i;:::-;;:::i;63422:25::-;;;;;;;;;;-1:-1:-1;63422:25:0;;;;;;;;;;;37192:125;;;;;;;;;;-1:-1:-1;37192:125:0;;;;;:::i;:::-;;:::i;63456:41::-;;;;;;;;;;;;;:::i;34638:206::-;;;;;;;;;;-1:-1:-1;34638:206:0;;;;;:::i;:::-;;:::i;10474:103::-;;;;;;;;;;;;;:::i;63301:33::-;;;;;;;;;;;;;;;;9823:87;;;;;;;;;;-1:-1:-1;9896:6:0;;-1:-1:-1;;;;;9896:6:0;9823:87;;66620:84;;;;;;;;;;-1:-1:-1;66620:84:0;;;;;:::i;:::-;;:::i;64657:531::-;;;;;;:::i;:::-;;:::i;37553:104::-;;;;;;;;;;;;;:::i;63380:35::-;;;;;;;;;;-1:-1:-1;63380:35:0;;;;;;;;63341:32;;;;;;;;;;;;;;;;65196:444;;;;;;:::i;:::-;;:::i;63722:176::-;;;;;;;;;;-1:-1:-1;63722:176:0;;;;;:::i;:::-;;:::i;64421:228::-;;;;;;;;;;-1:-1:-1;64421:228:0;;;;;:::i;:::-;;:::i;65923:145::-;;;;;;;;;;-1:-1:-1;65923:145:0;;;;;:::i;:::-;;:::i;37728:327::-;;;;;;;;;;-1:-1:-1;37728:327:0;;;;;:::i;:::-;;:::i;66508:104::-;;;;;;;;;;-1:-1:-1;66508:104:0;;;;;:::i;:::-;;:::i;66712:80::-;;;;;;;;;;-1:-1:-1;66712:80:0;;;;;:::i;:::-;;:::i;39538:164::-;;;;;;;;;;-1:-1:-1;39538:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39659:25:0;;;39635:4;39659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39538:164;63552:19;;;;;;;;;;;;;;;;65652:258;;;;;;:::i;:::-;;:::i;10732:201::-;;;;;;;;;;-1:-1:-1;10732:201:0;;;;;:::i;:::-;;:::i;34269:305::-;34371:4;-1:-1:-1;;;;;;34408:40:0;;-1:-1:-1;;;34408:40:0;;:105;;-1:-1:-1;;;;;;;34465:48:0;;-1:-1:-1;;;34465:48:0;34408:105;:158;;;-1:-1:-1;;;;;;;;;;22739:40:0;;;34530:36;34388:178;34269:305;-1:-1:-1;;34269:305:0:o;66087:75::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;;;;;;;;;66139:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;66139:15:0;;::::1;::::0;;;::::1;::::0;;66087:75::o;37384:100::-;37438:13;37471:5;37464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37384:100;:::o;38904:204::-;38972:7;38997:16;39005:7;38997;:16::i;:::-;38992:64;;39022:34;;-1:-1:-1;;;39022:34:0;;;;;;;;;;;38992:64;-1:-1:-1;39076:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39076:24:0;;38904:204::o;63906:157::-;64002:8;3060:42;4954:45;:49;4950:225;;5025:67;;-1:-1:-1;;;5025:67:0;;5076:4;5025:67;;;8913:34:1;-1:-1:-1;;;;;8983:15:1;;8963:18;;;8956:43;3060:42:0;;5025;;8848:18:1;;5025:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5020:144;;5120:28;;-1:-1:-1;;;5120:28:0;;-1:-1:-1;;;;;2066:32:1;;5120:28:0;;;2048:51:1;2021:18;;5120:28:0;1902:203:1;5020:144:0;64023:32:::1;64037:8;64047:7;64023:13;:32::i;:::-;63906:157:::0;;;:::o;64071:163::-;64172:4;3060:42;4208:45;:49;4204:539;;4497:10;-1:-1:-1;;;;;4489:18:0;;;4485:85;;64189:37:::1;64208:4;64214:2;64218:7;64189:18;:37::i;:::-;4548:7:::0;;4485:85;4589:69;;-1:-1:-1;;;4589:69:0;;4640:4;4589:69;;;8913:34:1;4647:10:0;8963:18:1;;;8956:43;3060:42:0;;4589;;8848:18:1;;4589:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4584:148;;4686:30;;-1:-1:-1;;;4686:30:0;;4705:10;4686:30;;;2048:51:1;2021:18;;4686:30:0;1902:203:1;4584:148:0;64189:37:::1;64208:4;64214:2;64218:7;64189:18;:37::i;:::-;64071:163:::0;;;;:::o;66800:101::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;66869:15:::1;:24:::0;;-1:-1:-1;;66869:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;66800:101::o;66170:114::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;9896:6;;66228:48:::1;::::0;-1:-1:-1;;;;;9896:6:0;;;;66254:21:::1;66228:48:::0;::::1;;;::::0;::::1;::::0;;;66254:21;9896:6;66228:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;66170:114::o:0;64242:171::-;64347:4;3060:42;4208:45;:49;4204:539;;4497:10;-1:-1:-1;;;;;4489:18:0;;;4485:85;;64364:41:::1;64387:4;64393:2;64397:7;64364:22;:41::i;4485:85::-:0;4589:69;;-1:-1:-1;;;4589:69:0;;4640:4;4589:69;;;8913:34:1;4647:10:0;8963:18:1;;;8956:43;3060:42:0;;4589;;8848:18:1;;4589:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4584:148;;4686:30;;-1:-1:-1;;;4686:30:0;;4705:10;4686:30;;;2048:51:1;2021:18;;4686:30:0;1902:203:1;4584:148:0;64364:41:::1;64387:4;64393:2;64397:7;64364:22;:41::i;66400:100::-:0;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;66471:7:::1;:21;66481:11:::0;66471:7;:21:::1;:::i;:::-;;66400:100:::0;:::o;37192:125::-;37256:7;37283:21;37296:7;37283:12;:21::i;:::-;:26;;37192:125;-1:-1:-1;;37192:125:0:o;63456:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34638:206::-;34702:7;-1:-1:-1;;;;;34726:19:0;;34722:60;;34754:28;;-1:-1:-1;;;34754:28:0;;;;;;;;;;;34722:60;-1:-1:-1;;;;;;34808:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34808:27:0;;34638:206::o;10474:103::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;10539:30:::1;10566:1;10539:18;:30::i;:::-;10474:103::o:0;66620:84::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;66682:5:::1;:14:::0;66620:84::o;64657:531::-;64779:10;;64767:8;64751:13;33366:1;33772:12;33562:7;33756:13;:28;-1:-1:-1;;33756:46:0;;33509:312;64751:13;:24;;;;:::i;:::-;:38;;64743:73;;;;-1:-1:-1;;;64743:73:0;;;;;;;:::i;:::-;9896:6;;-1:-1:-1;;;;;9896:6:0;64831:10;:21;64827:308;;64877:6;;;;;;;:15;64869:42;;;;-1:-1:-1;;;64869:42:0;;12279:2:1;64869:42:0;;;12261:21:1;12318:2;12298:18;;;12291:30;-1:-1:-1;;;12337:18:1;;;12330:44;12391:18;;64869:42:0;12077:338:1;64869:42:0;64959:28;;-1:-1:-1;;64976:10:0;12569:2:1;12565:15;12561:53;64959:28:0;;;12549:66:1;64934:55:0;;64942:5;;12631:12:1;;64959:28:0;;;;;;;;;;;;64949:39;;;;;;64934:7;:55::i;:::-;64926:96;;;;-1:-1:-1;;;64926:96:0;;12856:2:1;64926:96:0;;;12838:21:1;12895:2;12875:18;;;12868:30;12934;12914:18;;;12907:58;12982:18;;64926:96:0;12654:352:1;64926:96:0;65066:8;65058:5;;:16;;;;:::i;:::-;65045:9;:29;;65037:60;;;;-1:-1:-1;;;65037:60:0;;13386:2:1;65037:60:0;;;13368:21:1;13425:2;13405:18;;;13398:30;-1:-1:-1;;;13444:18:1;;;13437:48;13502:18;;65037:60:0;13184:342:1;65037:60:0;65145:31;65155:10;65167:8;65145:9;:31::i;37553:104::-;37609:13;37642:7;37635:14;;;;;:::i;65196:444::-;65292:10;;65280:8;65264:13;33366:1;33772:12;33562:7;33756:13;:28;-1:-1:-1;;33756:46:0;;33509:312;65264:13;:24;;;;:::i;:::-;:38;;65256:73;;;;-1:-1:-1;;;65256:73:0;;;;;;;:::i;:::-;9896:6;;-1:-1:-1;;;;;9896:6:0;65344:10;:21;65340:247;;65390:6;;;;;;;:15;65382:42;;;;-1:-1:-1;;;65382:42:0;;12279:2:1;65382:42:0;;;12261:21:1;12318:2;12298:18;;;12291:30;-1:-1:-1;;;12337:18:1;;;12330:44;12391:18;;65382:42:0;12077:338:1;65382:42:0;65448:15;;;;:24;65439:45;;;;-1:-1:-1;;;65439:45:0;;13733:2:1;65439:45:0;;;13715:21:1;13772:1;13752:18;;;13745:29;-1:-1:-1;;;13790:18:1;;;13783:37;13837:18;;65439:45:0;13531:330:1;65439:45:0;65528:8;65520:5;;:16;;;;:::i;:::-;65507:9;:29;;65499:60;;;;-1:-1:-1;;;65499:60:0;;13386:2:1;65499:60:0;;;13368:21:1;13425:2;13405:18;;;13398:30;-1:-1:-1;;;13444:18:1;;;13437:48;13502:18;;65499:60:0;13184:342:1;65499:60:0;65597:31;65607:10;65619:8;65597:9;:31::i;63722:176::-;63826:8;3060:42;4954:45;:49;4950:225;;5025:67;;-1:-1:-1;;;5025:67:0;;5076:4;5025:67;;;8913:34:1;-1:-1:-1;;;;;8983:15:1;;8963:18;;;8956:43;3060:42:0;;5025;;8848:18:1;;5025:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5020:144;;5120:28;;-1:-1:-1;;;5120:28:0;;-1:-1:-1;;;;;2066:32:1;;5120:28:0;;;2048:51:1;2021:18;;5120:28:0;1902:203:1;5020:144:0;63847:43:::1;63871:8;63881;63847:23;:43::i;64421:228::-:0;64572:4;3060:42;4208:45;:49;4204:539;;4497:10;-1:-1:-1;;;;;4489:18:0;;;4485:85;;64594:47:::1;64617:4;64623:2;64627:7;64636:4;64594:22;:47::i;:::-;4548:7:::0;;4485:85;4589:69;;-1:-1:-1;;;4589:69:0;;4640:4;4589:69;;;8913:34:1;4647:10:0;8963:18:1;;;8956:43;3060:42:0;;4589;;8848:18:1;;4589:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4584:148;;4686:30;;-1:-1:-1;;;4686:30:0;;4705:10;4686:30;;;2048:51:1;2021:18;;4686:30:0;1902:203:1;4584:148:0;64594:47:::1;64617:4;64623:2;64627:7;64636:4;64594:22;:47::i;:::-;64421:228:::0;;;;;:::o;65923:145::-;65999:4;66023:37;66042:5;66049:4;;66055;66023:18;:37::i;:::-;66016:44;65923:145;-1:-1:-1;;;65923:145:0:o;37728:327::-;37801:13;37832:16;37840:7;37832;:16::i;:::-;37827:59;;37857:29;;-1:-1:-1;;;37857:29:0;;;;;;;;;;;37827:59;37899:21;37923:10;:8;:10::i;:::-;37899:34;;37957:7;37951:21;37976:1;37951:26;:96;;;;;;;;;;;;;;;;;38004:7;38013:18;:7;:16;:18::i;:::-;37987:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37944:103;37728:327;-1:-1:-1;;;37728:327:0:o;66508:104::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;66580:10:::1;:24:::0;66508:104::o;66712:80::-;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;66772:4:::1;:12:::0;66712:80::o;65652:258::-;65753:10;;65741:8;65725:13;33366:1;33772:12;33562:7;33756:13;:28;-1:-1:-1;;33756:46:0;;33509:312;65725:13;:24;;;;:::i;:::-;:38;;65717:73;;;;-1:-1:-1;;;65717:73:0;;;;;;;:::i;:::-;9896:6;;-1:-1:-1;;;;;9896:6:0;65809:10;:21;65801:55;;;;-1:-1:-1;;;65801:55:0;;14736:2:1;65801:55:0;;;14718:21:1;14775:2;14755:18;;;14748:30;-1:-1:-1;;;14794:18:1;;;14787:51;14855:18;;65801:55:0;14534:345:1;10732:201:0;9896:6;;-1:-1:-1;;;;;9896:6:0;8627:10;10043:23;10035:68;;;;-1:-1:-1;;;10035:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10821:22:0;::::1;10813:73;;;::::0;-1:-1:-1;;;10813:73:0;;15086:2:1;10813:73:0::1;::::0;::::1;15068:21:1::0;15125:2;15105:18;;;15098:30;15164:34;15144:18;;;15137:62;-1:-1:-1;;;15215:18:1;;;15208:36;15261:19;;10813:73:0::1;14884:402:1::0;10813:73:0::1;10897:28;10916:8;10897:18;:28::i;40891:174::-:0;40948:4;40991:7;33366:1;40972:26;;:53;;;;;41012:13;;41002:7;:23;40972:53;:85;;;;-1:-1:-1;;41030:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41030:27:0;;;;41029:28;;40891:174::o;38459:379::-;38539:13;38555:24;38571:7;38555:15;:24::i;:::-;38539:40;;38600:5;-1:-1:-1;;;;;38594:11:0;:2;-1:-1:-1;;;;;38594:11:0;;38590:48;;38614:24;;-1:-1:-1;;;38614:24:0;;;;;;;;;;;38590:48;8627:10;-1:-1:-1;;;;;38655:21:0;;;38651:139;;38682:37;38699:5;8627:10;39538:164;:::i;38682:37::-;38678:112;;38743:35;;-1:-1:-1;;;38743:35:0;;;;;;;;;;;38678:112;38802:28;38811:2;38815:7;38824:5;38802:8;:28::i;39769:170::-;39903:28;39913:4;39919:2;39923:7;39903:9;:28::i;40010:185::-;40148:39;40165:4;40171:2;40175:7;40148:39;;;;;;;;;;;;:16;:39::i;36019:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36130:7:0;;33366:1;36179:23;36175:888;;36215:13;;36208:4;:20;36204:859;;;36249:31;36283:17;;;:11;:17;;;;;;;;;36249:51;;;;;;;;;-1:-1:-1;;;;;36249:51:0;;;;-1:-1:-1;;;36249:51:0;;-1:-1:-1;;;;;36249:51:0;;;;;;;;-1:-1:-1;;;36249:51:0;;;;;;;;;;;;;;36319:729;;36369:14;;-1:-1:-1;;;;;36369:28:0;;36365:101;;36433:9;36019:1111;-1:-1:-1;;;36019:1111:0:o;36365:101::-;-1:-1:-1;;;36808:6:0;36853:17;;;;:11;:17;;;;;;;;;36841:29;;;;;;;;;-1:-1:-1;;;;;36841:29:0;;;;;-1:-1:-1;;;36841:29:0;;-1:-1:-1;;;;;36841:29:0;;;;;;;;-1:-1:-1;;;36841:29:0;;;;;;;;;;;;;36901:28;36897:109;;36969:9;36019:1111;-1:-1:-1;;;36019:1111:0:o;36897:109::-;36768:261;;;36230:833;36204:859;37091:31;;-1:-1:-1;;;37091:31:0;;;;;;;;;;;11093:191;11186:6;;;-1:-1:-1;;;;;11203:17:0;;;-1:-1:-1;;;;;;11203:17:0;;;;;;;11236:40;;11186:6;;;11203:17;11186:6;;11236:40;;11167:16;;11236:40;11156:128;11093:191;:::o;41149:104::-;41218:27;41228:2;41232:8;41218:27;;;;;;;;;;;;:9;:27::i;39180:287::-;8627:10;-1:-1:-1;;;;;39279:24:0;;;39275:54;;39312:17;;-1:-1:-1;;;39312:17:0;;;;;;;;;;;39275:54;8627:10;39342:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39342:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39342:53:0;;;;;;;;;;39411:48;;540:41:1;;;39342:42:0;;8627:10;39411:48;;513:18:1;39411:48:0;;;;;;;39180:287;;:::o;40266:370::-;40433:28;40443:4;40449:2;40453:7;40433:9;:28::i;:::-;-1:-1:-1;;;;;40476:13:0;;12819:19;:23;40472:157;;40497:56;40528:4;40534:2;40538:7;40547:5;40497:30;:56::i;:::-;40493:136;;40577:40;;-1:-1:-1;;;40577:40:0;;;;;;;;;;;55653:190;55778:4;55831;55802:25;55815:5;55822:4;55802:12;:25::i;:::-;:33;;55653:190;-1:-1:-1;;;;55653:190:0:o;66292:100::-;66344:13;66377:7;66370:14;;;;;:::i;6109:723::-;6165:13;6386:5;6395:1;6386:10;6382:53;;-1:-1:-1;;6413:10:0;;;;;;;;;;;;-1:-1:-1;;;6413:10:0;;;;;6109:723::o;6382:53::-;6460:5;6445:12;6501:78;6508:9;;6501:78;;6534:8;;;;:::i;:::-;;-1:-1:-1;6557:10:0;;-1:-1:-1;6565:2:0;6557:10;;:::i;:::-;;;6501:78;;;6589:19;6621:6;-1:-1:-1;;;;;6611:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6611:17:0;;6589:39;;6639:154;6646:10;;6639:154;;6673:11;6683:1;6673:11;;:::i;:::-;;-1:-1:-1;6742:10:0;6750:2;6742:5;:10;:::i;:::-;6729:24;;:2;:24;:::i;:::-;6716:39;;6699:6;6706;6699:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6699:56:0;;;;;;;;-1:-1:-1;6770:11:0;6779:2;6770:11;;:::i;:::-;;;6639:154;;;6817:6;6109:723;-1:-1:-1;;;;6109:723:0:o;50113:196::-;50228:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50228:29:0;-1:-1:-1;;;;;50228:29:0;;;;;;;;;50273:28;;50228:24;;50273:28;;;;;;;50113:196;;;:::o;45061:2130::-;45176:35;45214:21;45227:7;45214:12;:21::i;:::-;45176:59;;45274:4;-1:-1:-1;;;;;45252:26:0;:13;:18;;;-1:-1:-1;;;;;45252:26:0;;45248:67;;45287:28;;-1:-1:-1;;;45287:28:0;;;;;;;;;;;45248:67;45328:22;8627:10;-1:-1:-1;;;;;45354:20:0;;;;:73;;-1:-1:-1;45391:36:0;45408:4;8627:10;39538:164;:::i;45391:36::-;45354:126;;;-1:-1:-1;8627:10:0;45444:20;45456:7;45444:11;:20::i;:::-;-1:-1:-1;;;;;45444:36:0;;45354:126;45328:153;;45499:17;45494:66;;45525:35;;-1:-1:-1;;;45525:35:0;;;;;;;;;;;45494:66;-1:-1:-1;;;;;45575:16:0;;45571:52;;45600:23;;-1:-1:-1;;;45600:23:0;;;;;;;;;;;45571:52;45744:35;45761:1;45765:7;45774:4;45744:8;:35::i;:::-;-1:-1:-1;;;;;46075:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46075:31:0;;;-1:-1:-1;;;;;46075:31:0;;;-1:-1:-1;;46075:31:0;;;;;;;46121:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46121:29:0;;;;;;;;;;;46201:20;;;:11;:20;;;;;;46236:18;;-1:-1:-1;;;;;;46269:49:0;;;;-1:-1:-1;;;46302:15:0;46269:49;;;;;;;;;;46592:11;;46652:24;;;;;46695:13;;46201:20;;46652:24;;46695:13;46691:384;;46905:13;;46890:11;:28;46886:174;;46943:20;;47012:28;;;;-1:-1:-1;;;;;46986:54:0;-1:-1:-1;;;46986:54:0;-1:-1:-1;;;;;;46986:54:0;;;-1:-1:-1;;;;;46943:20:0;;46986:54;;;;46886:174;46050:1036;;;47122:7;47118:2;-1:-1:-1;;;;;47103:27:0;47112:4;-1:-1:-1;;;;;47103:27:0;;;;;;;;;;;47141:42;64071:163;41626:1749;41749:20;41772:13;-1:-1:-1;;;;;41800:16:0;;41796:48;;41825:19;;-1:-1:-1;;;41825:19:0;;;;;;;;;;;41796:48;41859:8;41871:1;41859:13;41855:44;;41881:18;;-1:-1:-1;;;41881:18:0;;;;;;;;;;;41855:44;-1:-1:-1;;;;;42250:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;42309:49:0;;-1:-1:-1;;;;;42250:44:0;;;;;;;42309:49;;;;-1:-1:-1;;42250:44:0;;;;;;42309:49;;;;;;;;;;;;;;;;42375:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42425:66:0;;;-1:-1:-1;;;42475:15:0;42425:66;;;;;;;;;;;;;42375:25;;42572:23;;;;12819:19;:23;42612:631;;42652:313;42683:38;;42708:12;;-1:-1:-1;;;;;42683:38:0;;;42700:1;;42683:38;;42700:1;;42683:38;42749:69;42788:1;42792:2;42796:14;;;;;;42812:5;42749:30;:69::i;:::-;42744:174;;42854:40;;-1:-1:-1;;;42854:40:0;;;;;;;;;;;42744:174;42960:3;42945:12;:18;42652:313;;43046:12;43029:13;;:29;43025:43;;43060:8;;;43025:43;42612:631;;;43109:119;43140:40;;43165:14;;;;;-1:-1:-1;;;;;43140:40:0;;;43157:1;;43140:40;;43157:1;;43140:40;43223:3;43208:12;:18;43109:119;;42612:631;-1:-1:-1;43257:13:0;:28;;;43307:60;;43340:2;43344:12;43358:8;43307:60;:::i;50801:667::-;50985:72;;-1:-1:-1;;;50985:72:0;;50964:4;;-1:-1:-1;;;;;50985:36:0;;;;;:72;;8627:10;;51036:4;;51042:7;;51051:5;;50985:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50985:72:0;;;;;;;;-1:-1:-1;;50985:72:0;;;;;;;;;;;;:::i;:::-;;;50981:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51219:6;:13;51236:1;51219:18;51215:235;;51265:40;;-1:-1:-1;;;51265:40:0;;;;;;;;;;;51215:235;51408:6;51402:13;51393:6;51389:2;51385:15;51378:38;50981:480;-1:-1:-1;;;;;;51104:55:0;-1:-1:-1;;;51104:55:0;;-1:-1:-1;50801:667:0;;;;;;:::o;56520:296::-;56603:7;56646:4;56603:7;56661:118;56685:5;:12;56681:1;:16;56661:118;;;56734:33;56744:12;56758:5;56764:1;56758:8;;;;;;;;:::i;:::-;;;;;;;56734:9;:33::i;:::-;56719:48;-1:-1:-1;56699:3:0;;;;:::i;:::-;;;;56661:118;;;-1:-1:-1;56796:12:0;56520:296;-1:-1:-1;;;56520:296:0:o;62727:149::-;62790:7;62821:1;62817;:5;:51;;62952:13;63046:15;;;63082:4;63075:15;;;63129:4;63113:21;;62817:51;;;62952:13;63046:15;;;63082:4;63075:15;;;63129:4;63113:21;;62825:20;62884:268;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:118::-;678:5;671:13;664:21;657:5;654:32;644:60;;700:1;697;690:12;715:241;771:6;824:2;812:9;803:7;799:23;795:32;792:52;;;840:1;837;830:12;792:52;879:9;866:23;898:28;920:5;898:28;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:173::-;2178:20;;-1:-1:-1;;;;;2227:31:1;;2217:42;;2207:70;;2273:1;2270;2263:12;2207:70;2110:173;;;:::o;2288:254::-;2356:6;2364;2417:2;2405:9;2396:7;2392:23;2388:32;2385:52;;;2433:1;2430;2423:12;2385:52;2456:29;2475:9;2456:29;:::i;:::-;2446:39;2532:2;2517:18;;;;2504:32;;-1:-1:-1;;;2288:254:1:o;2729:328::-;2806:6;2814;2822;2875:2;2863:9;2854:7;2850:23;2846:32;2843:52;;;2891:1;2888;2881:12;2843:52;2914:29;2933:9;2914:29;:::i;:::-;2904:39;;2962:38;2996:2;2985:9;2981:18;2962:38;:::i;:::-;2952:48;;3047:2;3036:9;3032:18;3019:32;3009:42;;2729:328;;;;;:::o;3301:127::-;3362:10;3357:3;3353:20;3350:1;3343:31;3393:4;3390:1;3383:15;3417:4;3414:1;3407:15;3433:275;3504:2;3498:9;3569:2;3550:13;;-1:-1:-1;;3546:27:1;3534:40;;-1:-1:-1;;;;;3589:34:1;;3625:22;;;3586:62;3583:88;;;3651:18;;:::i;:::-;3687:2;3680:22;3433:275;;-1:-1:-1;3433:275:1:o;3713:407::-;3778:5;-1:-1:-1;;;;;3804:6:1;3801:30;3798:56;;;3834:18;;:::i;:::-;3872:57;3917:2;3896:15;;-1:-1:-1;;3892:29:1;3923:4;3888:40;3872:57;:::i;:::-;3863:66;;3952:6;3945:5;3938:21;3992:3;3983:6;3978:3;3974:16;3971:25;3968:45;;;4009:1;4006;3999:12;3968:45;4058:6;4053:3;4046:4;4039:5;4035:16;4022:43;4112:1;4105:4;4096:6;4089:5;4085:18;4081:29;4074:40;3713:407;;;;;:::o;4125:451::-;4194:6;4247:2;4235:9;4226:7;4222:23;4218:32;4215:52;;;4263:1;4260;4253:12;4215:52;4303:9;4290:23;-1:-1:-1;;;;;4328:6:1;4325:30;4322:50;;;4368:1;4365;4358:12;4322:50;4391:22;;4444:4;4436:13;;4432:27;-1:-1:-1;4422:55:1;;4473:1;4470;4463:12;4422:55;4496:74;4562:7;4557:2;4544:16;4539:2;4535;4531:11;4496:74;:::i;4581:186::-;4640:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:52;;;4709:1;4706;4699:12;4661:52;4732:29;4751:9;4732:29;:::i;4772:712::-;4826:5;4879:3;4872:4;4864:6;4860:17;4856:27;4846:55;;4897:1;4894;4887:12;4846:55;4933:6;4920:20;4959:4;-1:-1:-1;;;;;4978:2:1;4975:26;4972:52;;;5004:18;;:::i;:::-;5050:2;5047:1;5043:10;5073:28;5097:2;5093;5089:11;5073:28;:::i;:::-;5135:15;;;5205;;;5201:24;;;5166:12;;;;5237:15;;;5234:35;;;5265:1;5262;5255:12;5234:35;5301:2;5293:6;5289:15;5278:26;;5313:142;5329:6;5324:3;5321:15;5313:142;;;5395:17;;5383:30;;5346:12;;;;5433;;;;5313:142;;;5473:5;4772:712;-1:-1:-1;;;;;;;4772:712:1:o;5489:416::-;5582:6;5590;5643:2;5631:9;5622:7;5618:23;5614:32;5611:52;;;5659:1;5656;5649:12;5611:52;5695:9;5682:23;5672:33;;5756:2;5745:9;5741:18;5728:32;-1:-1:-1;;;;;5775:6:1;5772:30;5769:50;;;5815:1;5812;5805:12;5769:50;5838:61;5891:7;5882:6;5871:9;5867:22;5838:61;:::i;:::-;5828:71;;;5489:416;;;;;:::o;5910:315::-;5975:6;5983;6036:2;6024:9;6015:7;6011:23;6007:32;6004:52;;;6052:1;6049;6042:12;6004:52;6075:29;6094:9;6075:29;:::i;:::-;6065:39;;6154:2;6143:9;6139:18;6126:32;6167:28;6189:5;6167:28;:::i;:::-;6214:5;6204:15;;;5910:315;;;;;:::o;6230:667::-;6325:6;6333;6341;6349;6402:3;6390:9;6381:7;6377:23;6373:33;6370:53;;;6419:1;6416;6409:12;6370:53;6442:29;6461:9;6442:29;:::i;:::-;6432:39;;6490:38;6524:2;6513:9;6509:18;6490:38;:::i;:::-;6480:48;;6575:2;6564:9;6560:18;6547:32;6537:42;;6630:2;6619:9;6615:18;6602:32;-1:-1:-1;;;;;6649:6:1;6646:30;6643:50;;;6689:1;6686;6679:12;6643:50;6712:22;;6765:4;6757:13;;6753:27;-1:-1:-1;6743:55:1;;6794:1;6791;6784:12;6743:55;6817:74;6883:7;6878:2;6865:16;6860:2;6856;6852:11;6817:74;:::i;:::-;6807:84;;;6230:667;;;;;;;:::o;6902:416::-;6995:6;7003;7056:2;7044:9;7035:7;7031:23;7027:32;7024:52;;;7072:1;7069;7062:12;7024:52;7112:9;7099:23;-1:-1:-1;;;;;7137:6:1;7134:30;7131:50;;;7177:1;7174;7167:12;7131:50;7200:61;7253:7;7244:6;7233:9;7229:22;7200:61;:::i;:::-;7190:71;7308:2;7293:18;;;;7280:32;;-1:-1:-1;;;;6902:416:1:o;7508:260::-;7576:6;7584;7637:2;7625:9;7616:7;7612:23;7608:32;7605:52;;;7653:1;7650;7643:12;7605:52;7676:29;7695:9;7676:29;:::i;:::-;7666:39;;7724:38;7758:2;7747:9;7743:18;7724:38;:::i;:::-;7714:48;;7508:260;;;;;:::o;7955:356::-;8157:2;8139:21;;;8176:18;;;8169:30;8235:34;8230:2;8215:18;;8208:62;8302:2;8287:18;;7955:356::o;8316:380::-;8395:1;8391:12;;;;8438;;;8459:61;;8513:4;8505:6;8501:17;8491:27;;8459:61;8566:2;8558:6;8555:14;8535:18;8532:38;8529:161;;8612:10;8607:3;8603:20;8600:1;8593:31;8647:4;8644:1;8637:15;8675:4;8672:1;8665:15;8529:161;;8316:380;;;:::o;9010:245::-;9077:6;9130:2;9118:9;9109:7;9105:23;9101:32;9098:52;;;9146:1;9143;9136:12;9098:52;9178:9;9172:16;9197:28;9219:5;9197:28;:::i;9386:545::-;9488:2;9483:3;9480:11;9477:448;;;9524:1;9549:5;9545:2;9538:17;9594:4;9590:2;9580:19;9664:2;9652:10;9648:19;9645:1;9641:27;9635:4;9631:38;9700:4;9688:10;9685:20;9682:47;;;-1:-1:-1;9723:4:1;9682:47;9778:2;9773:3;9769:12;9766:1;9762:20;9756:4;9752:31;9742:41;;9833:82;9851:2;9844:5;9841:13;9833:82;;;9896:17;;;9877:1;9866:13;9833:82;;;9837:3;;;9386:545;;;:::o;10107:1352::-;10233:3;10227:10;-1:-1:-1;;;;;10252:6:1;10249:30;10246:56;;;10282:18;;:::i;:::-;10311:97;10401:6;10361:38;10393:4;10387:11;10361:38;:::i;:::-;10355:4;10311:97;:::i;:::-;10463:4;;10527:2;10516:14;;10544:1;10539:663;;;;11246:1;11263:6;11260:89;;;-1:-1:-1;11315:19:1;;;11309:26;11260:89;-1:-1:-1;;10064:1:1;10060:11;;;10056:24;10052:29;10042:40;10088:1;10084:11;;;10039:57;11362:81;;10509:944;;10539:663;9333:1;9326:14;;;9370:4;9357:18;;-1:-1:-1;;10575:20:1;;;10693:236;10707:7;10704:1;10701:14;10693:236;;;10796:19;;;10790:26;10775:42;;10888:27;;;;10856:1;10844:14;;;;10723:19;;10693:236;;;10697:3;10957:6;10948:7;10945:19;10942:201;;;11018:19;;;11012:26;-1:-1:-1;;11101:1:1;11097:14;;;11113:3;11093:24;11089:37;11085:42;11070:58;11055:74;;10942:201;-1:-1:-1;;;;;11189:1:1;11173:14;;;11169:22;11156:36;;-1:-1:-1;10107:1352:1:o;11464:127::-;11525:10;11520:3;11516:20;11513:1;11506:31;11556:4;11553:1;11546:15;11580:4;11577:1;11570:15;11596:125;11661:9;;;11682:10;;;11679:36;;;11695:18;;:::i;11726:346::-;11928:2;11910:21;;;11967:2;11947:18;;;11940:30;-1:-1:-1;;;12001:2:1;11986:18;;11979:52;12063:2;12048:18;;11726:346::o;13011:168::-;13084:9;;;13115;;13132:15;;;13126:22;;13112:37;13102:71;;13153:18;;:::i;13866:663::-;14146:3;14184:6;14178:13;14200:66;14259:6;14254:3;14247:4;14239:6;14235:17;14200:66;:::i;:::-;14329:13;;14288:16;;;;14351:70;14329:13;14288:16;14398:4;14386:17;;14351:70;:::i;:::-;-1:-1:-1;;;14443:20:1;;14472:22;;;14521:1;14510:13;;13866:663;-1:-1:-1;;;;13866:663:1:o;15291:135::-;15330:3;15351:17;;;15348:43;;15371:18;;:::i;:::-;-1:-1:-1;15418:1:1;15407:13;;15291:135::o;15431:127::-;15492:10;15487:3;15483:20;15480:1;15473:31;15523:4;15520:1;15513:15;15547:4;15544:1;15537:15;15563:120;15603:1;15629;15619:35;;15634:18;;:::i;:::-;-1:-1:-1;15668:9:1;;15563:120::o;15688:128::-;15755:9;;;15776:11;;;15773:37;;;15790:18;;:::i;15821:112::-;15853:1;15879;15869:35;;15884:18;;:::i;:::-;-1:-1:-1;15918:9:1;;15821:112::o;15938:127::-;15999:10;15994:3;15990:20;15987:1;15980:31;16030:4;16027:1;16020:15;16054:4;16051:1;16044:15;16070:489;-1:-1:-1;;;;;16339:15:1;;;16321:34;;16391:15;;16386:2;16371:18;;16364:43;16438:2;16423:18;;16416:34;;;16486:3;16481:2;16466:18;;16459:31;;;16264:4;;16507:46;;16533:19;;16525:6;16507:46;:::i;:::-;16499:54;16070:489;-1:-1:-1;;;;;;16070:489:1:o;16564:249::-;16633:6;16686:2;16674:9;16665:7;16661:23;16657:32;16654:52;;;16702:1;16699;16692:12;16654:52;16734:9;16728:16;16753:30;16777:5;16753:30;:::i
Swarm Source
ipfs://7cef5a09ee591b81724e452bb9f50e7c93b7b18ffa53d6f0ccc9ca289064a3ce
Loading...
Loading
Loading...
Loading
OVERVIEW
Scribs NFT is a uniquely rendered animated collection of 5555 rotating NFTs built on Ethereum. With over 160 unique traits and 9 background colors, divided amongst 5 levels of rarity and dispersed amongst the entire collection, each Scrib NFT is amazingly distinctive.Our goa...Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.