Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
OkayAzuki
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-19
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
* @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)
/**
* @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)
/**
* @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 v4.4.1 (utils/Address.sol)
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
* @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)
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
* @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: https://github.com/chiru-labs/ERC721A/blob/v3.0.0/contracts/ERC721A.sol
// Creator: Chiru Labs
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @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, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// 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;
}
// 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 0;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view 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) {
if (owner == address(0)) revert MintedQueryForZeroAddress();
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) {
if (owner == address(0)) revert BurnedQueryForZeroAddress();
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) {
if (owner == address(0)) revert AuxQueryForZeroAddress();
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 {
if (owner == address(0)) revert AuxQueryForZeroAddress();
_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 && 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())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !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 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() && !_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;
}
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 {
_mint(to, quantity, _data, true);
}
/**
* @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,
bytes memory _data,
bool safe
) 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 (safe && 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 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);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
isApprovedForAll(prevOwnership.addr, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
// 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;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].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;
if (_ownerships[nextTokenId].addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId < _currentIndex) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
_beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
// 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[prevOwnership.addr].balance -= 1;
_addressData[prevOwnership.addr].numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
_ownerships[tokenId].addr = prevOwnership.addr;
_ownerships[tokenId].startTimestamp = uint64(block.timestamp);
_ownerships[tokenId].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;
if (_ownerships[nextTokenId].addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId < _currentIndex) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(prevOwnership.addr, address(0), tokenId);
_afterTokenTransfers(prevOwnership.addr, 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 {}
}
// File: OkayAzuki.sol
contract OkayAzuki is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
uint256 public publicCost = 0.02 ether;
uint256 public freeSupply = 1000;
uint256 public maxSupply = 10000;
uint256 public maxMintAmountPerTx = 30;
uint256 public maxWalletLimit = 90;
bool public paused = true;
bool public saleActive = false;
constructor() ERC721A("Okay Azukis", "OKAZ") {}
function _startTokenId() internal override view virtual returns (uint256) {
return 1;
}
function cost() public view returns(uint256) {
if(totalSupply() >= freeSupply) return publicCost;
return 0;
}
modifier mintCompliance(uint256 _mintAmount) {
require(!paused, "The contract is paused!");
require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
_;
}
modifier selfMintCompliance(uint256 _mintAmount) {
require(_mintAmount > 0, "Invalid mint amount!");
require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
_;
}
function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
require(saleActive, "Sale is not Active" );
if(totalSupply() < freeSupply) {
require(totalSupply() + _mintAmount <= freeSupply, "Mint amount exceed the free mint limit, Please reduce the mint count");
}
require(msg.value >= cost() * _mintAmount, "Insufficient funds!");
require(balanceOf(msg.sender) + _mintAmount <= maxWalletLimit, "Max mint amount per wallet reached");
_safeMint(msg.sender, _mintAmount);
}
function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
_safeMint(_receiver, _mintAmount);
}
function mintForSelf(uint256 _mintAmount) public selfMintCompliance(_mintAmount) onlyOwner {
_safeMint(msg.sender, _mintAmount);
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
uint256 currentTokenId = 1;
uint256 ownedTokenIndex = 0;
while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
address currentTokenOwner = ownerOf(currentTokenId);
if (currentTokenOwner == _owner) {
ownedTokenIds[ownedTokenIndex] = currentTokenId;
ownedTokenIndex++;
}
currentTokenId++;
}
return ownedTokenIds;
}
function tokenURI(uint256 _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
: "";
}
function setPublicCost(uint256 _cost) public onlyOwner {
publicCost = _cost;
}
function setPublicSale(bool _sale) public onlyOwner {
saleActive = _sale;
}
function setMaxWalletLimit(uint256 _maxWalletLimit) public onlyOwner {
maxWalletLimit = _maxWalletLimit;
}
function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
maxMintAmountPerTx = _maxMintAmountPerTx;
}
function setFreeSupply(uint256 _supply) public onlyOwner {
freeSupply = _supply;
}
function setUriPrefix(string memory _uriPrefix) public onlyOwner {
uriPrefix = _uriPrefix;
}
function setUriSuffix(string memory _uriSuffix) public onlyOwner {
uriSuffix = _uriSuffix;
}
function setPaused(bool _state) public onlyOwner {
paused = _state;
}
function withdraw() public onlyOwner {
require(address(this).balance > 0, "Balance is 0");
payable(owner()).transfer(address(this).balance);
}
function _baseURI() internal view virtual override returns (string memory) {
return uriPrefix;
}
}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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a06040819052600060808190526200001b91600a916200015d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b916200015d565b5066470de4df820000600c556103e8600d55612710600e55601e600f55605a6010556011805461ffff191660011790553480156200008757600080fd5b50604080518082018252600b81526a4f6b617920417a756b697360a81b60208083019182528351808501909452600484526327a5a0ad60e11b908401528151919291620000d7916002916200015d565b508051620000ed9060039060208401906200015d565b505060016000555062000100336200010b565b600160095562000240565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b9062000203565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600181811c908216806200021857607f821691505b602082108114156200023a57634e487b7160e01b600052602260045260246000fd5b50919050565b6122ee80620002506000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610641578063e985e9c514610657578063efbd73f4146106a0578063f2fde38b146106c0578063f676308a146106e057600080fd5b8063a22cb465146105a1578063b071401b146105c1578063b88d4fde146105e1578063c49b3d5414610601578063c87b56dd1461062157600080fd5b80638693da20116100f25780638693da201461052f5780638da5cb5b1461054557806394354fd01461056357806395d89b4114610579578063a0712d681461058e57600080fd5b806370a082311461049a578063715018a6146104ba578063728d41c9146104cf5780637ec4a659146104ef578063811d24371461050f57600080fd5b806324a6ab0c116101bc5780635aca1bb6116101805780635aca1bb61461040b5780635c975abb1461042b5780636352211e1461044557806366a88d961461046557806368428a1b1461047b57600080fd5b806324a6ab0c1461037e5780633ccfd60b1461039457806342842e0e146103a9578063438b6300146103c95780635503a0e8146103f657600080fd5b806313faede61161020357806313faede6146102e657806316ba10e01461030957806316c38b3c1461032957806318160ddd1461034957806323b872dd1461035e57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e7e565b610700565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610752565b60405161026191906120ae565b34801561029857600080fd5b506102ac6102a7366004611f01565b6107e4565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611e39565b610828565b005b3480156102f257600080fd5b506102fb6108b6565b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611eb8565b6108d5565b34801561033557600080fd5b506102e4610344366004611e63565b61091f565b34801561035557600080fd5b506102fb61095c565b34801561036a57600080fd5b506102e4610379366004611d57565b61096a565b34801561038a57600080fd5b506102fb600d5481565b3480156103a057600080fd5b506102e4610975565b3480156103b557600080fd5b506102e46103c4366004611d57565b610a1a565b3480156103d557600080fd5b506103e96103e4366004611d09565b610a35565b604051610261919061206a565b34801561040257600080fd5b5061027f610b16565b34801561041757600080fd5b506102e4610426366004611e63565b610ba4565b34801561043757600080fd5b506011546102559060ff1681565b34801561045157600080fd5b506102ac610460366004611f01565b610be8565b34801561047157600080fd5b506102fb60105481565b34801561048757600080fd5b5060115461025590610100900460ff1681565b3480156104a657600080fd5b506102fb6104b5366004611d09565b610bfa565b3480156104c657600080fd5b506102e4610c49565b3480156104db57600080fd5b506102e46104ea366004611f01565b610c7f565b3480156104fb57600080fd5b506102e461050a366004611eb8565b610cae565b34801561051b57600080fd5b506102e461052a366004611f01565b610ceb565b34801561053b57600080fd5b506102fb600c5481565b34801561055157600080fd5b506008546001600160a01b03166102ac565b34801561056f57600080fd5b506102fb600f5481565b34801561058557600080fd5b5061027f610d1a565b6102e461059c366004611f01565b610d29565b3480156105ad57600080fd5b506102e46105bc366004611e0f565b610fa1565b3480156105cd57600080fd5b506102e46105dc366004611f01565b611037565b3480156105ed57600080fd5b506102e46105fc366004611d93565b611066565b34801561060d57600080fd5b506102e461061c366004611f01565b6110b7565b34801561062d57600080fd5b5061027f61063c366004611f01565b611136565b34801561064d57600080fd5b506102fb600e5481565b34801561066357600080fd5b50610255610672366004611d24565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102e46106bb366004611f1a565b611204565b3480156106cc57600080fd5b506102e46106db366004611d09565b6112e9565b3480156106ec57600080fd5b506102e46106fb366004611f01565b611381565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610761906121e0565b80601f016020809104026020016040519081016040528092919081815260200182805461078d906121e0565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b60006107ef826113b0565b61080c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083382610be8565b9050806001600160a01b0316836001600160a01b031614156108685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088857506108868133610672565b155b156108a6576040516367d9dca160e11b815260040160405180910390fd5b6108b18383836113e9565b505050565b6000600d546108c361095c565b106108cf5750600c5490565b50600090565b6008546001600160a01b031633146109085760405162461bcd60e51b81526004016108ff906120ef565b60405180910390fd5b805161091b90600b906020840190611bce565b5050565b6008546001600160a01b031633146109495760405162461bcd60e51b81526004016108ff906120ef565b6011805460ff1916911515919091179055565b600154600054036000190190565b6108b1838383611445565b6008546001600160a01b0316331461099f5760405162461bcd60e51b81526004016108ff906120ef565b600047116109de5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016108ff565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a17573d6000803e3d6000fd5b50565b6108b183838360405180602001604052806000815250611066565b60606000610a4283610bfa565b905060008167ffffffffffffffff811115610a5f57610a5f61228c565b604051908082528060200260200182016040528015610a88578160200160208202803683370190505b509050600160005b8381108015610aa15750600e548211155b15610b0c576000610ab183610be8565b9050866001600160a01b0316816001600160a01b03161415610af95782848381518110610ae057610ae0612276565b602090810291909101015281610af58161221b565b9250505b82610b038161221b565b93505050610a90565b5090949350505050565b600b8054610b23906121e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906121e0565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b505050505081565b6008546001600160a01b03163314610bce5760405162461bcd60e51b81526004016108ff906120ef565b601180549115156101000261ff0019909216919091179055565b6000610bf38261165b565b5192915050565b60006001600160a01b038216610c23576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c735760405162461bcd60e51b81526004016108ff906120ef565b610c7d6000611784565b565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016108ff906120ef565b601055565b6008546001600160a01b03163314610cd85760405162461bcd60e51b81526004016108ff906120ef565b805161091b90600a906020840190611bce565b6008546001600160a01b03163314610d155760405162461bcd60e51b81526004016108ff906120ef565b600c55565b606060038054610761906121e0565b601154819060ff1615610d785760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ff565b600081118015610d8a5750600f548111155b610da65760405162461bcd60e51b81526004016108ff906120c1565b600e5481610db261095c565b610dbc9190612152565b1115610dda5760405162461bcd60e51b81526004016108ff90612124565b601154610100900460ff16610e265760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016108ff565b600d54610e3161095c565b1015610ecf57600d5482610e4361095c565b610e4d9190612152565b1115610ecf5760405162461bcd60e51b8152602060048201526044602482018190527f4d696e7420616d6f756e7420657863656564207468652066726565206d696e74908201527f206c696d69742c20506c656173652072656475636520746865206d696e7420636064820152631bdd5b9d60e21b608482015260a4016108ff565b81610ed86108b6565b610ee2919061217e565b341015610f275760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ff565b60105482610f3433610bfa565b610f3e9190612152565b1115610f975760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604482015261195960f21b60648201526084016108ff565b61091b33836117d6565b6001600160a01b038216331415610fcb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110615760405162461bcd60e51b81526004016108ff906120ef565b600f55565b611071848484611445565b6001600160a01b0383163b151580156110935750611091848484846117f0565b155b156110b1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116110d85760405162461bcd60e51b81526004016108ff906120c1565b600e54816110e461095c565b6110ee9190612152565b111561110c5760405162461bcd60e51b81526004016108ff90612124565b6008546001600160a01b03163314610f975760405162461bcd60e51b81526004016108ff906120ef565b6060611141826113b0565b6111a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ff565b60006111af6118e8565b905060008151116111cf57604051806020016040528060008152506111fd565b806111d9846118f7565b600b6040516020016111ed93929190611f69565b6040516020818303038152906040525b9392505050565b601154829060ff16156112535760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ff565b6000811180156112655750600f548111155b6112815760405162461bcd60e51b81526004016108ff906120c1565b600e548161128d61095c565b6112979190612152565b11156112b55760405162461bcd60e51b81526004016108ff90612124565b6008546001600160a01b031633146112df5760405162461bcd60e51b81526004016108ff906120ef565b6108b182846117d6565b6008546001600160a01b031633146113135760405162461bcd60e51b81526004016108ff906120ef565b6001600160a01b0381166113785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ff565b610a1781611784565b6008546001600160a01b031633146113ab5760405162461bcd60e51b81526004016108ff906120ef565b600d55565b6000816001111580156113c4575060005482105b801561074c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114508261165b565b80519091506000906001600160a01b0316336001600160a01b0316148061147e5750815161147e9033610672565b8061149957503361148e846107e4565b6001600160a01b0316145b9050806114b957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114ee5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661151557604051633a954ecd60e21b815260040160405180910390fd5b61152560008484600001516113e9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661161157600054811015611611578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561168b575060005481105b1561176b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117695780516001600160a01b0316156116ff579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611764579392505050565b6116ff565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61091b8282604051806020016040528060008152506119f5565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061182590339089908890889060040161202d565b602060405180830381600087803b15801561183f57600080fd5b505af192505050801561186f575060408051601f3d908101601f1916820190925261186c91810190611e9b565b60015b6118ca573d80801561189d576040519150601f19603f3d011682016040523d82523d6000602084013e6118a2565b606091505b5080516118c2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610761906121e0565b60608161191b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611945578061192f8161221b565b915061193e9050600a8361216a565b915061191f565b60008167ffffffffffffffff8111156119605761196061228c565b6040519080825280601f01601f19166020018201604052801561198a576020820181803683370190505b5090505b84156118e05761199f60018361219d565b91506119ac600a86612236565b6119b7906030612152565b60f81b8183815181106119cc576119cc612276565b60200101906001600160f81b031916908160001a9053506119ee600a8661216a565b945061198e565b6108b183838360016000546001600160a01b038516611a2657604051622e076360e81b815260040160405180910390fd5b83611a445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611af657506001600160a01b0387163b15155b15611b7f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b4760008884806001019550886117f0565b611b64576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611afc578260005414611b7a57600080fd5b611bc5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b80575b50600055611654565b828054611bda906121e0565b90600052602060002090601f016020900481019282611bfc5760008555611c42565b82601f10611c1557805160ff1916838001178555611c42565b82800160010185558215611c42579182015b82811115611c42578251825591602001919060010190611c27565b50611c4e929150611c52565b5090565b5b80821115611c4e5760008155600101611c53565b600067ffffffffffffffff80841115611c8257611c8261228c565b604051601f8501601f19908116603f01168101908282118183101715611caa57611caa61228c565b81604052809350858152868686011115611cc357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cf457600080fd5b919050565b80358015158114611cf457600080fd5b600060208284031215611d1b57600080fd5b6111fd82611cdd565b60008060408385031215611d3757600080fd5b611d4083611cdd565b9150611d4e60208401611cdd565b90509250929050565b600080600060608486031215611d6c57600080fd5b611d7584611cdd565b9250611d8360208501611cdd565b9150604084013590509250925092565b60008060008060808587031215611da957600080fd5b611db285611cdd565b9350611dc060208601611cdd565b925060408501359150606085013567ffffffffffffffff811115611de357600080fd5b8501601f81018713611df457600080fd5b611e0387823560208401611c67565b91505092959194509250565b60008060408385031215611e2257600080fd5b611e2b83611cdd565b9150611d4e60208401611cf9565b60008060408385031215611e4c57600080fd5b611e5583611cdd565b946020939093013593505050565b600060208284031215611e7557600080fd5b6111fd82611cf9565b600060208284031215611e9057600080fd5b81356111fd816122a2565b600060208284031215611ead57600080fd5b81516111fd816122a2565b600060208284031215611eca57600080fd5b813567ffffffffffffffff811115611ee157600080fd5b8201601f81018413611ef257600080fd5b6118e084823560208401611c67565b600060208284031215611f1357600080fd5b5035919050565b60008060408385031215611f2d57600080fd5b82359150611d4e60208401611cdd565b60008151808452611f558160208601602086016121b4565b601f01601f19169290920160200192915050565b600084516020611f7c8285838a016121b4565b855191840191611f8f8184848a016121b4565b8554920191600090600181811c9080831680611fac57607f831692505b858310811415611fca57634e487b7160e01b85526022600452602485fd5b808015611fde5760018114611fef5761201c565b60ff1985168852838801955061201c565b60008b81526020902060005b858110156120145781548a820152908401908801611ffb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206090830184611f3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a257835183529284019291840191600101612086565b50909695505050505050565b6020815260006111fd6020830184611f3d565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156121655761216561224a565b500190565b60008261217957612179612260565b500490565b60008160001904831182151516156121985761219861224a565b500290565b6000828210156121af576121af61224a565b500390565b60005b838110156121cf5781810151838201526020016121b7565b838111156110b15750506000910152565b600181811c908216806121f457607f821691505b6020821081141561221557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222f5761222f61224a565b5060010190565b60008261224557612245612260565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1757600080fdfea2646970667358221220316fc30cb6d0f9c7865fb24ea73389f36511828613c927cf833a6929e855369a64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610641578063e985e9c514610657578063efbd73f4146106a0578063f2fde38b146106c0578063f676308a146106e057600080fd5b8063a22cb465146105a1578063b071401b146105c1578063b88d4fde146105e1578063c49b3d5414610601578063c87b56dd1461062157600080fd5b80638693da20116100f25780638693da201461052f5780638da5cb5b1461054557806394354fd01461056357806395d89b4114610579578063a0712d681461058e57600080fd5b806370a082311461049a578063715018a6146104ba578063728d41c9146104cf5780637ec4a659146104ef578063811d24371461050f57600080fd5b806324a6ab0c116101bc5780635aca1bb6116101805780635aca1bb61461040b5780635c975abb1461042b5780636352211e1461044557806366a88d961461046557806368428a1b1461047b57600080fd5b806324a6ab0c1461037e5780633ccfd60b1461039457806342842e0e146103a9578063438b6300146103c95780635503a0e8146103f657600080fd5b806313faede61161020357806313faede6146102e657806316ba10e01461030957806316c38b3c1461032957806318160ddd1461034957806323b872dd1461035e57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611e7e565b610700565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610752565b60405161026191906120ae565b34801561029857600080fd5b506102ac6102a7366004611f01565b6107e4565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611e39565b610828565b005b3480156102f257600080fd5b506102fb6108b6565b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004611eb8565b6108d5565b34801561033557600080fd5b506102e4610344366004611e63565b61091f565b34801561035557600080fd5b506102fb61095c565b34801561036a57600080fd5b506102e4610379366004611d57565b61096a565b34801561038a57600080fd5b506102fb600d5481565b3480156103a057600080fd5b506102e4610975565b3480156103b557600080fd5b506102e46103c4366004611d57565b610a1a565b3480156103d557600080fd5b506103e96103e4366004611d09565b610a35565b604051610261919061206a565b34801561040257600080fd5b5061027f610b16565b34801561041757600080fd5b506102e4610426366004611e63565b610ba4565b34801561043757600080fd5b506011546102559060ff1681565b34801561045157600080fd5b506102ac610460366004611f01565b610be8565b34801561047157600080fd5b506102fb60105481565b34801561048757600080fd5b5060115461025590610100900460ff1681565b3480156104a657600080fd5b506102fb6104b5366004611d09565b610bfa565b3480156104c657600080fd5b506102e4610c49565b3480156104db57600080fd5b506102e46104ea366004611f01565b610c7f565b3480156104fb57600080fd5b506102e461050a366004611eb8565b610cae565b34801561051b57600080fd5b506102e461052a366004611f01565b610ceb565b34801561053b57600080fd5b506102fb600c5481565b34801561055157600080fd5b506008546001600160a01b03166102ac565b34801561056f57600080fd5b506102fb600f5481565b34801561058557600080fd5b5061027f610d1a565b6102e461059c366004611f01565b610d29565b3480156105ad57600080fd5b506102e46105bc366004611e0f565b610fa1565b3480156105cd57600080fd5b506102e46105dc366004611f01565b611037565b3480156105ed57600080fd5b506102e46105fc366004611d93565b611066565b34801561060d57600080fd5b506102e461061c366004611f01565b6110b7565b34801561062d57600080fd5b5061027f61063c366004611f01565b611136565b34801561064d57600080fd5b506102fb600e5481565b34801561066357600080fd5b50610255610672366004611d24565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102e46106bb366004611f1a565b611204565b3480156106cc57600080fd5b506102e46106db366004611d09565b6112e9565b3480156106ec57600080fd5b506102e46106fb366004611f01565b611381565b60006001600160e01b031982166380ac58cd60e01b148061073157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610761906121e0565b80601f016020809104026020016040519081016040528092919081815260200182805461078d906121e0565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b60006107ef826113b0565b61080c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083382610be8565b9050806001600160a01b0316836001600160a01b031614156108685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061088857506108868133610672565b155b156108a6576040516367d9dca160e11b815260040160405180910390fd5b6108b18383836113e9565b505050565b6000600d546108c361095c565b106108cf5750600c5490565b50600090565b6008546001600160a01b031633146109085760405162461bcd60e51b81526004016108ff906120ef565b60405180910390fd5b805161091b90600b906020840190611bce565b5050565b6008546001600160a01b031633146109495760405162461bcd60e51b81526004016108ff906120ef565b6011805460ff1916911515919091179055565b600154600054036000190190565b6108b1838383611445565b6008546001600160a01b0316331461099f5760405162461bcd60e51b81526004016108ff906120ef565b600047116109de5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016108ff565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a17573d6000803e3d6000fd5b50565b6108b183838360405180602001604052806000815250611066565b60606000610a4283610bfa565b905060008167ffffffffffffffff811115610a5f57610a5f61228c565b604051908082528060200260200182016040528015610a88578160200160208202803683370190505b509050600160005b8381108015610aa15750600e548211155b15610b0c576000610ab183610be8565b9050866001600160a01b0316816001600160a01b03161415610af95782848381518110610ae057610ae0612276565b602090810291909101015281610af58161221b565b9250505b82610b038161221b565b93505050610a90565b5090949350505050565b600b8054610b23906121e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906121e0565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b505050505081565b6008546001600160a01b03163314610bce5760405162461bcd60e51b81526004016108ff906120ef565b601180549115156101000261ff0019909216919091179055565b6000610bf38261165b565b5192915050565b60006001600160a01b038216610c23576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c735760405162461bcd60e51b81526004016108ff906120ef565b610c7d6000611784565b565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016108ff906120ef565b601055565b6008546001600160a01b03163314610cd85760405162461bcd60e51b81526004016108ff906120ef565b805161091b90600a906020840190611bce565b6008546001600160a01b03163314610d155760405162461bcd60e51b81526004016108ff906120ef565b600c55565b606060038054610761906121e0565b601154819060ff1615610d785760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ff565b600081118015610d8a5750600f548111155b610da65760405162461bcd60e51b81526004016108ff906120c1565b600e5481610db261095c565b610dbc9190612152565b1115610dda5760405162461bcd60e51b81526004016108ff90612124565b601154610100900460ff16610e265760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b60448201526064016108ff565b600d54610e3161095c565b1015610ecf57600d5482610e4361095c565b610e4d9190612152565b1115610ecf5760405162461bcd60e51b8152602060048201526044602482018190527f4d696e7420616d6f756e7420657863656564207468652066726565206d696e74908201527f206c696d69742c20506c656173652072656475636520746865206d696e7420636064820152631bdd5b9d60e21b608482015260a4016108ff565b81610ed86108b6565b610ee2919061217e565b341015610f275760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108ff565b60105482610f3433610bfa565b610f3e9190612152565b1115610f975760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604482015261195960f21b60648201526084016108ff565b61091b33836117d6565b6001600160a01b038216331415610fcb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110615760405162461bcd60e51b81526004016108ff906120ef565b600f55565b611071848484611445565b6001600160a01b0383163b151580156110935750611091848484846117f0565b155b156110b1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b80600081116110d85760405162461bcd60e51b81526004016108ff906120c1565b600e54816110e461095c565b6110ee9190612152565b111561110c5760405162461bcd60e51b81526004016108ff90612124565b6008546001600160a01b03163314610f975760405162461bcd60e51b81526004016108ff906120ef565b6060611141826113b0565b6111a55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ff565b60006111af6118e8565b905060008151116111cf57604051806020016040528060008152506111fd565b806111d9846118f7565b600b6040516020016111ed93929190611f69565b6040516020818303038152906040525b9392505050565b601154829060ff16156112535760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108ff565b6000811180156112655750600f548111155b6112815760405162461bcd60e51b81526004016108ff906120c1565b600e548161128d61095c565b6112979190612152565b11156112b55760405162461bcd60e51b81526004016108ff90612124565b6008546001600160a01b031633146112df5760405162461bcd60e51b81526004016108ff906120ef565b6108b182846117d6565b6008546001600160a01b031633146113135760405162461bcd60e51b81526004016108ff906120ef565b6001600160a01b0381166113785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ff565b610a1781611784565b6008546001600160a01b031633146113ab5760405162461bcd60e51b81526004016108ff906120ef565b600d55565b6000816001111580156113c4575060005482105b801561074c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114508261165b565b80519091506000906001600160a01b0316336001600160a01b0316148061147e5750815161147e9033610672565b8061149957503361148e846107e4565b6001600160a01b0316145b9050806114b957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114ee5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661151557604051633a954ecd60e21b815260040160405180910390fd5b61152560008484600001516113e9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661161157600054811015611611578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152818060011115801561168b575060005481105b1561176b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906117695780516001600160a01b0316156116ff579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611764579392505050565b6116ff565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61091b8282604051806020016040528060008152506119f5565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061182590339089908890889060040161202d565b602060405180830381600087803b15801561183f57600080fd5b505af192505050801561186f575060408051601f3d908101601f1916820190925261186c91810190611e9b565b60015b6118ca573d80801561189d576040519150601f19603f3d011682016040523d82523d6000602084013e6118a2565b606091505b5080516118c2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a8054610761906121e0565b60608161191b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611945578061192f8161221b565b915061193e9050600a8361216a565b915061191f565b60008167ffffffffffffffff8111156119605761196061228c565b6040519080825280601f01601f19166020018201604052801561198a576020820181803683370190505b5090505b84156118e05761199f60018361219d565b91506119ac600a86612236565b6119b7906030612152565b60f81b8183815181106119cc576119cc612276565b60200101906001600160f81b031916908160001a9053506119ee600a8661216a565b945061198e565b6108b183838360016000546001600160a01b038516611a2657604051622e076360e81b815260040160405180910390fd5b83611a445760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611af657506001600160a01b0387163b15155b15611b7f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b4760008884806001019550886117f0565b611b64576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611afc578260005414611b7a57600080fd5b611bc5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611b80575b50600055611654565b828054611bda906121e0565b90600052602060002090601f016020900481019282611bfc5760008555611c42565b82601f10611c1557805160ff1916838001178555611c42565b82800160010185558215611c42579182015b82811115611c42578251825591602001919060010190611c27565b50611c4e929150611c52565b5090565b5b80821115611c4e5760008155600101611c53565b600067ffffffffffffffff80841115611c8257611c8261228c565b604051601f8501601f19908116603f01168101908282118183101715611caa57611caa61228c565b81604052809350858152868686011115611cc357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cf457600080fd5b919050565b80358015158114611cf457600080fd5b600060208284031215611d1b57600080fd5b6111fd82611cdd565b60008060408385031215611d3757600080fd5b611d4083611cdd565b9150611d4e60208401611cdd565b90509250929050565b600080600060608486031215611d6c57600080fd5b611d7584611cdd565b9250611d8360208501611cdd565b9150604084013590509250925092565b60008060008060808587031215611da957600080fd5b611db285611cdd565b9350611dc060208601611cdd565b925060408501359150606085013567ffffffffffffffff811115611de357600080fd5b8501601f81018713611df457600080fd5b611e0387823560208401611c67565b91505092959194509250565b60008060408385031215611e2257600080fd5b611e2b83611cdd565b9150611d4e60208401611cf9565b60008060408385031215611e4c57600080fd5b611e5583611cdd565b946020939093013593505050565b600060208284031215611e7557600080fd5b6111fd82611cf9565b600060208284031215611e9057600080fd5b81356111fd816122a2565b600060208284031215611ead57600080fd5b81516111fd816122a2565b600060208284031215611eca57600080fd5b813567ffffffffffffffff811115611ee157600080fd5b8201601f81018413611ef257600080fd5b6118e084823560208401611c67565b600060208284031215611f1357600080fd5b5035919050565b60008060408385031215611f2d57600080fd5b82359150611d4e60208401611cdd565b60008151808452611f558160208601602086016121b4565b601f01601f19169290920160200192915050565b600084516020611f7c8285838a016121b4565b855191840191611f8f8184848a016121b4565b8554920191600090600181811c9080831680611fac57607f831692505b858310811415611fca57634e487b7160e01b85526022600452602485fd5b808015611fde5760018114611fef5761201c565b60ff1985168852838801955061201c565b60008b81526020902060005b858110156120145781548a820152908401908801611ffb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206090830184611f3d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120a257835183529284019291840191600101612086565b50909695505050505050565b6020815260006111fd6020830184611f3d565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156121655761216561224a565b500190565b60008261217957612179612260565b500490565b60008160001904831182151516156121985761219861224a565b500290565b6000828210156121af576121af61224a565b500390565b60005b838110156121cf5781810151838201526020016121b7565b838111156110b15750506000910152565b600181811c908216806121f457607f821691505b6020821081141561221557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561222f5761222f61224a565b5060010190565b60008261224557612245612260565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a1757600080fdfea2646970667358221220316fc30cb6d0f9c7865fb24ea73389f36511828613c927cf833a6929e855369a64736f6c63430008070033
Deployed Bytecode Sourcemap
50081:4233:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32592:305;;;;;;;;;;-1:-1:-1;32592:305:0;;;;;:::i;:::-;;:::i;:::-;;;7856:14:1;;7849:22;7831:41;;7819:2;7804:18;32592:305:0;;;;;;;;35977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37480:204::-;;;;;;;;;;-1:-1:-1;37480:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6517:32:1;;;6499:51;;6487:2;6472:18;37480:204:0;6353:203:1;37043:371:0;;;;;;;;;;-1:-1:-1;37043:371:0;;;;;:::i;:::-;;:::i;:::-;;50676:128;;;;;;;;;;;;;:::i;:::-;;;12403:25:1;;;12391:2;12376:18;50676:128:0;12257:177:1;53857:100:0;;;;;;;;;;-1:-1:-1;53857:100:0;;;;;:::i;:::-;;:::i;53963:77::-;;;;;;;;;;-1:-1:-1;53963:77:0;;;;;:::i;:::-;;:::i;31841:303::-;;;;;;;;;;;;;:::i;38337:170::-;;;;;;;;;;-1:-1:-1;38337:170:0;;;;;:::i;:::-;;:::i;50293:32::-;;;;;;;;;;;;;;;;54046:155;;;;;;;;;;;;;:::i;38578:185::-;;;;;;;;;;-1:-1:-1;38578:185:0;;;;;:::i;:::-;;:::i;52145:635::-;;;;;;;;;;-1:-1:-1;52145:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50208:33::-;;;;;;;;;;;;;:::i;53306:83::-;;;;;;;;;;-1:-1:-1;53306:83:0;;;;;:::i;:::-;;:::i;50451:25::-;;;;;;;;;;-1:-1:-1;50451:25:0;;;;;;;;35786:124;;;;;;;;;;-1:-1:-1;35786:124:0;;;;;:::i;:::-;;:::i;50410:34::-;;;;;;;;;;;;;;;;50481:30;;;;;;;;;;-1:-1:-1;50481:30:0;;;;;;;;;;;32961:206;;;;;;;;;;-1:-1:-1;32961:206:0;;;;;:::i;:::-;;:::i;9592:103::-;;;;;;;;;;;;;:::i;53395:116::-;;;;;;;;;;-1:-1:-1;53395:116:0;;;;;:::i;:::-;;:::i;53751:100::-;;;;;;;;;;-1:-1:-1;53751:100:0;;;;;:::i;:::-;;:::i;53214:86::-;;;;;;;;;;-1:-1:-1;53214:86:0;;;;;:::i;:::-;;:::i;50250:38::-;;;;;;;;;;;;;;;;8941:87;;;;;;;;;;-1:-1:-1;9014:6:0;;-1:-1:-1;;;;;9014:6:0;8941:87;;50367:38;;;;;;;;;;;;;;;;36146:104;;;;;;;;;;;;;:::i;51301:531::-;;;;;;:::i;:::-;;:::i;37756:279::-;;;;;;;;;;-1:-1:-1;37756:279:0;;;;;:::i;:::-;;:::i;53517:130::-;;;;;;;;;;-1:-1:-1;53517:130:0;;;;;:::i;:::-;;:::i;38834:369::-;;;;;;;;;;-1:-1:-1;38834:369:0;;;;;:::i;:::-;;:::i;52001:138::-;;;;;;;;;;-1:-1:-1;52001:138:0;;;;;:::i;:::-;;:::i;52786:422::-;;;;;;;;;;-1:-1:-1;52786:422:0;;;;;:::i;:::-;;:::i;50330:32::-;;;;;;;;;;;;;;;;38106:164;;;;;;;;;;-1:-1:-1;38106:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38227:25:0;;;38203:4;38227:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38106:164;51840:155;;;;;;;;;;-1:-1:-1;51840:155:0;;;;;:::i;:::-;;:::i;9850:201::-;;;;;;;;;;-1:-1:-1;9850:201:0;;;;;:::i;:::-;;:::i;53653:92::-;;;;;;;;;;-1:-1:-1;53653:92:0;;;;;:::i;:::-;;:::i;32592:305::-;32694:4;-1:-1:-1;;;;;;32731:40:0;;-1:-1:-1;;;32731:40:0;;:105;;-1:-1:-1;;;;;;;32788:48:0;;-1:-1:-1;;;32788:48:0;32731:105;:158;;;-1:-1:-1;;;;;;;;;;21374:40:0;;;32853:36;32711:178;32592:305;-1:-1:-1;;32592:305:0:o;35977:100::-;36031:13;36064:5;36057:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:100;:::o;37480:204::-;37548:7;37573:16;37581:7;37573;:16::i;:::-;37568:64;;37598:34;;-1:-1:-1;;;37598:34:0;;;;;;;;;;;37568:64;-1:-1:-1;37652:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37652:24:0;;37480:204::o;37043:371::-;37116:13;37132:24;37148:7;37132:15;:24::i;:::-;37116:40;;37177:5;-1:-1:-1;;;;;37171:11:0;:2;-1:-1:-1;;;;;37171:11:0;;37167:48;;;37191:24;;-1:-1:-1;;;37191:24:0;;;;;;;;;;;37167:48;7772:10;-1:-1:-1;;;;;37232:21:0;;;;;;:63;;-1:-1:-1;37258:37:0;37275:5;7772:10;38106:164;:::i;37258:37::-;37257:38;37232:63;37228:138;;;37319:35;;-1:-1:-1;;;37319:35:0;;;;;;;;;;;37228:138;37378:28;37387:2;37391:7;37400:5;37378:8;:28::i;:::-;37105:309;37043:371;;:::o;50676:128::-;50712:7;50750:10;;50733:13;:11;:13::i;:::-;:27;50730:49;;-1:-1:-1;50769:10:0;;;50676:128::o;50730:49::-;-1:-1:-1;50797:1:0;;50676:128::o;53857:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;;;;;;;;;53929:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53857:100:::0;:::o;53963:77::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54019:6:::1;:15:::0;;-1:-1:-1;;54019:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53963:77::o;31841:303::-;50663:1;32095:12;31885:7;32079:13;:28;-1:-1:-1;;32079:46:0;;31841:303::o;38337:170::-;38471:28;38481:4;38487:2;38491:7;38471:9;:28::i;54046:155::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;54122:1:::1;54098:21;:25;54090:50;;;::::0;-1:-1:-1;;;54090:50:0;;9412:2:1;54090:50:0::1;::::0;::::1;9394:21:1::0;9451:2;9431:18;;;9424:30;-1:-1:-1;;;9470:18:1;;;9463:42;9522:18;;54090:50:0::1;9210:336:1::0;54090:50:0::1;9014:6:::0;;54147:48:::1;::::0;-1:-1:-1;;;;;9014:6:0;;;;54173:21:::1;54147:48:::0;::::1;;;::::0;::::1;::::0;;;54173:21;9014:6;54147:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54046:155::o:0;38578:185::-;38716:39;38733:4;38739:2;38743:7;38716:39;;;;;;;;;;;;:16;:39::i;52145:635::-;52220:16;52248:23;52274:17;52284:6;52274:9;:17::i;:::-;52248:43;;52298:30;52345:15;52331:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52331:30:0;-1:-1:-1;52298:63:0;-1:-1:-1;52393:1:0;52368:22;52437:309;52462:15;52444;:33;:64;;;;;52499:9;;52481:14;:27;;52444:64;52437:309;;;52519:25;52547:23;52555:14;52547:7;:23::i;:::-;52519:51;;52606:6;-1:-1:-1;;;;;52585:27:0;:17;-1:-1:-1;;;;;52585:27:0;;52581:131;;;52658:14;52625:13;52639:15;52625:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;52685:17;;;;:::i;:::-;;;;52581:131;52722:16;;;;:::i;:::-;;;;52510:236;52437:309;;;-1:-1:-1;52761:13:0;;52145:635;-1:-1:-1;;;;52145:635:0:o;50208:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53306:83::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53365:10:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;53365:18:0;;::::1;::::0;;;::::1;::::0;;53306:83::o;35786:124::-;35850:7;35877:20;35889:7;35877:11;:20::i;:::-;:25;;35786:124;-1:-1:-1;;35786:124:0:o;32961:206::-;33025:7;-1:-1:-1;;;;;33049:19:0;;33045:60;;33077:28;;-1:-1:-1;;;33077:28:0;;;;;;;;;;;33045:60;-1:-1:-1;;;;;;33131:19:0;;;;;:12;:19;;;;;:27;;;;32961:206::o;9592:103::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;9657:30:::1;9684:1;9657:18;:30::i;:::-;9592:103::o:0;53395:116::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53473:14:::1;:32:::0;53395:116::o;53751:100::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53823:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;53214:86::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53276:10:::1;:18:::0;53214:86::o;36146:104::-;36202:13;36235:7;36228:14;;;;;:::i;51301:531::-;50871:6;;51366:11;;50871:6;;50870:7;50862:43;;;;-1:-1:-1;;;50862:43:0;;10114:2:1;50862:43:0;;;10096:21:1;10153:2;10133:18;;;10126:30;-1:-1:-1;;;10172:18:1;;;10165:53;10235:18;;50862:43:0;9912:347:1;50862:43:0;50934:1;50920:11;:15;:52;;;;;50954:18;;50939:11;:33;;50920:52;50912:85;;;;-1:-1:-1;;;50912:85:0;;;;;;;:::i;:::-;51043:9;;51028:11;51012:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51004:73;;;;-1:-1:-1;;;51004:73:0;;;;;;;:::i;:::-;51394:10:::1;::::0;::::1;::::0;::::1;;;51386:42;;;::::0;-1:-1:-1;;;51386:42:0;;9065:2:1;51386:42:0::1;::::0;::::1;9047:21:1::0;9104:2;9084:18;;;9077:30;-1:-1:-1;;;9123:18:1;;;9116:48;9181:18;;51386:42:0::1;8863:342:1::0;51386:42:0::1;51454:10;;51438:13;:11;:13::i;:::-;:26;51435:172;;;51516:10;;51501:11;51485:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;51477:122;;;::::0;-1:-1:-1;;;51477:122:0;;10882:2:1;51477:122:0::1;::::0;::::1;10864:21:1::0;10921:2;10901:18;;;10894:30;;;10960:34;10940:18;;;10933:62;11031:34;11011:18;;;11004:62;-1:-1:-1;;;11082:19:1;;;11075:35;11127:19;;51477:122:0::1;10680:472:1::0;51477:122:0::1;51643:11;51634:6;:4;:6::i;:::-;:20;;;;:::i;:::-;51621:9;:33;;51613:65;;;::::0;-1:-1:-1;;;51613:65:0;;12111:2:1;51613:65:0::1;::::0;::::1;12093:21:1::0;12150:2;12130:18;;;12123:30;-1:-1:-1;;;12169:18:1;;;12162:49;12228:18;;51613:65:0::1;11909:343:1::0;51613:65:0::1;51732:14;;51717:11;51693:21;51703:10;51693:9;:21::i;:::-;:35;;;;:::i;:::-;:53;;51685:100;;;::::0;-1:-1:-1;;;51685:100:0;;11708:2:1;51685:100:0::1;::::0;::::1;11690:21:1::0;11747:2;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;-1:-1:-1;;;11837:18:1;;;11830:32;11879:19;;51685:100:0::1;11506:398:1::0;51685:100:0::1;51792:34;51802:10;51814:11;51792:9;:34::i;37756:279::-:0;-1:-1:-1;;;;;37847:24:0;;7772:10;37847:24;37843:54;;;37880:17;;-1:-1:-1;;;37880:17:0;;;;;;;;;;;37843:54;7772:10;37910:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37910:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37910:53:0;;;;;;;;;;37979:48;;7831:41:1;;;37910:42:0;;7772:10;37979:48;;7804:18:1;37979:48:0;;;;;;;37756:279;;:::o;53517:130::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53601:18:::1;:40:::0;53517:130::o;38834:369::-;39001:28;39011:4;39017:2;39021:7;39001:9;:28::i;:::-;-1:-1:-1;;;;;39044:13:0;;11525:20;11573:8;;39044:76;;;;;39064:56;39095:4;39101:2;39105:7;39114:5;39064:30;:56::i;:::-;39063:57;39044:76;39040:156;;;39144:40;;-1:-1:-1;;;39144:40:0;;;;;;;;;;;39040:156;38834:369;;;;:::o;52001:138::-;52069:11;51175:1;51161:11;:15;51153:48;;;;-1:-1:-1;;;51153:48:0;;;;;;;:::i;:::-;51247:9;;51232:11;51216:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51208:73;;;;-1:-1:-1;;;51208:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;52786:422::-:0;52885:13;52926:17;52934:8;52926:7;:17::i;:::-;52910:98;;;;-1:-1:-1;;;52910:98:0;;10466:2:1;52910:98:0;;;10448:21:1;10505:2;10485:18;;;10478:30;10544:34;10524:18;;;10517:62;-1:-1:-1;;;10595:18:1;;;10588:45;10650:19;;52910:98:0;10264:411:1;52910:98:0;53017:28;53048:10;:8;:10::i;:::-;53017:41;;53103:1;53078:14;53072:28;:32;:130;;;;;;;;;;;;;;;;;53140:14;53156:19;:8;:17;:19::i;:::-;53177:9;53123:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53072:130;53065:137;52786:422;-1:-1:-1;;;52786:422:0:o;51840:155::-;50871:6;;51926:11;;50871:6;;50870:7;50862:43;;;;-1:-1:-1;;;50862:43:0;;10114:2:1;50862:43:0;;;10096:21:1;10153:2;10133:18;;;10126:30;-1:-1:-1;;;10172:18:1;;;10165:53;10235:18;;50862:43:0;9912:347:1;50862:43:0;50934:1;50920:11;:15;:52;;;;;50954:18;;50939:11;:33;;50920:52;50912:85;;;;-1:-1:-1;;;50912:85:0;;;;;;;:::i;:::-;51043:9;;51028:11;51012:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51004:73;;;;-1:-1:-1;;;51004:73:0;;;;;;;:::i;:::-;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23:::1;9153:68;;;;-1:-1:-1::0;;;9153:68:0::1;;;;;;;:::i;:::-;51956:33:::2;51966:9;51977:11;51956:9;:33::i;9850:201::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9939:22:0;::::1;9931:73;;;::::0;-1:-1:-1;;;9931:73:0;;8309:2:1;9931:73:0::1;::::0;::::1;8291:21:1::0;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:36;8484:19;;9931:73:0::1;8107:402:1::0;9931:73:0::1;10015:28;10034:8;10015:18;:28::i;53653:92::-:0;9014:6;;-1:-1:-1;;;;;9014:6:0;7772:10;9161:23;9153:68;;;;-1:-1:-1;;;9153:68:0;;;;;;;:::i;:::-;53719:10:::1;:20:::0;53653:92::o;39458:187::-;39515:4;39558:7;50663:1;39539:26;;:53;;;;;39579:13;;39569:7;:23;39539:53;:98;;;;-1:-1:-1;;39610:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39610:27:0;;;;39609:28;;39458:187::o;47069:196::-;47184:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47184:29:0;-1:-1:-1;;;;;47184:29:0;;;;;;;;;47229:28;;47184:24;;47229:28;;;;;;;47069:196;;;:::o;42571:2112::-;42686:35;42724:20;42736:7;42724:11;:20::i;:::-;42799:18;;42686:58;;-1:-1:-1;42757:22:0;;-1:-1:-1;;;;;42783:34:0;7772:10;-1:-1:-1;;;;;42783:34:0;;:101;;;-1:-1:-1;42851:18:0;;42834:50;;7772:10;38106:164;:::i;42834:50::-;42783:154;;;-1:-1:-1;7772:10:0;42901:20;42913:7;42901:11;:20::i;:::-;-1:-1:-1;;;;;42901:36:0;;42783:154;42757:181;;42956:17;42951:66;;42982:35;;-1:-1:-1;;;42982:35:0;;;;;;;;;;;42951:66;43054:4;-1:-1:-1;;;;;43032:26:0;:13;:18;;;-1:-1:-1;;;;;43032:26:0;;43028:67;;43067:28;;-1:-1:-1;;;43067:28:0;;;;;;;;;;;43028:67;-1:-1:-1;;;;;43110:16:0;;43106:52;;43135:23;;-1:-1:-1;;;43135:23:0;;;;;;;;;;;43106:52;43279:49;43296:1;43300:7;43309:13;:18;;;43279:8;:49::i;:::-;-1:-1:-1;;;;;43624:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43624:31:0;;;;;;;-1:-1:-1;;43624:31:0;;;;;;;43670:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43670:29:0;;;;;;;;;;;43716:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43761:61:0;;;;-1:-1:-1;;;43806:15:0;43761:61;;;;;;;;;;;44096:11;;;44126:24;;;;;:29;44096:11;;44126:29;44122:445;;44351:13;;44337:11;:27;44333:219;;;44421:18;;;44389:24;;;:11;:24;;;;;;;;:50;;44504:28;;;;44462:70;;-1:-1:-1;;;44462:70:0;-1:-1:-1;;;;;;44462:70:0;;;-1:-1:-1;;;;;44389:50:0;;;44462:70;;;;;;;44333:219;43599:979;44614:7;44610:2;-1:-1:-1;;;;;44595:27:0;44604:4;-1:-1:-1;;;;;44595:27:0;;;;;;;;;;;44633:42;42675:2008;;42571:2112;;;:::o;34616:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34726:7:0;;50663:1;34775:23;;:47;;;;;34809:13;;34802:4;:20;34775:47;34771:886;;;34843:31;34877:17;;;:11;:17;;;;;;;;;34843:51;;;;;;;;;-1:-1:-1;;;;;34843:51:0;;;;-1:-1:-1;;;34843:51:0;;;;;;;;;;;-1:-1:-1;;;34843:51:0;;;;;;;;;;;;;;34913:729;;34963:14;;-1:-1:-1;;;;;34963:28:0;;34959:101;;35027:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;34959:101::-;-1:-1:-1;;;35402:6:0;35447:17;;;;:11;:17;;;;;;;;;35435:29;;;;;;;;;-1:-1:-1;;;;;35435:29:0;;;;;-1:-1:-1;;;35435:29:0;;;;;;;;;;;-1:-1:-1;;;35435:29:0;;;;;;;;;;;;;35495:28;35491:109;;35563:9;34616:1108;-1:-1:-1;;;34616:1108:0:o;35491:109::-;35362:261;;;34824:833;34771:886;35685:31;;-1:-1:-1;;;35685:31:0;;;;;;;;;;;10211:191;10304:6;;;-1:-1:-1;;;;;10321:17:0;;;-1:-1:-1;;;;;;10321:17:0;;;;;;;10354:40;;10304:6;;;10321:17;10304:6;;10354:40;;10285:16;;10354:40;10274:128;10211:191;:::o;39653:104::-;39722:27;39732:2;39736:8;39722:27;;;;;;;;;;;;:9;:27::i;47757:667::-;47941:72;;-1:-1:-1;;;47941:72:0;;47920:4;;-1:-1:-1;;;;;47941:36:0;;;;;:72;;7772:10;;47992:4;;47998:7;;48007:5;;47941:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47941:72:0;;;;;;;;-1:-1:-1;;47941:72:0;;;;;;;;;;;;:::i;:::-;;;47937:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48175:13:0;;48171:235;;48221:40;;-1:-1:-1;;;48221:40:0;;;;;;;;;;;48171:235;48364:6;48358:13;48349:6;48345:2;48341:15;48334:38;47937:480;-1:-1:-1;;;;;;48060:55:0;-1:-1:-1;;;48060:55:0;;-1:-1:-1;47937:480:0;47757:667;;;;;;:::o;54207:104::-;54267:13;54296:9;54289:16;;;;;:::i;5281:723::-;5337:13;5558:10;5554:53;;-1:-1:-1;;5585:10:0;;;;;;;;;;;;-1:-1:-1;;;5585:10:0;;;;;5281:723::o;5554:53::-;5632:5;5617:12;5673:78;5680:9;;5673:78;;5706:8;;;;:::i;:::-;;-1:-1:-1;5729:10:0;;-1:-1:-1;5737:2:0;5729:10;;:::i;:::-;;;5673:78;;;5761:19;5793:6;5783:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5783:17:0;;5761:39;;5811:154;5818:10;;5811:154;;5845:11;5855:1;5845:11;;:::i;:::-;;-1:-1:-1;5914:10:0;5922:2;5914:5;:10;:::i;:::-;5901:24;;:2;:24;:::i;:::-;5888:39;;5871:6;5878;5871:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5871:56:0;;;;;;;;-1:-1:-1;5942:11:0;5951:2;5942:11;;:::i;:::-;;;5811:154;;40120:163;40243:32;40249:2;40253:8;40263:5;40270:4;40681:20;40704:13;-1:-1:-1;;;;;40732:16:0;;40728:48;;40757:19;;-1:-1:-1;;;40757:19:0;;;;;;;;;;;40728:48;40791:13;40787:44;;40813:18;;-1:-1:-1;;;40813:18:0;;;;;;;;;;;40787:44;-1:-1:-1;;;;;41182:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;41241:49:0;;41182:44;;;;;;;;41241:49;;;;-1:-1:-1;;41182:44:0;;;;;;41241:49;;;;;;;;;;;;;;;;41307:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;41357:66:0;;;;-1:-1:-1;;;41407:15:0;41357:66;;;;;;;;;;41307:25;41504:23;;;41548:4;:23;;;;-1:-1:-1;;;;;;41556:13:0;;11525:20;11573:8;;41556:15;41544:641;;;41592:314;41623:38;;41648:12;;-1:-1:-1;;;;;41623:38:0;;;41640:1;;41623:38;;41640:1;;41623:38;41689:69;41728:1;41732:2;41736:14;;;;;;41752:5;41689:30;:69::i;:::-;41684:174;;41794:40;;-1:-1:-1;;;41794:40:0;;;;;;;;;;;41684:174;41901:3;41885:12;:19;;41592:314;;41987:12;41970:13;;:29;41966:43;;42001:8;;;41966:43;41544:641;;;42050:120;42081:40;;42106:14;;;;;-1:-1:-1;;;;;42081:40:0;;;42098:1;;42081:40;;42098:1;;42081:40;42165:3;42149:12;:19;;42050:120;;41544:641;-1:-1:-1;42199:13:0;:28;42249:60;38834:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;12512:1;12505:14;;;12549:4;12536:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6561:488::-;-1:-1:-1;;;;;6830:15:1;;;6812:34;;6882:15;;6877:2;6862:18;;6855:43;6929:2;6914:18;;6907:34;;;6977:3;6972:2;6957:18;;6950:31;;;6755:4;;6998:45;;7023:19;;7015:6;6998:45;:::i;:::-;6990:53;6561:488;-1:-1:-1;;;;;;6561:488:1:o;7054:632::-;7225:2;7277:21;;;7347:13;;7250:18;;;7369:22;;;7196:4;;7225:2;7448:15;;;;7422:2;7407:18;;;7196:4;7491:169;7505:6;7502:1;7499:13;7491:169;;;7566:13;;7554:26;;7635:15;;;;7600:12;;;;7527:1;7520:9;7491:169;;;-1:-1:-1;7677:3:1;;7054:632;-1:-1:-1;;;;;;7054:632:1:o;7883:219::-;8032:2;8021:9;8014:21;7995:4;8052:44;8092:2;8081:9;8077:18;8069:6;8052:44;:::i;8514:344::-;8716:2;8698:21;;;8755:2;8735:18;;;8728:30;-1:-1:-1;;;8789:2:1;8774:18;;8767:50;8849:2;8834:18;;8514:344::o;9551:356::-;9753:2;9735:21;;;9772:18;;;9765:30;9831:34;9826:2;9811:18;;9804:62;9898:2;9883:18;;9551:356::o;11157:344::-;11359:2;11341:21;;;11398:2;11378:18;;;11371:30;-1:-1:-1;;;11432:2:1;11417:18;;11410:50;11492:2;11477:18;;11157:344::o;12565:128::-;12605:3;12636:1;12632:6;12629:1;12626:13;12623:39;;;12642:18;;:::i;:::-;-1:-1:-1;12678:9:1;;12565:128::o;12698:120::-;12738:1;12764;12754:35;;12769:18;;:::i;:::-;-1:-1:-1;12803:9:1;;12698:120::o;12823:168::-;12863:7;12929:1;12925;12921:6;12917:14;12914:1;12911:21;12906:1;12899:9;12892:17;12888:45;12885:71;;;12936:18;;:::i;:::-;-1:-1:-1;12976:9:1;;12823:168::o;12996:125::-;13036:4;13064:1;13061;13058:8;13055:34;;;13069:18;;:::i;:::-;-1:-1:-1;13106:9:1;;12996:125::o;13126:258::-;13198:1;13208:113;13222:6;13219:1;13216:13;13208:113;;;13298:11;;;13292:18;13279:11;;;13272:39;13244:2;13237:10;13208:113;;;13339:6;13336:1;13333:13;13330:48;;;-1:-1:-1;;13374:1:1;13356:16;;13349:27;13126:258::o;13389:380::-;13468:1;13464:12;;;;13511;;;13532:61;;13586:4;13578:6;13574:17;13564:27;;13532:61;13639:2;13631:6;13628:14;13608:18;13605:38;13602:161;;;13685:10;13680:3;13676:20;13673:1;13666:31;13720:4;13717:1;13710:15;13748:4;13745:1;13738:15;13602:161;;13389:380;;;:::o;13774:135::-;13813:3;-1:-1:-1;;13834:17:1;;13831:43;;;13854:18;;:::i;:::-;-1:-1:-1;13901:1:1;13890:13;;13774:135::o;13914:112::-;13946:1;13972;13962:35;;13977:18;;:::i;:::-;-1:-1:-1;14011:9:1;;13914:112::o;14031:127::-;14092:10;14087:3;14083:20;14080:1;14073:31;14123:4;14120:1;14113:15;14147:4;14144:1;14137:15;14163:127;14224:10;14219:3;14215:20;14212:1;14205:31;14255:4;14252:1;14245:15;14279:4;14276:1;14269:15;14295:127;14356:10;14351:3;14347:20;14344:1;14337:31;14387:4;14384:1;14377:15;14411:4;14408:1;14401:15;14427:127;14488:10;14483:3;14479:20;14476:1;14469:31;14519:4;14516:1;14509:15;14543:4;14540:1;14533:15;14559:131;-1:-1:-1;;;;;;14633:32:1;;14623:43;;14613:71;;14680:1;14677;14670:12
Swarm Source
ipfs://316fc30cb6d0f9c7865fb24ea73389f36511828613c927cf833a6929e855369a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
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.