Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 5 from a total of 5 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Owner Mint | 19534051 | 708 days ago | IN | 0 ETH | 0.00451049 | ||||
| Transfer Ownersh... | 19483724 | 715 days ago | IN | 0 ETH | 0.00085803 | ||||
| Set Base URI | 19482721 | 716 days ago | IN | 0 ETH | 0.00252377 | ||||
| Set Approval For... | 17412904 | 1006 days ago | IN | 0 ETH | 0.00042965 | ||||
| Set Approval For... | 17412810 | 1006 days ago | IN | 0 ETH | 0.00041402 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Register And Sub... | 19482568 | 716 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WreckedCroakers
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-03-21
*/
// File: contracts/lib/Constants.sol
// SPDX-License-Identifier: MIT
// Developed by Leonardo Sousa & Transcendent - https://transcendnt.io
pragma solidity ^0.8.19;
address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
// File: contracts/IOperatorFilterRegistry.sol
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
/**
* @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
* true if supplied registrant address is not registered.
*/
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
/**
* @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
*/
function register(address registrant) external;
/**
* @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
*/
function registerAndSubscribe(address registrant, address subscription) external;
/**
* @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
* address without subscribing.
*/
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
/**
* @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
* Note that this does not remove any filtered addresses or codeHashes.
* Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
*/
function unregister(address addr) external;
/**
* @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
*/
function updateOperator(address registrant, address operator, bool filtered) external;
/**
* @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
*/
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
/**
* @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
*/
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
/**
* @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
*/
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
/**
* @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
* subscription if present.
* Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
* subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
* used.
*/
function subscribe(address registrant, address registrantToSubscribe) external;
/**
* @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
*/
function unsubscribe(address registrant, bool copyExistingEntries) external;
/**
* @notice Get the subscription address of a given registrant, if any.
*/
function subscriptionOf(address addr) external returns (address registrant);
/**
* @notice Get the set of addresses subscribed to a given registrant.
* Note that order is not guaranteed as updates are made.
*/
function subscribers(address registrant) external returns (address[] memory);
/**
* @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
* Note that order is not guaranteed as updates are made.
*/
function subscriberAt(address registrant, uint256 index) external returns (address);
/**
* @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
*/
function copyEntriesOf(address registrant, address registrantToCopy) external;
/**
* @notice Returns true if operator is filtered by a given address or its subscription.
*/
function isOperatorFiltered(address registrant, address operator) external returns (bool);
/**
* @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
*/
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
/**
* @notice Returns true if a codeHash is filtered by a given address or its subscription.
*/
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
/**
* @notice Returns a list of filtered operators for a given address or its subscription.
*/
function filteredOperators(address addr) external returns (address[] memory);
/**
* @notice Returns the set of filtered codeHashes for a given address or its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
/**
* @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
* its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
/**
* @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
* its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
/**
* @notice Returns true if an address has registered
*/
function isRegistered(address addr) external returns (bool);
/**
* @dev Convenience method to compute the code hash of an arbitrary contract
*/
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.
* Please note that if your token contract does not provide an owner with EIP-173, it must provide
* administration methods on the contract itself to interact with the registry otherwise the subscription
* will be locked to the options set during construction.
*/
abstract contract OperatorFilterer {
/// @dev Emitted when an operator is not allowed.
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);
/// @dev The constructor that is called when the contract is being deployed.
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));
}
}
}
}
/**
* @dev A helper function to check if an operator is allowed.
*/
modifier onlyAllowedOperator(address from) virtual {
// 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) {
_checkFilterOperator(msg.sender);
}
_;
}
/**
* @dev A helper function to check if an operator approval is allowed.
*/
modifier onlyAllowedOperatorApproval(address operator) virtual {
_checkFilterOperator(operator);
_;
}
/**
* @dev A helper function to check if an operator is allowed.
*/
function _checkFilterOperator(address operator) internal view virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
// under normal circumstances, this function will revert rather than return false, but inheriting contracts
// may specify their own OperatorFilterRegistry implementations, which may behave differently
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.
* @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide
* administration methods on the contract itself to interact with the registry otherwise the subscription
* will be locked to the options set during construction.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
/// @dev The constructor that is called when the contract is being deployed.
constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}
// File: contracts/FixeArt.sol
/**
*Submitted for verification at Etherscan.io on 2022-09-13
*/
// 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) virtual public override {
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 {}
}
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// 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;
}
}
pragma solidity ^0.8.4;
contract WreckedCroakers is ERC721A, Ownable, DefaultOperatorFilterer {
uint256 max_mints = 33;
uint256 max_mints_tx = 3;
uint256 max_mints_ps = 11;
uint256 max_mints_ps_tx = 2;
uint256 max_supply = 10013;
uint256 max_supply_ps = 333;
uint256 public price = 0.059 ether;
uint256 public presale_price = 0 ether;
bool public presale = true;
bool public paused = true;
string public baseURI = "ipfs://replace/";
using Counters for Counters.Counter;
Counters.Counter private _tokenIdCounter;
constructor() ERC721A("Wrecked Croakers", "WC") {
}
mapping(address => uint256) private _ownedTokenCount;
function presaleMint(uint256 quantity) external payable {
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
if (msg.sender != owner()) {
require(!paused, "Mint is paused");
require(presale == true);
require(quantity + _numberMinted(msg.sender) <= max_mints_ps, "Exceeded the limit");
require(quantity <= max_mints_ps_tx, "Exceeded the limit per transaction");
require(totalSupply() + quantity <= max_supply_ps, "Not enough tokens left");
require(paused == false, "Mint is paused");
require(msg.value >= presale_price * quantity, "Insufficient funds");
}
_safeMint(msg.sender, quantity);
}
function ownerMint(uint256 quantity) external onlyOwner{
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
_safeMint(msg.sender, quantity);
}
function publicMint(uint256 quantity) external payable {
require(totalSupply() + quantity <= max_supply, "Not enough tokens left");
if (msg.sender != owner()) {
require(!paused, "Mint is paused");
require(presale == false);
require(msg.value >= price * quantity, "Insufficient funds");
require(quantity + _numberMinted(msg.sender) <= max_mints, "Exceeded the limit");
require(quantity <= max_mints_tx, "Exceeded the limit per transaction");
}
_safeMint(msg.sender, quantity);
}
function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
require(index < balanceOf(owner), "Owner does not own this token");
for (uint256 i = 0; i < totalSupply(); i++) {
if (_exists(i) && ownerOf(i) == owner) {
if (index == 0) {
return i;
}
index--;
}
}
revert("Token not found");
}
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 setPrice(uint256 _price) public onlyOwner {
price = _price;
}
function setPreSalePrice(uint256 _price) public onlyOwner {
presale_price = _price;
}
function setMax_supply(uint256 _max_supply) public onlyOwner {
max_supply = _max_supply;
}
function setMax_supply_ps(uint256 _max_supply_ps) public onlyOwner {
max_supply_ps = _max_supply_ps;
}
function set_Max_Mints(uint256 _max_mints) public onlyOwner {
max_mints = _max_mints;
}
function set_Max_Mints_tx(uint256 _max_mints) public onlyOwner {
max_mints_tx = _max_mints;
}
function set_Max_Mints_ps(uint256 _max_mints_ps) public onlyOwner {
max_mints_ps = _max_mints_ps;
}
function set_Max_Mints_ps_tx(uint256 _max_mints_ps) public onlyOwner {
max_mints_ps_tx = _max_mints_ps;
}
function setPresale(bool _state) public onlyOwner {
presale = _state;
}
function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
/**
* @dev See {IERC721-approve}.
* In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
*/
function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
/**
* @dev See {IERC721-transferFrom}.
* In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
*/
function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
* In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
* In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"uint256","name":"_max_supply_ps","type":"uint256"}],"name":"setMax_supply_ps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_mints","type":"uint256"}],"name":"set_Max_Mints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_mints_ps","type":"uint256"}],"name":"set_Max_Mints_ps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_mints_ps","type":"uint256"}],"name":"set_Max_Mints_ps_tx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_mints","type":"uint256"}],"name":"set_Max_Mints_tx","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60216009556003600a55600b80556002600c5561271d600d5561014d600e5566d19c2ff9bf8000600f9081555f6010556011805461ffff191661010117905560c060405260809081526e697066733a2f2f7265706c6163652f60881b60a0526012906200006d90826200033a565b503480156200007a575f80fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601081526020016f577265636b65642043726f616b65727360801b81525060405180604001604052806002815260200161574360f01b8152508160029081620000e791906200033a565b506003620000f682826200033a565b505060015f555062000108336200024b565b6daaeb6d7670e522a718067333cd4e3b15620002435780156200019657604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b15801562000179575f80fd5b505af11580156200018c573d5f803e3d5ffd5b5050505062000243565b6001600160a01b03821615620001e75760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000161565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b1580156200022b575f80fd5b505af11580156200023e573d5f803e3d5ffd5b505050505b505062000406565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002c557607f821691505b602082108103620002e457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200033557805f5260205f20601f840160051c81016020851015620003115750805b601f840160051c820191505b8181101562000332575f81556001016200031d565b50505b505050565b81516001600160401b038111156200035657620003566200029c565b6200036e81620003678454620002b0565b84620002ea565b602080601f831160018114620003a4575f84156200038c5750858301515b5f19600386901b1c1916600185901b178555620003fe565b5f85815260208120601f198616915b82811015620003d457888601518255948401946001909101908401620003b3565b5085821015620003f257878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6122bf80620004145f395ff3fe608060405260043610610228575f3560e01c80636c0360eb11610129578063b88d4fde116100a8578063cd8861791161006d578063cd88617914610619578063e985e9c514610638578063f19e75d41461067f578063f2fde38b1461069e578063fdea8e0b146106bd575f80fd5b8063b88d4fde1461058a578063b89d25c7146105a9578063c54e73e3146105c8578063c87b56dd146105e7578063c9b298f114610606575f80fd5b806391b7f5ed116100ee57806391b7f5ed1461050e57806395d89b411461052d578063969745e814610541578063a035b1fe14610556578063a22cb4651461056b575f80fd5b80636c0360eb1461048b57806370a082311461049f578063715018a6146104be5780637d7eee42146104d25780638da5cb5b146104f1575f80fd5b80632db11544116101b557806342842e0e1161017a57806342842e0e146103f157806355f804b31461041057806355ff00461461042f5780635c975abb1461044e5780636352211e1461046c575f80fd5b80632db11544146103775780632f745c591461038a5780633c3a76da146103a95780633ccfd60b146103c857806341f43434146103d0575f80fd5b806308a37654116101fb57806308a37654146102d9578063095ea7b3146102f8578063127666be1461031757806318160ddd1461033657806323b872dd14610358575f80fd5b806301ffc9a71461022c57806302329a291461026057806306fdde0314610281578063081812fc146102a2575b5f80fd5b348015610237575f80fd5b5061024b610246366004611c0f565b6106d6565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027f61027a366004611c37565b610727565b005b34801561028c575f80fd5b50610295610774565b6040516102579190611c9f565b3480156102ad575f80fd5b506102c16102bc366004611cb1565b610804565b6040516001600160a01b039091168152602001610257565b3480156102e4575f80fd5b5061027f6102f3366004611cb1565b610846565b348015610303575f80fd5b5061027f610312366004611ce3565b610875565b348015610322575f80fd5b5061027f610331366004611cb1565b61088e565b348015610341575f80fd5b5061034a6108bd565b604051908152602001610257565b348015610363575f80fd5b5061027f610372366004611d0b565b6108c9565b61027f610385366004611cb1565b6108f4565b348015610395575f80fd5b5061034a6103a4366004611ce3565b610a61565b3480156103b4575f80fd5b5061027f6103c3366004611cb1565b610b5c565b61027f610b8b565b3480156103db575f80fd5b506102c16daaeb6d7670e522a718067333cd4e81565b3480156103fc575f80fd5b5061027f61040b366004611d0b565b610beb565b34801561041b575f80fd5b5061027f61042a366004611dca565b610c10565b34801561043a575f80fd5b5061027f610449366004611cb1565b610c4a565b348015610459575f80fd5b5060115461024b90610100900460ff1681565b348015610477575f80fd5b506102c1610486366004611cb1565b610c79565b348015610496575f80fd5b50610295610c8a565b3480156104aa575f80fd5b5061034a6104b9366004611e0e565b610d16565b3480156104c9575f80fd5b5061027f610d62565b3480156104dd575f80fd5b5061027f6104ec366004611cb1565b610d97565b3480156104fc575f80fd5b506008546001600160a01b03166102c1565b348015610519575f80fd5b5061027f610528366004611cb1565b610dc6565b348015610538575f80fd5b50610295610df5565b34801561054c575f80fd5b5061034a60105481565b348015610561575f80fd5b5061034a600f5481565b348015610576575f80fd5b5061027f610585366004611e27565b610e04565b348015610595575f80fd5b5061027f6105a4366004611e5c565b610e18565b3480156105b4575f80fd5b5061027f6105c3366004611cb1565b610e45565b3480156105d3575f80fd5b5061027f6105e2366004611c37565b610e74565b3480156105f2575f80fd5b50610295610601366004611cb1565b610eb1565b61027f610614366004611cb1565b610f32565b348015610624575f80fd5b5061027f610633366004611cb1565b6110f2565b348015610643575f80fd5b5061024b610652366004611ed2565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561068a575f80fd5b5061027f610699366004611cb1565b611121565b3480156106a9575f80fd5b5061027f6106b8366004611e0e565b61117f565b3480156106c8575f80fd5b5060115461024b9060ff1681565b5f6001600160e01b031982166380ac58cd60e01b148061070657506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461075a5760405162461bcd60e51b815260040161075190611f03565b60405180910390fd5b601180549115156101000261ff0019909216919091179055565b60606002805461078390611f38565b80601f01602080910402602001604051908101604052809291908181526020018280546107af90611f38565b80156107fa5780601f106107d1576101008083540402835291602001916107fa565b820191905f5260205f20905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b5f61080e82611217565b61082b576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108705760405162461bcd60e51b815260040161075190611f03565b600e55565b8161087f8161124d565b6108898383611304565b505050565b6008546001600160a01b031633146108b85760405162461bcd60e51b815260040161075190611f03565b600b55565b6001545f54035f190190565b826001600160a01b03811633146108e3576108e33361124d565b6108ee848484611384565b50505050565b600d54816109006108bd565b61090a9190611f84565b11156109285760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b03163314610a5457601154610100900460ff16156109625760405162461bcd60e51b815260040161075190611fc7565b60115460ff1615610971575f80fd5b80600f5461097f9190611fef565b3410156109c35760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610751565b600954335f90815260056020526040902054600160401b90046001600160401b03166109ef9083611f84565b1115610a325760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610751565b600a54811115610a545760405162461bcd60e51b815260040161075190612006565b610a5e338261138f565b50565b5f610a6b83610d16565b8210610ab95760405162461bcd60e51b815260206004820152601d60248201527f4f776e657220646f6573206e6f74206f776e207468697320746f6b656e0000006044820152606401610751565b5f5b610ac36108bd565b811015610b2157610ad381611217565b8015610af85750836001600160a01b0316610aed82610c79565b6001600160a01b0316145b15610b1957825f03610b0b579050610721565b82610b1581612048565b9350505b600101610abb565b5060405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08199bdd5b99608a1b6044820152606401610751565b6008546001600160a01b03163314610b865760405162461bcd60e51b815260040161075190611f03565b600955565b6008546001600160a01b03163314610bb55760405162461bcd60e51b815260040161075190611f03565b6008546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610a5e573d5f803e3d5ffd5b826001600160a01b0381163314610c0557610c053361124d565b6108ee8484846113a8565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161075190611f03565b6012610c4682826120a1565b5050565b6008546001600160a01b03163314610c745760405162461bcd60e51b815260040161075190611f03565b600c55565b5f610c83826113c2565b5192915050565b60128054610c9790611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390611f38565b8015610d0e5780601f10610ce557610100808354040283529160200191610d0e565b820191905f5260205f20905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b5f6001600160a01b038216610d3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161075190611f03565b610d955f6114df565b565b6008546001600160a01b03163314610dc15760405162461bcd60e51b815260040161075190611f03565b601055565b6008546001600160a01b03163314610df05760405162461bcd60e51b815260040161075190611f03565b600f55565b60606003805461078390611f38565b81610e0e8161124d565b6108898383611530565b836001600160a01b0381163314610e3257610e323361124d565b610e3e858585856115c4565b5050505050565b6008546001600160a01b03163314610e6f5760405162461bcd60e51b815260040161075190611f03565b600a55565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161075190611f03565b6011805460ff1916911515919091179055565b6060610ebc82611217565b610ed957604051630a14c4b560e41b815260040160405180910390fd5b5f610ee2611608565b905080515f03610f005760405180602001604052805f815250610f2b565b80610f0a84611617565b604051602001610f1b929190612160565b6040516020818303038152906040525b9392505050565b600d5481610f3e6108bd565b610f489190611f84565b1115610f665760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b03163314610a5457601154610100900460ff1615610fa05760405162461bcd60e51b815260040161075190611fc7565b60115460ff161515600114610fb3575f80fd5b600b54335f90815260056020526040902054600160401b90046001600160401b0316610fdf9083611f84565b11156110225760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610751565b600c548111156110445760405162461bcd60e51b815260040161075190612006565b600e54816110506108bd565b61105a9190611f84565b11156110785760405162461bcd60e51b815260040161075190611f97565b601154610100900460ff16156110a05760405162461bcd60e51b815260040161075190611fc7565b806010546110ae9190611fef565b341015610a545760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610751565b6008546001600160a01b0316331461111c5760405162461bcd60e51b815260040161075190611f03565b600d55565b6008546001600160a01b0316331461114b5760405162461bcd60e51b815260040161075190611f03565b600d54816111576108bd565b6111619190611f84565b1115610a545760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b031633146111a95760405162461bcd60e51b815260040161075190611f03565b6001600160a01b03811661120e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b610a5e816114df565b5f8160011115801561122957505f5482105b80156107215750505f90815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610a5e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112dc919061219e565b610a5e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610751565b5f61130e82610c79565b9050806001600160a01b0316836001600160a01b0316036113425760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146113795761135c8133610652565b611379576040516367d9dca160e11b815260040160405180910390fd5b61088983838361171b565b610889838383611776565b610c46828260405180602001604052805f81525061195a565b61088983838360405180602001604052805f815250610e18565b604080516060810182525f808252602082018190529181019190915281806001116114c6575f548110156114c6575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114c45780516001600160a01b03161561145d579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114bf579392505050565b61145d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b038316036115595760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115cf848484611776565b6001600160a01b0383163b156108ee576115eb84848484611b13565b6108ee576040516368d2bf6b60e11b815260040160405180910390fd5b60606012805461078390611f38565b6060815f0361163d5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156116665780611650816121b9565b915061165f9050600a836121e5565b9150611640565b5f816001600160401b0381111561167f5761167f611d44565b6040519080825280601f01601f1916602001820160405280156116a9576020820181803683370190505b5090505b8415611713576116be6001836121f8565b91506116cb600a8661220b565b6116d6906030611f84565b60f81b8183815181106116eb576116eb61221e565b60200101906001600160f81b03191690815f1a90535061170c600a866121e5565b94506116ad565b949350505050565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f611780826113c2565b9050836001600160a01b0316815f01516001600160a01b0316146117b65760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806117d357506117d38533610652565b806117ee5750336117e384610804565b6001600160a01b0316145b90508061180e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661183557604051633a954ecd60e21b815260040160405180910390fd5b6118405f848761171b565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611911575f54821461191157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3e565b5f546001600160a01b03841661198257604051622e076360e81b815260040160405180910390fd5b825f036119a25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ac0575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a8b5f878480600101955087611b13565b611aa8576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a4257825f5414611abb575f80fd5b611b04565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ac1575b505f9081556108ee9085838684565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611b47903390899088908890600401612232565b6020604051808303815f875af1925050508015611b81575060408051601f3d908101601f19168201909252611b7e9181019061226e565b60015b611bdd573d808015611bae576040519150601f19603f3d011682016040523d82523d5f602084013e611bb3565b606091505b5080515f03611bd5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610a5e575f80fd5b5f60208284031215611c1f575f80fd5b8135610f2b81611bfa565b8015158114610a5e575f80fd5b5f60208284031215611c47575f80fd5b8135610f2b81611c2a565b5f5b83811015611c6c578181015183820152602001611c54565b50505f910152565b5f8151808452611c8b816020860160208601611c52565b601f01601f19169290920160200192915050565b602081525f610f2b6020830184611c74565b5f60208284031215611cc1575f80fd5b5035919050565b80356001600160a01b0381168114611cde575f80fd5b919050565b5f8060408385031215611cf4575f80fd5b611cfd83611cc8565b946020939093013593505050565b5f805f60608486031215611d1d575f80fd5b611d2684611cc8565b9250611d3460208501611cc8565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f6001600160401b0380841115611d7157611d71611d44565b604051601f8501601f19908116603f01168101908282118183101715611d9957611d99611d44565b81604052809350858152868686011115611db1575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611dda575f80fd5b81356001600160401b03811115611def575f80fd5b8201601f81018413611dff575f80fd5b61171384823560208401611d58565b5f60208284031215611e1e575f80fd5b610f2b82611cc8565b5f8060408385031215611e38575f80fd5b611e4183611cc8565b91506020830135611e5181611c2a565b809150509250929050565b5f805f8060808587031215611e6f575f80fd5b611e7885611cc8565b9350611e8660208601611cc8565b92506040850135915060608501356001600160401b03811115611ea7575f80fd5b8501601f81018713611eb7575f80fd5b611ec687823560208401611d58565b91505092959194509250565b5f8060408385031215611ee3575f80fd5b611eec83611cc8565b9150611efa60208401611cc8565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f4c57607f821691505b602082108103611f6a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072157610721611f70565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252600e908201526d135a5b9d081a5cc81c185d5cd95960921b604082015260600190565b808202811582820484141761072157610721611f70565b60208082526022908201527f457863656564656420746865206c696d697420706572207472616e736163746960408201526137b760f11b606082015260800190565b5f8161205657612056611f70565b505f190190565b601f82111561088957805f5260205f20601f840160051c810160208510156120825750805b601f840160051c820191505b81811015610e3e575f815560010161208e565b81516001600160401b038111156120ba576120ba611d44565b6120ce816120c88454611f38565b8461205d565b602080601f831160018114612101575f84156120ea5750858301515b5f19600386901b1c1916600185901b178555612158565b5f85815260208120601f198616915b8281101561212f57888601518255948401946001909101908401612110565b508582101561214c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8351612171818460208801611c52565b835190830190612185818360208801611c52565b64173539b7b760d91b9101908152600501949350505050565b5f602082840312156121ae575f80fd5b8151610f2b81611c2a565b5f600182016121ca576121ca611f70565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826121f3576121f36121d1565b500490565b8181038181111561072157610721611f70565b5f82612219576122196121d1565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061226490830184611c74565b9695505050505050565b5f6020828403121561227e575f80fd5b8151610f2b81611bfa56fea26469706673582212205b411f5b99aa85a905bf238cafb39f9528072f6cb0685efc20d34a68600cfe5e64736f6c63430008180033
Deployed Bytecode
0x608060405260043610610228575f3560e01c80636c0360eb11610129578063b88d4fde116100a8578063cd8861791161006d578063cd88617914610619578063e985e9c514610638578063f19e75d41461067f578063f2fde38b1461069e578063fdea8e0b146106bd575f80fd5b8063b88d4fde1461058a578063b89d25c7146105a9578063c54e73e3146105c8578063c87b56dd146105e7578063c9b298f114610606575f80fd5b806391b7f5ed116100ee57806391b7f5ed1461050e57806395d89b411461052d578063969745e814610541578063a035b1fe14610556578063a22cb4651461056b575f80fd5b80636c0360eb1461048b57806370a082311461049f578063715018a6146104be5780637d7eee42146104d25780638da5cb5b146104f1575f80fd5b80632db11544116101b557806342842e0e1161017a57806342842e0e146103f157806355f804b31461041057806355ff00461461042f5780635c975abb1461044e5780636352211e1461046c575f80fd5b80632db11544146103775780632f745c591461038a5780633c3a76da146103a95780633ccfd60b146103c857806341f43434146103d0575f80fd5b806308a37654116101fb57806308a37654146102d9578063095ea7b3146102f8578063127666be1461031757806318160ddd1461033657806323b872dd14610358575f80fd5b806301ffc9a71461022c57806302329a291461026057806306fdde0314610281578063081812fc146102a2575b5f80fd5b348015610237575f80fd5b5061024b610246366004611c0f565b6106d6565b60405190151581526020015b60405180910390f35b34801561026b575f80fd5b5061027f61027a366004611c37565b610727565b005b34801561028c575f80fd5b50610295610774565b6040516102579190611c9f565b3480156102ad575f80fd5b506102c16102bc366004611cb1565b610804565b6040516001600160a01b039091168152602001610257565b3480156102e4575f80fd5b5061027f6102f3366004611cb1565b610846565b348015610303575f80fd5b5061027f610312366004611ce3565b610875565b348015610322575f80fd5b5061027f610331366004611cb1565b61088e565b348015610341575f80fd5b5061034a6108bd565b604051908152602001610257565b348015610363575f80fd5b5061027f610372366004611d0b565b6108c9565b61027f610385366004611cb1565b6108f4565b348015610395575f80fd5b5061034a6103a4366004611ce3565b610a61565b3480156103b4575f80fd5b5061027f6103c3366004611cb1565b610b5c565b61027f610b8b565b3480156103db575f80fd5b506102c16daaeb6d7670e522a718067333cd4e81565b3480156103fc575f80fd5b5061027f61040b366004611d0b565b610beb565b34801561041b575f80fd5b5061027f61042a366004611dca565b610c10565b34801561043a575f80fd5b5061027f610449366004611cb1565b610c4a565b348015610459575f80fd5b5060115461024b90610100900460ff1681565b348015610477575f80fd5b506102c1610486366004611cb1565b610c79565b348015610496575f80fd5b50610295610c8a565b3480156104aa575f80fd5b5061034a6104b9366004611e0e565b610d16565b3480156104c9575f80fd5b5061027f610d62565b3480156104dd575f80fd5b5061027f6104ec366004611cb1565b610d97565b3480156104fc575f80fd5b506008546001600160a01b03166102c1565b348015610519575f80fd5b5061027f610528366004611cb1565b610dc6565b348015610538575f80fd5b50610295610df5565b34801561054c575f80fd5b5061034a60105481565b348015610561575f80fd5b5061034a600f5481565b348015610576575f80fd5b5061027f610585366004611e27565b610e04565b348015610595575f80fd5b5061027f6105a4366004611e5c565b610e18565b3480156105b4575f80fd5b5061027f6105c3366004611cb1565b610e45565b3480156105d3575f80fd5b5061027f6105e2366004611c37565b610e74565b3480156105f2575f80fd5b50610295610601366004611cb1565b610eb1565b61027f610614366004611cb1565b610f32565b348015610624575f80fd5b5061027f610633366004611cb1565b6110f2565b348015610643575f80fd5b5061024b610652366004611ed2565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561068a575f80fd5b5061027f610699366004611cb1565b611121565b3480156106a9575f80fd5b5061027f6106b8366004611e0e565b61117f565b3480156106c8575f80fd5b5060115461024b9060ff1681565b5f6001600160e01b031982166380ac58cd60e01b148061070657506001600160e01b03198216635b5e139f60e01b145b8061072157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461075a5760405162461bcd60e51b815260040161075190611f03565b60405180910390fd5b601180549115156101000261ff0019909216919091179055565b60606002805461078390611f38565b80601f01602080910402602001604051908101604052809291908181526020018280546107af90611f38565b80156107fa5780601f106107d1576101008083540402835291602001916107fa565b820191905f5260205f20905b8154815290600101906020018083116107dd57829003601f168201915b5050505050905090565b5f61080e82611217565b61082b576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146108705760405162461bcd60e51b815260040161075190611f03565b600e55565b8161087f8161124d565b6108898383611304565b505050565b6008546001600160a01b031633146108b85760405162461bcd60e51b815260040161075190611f03565b600b55565b6001545f54035f190190565b826001600160a01b03811633146108e3576108e33361124d565b6108ee848484611384565b50505050565b600d54816109006108bd565b61090a9190611f84565b11156109285760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b03163314610a5457601154610100900460ff16156109625760405162461bcd60e51b815260040161075190611fc7565b60115460ff1615610971575f80fd5b80600f5461097f9190611fef565b3410156109c35760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610751565b600954335f90815260056020526040902054600160401b90046001600160401b03166109ef9083611f84565b1115610a325760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610751565b600a54811115610a545760405162461bcd60e51b815260040161075190612006565b610a5e338261138f565b50565b5f610a6b83610d16565b8210610ab95760405162461bcd60e51b815260206004820152601d60248201527f4f776e657220646f6573206e6f74206f776e207468697320746f6b656e0000006044820152606401610751565b5f5b610ac36108bd565b811015610b2157610ad381611217565b8015610af85750836001600160a01b0316610aed82610c79565b6001600160a01b0316145b15610b1957825f03610b0b579050610721565b82610b1581612048565b9350505b600101610abb565b5060405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08199bdd5b99608a1b6044820152606401610751565b6008546001600160a01b03163314610b865760405162461bcd60e51b815260040161075190611f03565b600955565b6008546001600160a01b03163314610bb55760405162461bcd60e51b815260040161075190611f03565b6008546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610a5e573d5f803e3d5ffd5b826001600160a01b0381163314610c0557610c053361124d565b6108ee8484846113a8565b6008546001600160a01b03163314610c3a5760405162461bcd60e51b815260040161075190611f03565b6012610c4682826120a1565b5050565b6008546001600160a01b03163314610c745760405162461bcd60e51b815260040161075190611f03565b600c55565b5f610c83826113c2565b5192915050565b60128054610c9790611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390611f38565b8015610d0e5780601f10610ce557610100808354040283529160200191610d0e565b820191905f5260205f20905b815481529060010190602001808311610cf157829003601f168201915b505050505081565b5f6001600160a01b038216610d3e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d8c5760405162461bcd60e51b815260040161075190611f03565b610d955f6114df565b565b6008546001600160a01b03163314610dc15760405162461bcd60e51b815260040161075190611f03565b601055565b6008546001600160a01b03163314610df05760405162461bcd60e51b815260040161075190611f03565b600f55565b60606003805461078390611f38565b81610e0e8161124d565b6108898383611530565b836001600160a01b0381163314610e3257610e323361124d565b610e3e858585856115c4565b5050505050565b6008546001600160a01b03163314610e6f5760405162461bcd60e51b815260040161075190611f03565b600a55565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161075190611f03565b6011805460ff1916911515919091179055565b6060610ebc82611217565b610ed957604051630a14c4b560e41b815260040160405180910390fd5b5f610ee2611608565b905080515f03610f005760405180602001604052805f815250610f2b565b80610f0a84611617565b604051602001610f1b929190612160565b6040516020818303038152906040525b9392505050565b600d5481610f3e6108bd565b610f489190611f84565b1115610f665760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b03163314610a5457601154610100900460ff1615610fa05760405162461bcd60e51b815260040161075190611fc7565b60115460ff161515600114610fb3575f80fd5b600b54335f90815260056020526040902054600160401b90046001600160401b0316610fdf9083611f84565b11156110225760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b6044820152606401610751565b600c548111156110445760405162461bcd60e51b815260040161075190612006565b600e54816110506108bd565b61105a9190611f84565b11156110785760405162461bcd60e51b815260040161075190611f97565b601154610100900460ff16156110a05760405162461bcd60e51b815260040161075190611fc7565b806010546110ae9190611fef565b341015610a545760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610751565b6008546001600160a01b0316331461111c5760405162461bcd60e51b815260040161075190611f03565b600d55565b6008546001600160a01b0316331461114b5760405162461bcd60e51b815260040161075190611f03565b600d54816111576108bd565b6111619190611f84565b1115610a545760405162461bcd60e51b815260040161075190611f97565b6008546001600160a01b031633146111a95760405162461bcd60e51b815260040161075190611f03565b6001600160a01b03811661120e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610751565b610a5e816114df565b5f8160011115801561122957505f5482105b80156107215750505f90815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610a5e57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112dc919061219e565b610a5e57604051633b79c77360e21b81526001600160a01b0382166004820152602401610751565b5f61130e82610c79565b9050806001600160a01b0316836001600160a01b0316036113425760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146113795761135c8133610652565b611379576040516367d9dca160e11b815260040160405180910390fd5b61088983838361171b565b610889838383611776565b610c46828260405180602001604052805f81525061195a565b61088983838360405180602001604052805f815250610e18565b604080516060810182525f808252602082018190529181019190915281806001116114c6575f548110156114c6575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114c45780516001600160a01b03161561145d579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156114bf579392505050565b61145d565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b038316036115595760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115cf848484611776565b6001600160a01b0383163b156108ee576115eb84848484611b13565b6108ee576040516368d2bf6b60e11b815260040160405180910390fd5b60606012805461078390611f38565b6060815f0361163d5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156116665780611650816121b9565b915061165f9050600a836121e5565b9150611640565b5f816001600160401b0381111561167f5761167f611d44565b6040519080825280601f01601f1916602001820160405280156116a9576020820181803683370190505b5090505b8415611713576116be6001836121f8565b91506116cb600a8661220b565b6116d6906030611f84565b60f81b8183815181106116eb576116eb61221e565b60200101906001600160f81b03191690815f1a90535061170c600a866121e5565b94506116ad565b949350505050565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f611780826113c2565b9050836001600160a01b0316815f01516001600160a01b0316146117b65760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806117d357506117d38533610652565b806117ee5750336117e384610804565b6001600160a01b0316145b90508061180e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661183557604051633a954ecd60e21b815260040160405180910390fd5b6118405f848761171b565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611911575f54821461191157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3e565b5f546001600160a01b03841661198257604051622e076360e81b815260040160405180910390fd5b825f036119a25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ac0575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a8b5f878480600101955087611b13565b611aa8576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a4257825f5414611abb575f80fd5b611b04565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ac1575b505f9081556108ee9085838684565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611b47903390899088908890600401612232565b6020604051808303815f875af1925050508015611b81575060408051601f3d908101601f19168201909252611b7e9181019061226e565b60015b611bdd573d808015611bae576040519150601f19603f3d011682016040523d82523d5f602084013e611bb3565b606091505b5080515f03611bd5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610a5e575f80fd5b5f60208284031215611c1f575f80fd5b8135610f2b81611bfa565b8015158114610a5e575f80fd5b5f60208284031215611c47575f80fd5b8135610f2b81611c2a565b5f5b83811015611c6c578181015183820152602001611c54565b50505f910152565b5f8151808452611c8b816020860160208601611c52565b601f01601f19169290920160200192915050565b602081525f610f2b6020830184611c74565b5f60208284031215611cc1575f80fd5b5035919050565b80356001600160a01b0381168114611cde575f80fd5b919050565b5f8060408385031215611cf4575f80fd5b611cfd83611cc8565b946020939093013593505050565b5f805f60608486031215611d1d575f80fd5b611d2684611cc8565b9250611d3460208501611cc8565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f6001600160401b0380841115611d7157611d71611d44565b604051601f8501601f19908116603f01168101908282118183101715611d9957611d99611d44565b81604052809350858152868686011115611db1575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611dda575f80fd5b81356001600160401b03811115611def575f80fd5b8201601f81018413611dff575f80fd5b61171384823560208401611d58565b5f60208284031215611e1e575f80fd5b610f2b82611cc8565b5f8060408385031215611e38575f80fd5b611e4183611cc8565b91506020830135611e5181611c2a565b809150509250929050565b5f805f8060808587031215611e6f575f80fd5b611e7885611cc8565b9350611e8660208601611cc8565b92506040850135915060608501356001600160401b03811115611ea7575f80fd5b8501601f81018713611eb7575f80fd5b611ec687823560208401611d58565b91505092959194509250565b5f8060408385031215611ee3575f80fd5b611eec83611cc8565b9150611efa60208401611cc8565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f4c57607f821691505b602082108103611f6a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561072157610721611f70565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252600e908201526d135a5b9d081a5cc81c185d5cd95960921b604082015260600190565b808202811582820484141761072157610721611f70565b60208082526022908201527f457863656564656420746865206c696d697420706572207472616e736163746960408201526137b760f11b606082015260800190565b5f8161205657612056611f70565b505f190190565b601f82111561088957805f5260205f20601f840160051c810160208510156120825750805b601f840160051c820191505b81811015610e3e575f815560010161208e565b81516001600160401b038111156120ba576120ba611d44565b6120ce816120c88454611f38565b8461205d565b602080601f831160018114612101575f84156120ea5750858301515b5f19600386901b1c1916600185901b178555612158565b5f85815260208120601f198616915b8281101561212f57888601518255948401946001909101908401612110565b508582101561214c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f8351612171818460208801611c52565b835190830190612185818360208801611c52565b64173539b7b760d91b9101908152600501949350505050565b5f602082840312156121ae575f80fd5b8151610f2b81611c2a565b5f600182016121ca576121ca611f70565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826121f3576121f36121d1565b500490565b8181038181111561072157610721611f70565b5f82612219576122196121d1565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061226490830184611c74565b9695505050505050565b5f6020828403121561227e575f80fd5b8151610f2b81611bfa56fea26469706673582212205b411f5b99aa85a905bf238cafb39f9528072f6cb0685efc20d34a68600cfe5e64736f6c63430008180033
Deployed Bytecode Sourcemap
60952:5883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39779:305;;;;;;;;;;-1:-1:-1;39779:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39779:305:0;;;;;;;;63761:79;;;;;;;;;;-1:-1:-1;63761:79:0;;;;;:::i;:::-;;:::i;:::-;;42894:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44415:204::-;;;;;;;;;;-1:-1:-1;44415:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;44415:204:0;1902:203:1;64505:116:0;;;;;;;;;;-1:-1:-1;64505:116:0;;;;;:::i;:::-;;:::i;65556:157::-;;;;;;;;;;-1:-1:-1;65556:157:0;;;;;:::i;:::-;;:::i;64859:113::-;;;;;;;;;;-1:-1:-1;64859:113:0;;;;;:::i;:::-;;:::i;39019:312::-;;;;;;;;;;;;;:::i;:::-;;;2693:25:1;;;2681:2;2666:18;39019:312:0;2547:177:1;65896:163:0;;;;;;;;;;-1:-1:-1;65896:163:0;;;;;:::i;:::-;;:::i;62667:616::-;;;;;;:::i;:::-;;:::i;63295:458::-;;;;;;;;;;-1:-1:-1;63295:458:0;;;;;:::i;:::-;;:::i;64631:101::-;;;;;;;;;;-1:-1:-1;64631:101:0;;;;;:::i;:::-;;:::i;63848:114::-;;;:::i;7781:143::-;;;;;;;;;;;;235:42;7781:143;;66246:171;;;;;;;;;;-1:-1:-1;66246:171:0;;;;;:::i;:::-;;:::i;64078:104::-;;;;;;;;;;-1:-1:-1;64078:104:0;;;;;:::i;:::-;;:::i;64980:119::-;;;;;;;;;;-1:-1:-1;64980:119:0;;;;;:::i;:::-;;:::i;61341:25::-;;;;;;;;;;-1:-1:-1;61341:25:0;;;;;;;;;;;42702:125;;;;;;;;;;-1:-1:-1;42702:125:0;;;;;:::i;:::-;;:::i;61375:41::-;;;;;;;;;;;;;:::i;40148:206::-;;;;;;;;;;-1:-1:-1;40148:206:0;;;;;:::i;:::-;;:::i;15988:103::-;;;;;;;;;;;;;:::i;64282:99::-;;;;;;;;;;-1:-1:-1;64282:99:0;;;;;:::i;:::-;;:::i;15337:87::-;;;;;;;;;;-1:-1:-1;15410:6:0;;-1:-1:-1;;;;;15410:6:0;15337:87;;64190:84;;;;;;;;;;-1:-1:-1;64190:84:0;;;;;:::i;:::-;;:::i;43063:104::-;;;;;;;;;;;;;:::i;61263:38::-;;;;;;;;;;;;;;;;61222:34;;;;;;;;;;;;;;;;65202:176;;;;;;;;;;-1:-1:-1;65202:176:0;;;;;:::i;:::-;;:::i;66604:228::-;;;;;;;;;;-1:-1:-1;66604:228:0;;;;;:::i;:::-;;:::i;64740:107::-;;;;;;;;;;-1:-1:-1;64740:107:0;;;;;:::i;:::-;;:::i;65107:85::-;;;;;;;;;;-1:-1:-1;65107:85:0;;;;;:::i;:::-;;:::i;43238:327::-;;;;;;;;;;-1:-1:-1;43238:327:0;;;;;:::i;:::-;;:::i;61652:798::-;;;;;;:::i;:::-;;:::i;64393:104::-;;;;;;;;;;-1:-1:-1;64393:104:0;;;;;:::i;:::-;;:::i;45049:164::-;;;;;;;;;;-1:-1:-1;45049:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45170:25:0;;;45146:4;45170:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45049:164;62466:191;;;;;;;;;;-1:-1:-1;62466:191:0;;;;;:::i;:::-;;:::i;16246:201::-;;;;;;;;;;-1:-1:-1;16246:201:0;;;;;:::i;:::-;;:::i;61308:26::-;;;;;;;;;;-1:-1:-1;61308:26:0;;;;;;;;39779:305;39881:4;-1:-1:-1;;;;;;39918:40:0;;-1:-1:-1;;;39918:40:0;;:105;;-1:-1:-1;;;;;;;39975:48:0;;-1:-1:-1;;;39975:48:0;39918:105;:158;;;-1:-1:-1;;;;;;;;;;28253:40:0;;;40040:36;39898:178;39779:305;-1:-1:-1;;39779:305:0:o;63761:79::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;;;;;;;;;63817:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;63817:15:0;;::::1;::::0;;;::::1;::::0;;63761:79::o;42894:100::-;42948:13;42981:5;42974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42894:100;:::o;44415:204::-;44483:7;44508:16;44516:7;44508;:16::i;:::-;44503:64;;44533:34;;-1:-1:-1;;;44533:34:0;;;;;;;;;;;44503:64;-1:-1:-1;44587:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44587:24:0;;44415:204::o;64505:116::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64583:13:::1;:30:::0;64505:116::o;65556:157::-;65652:8;9563:30;9584:8;9563:20;:30::i;:::-;65673:32:::1;65687:8;65697:7;65673:13;:32::i;:::-;65556:157:::0;;;:::o;64859:113::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64936:12:::1;:28:::0;64859:113::o;39019:312::-;38876:1;39282:12;39072:7;39266:13;:28;-1:-1:-1;;39266:46:0;;39019:312::o;65896:163::-;65997:4;-1:-1:-1;;;;;9289:18:0;;9297:10;9289:18;9285:83;;9324:32;9345:10;9324:20;:32::i;:::-;66014:37:::1;66033:4;66039:2;66043:7;66014:18;:37::i;:::-;65896:163:::0;;;;:::o;62667:616::-;62777:10;;62765:8;62749:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;62741:73;;;;-1:-1:-1;;;62741:73:0;;;;;;;:::i;:::-;15410:6;;-1:-1:-1;;;;;15410:6:0;62829:10;:21;62825:405;;62876:6;;;;;;;62875:7;62867:34;;;;-1:-1:-1;;;62867:34:0;;;;;;;:::i;:::-;62924:7;;;;:16;62916:25;;;;;;62985:8;62977:5;;:16;;;;:::i;:::-;62964:9;:29;;62956:60;;;;-1:-1:-1;;;62956:60:0;;8051:2:1;62956:60:0;;;8033:21:1;8090:2;8070:18;;;8063:30;-1:-1:-1;;;8109:18:1;;;8102:48;8167:18;;62956:60:0;7849:342:1;62956:60:0;63080:9;;63065:10;40497:7;40532:19;;;:12;:19;;;;;:32;-1:-1:-1;;;40532:32:0;;-1:-1:-1;;;;;40532:32:0;63040:36;;:8;:36;:::i;:::-;:49;;63032:80;;;;-1:-1:-1;;;63032:80:0;;8398:2:1;63032:80:0;;;8380:21:1;8437:2;8417:18;;;8410:30;-1:-1:-1;;;8456:18:1;;;8449:48;8514:18;;63032:80:0;8196:342:1;63032:80:0;63148:12;;63136:8;:24;;63128:71;;;;-1:-1:-1;;;63128:71:0;;;;;;;:::i;:::-;63240:31;63250:10;63262:8;63240:9;:31::i;:::-;62667:616;:::o;63295:458::-;63375:7;63411:16;63421:5;63411:9;:16::i;:::-;63403:5;:24;63395:66;;;;-1:-1:-1;;;63395:66:0;;9148:2:1;63395:66:0;;;9130:21:1;9187:2;9167:18;;;9160:30;9226:31;9206:18;;;9199:59;9275:18;;63395:66:0;8946:353:1;63395:66:0;63479:9;63474:236;63498:13;:11;:13::i;:::-;63494:1;:17;63474:236;;;63537:10;63545:1;63537:7;:10::i;:::-;:33;;;;;63565:5;-1:-1:-1;;;;;63551:19:0;:10;63559:1;63551:7;:10::i;:::-;-1:-1:-1;;;;;63551:19:0;;63537:33;63533:166;;;63595:5;63604:1;63595:10;63591:67;;63637:1;-1:-1:-1;63630:8:0;;63591:67;63676:7;;;;:::i;:::-;;;;63533:166;63513:3;;63474:236;;;-1:-1:-1;63720:25:0;;-1:-1:-1;;;63720:25:0;;9647:2:1;63720:25:0;;;9629:21:1;9686:2;9666:18;;;9659:30;-1:-1:-1;;;9705:18:1;;;9698:45;9760:18;;63720:25:0;9445:339:1;64631:101:0;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64702:9:::1;:22:::0;64631:101::o;63848:114::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;15410:6;;63906:48:::1;::::0;-1:-1:-1;;;;;15410:6:0;;;;63932:21:::1;63906:48:::0;::::1;;;::::0;::::1;::::0;;;63932:21;15410:6;63906:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;66246:171:::0;66351:4;-1:-1:-1;;;;;9289:18:0;;9297:10;9289:18;9285:83;;9324:32;9345:10;9324:20;:32::i;:::-;66368:41:::1;66391:4;66397:2;66401:7;66368:22;:41::i;64078:104::-:0;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64153:7:::1;:21;64163:11:::0;64153:7;:21:::1;:::i;:::-;;64078:104:::0;:::o;64980:119::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;65060:15:::1;:31:::0;64980:119::o;42702:125::-;42766:7;42793:21;42806:7;42793:12;:21::i;:::-;:26;;42702:125;-1:-1:-1;;42702:125:0:o;61375:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40148:206::-;40212:7;-1:-1:-1;;;;;40236:19:0;;40232:60;;40264:28;;-1:-1:-1;;;40264:28:0;;;;;;;;;;;40232:60;-1:-1:-1;;;;;;40318:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40318:27:0;;40148:206::o;15988:103::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;16053:30:::1;16080:1;16053:18;:30::i;:::-;15988:103::o:0;64282:99::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64351:13:::1;:22:::0;64282:99::o;64190:84::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64252:5:::1;:14:::0;64190:84::o;43063:104::-;43119:13;43152:7;43145:14;;;;;:::i;65202:176::-;65306:8;9563:30;9584:8;9563:20;:30::i;:::-;65327:43:::1;65351:8;65361;65327:23;:43::i;66604:228::-:0;66755:4;-1:-1:-1;;;;;9289:18:0;;9297:10;9289:18;9285:83;;9324:32;9345:10;9324:20;:32::i;:::-;66777:47:::1;66800:4;66806:2;66810:7;66819:4;66777:22;:47::i;:::-;66604:228:::0;;;;;:::o;64740:107::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64814:12:::1;:25:::0;64740:107::o;65107:85::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;65168:7:::1;:16:::0;;-1:-1:-1;;65168:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65107:85::o;43238:327::-;43311:13;43342:16;43350:7;43342;:16::i;:::-;43337:59;;43367:29;;-1:-1:-1;;;43367:29:0;;;;;;;;;;;43337:59;43409:21;43433:10;:8;:10::i;:::-;43409:34;;43467:7;43461:21;43486:1;43461:26;:96;;;;;;;;;;;;;;;;;43514:7;43523:18;:7;:16;:18::i;:::-;43497:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43461:96;43454:103;43238:327;-1:-1:-1;;;43238:327:0:o;61652:798::-;61755:10;;61743:8;61727:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;61719:73;;;;-1:-1:-1;;;61719:73:0;;;;;;;:::i;:::-;15410:6;;-1:-1:-1;;;;;15410:6:0;61818:10;:21;61814:583;;61865:6;;;;;;;61864:7;61856:34;;;;-1:-1:-1;;;61856:34:0;;;;;;;:::i;:::-;61913:7;;;;:15;;:7;:15;61905:24;;;;;;61992:12;;61977:10;40497:7;40532:19;;;:12;:19;;;;;:32;-1:-1:-1;;;40532:32:0;;-1:-1:-1;;;;;40532:32:0;61952:36;;:8;:36;:::i;:::-;:52;;61944:83;;;;-1:-1:-1;;;61944:83:0;;8398:2:1;61944:83:0;;;8380:21:1;8437:2;8417:18;;;8410:30;-1:-1:-1;;;8456:18:1;;;8449:48;8514:18;;61944:83:0;8196:342:1;61944:83:0;62062:15;;62050:8;:27;;62042:74;;;;-1:-1:-1;;;62042:74:0;;;;;;;:::i;:::-;62167:13;;62155:8;62139:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;62131:76;;;;-1:-1:-1;;;62131:76:0;;;;;;;:::i;:::-;62230:6;;;;;;;:15;62222:42;;;;-1:-1:-1;;;62222:42:0;;;;;;;:::i;:::-;62316:8;62300:13;;:24;;;;:::i;:::-;62287:9;:37;;62279:68;;;;-1:-1:-1;;;62279:68:0;;8051:2:1;62279:68:0;;;8033:21:1;8090:2;8070:18;;;8063:30;-1:-1:-1;;;8109:18:1;;;8102:48;8167:18;;62279:68:0;7849:342:1;64393:104:0;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;64465:10:::1;:24:::0;64393:104::o;62466:191::-;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;62568:10:::1;;62556:8;62540:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;62532:73;;;;-1:-1:-1::0;;;62532:73:0::1;;;;;;;:::i;16246:201::-:0;15410:6;;-1:-1:-1;;;;;15410:6:0;14141:10;15557:23;15549:68;;;;-1:-1:-1;;;15549:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16335:22:0;::::1;16327:73;;;::::0;-1:-1:-1;;;16327:73:0;;12829:2:1;16327:73:0::1;::::0;::::1;12811:21:1::0;12868:2;12848:18;;;12841:30;12907:34;12887:18;;;12880:62;-1:-1:-1;;;12958:18:1;;;12951:36;13004:19;;16327:73:0::1;12627:402:1::0;16327:73:0::1;16411:28;16430:8;16411:18;:28::i;46402:174::-:0;46459:4;46502:7;38876:1;46483:26;;:53;;;;;46523:13;;46513:7;:23;46483:53;:85;;;;-1:-1:-1;;46541:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46541:27:0;;;;46540:28;;46402:174::o;9706:647::-;235:42;9897:45;:49;9893:453;;10196:67;;-1:-1:-1;;;10196:67:0;;10247:4;10196:67;;;13246:34:1;-1:-1:-1;;;;;13316:15:1;;13296:18;;;13289:43;235:42:0;;10196;;13181:18:1;;10196:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10191:144;;10291:28;;-1:-1:-1;;;10291:28:0;;-1:-1:-1;;;;;2066:32:1;;10291:28:0;;;2048:51:1;2021:18;;10291:28:0;1902:203:1;43969:380:0;44050:13;44066:24;44082:7;44066:15;:24::i;:::-;44050:40;;44111:5;-1:-1:-1;;;;;44105:11:0;:2;-1:-1:-1;;;;;44105:11:0;;44101:48;;44125:24;;-1:-1:-1;;;44125:24:0;;;;;;;;;;;44101:48;14141:10;-1:-1:-1;;;;;44166:21:0;;;44162:139;;44193:37;44210:5;14141:10;45049:164;:::i;44193:37::-;44189:112;;44254:35;;-1:-1:-1;;;44254:35:0;;;;;;;;;;;44189:112;44313:28;44322:2;44326:7;44335:5;44313:8;:28::i;45280:170::-;45414:28;45424:4;45430:2;45434:7;45414:9;:28::i;46660:104::-;46729:27;46739:2;46743:8;46729:27;;;;;;;;;;;;:9;:27::i;45521:185::-;45659:39;45676:4;45682:2;45686:7;45659:39;;;;;;;;;;;;:16;:39::i;41529:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;41640:7:0;;38876:1;41689:23;41685:888;;41725:13;;41718:4;:20;41714:859;;;41759:31;41793:17;;;:11;:17;;;;;;;;;41759:51;;;;;;;;;-1:-1:-1;;;;;41759:51:0;;;;-1:-1:-1;;;41759:51:0;;-1:-1:-1;;;;;41759:51:0;;;;;;;;-1:-1:-1;;;41759:51:0;;;;;;;;;;;;;;41829:729;;41879:14;;-1:-1:-1;;;;;41879:28:0;;41875:101;;41943:9;41529:1111;-1:-1:-1;;;41529:1111:0:o;41875:101::-;-1:-1:-1;;;42318:6:0;42363:17;;;;:11;:17;;;;;;;;;42351:29;;;;;;;;;-1:-1:-1;;;;;42351:29:0;;;;;-1:-1:-1;;;42351:29:0;;-1:-1:-1;;;;;42351:29:0;;;;;;;;-1:-1:-1;;;42351:29:0;;;;;;;;;;;;;42411:28;42407:109;;42479:9;41529:1111;-1:-1:-1;;;41529:1111:0:o;42407:109::-;42278:261;;;41740:833;41714:859;42601:31;;-1:-1:-1;;;42601:31:0;;;;;;;;;;;16607:191;16700:6;;;-1:-1:-1;;;;;16717:17:0;;;-1:-1:-1;;;;;;16717:17:0;;;;;;;16750:40;;16700:6;;;16717:17;16700:6;;16750:40;;16681:16;;16750:40;16670:128;16607:191;:::o;44691:287::-;14141:10;-1:-1:-1;;;;;44790:24:0;;;44786:54;;44823:17;;-1:-1:-1;;;44823:17:0;;;;;;;;;;;44786:54;14141:10;44853:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44853:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44853:53:0;;;;;;;;;;44922:48;;540:41:1;;;44853:42:0;;14141:10;44922:48;;513:18:1;44922:48:0;;;;;;;44691:287;;:::o;45777:370::-;45944:28;45954:4;45960:2;45964:7;45944:9;:28::i;:::-;-1:-1:-1;;;;;45987:13:0;;18333:19;:23;45983:157;;46008:56;46039:4;46045:2;46049:7;46058:5;46008:30;:56::i;:::-;46004:136;;46088:40;;-1:-1:-1;;;46088:40:0;;;;;;;;;;;63970:100;64022:13;64055:7;64048:14;;;;;:::i;11623:723::-;11679:13;11900:5;11909:1;11900:10;11896:53;;-1:-1:-1;;11927:10:0;;;;;;;;;;;;-1:-1:-1;;;11927:10:0;;;;;11623:723::o;11896:53::-;11974:5;11959:12;12015:78;12022:9;;12015:78;;12048:8;;;;:::i;:::-;;-1:-1:-1;12071:10:0;;-1:-1:-1;12079:2:0;12071:10;;:::i;:::-;;;12015:78;;;12103:19;12135:6;-1:-1:-1;;;;;12125:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12125:17:0;;12103:39;;12153:154;12160:10;;12153:154;;12187:11;12197:1;12187:11;;:::i;:::-;;-1:-1:-1;12256:10:0;12264:2;12256:5;:10;:::i;:::-;12243:24;;:2;:24;:::i;:::-;12230:39;;12213:6;12220;12213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12213:56:0;;;;;;;;-1:-1:-1;12284:11:0;12293:2;12284:11;;:::i;:::-;;;12153:154;;;12331:6;11623:723;-1:-1:-1;;;;11623:723:0:o;55624:196::-;55739:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55739:29:0;-1:-1:-1;;;;;55739:29:0;;;;;;;;;55784:28;;55739:24;;55784:28;;;;;;;55624:196;;;:::o;50572:2130::-;50687:35;50725:21;50738:7;50725:12;:21::i;:::-;50687:59;;50785:4;-1:-1:-1;;;;;50763:26:0;:13;:18;;;-1:-1:-1;;;;;50763:26:0;;50759:67;;50798:28;;-1:-1:-1;;;50798:28:0;;;;;;;;;;;50759:67;50839:22;14141:10;-1:-1:-1;;;;;50865:20:0;;;;:73;;-1:-1:-1;50902:36:0;50919:4;14141:10;45049:164;:::i;50902:36::-;50865:126;;;-1:-1:-1;14141:10:0;50955:20;50967:7;50955:11;:20::i;:::-;-1:-1:-1;;;;;50955:36:0;;50865:126;50839:153;;51010:17;51005:66;;51036:35;;-1:-1:-1;;;51036:35:0;;;;;;;;;;;51005:66;-1:-1:-1;;;;;51086:16:0;;51082:52;;51111:23;;-1:-1:-1;;;51111:23:0;;;;;;;;;;;51082:52;51255:35;51272:1;51276:7;51285:4;51255:8;:35::i;:::-;-1:-1:-1;;;;;51586:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;51586:31:0;;;-1:-1:-1;;;;;51586:31:0;;;-1:-1:-1;;51586:31:0;;;;;;;51632:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51632:29:0;;;;;;;;;;;51712:20;;;:11;:20;;;;;;51747:18;;-1:-1:-1;;;;;;51780:49:0;;;;-1:-1:-1;;;51813:15:0;51780:49;;;;;;;;;;52103:11;;52163:24;;;;;52206:13;;51712:20;;52163:24;;52206:13;52202:384;;52416:13;;52401:11;:28;52397:174;;52454:20;;52523:28;;;;-1:-1:-1;;;;;52497:54:0;-1:-1:-1;;;52497:54:0;-1:-1:-1;;;;;;52497:54:0;;;-1:-1:-1;;;;;52454:20:0;;52497:54;;;;52397:174;51561:1036;;;52633:7;52629:2;-1:-1:-1;;;;;52614:27:0;52623:4;-1:-1:-1;;;;;52614:27:0;;;;;;;;;;;52652:42;65896:163;47137:1749;47260:20;47283:13;-1:-1:-1;;;;;47311:16:0;;47307:48;;47336:19;;-1:-1:-1;;;47336:19:0;;;;;;;;;;;47307:48;47370:8;47382:1;47370:13;47366:44;;47392:18;;-1:-1:-1;;;47392:18:0;;;;;;;;;;;47366:44;-1:-1:-1;;;;;47761:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;47820:49:0;;-1:-1:-1;;;;;47761:44:0;;;;;;;47820:49;;;-1:-1:-1;;;;;47761:44:0;;;;;;47820:49;;;;;;;;;;;;;;;;47886:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;47936:66:0;;;-1:-1:-1;;;47986:15:0;47936:66;;;;;;;;;;;;;47886:25;;48083:23;;;;18333:19;:23;48123:631;;48163:313;48194:38;;48219:12;;-1:-1:-1;;;;;48194:38:0;;;48211:1;;48194:38;;48211:1;;48194:38;48260:69;48299:1;48303:2;48307:14;;;;;;48323:5;48260:30;:69::i;:::-;48255:174;;48365:40;;-1:-1:-1;;;48365:40:0;;;;;;;;;;;48255:174;48471:3;48456:12;:18;48163:313;;48557:12;48540:13;;:29;48536:43;;48571:8;;;48536:43;48123:631;;;48620:119;48651:40;;48676:14;;;;;-1:-1:-1;;;;;48651:40:0;;;48668:1;;48651:40;;48668:1;;48651:40;48734:3;48719:12;:18;48620:119;;48123:631;-1:-1:-1;48768:13:0;:28;;;48818:60;;48851:2;48855:12;48869:8;48818:60;:::i;56312:667::-;56496:72;;-1:-1:-1;;;56496:72:0;;56475:4;;-1:-1:-1;;;;;56496:36:0;;;;;:72;;14141:10;;56547:4;;56553:7;;56562:5;;56496:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56496:72:0;;;;;;;;-1:-1:-1;;56496:72:0;;;;;;;;;;;;:::i;:::-;;;56492:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56730:6;:13;56747:1;56730:18;56726:235;;56776:40;;-1:-1:-1;;;56776:40:0;;;;;;;;;;;56726:235;56919:6;56913:13;56904:6;56900:2;56896:15;56889:38;56492:480;-1:-1:-1;;;;;;56615:55:0;-1:-1:-1;;;56615:55:0;;-1:-1:-1;56312:667:0;;;;;;:::o;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:632;3498:5;-1:-1:-1;;;;;3569:2:1;3561:6;3558:14;3555:40;;;3575:18;;:::i;:::-;3650:2;3644:9;3618:2;3704:15;;-1:-1:-1;;3700:24:1;;;3726:2;3696:33;3692:42;3680:55;;;3750:18;;;3770:22;;;3747:46;3744:72;;;3796:18;;:::i;:::-;3836:10;3832:2;3825:22;3865:6;3856:15;;3895:6;3887;3880:22;3935:3;3926:6;3921:3;3917:16;3914:25;3911:45;;;3952:1;3949;3942:12;3911:45;4002:6;3997:3;3990:4;3982:6;3978:17;3965:44;4057:1;4050:4;4041:6;4033;4029:19;4025:30;4018:41;;;;3433:632;;;;;:::o;4070:451::-;4139:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;4248:9;4235:23;-1:-1:-1;;;;;4273:6:1;4270:30;4267:50;;;4313:1;4310;4303:12;4267:50;4336:22;;4389:4;4381:13;;4377:27;-1:-1:-1;4367:55:1;;4418:1;4415;4408:12;4367:55;4441:74;4507:7;4502:2;4489:16;4484:2;4480;4476:11;4441:74;:::i;4526:186::-;4585:6;4638:2;4626:9;4617:7;4613:23;4609:32;4606:52;;;4654:1;4651;4644:12;4606:52;4677:29;4696:9;4677:29;:::i;4717:315::-;4782:6;4790;4843:2;4831:9;4822:7;4818:23;4814:32;4811:52;;;4859:1;4856;4849:12;4811:52;4882:29;4901:9;4882:29;:::i;:::-;4872:39;;4961:2;4950:9;4946:18;4933:32;4974:28;4996:5;4974:28;:::i;:::-;5021:5;5011:15;;;4717:315;;;;;:::o;5037:667::-;5132:6;5140;5148;5156;5209:3;5197:9;5188:7;5184:23;5180:33;5177:53;;;5226:1;5223;5216:12;5177:53;5249:29;5268:9;5249:29;:::i;:::-;5239:39;;5297:38;5331:2;5320:9;5316:18;5297:38;:::i;:::-;5287:48;;5382:2;5371:9;5367:18;5354:32;5344:42;;5437:2;5426:9;5422:18;5409:32;-1:-1:-1;;;;;5456:6:1;5453:30;5450:50;;;5496:1;5493;5486:12;5450:50;5519:22;;5572:4;5564:13;;5560:27;-1:-1:-1;5550:55:1;;5601:1;5598;5591:12;5550:55;5624:74;5690:7;5685:2;5672:16;5667:2;5663;5659:11;5624:74;:::i;:::-;5614:84;;;5037:667;;;;;;;:::o;5709:260::-;5777:6;5785;5838:2;5826:9;5817:7;5813:23;5809:32;5806:52;;;5854:1;5851;5844:12;5806:52;5877:29;5896:9;5877:29;:::i;:::-;5867:39;;5925:38;5959:2;5948:9;5944:18;5925:38;:::i;:::-;5915:48;;5709:260;;;;;:::o;5974:356::-;6176:2;6158:21;;;6195:18;;;6188:30;6254:34;6249:2;6234:18;;6227:62;6321:2;6306:18;;5974:356::o;6335:380::-;6414:1;6410:12;;;;6457;;;6478:61;;6532:4;6524:6;6520:17;6510:27;;6478:61;6585:2;6577:6;6574:14;6554:18;6551:38;6548:161;;6631:10;6626:3;6622:20;6619:1;6612:31;6666:4;6663:1;6656:15;6694:4;6691:1;6684:15;6548:161;;6335:380;;;:::o;6720:127::-;6781:10;6776:3;6772:20;6769:1;6762:31;6812:4;6809:1;6802:15;6836:4;6833:1;6826:15;6852:125;6917:9;;;6938:10;;;6935:36;;;6951:18;;:::i;6982:346::-;7184:2;7166:21;;;7223:2;7203:18;;;7196:30;-1:-1:-1;;;7257:2:1;7242:18;;7235:52;7319:2;7304:18;;6982:346::o;7333:338::-;7535:2;7517:21;;;7574:2;7554:18;;;7547:30;-1:-1:-1;;;7608:2:1;7593:18;;7586:44;7662:2;7647:18;;7333:338::o;7676:168::-;7749:9;;;7780;;7797:15;;;7791:22;;7777:37;7767:71;;7818:18;;:::i;8543:398::-;8745:2;8727:21;;;8784:2;8764:18;;;8757:30;8823:34;8818:2;8803:18;;8796:62;-1:-1:-1;;;8889:2:1;8874:18;;8867:32;8931:3;8916:19;;8543:398::o;9304:136::-;9343:3;9371:5;9361:39;;9380:18;;:::i;:::-;-1:-1:-1;;;9416:18:1;;9304:136::o;9915:518::-;10017:2;10012:3;10009:11;10006:421;;;10053:5;10050:1;10043:16;10097:4;10094:1;10084:18;10167:2;10155:10;10151:19;10148:1;10144:27;10138:4;10134:38;10203:4;10191:10;10188:20;10185:47;;;-1:-1:-1;10226:4:1;10185:47;10281:2;10276:3;10272:12;10269:1;10265:20;10259:4;10255:31;10245:41;;10336:81;10354:2;10347:5;10344:13;10336:81;;;10413:1;10399:16;;10380:1;10369:13;10336:81;;10609:1345;10735:3;10729:10;-1:-1:-1;;;;;10754:6:1;10751:30;10748:56;;;10784:18;;:::i;:::-;10813:97;10903:6;10863:38;10895:4;10889:11;10863:38;:::i;:::-;10857:4;10813:97;:::i;:::-;10965:4;;11022:2;11011:14;;11039:1;11034:663;;;;11741:1;11758:6;11755:89;;;-1:-1:-1;11810:19:1;;;11804:26;11755:89;-1:-1:-1;;10566:1:1;10562:11;;;10558:24;10554:29;10544:40;10590:1;10586:11;;;10541:57;11857:81;;11004:944;;11034:663;9862:1;9855:14;;;9899:4;9886:18;;-1:-1:-1;;11070:20:1;;;11188:236;11202:7;11199:1;11196:14;11188:236;;;11291:19;;;11285:26;11270:42;;11383:27;;;;11351:1;11339:14;;;;11218:19;;11188:236;;;11192:3;11452:6;11443:7;11440:19;11437:201;;;11513:19;;;11507:26;-1:-1:-1;;11596:1:1;11592:14;;;11608:3;11588:24;11584:37;11580:42;11565:58;11550:74;;11437:201;;;11684:1;11675:6;11672:1;11668:14;11664:22;11658:4;11651:36;11004:944;;;;;10609:1345;;:::o;11959:663::-;12239:3;12277:6;12271:13;12293:66;12352:6;12347:3;12340:4;12332:6;12328:17;12293:66;:::i;:::-;12422:13;;12381:16;;;;12444:70;12422:13;12381:16;12491:4;12479:17;;12444:70;:::i;:::-;-1:-1:-1;;;12536:20:1;;12565:22;;;12614:1;12603:13;;11959:663;-1:-1:-1;;;;11959:663:1:o;13343:245::-;13410:6;13463:2;13451:9;13442:7;13438:23;13434:32;13431:52;;;13479:1;13476;13469:12;13431:52;13511:9;13505:16;13530:28;13552:5;13530:28;:::i;13593:135::-;13632:3;13653:17;;;13650:43;;13673:18;;:::i;:::-;-1:-1:-1;13720:1:1;13709:13;;13593:135::o;13733:127::-;13794:10;13789:3;13785:20;13782:1;13775:31;13825:4;13822:1;13815:15;13849:4;13846:1;13839:15;13865:120;13905:1;13931;13921:35;;13936:18;;:::i;:::-;-1:-1:-1;13970:9:1;;13865:120::o;13990:128::-;14057:9;;;14078:11;;;14075:37;;;14092:18;;:::i;14123:112::-;14155:1;14181;14171:35;;14186:18;;:::i;:::-;-1:-1:-1;14220:9:1;;14123:112::o;14240:127::-;14301:10;14296:3;14292:20;14289:1;14282:31;14332:4;14329:1;14322:15;14356:4;14353:1;14346:15;14372:489;-1:-1:-1;;;;;14641:15:1;;;14623:34;;14693:15;;14688:2;14673:18;;14666:43;14740:2;14725:18;;14718:34;;;14788:3;14783:2;14768:18;;14761:31;;;14566:4;;14809:46;;14835:19;;14827:6;14809:46;:::i;:::-;14801:54;14372:489;-1:-1:-1;;;;;;14372:489:1:o;14866:249::-;14935:6;14988:2;14976:9;14967:7;14963:23;14959:32;14956:52;;;15004:1;15001;14994:12;14956:52;15036:9;15030:16;15055:30;15079:5;15055:30;:::i
Swarm Source
ipfs://5b411f5b99aa85a905bf238cafb39f9528072f6cb0685efc20d34a68600cfe5e
Loading...
Loading
Loading...
Loading
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 ]
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.