Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,501 VARBARIAN
Holders
584
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 VARBARIANLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VarbarianCollection
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-21 */ //SPDX-License-Identifier: UNLISENCED pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract MerkleProof { bytes32 internal _merkleRoot; function _setMerkleRoot(bytes32 merkleRoot_) internal virtual { _merkleRoot = merkleRoot_; } function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _merkleRoot; } } // VARBARIAN COLLECTION // @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@/(@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@ @@@@@@@@@@@@@.@@@@@@@&&&&&&&&%&%%&%%%%%%%%#%#%######(#((((((/(/////*//****** // @@@@@@@@@@@@@.@@@@@@@@@@@@@ @@@@@@@@&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@.&@@@@@@@@@@@@**@@@@@@@&&@&&&&&@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@ @@@@@@@@@@@@@ @@@@@@@@@@@@%.%@@@@@@@@@@@& // @@@@@@@@@@@@@#/@@@@@@@@@@@@% %@@@@@@@@@@@%.(@@@@@@@@@@@@ // @@@@@@@@@@@@@ @@@@@@@@@@@@@ %@&@@@@@@@@@@,(@@@@@@@@@@@@ // @@@@@@@@@@@@%,@@@@@@@@@@&&& @&&&&@@@@@@@/,@@@@@@@@@@@@% // &@@@@@@@@@@@@*%@@@@@@@&@%,/@&&&&&&&@@@@(,%@@@@@@@@@@@% // @@@@@@@@@@@@@ @@@@@,,@&&&&&&&&&&@#.%@@@@@@@@@@@@ // &@@@@@@@@@@@@/,.@@&&&&&&&&&@&.(@@@@@@@@@@@@ // @@@@@@@@@@@&@&&&&&&&&@&,(@@@@@@@@@@@@ // @@@@@@@@@@&&&&&&@,*&&&&&@@@@@@@ // @@@@@@@&@&&@(.@&&&&&@&@@@@& // @@@@&@#.#@&&&&&&&&@@& // %%@@&&&&&&&&&@* pragma solidity ^0.8.7; contract VarbarianCollection is ERC721A, Ownable, ReentrancyGuard, MerkleProof { uint256 public numberOfToken; uint256 public wlmintPrice = 0.035 ether; uint256 public mintPrice = 0.05 ether; uint256 private maxMintsPerWL = 8; uint256 private maxMintsPerPS = 100; uint256 private _totalSupply = 3333; string private _baseTokenURI; string private revealUri; bool public whitelistSaleEnabled = false; bool public publicSaleEnabled = false; bool public revealed = false; mapping(address => uint256) public wlMinted; mapping(address => uint256) public psMinted; constructor () ERC721A ("VarbarianCollection","VARBARIAN", maxMintsPerPS, _totalSupply) { numberOfToken = 0; sethiddenBaseURI("ipfs://QmeuHosWytNsVxakXDUoZ3srD9baTcM7TXk8yCrpxNHZHF/varbarian.json"); } function giveawayMint(uint256 _amount, address _address) public onlyOwner { require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); _safeMint(_address, _amount); numberOfToken += _amount; } function whitelistMint(uint256 _amount, bytes32[] memory proof_) external payable nonReentrant { require(whitelistSaleEnabled, "whitelistMint: Paused"); require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require(maxMintsPerWL >= _amount, "whitelistMint: 8 max per tx"); require(maxMintsPerWL >= wlMinted[msg.sender] + _amount, "You have no whitelistMint left"); require(msg.value == wlmintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); wlMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function publicMint(uint256 _amount) public payable nonReentrant { require(publicSaleEnabled, "publicMint: Paused"); require(maxMintsPerPS >= _amount, "publicMint: 100 maxper tx"); require(maxMintsPerPS >= psMinted[msg.sender] + _amount, "You have no publicMint left"); require(msg.value == mintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function setwlPrice(uint256 newPrice) external onlyOwner { wlmintPrice = newPrice; } function setPrice(uint256 newPrice) external onlyOwner { mintPrice = newPrice; } function setreveal(bool bool_) external onlyOwner { revealed = bool_; } function setWhitelistSale(bool bool_) external onlyOwner { whitelistSaleEnabled = bool_; } function setPublicSale(bool bool_) external onlyOwner { publicSaleEnabled = bool_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { _setMerkleRoot(merkleRoot_); } function sethiddenBaseURI(string memory uri_) public onlyOwner { revealUri = uri_; } function setBaseURI(string memory uri_) public onlyOwner { _baseTokenURI = uri_; } function currentBaseURI() private view returns (string memory){ return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return revealUri; } return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), ".json")); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address aa = payable(0xa16F7b4D40d243D12339b24568b3f8B52DD5EBAD); address bb = payable(0xBD1Ef3f306e6375F67A7Db6123f5Eb95B27A38E6); bool success; (success, ) = aa.call{value: (sendAmount * 670/1000)}(""); require(success, "Failed to withdraw Ether"); (success, ) = bb.call{value: (sendAmount * 330/1000)}(""); require(success, "Failed to withdraw Ether"); } function walletOfOwner(address _address) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setwlPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c060405260016000908155600755667c585087238000600c5566b1a2bc2ec50000600d556008600e556064600f55610d056010556013805462ffffff191690553480156200004d57600080fd5b506040518060400160405280601381526020017f56617262617269616e436f6c6c656374696f6e00000000000000000000000000815250604051806040016040528060098152602001682b20a92120a924a0a760b91b815250600f5460105460008111620001195760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000110565b835162000190906001906020870190620002ba565b508251620001a6906002906020860190620002ba565b5060a09190915260805250620001be905033620001f3565b60016009556000600b5560408051608081019091526044808252620001ed919062003187602083013962000245565b6200039d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000110565b8051620002b6906012906020840190620002ba565b5050565b828054620002c89062000360565b90600052602060002090601f016020900481019282620002ec576000855562000337565b82601f106200030757805160ff191683800117855562000337565b8280016001018555821562000337579182015b82811115620003375782518255916020019190600101906200031a565b506200034592915062000349565b5090565b5b808211156200034557600081556001016200034a565b600181811c908216806200037557607f821691505b602082108114156200039757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612db9620003ce60003960008181611f1b01528181611f45015261236b015260005050612db96000f3fe6080604052600436106102515760003560e01c80636352211e11610139578063a08c008b116100b6578063ca7ce3ec1161007a578063ca7ce3ec146106e2578063d2cab05614610702578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a08c008b1461064c578063a22cb4651461066c578063b88d4fde1461068c578063bf1f577b146106ac578063c87b56dd146106c257600080fd5b80637cb64759116100fd5780637cb64759146105ac5780638da5cb5b146105cc57806391b7f5ed146105ea578063942958f41461060a57806395d89b411461063757600080fd5b80636352211e146105145780636817c76c1461053457806370a082311461054a578063715018a61461056a57806378a923801461057f57600080fd5b80632f5d8cad116101d25780634c8ed230116101965780634c8ed230146104545780634f6ccce714610474578063518302271461049457806355f804b3146104b45780635a23dd99146104d45780635aca1bb6146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612901565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac2565b3480156102d357600080fd5b506102e76102e23660046128e8565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a3565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e8565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612775565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e8565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cd565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a3565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612775565b61102c565b34801561043357600080fd5b50610447610442366004612720565b611047565b6040516102829190612a7e565b34801561046057600080fd5b5061031f61046f366004612983565b6110e8565b34801561048057600080fd5b5061035261048f3660046128e8565b611165565b3480156104a057600080fd5b506013546102769062010000900460ff1681565b3480156104c057600080fd5b5061031f6104cf36600461293b565b6111c7565b3480156104e057600080fd5b506102766104ef36600461282c565b611208565b34801561050057600080fd5b5061031f61050f3660046128cd565b61132c565b34801561052057600080fd5b506102e761052f3660046128e8565b611370565b34801561054057600080fd5b50610352600d5481565b34801561055657600080fd5b50610352610565366004612720565b611382565b34801561057657600080fd5b5061031f611413565b34801561058b57600080fd5b5061035261059a366004612720565b60146020526000908152604090205481565b3480156105b857600080fd5b5061031f6105c73660046128e8565b611449565b3480156105d857600080fd5b506008546001600160a01b03166102e7565b3480156105f657600080fd5b5061031f6106053660046128e8565b61147f565b34801561061657600080fd5b50610352610625366004612720565b60156020526000908152604090205481565b34801561064357600080fd5b506102ba6114ae565b34801561065857600080fd5b5061031f61066736600461293b565b6114bd565b34801561067857600080fd5b5061031f610687366004612879565b6114fa565b34801561069857600080fd5b5061031f6106a73660046127b1565b6115bf565b3480156106b857600080fd5b50610352600b5481565b3480156106ce57600080fd5b506102ba6106dd3660046128e8565b6115f2565b3480156106ee57600080fd5b5061031f6106fd3660046128cd565b61173d565b61031f6107103660046129a6565b61177a565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612742565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f366004612720565b611a05565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612cab565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094482611370565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9d565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad5565b600c55565b610a4c838383611af9565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601960248201527f7075626c69634d696e743a20313030206d6178706572207478000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bde565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c0a565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bde565b1115610c735760405162461bcd60e51b815260040161091490612b0a565b3360009081526015602052604081208054839290610c92908490612bde565b90915550610ca290503382611e7f565b80600b6000828254610cb49190612bde565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad5565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611382565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce6565b9450505b5080610e0c81612ce6565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad5565b4773a16f7b4d40d243d12339b24568b3f8b52dd5ebad73bd1ef3f306e6375f67a7db6123f5eb95b27a38e66000826103e8610edb8661029e612c0a565b610ee59190612bf6565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8d8661014a612c0a565b610f979190612bf6565b604051600081818185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505080915050806110265760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c838383604051806020016040528060008152506115bf565b6060600061105483611382565b90506000816001600160401b0381111561107057611070612d57565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b18582610d07565b8282815181106110c3576110c3612d41565b6020908102919091010152806110d881612ce6565b91505061109f565b509392505050565b6008546001600160a01b031633146111125760405162461bcd60e51b815260040161091490612ad5565b601054600b546111229084612bde565b11156111405760405162461bcd60e51b815260040161091490612b0a565b61114a8183611e7f565b81600b600082825461115c9190612bde565b90915550505050565b6000805482106111c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111f15760405162461bcd60e51b815260040161091490612ad5565b8051611204906011906020840190612588565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156113205783818151811061126257611262612d41565b602002602001015182106112c05783818151811061128257611282612d41565b6020026020010151826040516020016112a5929190918252602082015260400190565b6040516020818303038152906040528051906020012061130c565b818482815181106112d3576112d3612d41565b60200260200101516040516020016112f5929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061131881612ce6565b915050611247565b50600a54149392505050565b6008546001600160a01b031633146113565760405162461bcd60e51b815260040161091490612ad5565b601380549115156101000261ff0019909216919091179055565b600061137b82611e99565b5192915050565b60006001600160a01b0382166113ee5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461143d5760405162461bcd60e51b815260040161091490612ad5565b6114476000612042565b565b6008546001600160a01b031633146114735760405162461bcd60e51b815260040161091490612ad5565b61147c81600a55565b50565b6008546001600160a01b031633146114a95760405162461bcd60e51b815260040161091490612ad5565b600d55565b60606002805461082690612cab565b6008546001600160a01b031633146114e75760405162461bcd60e51b815260040161091490612ad5565b8051611204906012906020840190612588565b6001600160a01b0382163314156115535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ca848484611af9565b6115d684848484612094565b6110265760405162461bcd60e51b815260040161091490612b30565b60606115ff826000541190565b6116635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611705576012805461168090612cab565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90612cab565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b50505050509050919050565b61170d6121a2565b611716836121b1565b604051602001611727929190612a02565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146117675760405162461bcd60e51b815260040161091490612ad5565b6013805460ff1916911515919091179055565b600260095414156117cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661181c5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6118263382611208565b6118725760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118c45760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2038206d61782070657220747800000000006044820152606401610914565b336000908152601460205260409020546118df908390612bde565b600e5410156119305760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c5461193e9190612c0a565b34146119885760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b546119989084612bde565b11156119b65760405162461bcd60e51b815260040161091490612b0a565b33600090815260146020526040812080548492906119d5908490612bde565b909155506119e590503383611e7f565b81600b60008282546119f79190612bde565b909155505060016009555050565b6008546001600160a01b03163314611a2f5760405162461bcd60e51b815260040161091490612ad5565b6001600160a01b038116611a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b61147c81612042565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0482611e99565b80519091506000906001600160a01b0316336001600160a01b03161480611b3b575033611b30846108a9565b6001600160a01b0316145b80611b4d57508151611b4d9033610746565b905080611bb75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9f6000848460000151611a9d565b6001600160a01b0385166000908152600460205260408120805460019290611cd19084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1d91859116612bb3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da4846001612bde565b6000818152600360205260409020549091506001600160a01b0316611e3557611dce816000541190565b15611e355760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6112048282604051806020016040528060008152506122ae565b6040805180820190915260008082526020820152611eb8826000541190565b611f175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f7857611f6a7f000000000000000000000000000000000000000000000000000000000000000084612c51565b611f75906001612bde565b90505b825b818110611fe1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fce57949350505050565b5080611fd981612c94565b915050611f7a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d8903390899088908890600401612a41565b602060405180830381600087803b1580156120f257600080fd5b505af1925050508015612122575060408051601f3d908101601f1916820190925261211f9181019061291e565b60015b61217c573d808015612150576040519150601f19603f3d011682016040523d82523d6000602084013e612155565b606091505b5080516121745760405162461bcd60e51b815260040161091490612b30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061219a565b5060015b949350505050565b60606011805461082690612cab565b6060816121d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ff57806121e981612ce6565b91506121f89050600a83612bf6565b91506121d9565b6000816001600160401b0381111561221957612219612d57565b6040519080825280601f01601f191660200182016040528015612243576020820181803683370190505b5090505b841561219a57612258600183612c51565b9150612265600a86612d01565b612270906030612bde565b60f81b81838151811061228557612285612d41565b60200101906001600160f81b031916908160001a9053506122a7600a86612bf6565b9450612247565b6000546001600160a01b0384166123115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231c816000541190565b156123695760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000008311156123e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612440908790612bb3565b6001600160801b0316815260200185836020015161245e9190612bb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125416000888488612094565b61255d5760405162461bcd60e51b815260040161091490612b30565b8161256781612ce6565b925050808061257590612ce6565b9150506124f4565b506000819055611e77565b82805461259490612cab565b90600052602060002090601f0160209004810192826125b657600085556125fc565b82601f106125cf57805160ff19168380011785556125fc565b828001600101855582156125fc579182015b828111156125fc5782518255916020019190600101906125e1565b506111c39291505b808211156111c35760008155600101612604565b60006001600160401b0383111561263157612631612d57565b612644601f8401601f1916602001612b83565b905082815283838301111561265857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268657600080fd5b919050565b600082601f83011261269c57600080fd5b813560206001600160401b038211156126b7576126b7612d57565b8160051b6126c6828201612b83565b8381528281019086840183880185018910156126e157600080fd5b600093505b858410156127045780358352600193909301929184019184016126e6565b50979650505050505050565b8035801515811461268657600080fd5b60006020828403121561273257600080fd5b61273b8261266f565b9392505050565b6000806040838503121561275557600080fd5b61275e8361266f565b915061276c6020840161266f565b90509250929050565b60008060006060848603121561278a57600080fd5b6127938461266f565b92506127a16020850161266f565b9150604084013590509250925092565b600080600080608085870312156127c757600080fd5b6127d08561266f565b93506127de6020860161266f565b92506040850135915060608501356001600160401b0381111561280057600080fd5b8501601f8101871361281157600080fd5b61282087823560208401612618565b91505092959194509250565b6000806040838503121561283f57600080fd5b6128488361266f565b915060208301356001600160401b0381111561286357600080fd5b61286f8582860161268b565b9150509250929050565b6000806040838503121561288c57600080fd5b6128958361266f565b915061276c60208401612710565b600080604083850312156128b657600080fd5b6128bf8361266f565b946020939093013593505050565b6000602082840312156128df57600080fd5b61273b82612710565b6000602082840312156128fa57600080fd5b5035919050565b60006020828403121561291357600080fd5b813561273b81612d6d565b60006020828403121561293057600080fd5b815161273b81612d6d565b60006020828403121561294d57600080fd5b81356001600160401b0381111561296357600080fd5b8201601f8101841361297457600080fd5b61219a84823560208401612618565b6000806040838503121561299657600080fd5b8235915061276c6020840161266f565b600080604083850312156129b957600080fd5b8235915060208301356001600160401b0381111561286357600080fd5b600081518084526129ee816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612a14818460208801612c68565b835190830190612a28818360208801612c68565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a74908301846129d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab657835183529284019291840191600101612a9a565b50909695505050505050565b60208152600061273b60208301846129d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d57565b604052919050565b60006001600160801b03808316818516808303821115612bd557612bd5612d15565b01949350505050565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b838111156110265750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461147c57600080fdfea264697066735822122010ceaac46ed5e38544ffc7e478f87945c485690dd12fb0acaf15599a1df71ee264736f6c63430008070033697066733a2f2f516d6575486f735779744e735678616b5844556f5a3373724439626154634d3754586b3879437270784e485a48462f76617262617269616e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636352211e11610139578063a08c008b116100b6578063ca7ce3ec1161007a578063ca7ce3ec146106e2578063d2cab05614610702578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a08c008b1461064c578063a22cb4651461066c578063b88d4fde1461068c578063bf1f577b146106ac578063c87b56dd146106c257600080fd5b80637cb64759116100fd5780637cb64759146105ac5780638da5cb5b146105cc57806391b7f5ed146105ea578063942958f41461060a57806395d89b411461063757600080fd5b80636352211e146105145780636817c76c1461053457806370a082311461054a578063715018a61461056a57806378a923801461057f57600080fd5b80632f5d8cad116101d25780634c8ed230116101965780634c8ed230146104545780634f6ccce714610474578063518302271461049457806355f804b3146104b45780635a23dd99146104d45780635aca1bb6146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612901565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac2565b3480156102d357600080fd5b506102e76102e23660046128e8565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a3565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e8565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612775565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e8565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cd565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a3565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612775565b61102c565b34801561043357600080fd5b50610447610442366004612720565b611047565b6040516102829190612a7e565b34801561046057600080fd5b5061031f61046f366004612983565b6110e8565b34801561048057600080fd5b5061035261048f3660046128e8565b611165565b3480156104a057600080fd5b506013546102769062010000900460ff1681565b3480156104c057600080fd5b5061031f6104cf36600461293b565b6111c7565b3480156104e057600080fd5b506102766104ef36600461282c565b611208565b34801561050057600080fd5b5061031f61050f3660046128cd565b61132c565b34801561052057600080fd5b506102e761052f3660046128e8565b611370565b34801561054057600080fd5b50610352600d5481565b34801561055657600080fd5b50610352610565366004612720565b611382565b34801561057657600080fd5b5061031f611413565b34801561058b57600080fd5b5061035261059a366004612720565b60146020526000908152604090205481565b3480156105b857600080fd5b5061031f6105c73660046128e8565b611449565b3480156105d857600080fd5b506008546001600160a01b03166102e7565b3480156105f657600080fd5b5061031f6106053660046128e8565b61147f565b34801561061657600080fd5b50610352610625366004612720565b60156020526000908152604090205481565b34801561064357600080fd5b506102ba6114ae565b34801561065857600080fd5b5061031f61066736600461293b565b6114bd565b34801561067857600080fd5b5061031f610687366004612879565b6114fa565b34801561069857600080fd5b5061031f6106a73660046127b1565b6115bf565b3480156106b857600080fd5b50610352600b5481565b3480156106ce57600080fd5b506102ba6106dd3660046128e8565b6115f2565b3480156106ee57600080fd5b5061031f6106fd3660046128cd565b61173d565b61031f6107103660046129a6565b61177a565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612742565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f366004612720565b611a05565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612cab565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612cab565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061094482611370565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9d565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad5565b600c55565b610a4c838383611af9565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601960248201527f7075626c69634d696e743a20313030206d6178706572207478000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bde565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c0a565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bde565b1115610c735760405162461bcd60e51b815260040161091490612b0a565b3360009081526015602052604081208054839290610c92908490612bde565b90915550610ca290503382611e7f565b80600b6000828254610cb49190612bde565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad5565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611382565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce6565b9450505b5080610e0c81612ce6565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad5565b4773a16f7b4d40d243d12339b24568b3f8b52dd5ebad73bd1ef3f306e6375f67a7db6123f5eb95b27a38e66000826103e8610edb8661029e612c0a565b610ee59190612bf6565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8d8661014a612c0a565b610f979190612bf6565b604051600081818185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b505080915050806110265760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c838383604051806020016040528060008152506115bf565b6060600061105483611382565b90506000816001600160401b0381111561107057611070612d57565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b828110156110e0576110b18582610d07565b8282815181106110c3576110c3612d41565b6020908102919091010152806110d881612ce6565b91505061109f565b509392505050565b6008546001600160a01b031633146111125760405162461bcd60e51b815260040161091490612ad5565b601054600b546111229084612bde565b11156111405760405162461bcd60e51b815260040161091490612b0a565b61114a8183611e7f565b81600b600082825461115c9190612bde565b90915550505050565b6000805482106111c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111f15760405162461bcd60e51b815260040161091490612ad5565b8051611204906011906020840190612588565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156113205783818151811061126257611262612d41565b602002602001015182106112c05783818151811061128257611282612d41565b6020026020010151826040516020016112a5929190918252602082015260400190565b6040516020818303038152906040528051906020012061130c565b818482815181106112d3576112d3612d41565b60200260200101516040516020016112f5929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061131881612ce6565b915050611247565b50600a54149392505050565b6008546001600160a01b031633146113565760405162461bcd60e51b815260040161091490612ad5565b601380549115156101000261ff0019909216919091179055565b600061137b82611e99565b5192915050565b60006001600160a01b0382166113ee5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461143d5760405162461bcd60e51b815260040161091490612ad5565b6114476000612042565b565b6008546001600160a01b031633146114735760405162461bcd60e51b815260040161091490612ad5565b61147c81600a55565b50565b6008546001600160a01b031633146114a95760405162461bcd60e51b815260040161091490612ad5565b600d55565b60606002805461082690612cab565b6008546001600160a01b031633146114e75760405162461bcd60e51b815260040161091490612ad5565b8051611204906012906020840190612588565b6001600160a01b0382163314156115535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ca848484611af9565b6115d684848484612094565b6110265760405162461bcd60e51b815260040161091490612b30565b60606115ff826000541190565b6116635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611705576012805461168090612cab565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90612cab565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b50505050509050919050565b61170d6121a2565b611716836121b1565b604051602001611727929190612a02565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146117675760405162461bcd60e51b815260040161091490612ad5565b6013805460ff1916911515919091179055565b600260095414156117cd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661181c5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6118263382611208565b6118725760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118c45760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2038206d61782070657220747800000000006044820152606401610914565b336000908152601460205260409020546118df908390612bde565b600e5410156119305760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c5461193e9190612c0a565b34146119885760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b546119989084612bde565b11156119b65760405162461bcd60e51b815260040161091490612b0a565b33600090815260146020526040812080548492906119d5908490612bde565b909155506119e590503383611e7f565b81600b60008282546119f79190612bde565b909155505060016009555050565b6008546001600160a01b03163314611a2f5760405162461bcd60e51b815260040161091490612ad5565b6001600160a01b038116611a945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b61147c81612042565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0482611e99565b80519091506000906001600160a01b0316336001600160a01b03161480611b3b575033611b30846108a9565b6001600160a01b0316145b80611b4d57508151611b4d9033610746565b905080611bb75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9f6000848460000151611a9d565b6001600160a01b0385166000908152600460205260408120805460019290611cd19084906001600160801b0316612c29565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1d91859116612bb3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da4846001612bde565b6000818152600360205260409020549091506001600160a01b0316611e3557611dce816000541190565b15611e355760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6112048282604051806020016040528060008152506122ae565b6040805180820190915260008082526020820152611eb8826000541190565b611f175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000648310611f7857611f6a7f000000000000000000000000000000000000000000000000000000000000006484612c51565b611f75906001612bde565b90505b825b818110611fe1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fce57949350505050565b5080611fd981612c94565b915050611f7a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d8903390899088908890600401612a41565b602060405180830381600087803b1580156120f257600080fd5b505af1925050508015612122575060408051601f3d908101601f1916820190925261211f9181019061291e565b60015b61217c573d808015612150576040519150601f19603f3d011682016040523d82523d6000602084013e612155565b606091505b5080516121745760405162461bcd60e51b815260040161091490612b30565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061219a565b5060015b949350505050565b60606011805461082690612cab565b6060816121d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ff57806121e981612ce6565b91506121f89050600a83612bf6565b91506121d9565b6000816001600160401b0381111561221957612219612d57565b6040519080825280601f01601f191660200182016040528015612243576020820181803683370190505b5090505b841561219a57612258600183612c51565b9150612265600a86612d01565b612270906030612bde565b60f81b81838151811061228557612285612d41565b60200101906001600160f81b031916908160001a9053506122a7600a86612bf6565b9450612247565b6000546001600160a01b0384166123115760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231c816000541190565b156123695760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000648311156123e45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612440908790612bb3565b6001600160801b0316815260200185836020015161245e9190612bb3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125416000888488612094565b61255d5760405162461bcd60e51b815260040161091490612b30565b8161256781612ce6565b925050808061257590612ce6565b9150506124f4565b506000819055611e77565b82805461259490612cab565b90600052602060002090601f0160209004810192826125b657600085556125fc565b82601f106125cf57805160ff19168380011785556125fc565b828001600101855582156125fc579182015b828111156125fc5782518255916020019190600101906125e1565b506111c39291505b808211156111c35760008155600101612604565b60006001600160401b0383111561263157612631612d57565b612644601f8401601f1916602001612b83565b905082815283838301111561265857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268657600080fd5b919050565b600082601f83011261269c57600080fd5b813560206001600160401b038211156126b7576126b7612d57565b8160051b6126c6828201612b83565b8381528281019086840183880185018910156126e157600080fd5b600093505b858410156127045780358352600193909301929184019184016126e6565b50979650505050505050565b8035801515811461268657600080fd5b60006020828403121561273257600080fd5b61273b8261266f565b9392505050565b6000806040838503121561275557600080fd5b61275e8361266f565b915061276c6020840161266f565b90509250929050565b60008060006060848603121561278a57600080fd5b6127938461266f565b92506127a16020850161266f565b9150604084013590509250925092565b600080600080608085870312156127c757600080fd5b6127d08561266f565b93506127de6020860161266f565b92506040850135915060608501356001600160401b0381111561280057600080fd5b8501601f8101871361281157600080fd5b61282087823560208401612618565b91505092959194509250565b6000806040838503121561283f57600080fd5b6128488361266f565b915060208301356001600160401b0381111561286357600080fd5b61286f8582860161268b565b9150509250929050565b6000806040838503121561288c57600080fd5b6128958361266f565b915061276c60208401612710565b600080604083850312156128b657600080fd5b6128bf8361266f565b946020939093013593505050565b6000602082840312156128df57600080fd5b61273b82612710565b6000602082840312156128fa57600080fd5b5035919050565b60006020828403121561291357600080fd5b813561273b81612d6d565b60006020828403121561293057600080fd5b815161273b81612d6d565b60006020828403121561294d57600080fd5b81356001600160401b0381111561296357600080fd5b8201601f8101841361297457600080fd5b61219a84823560208401612618565b6000806040838503121561299657600080fd5b8235915061276c6020840161266f565b600080604083850312156129b957600080fd5b8235915060208301356001600160401b0381111561286357600080fd5b600081518084526129ee816020860160208601612c68565b601f01601f19169290920160200192915050565b60008351612a14818460208801612c68565b835190830190612a28818360208801612c68565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a74908301846129d6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab657835183529284019291840191600101612a9a565b50909695505050505050565b60208152600061273b60208301846129d6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612bab57612bab612d57565b604052919050565b60006001600160801b03808316818516808303821115612bd557612bd5612d15565b01949350505050565b60008219821115612bf157612bf1612d15565b500190565b600082612c0557612c05612d2b565b500490565b6000816000190483118215151615612c2457612c24612d15565b500290565b60006001600160801b0383811690831681811015612c4957612c49612d15565b039392505050565b600082821015612c6357612c63612d15565b500390565b60005b83811015612c83578181015183820152602001612c6b565b838111156110265750506000910152565b600081612ca357612ca3612d15565b506000190190565b600181811c90821680612cbf57607f821691505b60208210811415612ce057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cfa57612cfa612d15565b5060010190565b600082612d1057612d10612d2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461147c57600080fdfea264697066735822122010ceaac46ed5e38544ffc7e478f87945c485690dd12fb0acaf15599a1df71ee264736f6c63430008070033
Deployed Bytecode Sourcemap
45420:4639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30171:370;;;;;;;;;;-1:-1:-1;30171:370:0;;;;;:::i;:::-;;:::i;:::-;;;9198:14:1;;9191:22;9173:41;;9161:2;9146:18;30171:370:0;;;;;;;;45824:40;;;;;;;;;;-1:-1:-1;45824:40:0;;;;;;;;31897:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33422:204::-;;;;;;;;;;-1:-1:-1;33422:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7859:32:1;;;7841:51;;7829:2;7814:18;33422:204:0;7695:203:1;32985:379:0;;;;;;;;;;-1:-1:-1;32985:379:0;;;;;:::i;:::-;;:::i;:::-;;47844:98;;;;;;;;;;-1:-1:-1;47844:98:0;;;;;:::i;:::-;;:::i;28732:94::-;;;;;;;;;;-1:-1:-1;28785:7:0;28808:12;28732:94;;;21536:25:1;;;21524:2;21509:18;28732:94:0;21390:177:1;34272:142:0;;;;;;;;;;-1:-1:-1;34272:142:0;;;;;:::i;:::-;;:::i;45871:37::-;;;;;;;;;;-1:-1:-1;45871:37:0;;;;;;;;;;;47244:592;;;;;;:::i;:::-;;:::i;48052:85::-;;;;;;;;;;-1:-1:-1;48052:85:0;;;;;:::i;:::-;;:::i;29363:744::-;;;;;;;;;;-1:-1:-1;29363:744:0;;;;;:::i;:::-;;:::i;49161:525::-;;;;;;;;;;;;;:::i;34477:157::-;;;;;;;;;;-1:-1:-1;34477:157:0;;;;;:::i;:::-;;:::i;49694:362::-;;;;;;;;;;-1:-1:-1;49694:362:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46283:238::-;;;;;;;;;;-1:-1:-1;46283:238:0;;;;;:::i;:::-;;:::i;28895:177::-;;;;;;;;;;-1:-1:-1;28895:177:0;;;;;:::i;:::-;;:::i;45915:28::-;;;;;;;;;;-1:-1:-1;45915:28:0;;;;;;;;;;;48590:96;;;;;;;;;;-1:-1:-1;48590:96:0;;;;;:::i;:::-;;:::i;42659:405::-;;;;;;;;;;-1:-1:-1;42659:405:0;;;;;:::i;:::-;;:::i;48261:98::-;;;;;;;;;;-1:-1:-1;48261:98:0;;;;;:::i;:::-;;:::i;31720:118::-;;;;;;;;;;-1:-1:-1;31720:118:0;;;;;:::i;:::-;;:::i;45590:37::-;;;;;;;;;;;;;;;;30597:211;;;;;;;;;;-1:-1:-1;30597:211:0;;;;;:::i;:::-;;:::i;7388:103::-;;;;;;;;;;;;;:::i;45950:43::-;;;;;;;;;;-1:-1:-1;45950:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;48367:109;;;;;;;;;;-1:-1:-1;48367:109:0;;;;;:::i;:::-;;:::i;6737:87::-;;;;;;;;;;-1:-1:-1;6810:6:0;;-1:-1:-1;;;;;6810:6:0;6737:87;;47950:94;;;;;;;;;;-1:-1:-1;47950:94:0;;;;;:::i;:::-;;:::i;46000:43::-;;;;;;;;;;-1:-1:-1;46000:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;32052:98;;;;;;;;;;;;;:::i;48484:::-;;;;;;;;;;-1:-1:-1;48484:98:0;;;;;:::i;:::-;;:::i;33690:274::-;;;;;;;;;;-1:-1:-1;33690:274:0;;;;;:::i;:::-;;:::i;34697:311::-;;;;;;;;;;-1:-1:-1;34697:311:0;;;;;:::i;:::-;;:::i;45508:28::-;;;;;;;;;;;;;;;;48803:350;;;;;;;;;;-1:-1:-1;48803:350:0;;;;;:::i;:::-;;:::i;48149:104::-;;;;;;;;;;-1:-1:-1;48149:104:0;;;;;:::i;:::-;;:::i;46529:707::-;;;;;;:::i;:::-;;:::i;39112:43::-;;;;;;;;;;;;;;;;34027:186;;;;;;;;;;-1:-1:-1;34027:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34172:25:0;;;34149:4;34172:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34027:186;7646:201;;;;;;;;;;-1:-1:-1;7646:201:0;;;;;:::i;:::-;;:::i;45543:40::-;;;;;;;;;;;;;;;;30171:370;30298:4;-1:-1:-1;;;;;;30328:40:0;;-1:-1:-1;;;30328:40:0;;:99;;-1:-1:-1;;;;;;;30379:48:0;;-1:-1:-1;;;30379:48:0;30328:99;:160;;;-1:-1:-1;;;;;;;30438:50:0;;-1:-1:-1;;;30438:50:0;30328:160;:207;;;-1:-1:-1;;;;;;;;;;19626:40:0;;;30499:36;30314:221;30171:370;-1:-1:-1;;30171:370:0:o;31897:94::-;31951:13;31980:5;31973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31897:94;:::o;33422:204::-;33490:7;33514:16;33522:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;33514:16;33506:74;;;;-1:-1:-1;;;33506:74:0;;20775:2:1;33506:74:0;;;20757:21:1;20814:2;20794:18;;;20787:30;20853:34;20833:18;;;20826:62;-1:-1:-1;;;20904:18:1;;;20897:43;20957:19;;33506:74:0;;;;;;;;;-1:-1:-1;33596:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33596:24:0;;33422:204::o;32985:379::-;33054:13;33070:24;33086:7;33070:15;:24::i;:::-;33054:40;;33115:5;-1:-1:-1;;;;;33109:11:0;:2;-1:-1:-1;;;;;33109:11:0;;;33101:58;;;;-1:-1:-1;;;33101:58:0;;17645:2:1;33101:58:0;;;17627:21:1;17684:2;17664:18;;;17657:30;17723:34;17703:18;;;17696:62;-1:-1:-1;;;17774:18:1;;;17767:32;17816:19;;33101:58:0;17443:398:1;33101:58:0;5545:10;-1:-1:-1;;;;;33184:21:0;;;;:62;;-1:-1:-1;33209:37:0;33226:5;5545:10;34027:186;:::i;33209:37::-;33168:153;;;;-1:-1:-1;;;33168:153:0;;13801:2:1;33168:153:0;;;13783:21:1;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;13950:27;13930:18;;;13923:55;13995:19;;33168:153:0;13599:421:1;33168:153:0;33330:28;33339:2;33343:7;33352:5;33330:8;:28::i;:::-;33047:317;32985:379;;:::o;47844:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;47912:11:::1;:22:::0;47844:98::o;34272:142::-;34380:28;34390:4;34396:2;34400:7;34380:9;:28::i;47244:592::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;19999:2:1;2309:63:0;;;19981:21:1;20038:2;20018:18;;;20011:30;20077:33;20057:18;;;20050:61;20128:18;;2309:63:0;19797:355:1;2309:63:0;1719:1;2450:7;:18;47328:17:::1;::::0;::::1;::::0;::::1;;;47320:48;;;::::0;-1:-1:-1;;;47320:48:0;;10763:2:1;47320:48:0::1;::::0;::::1;10745:21:1::0;10802:2;10782:18;;;10775:30;-1:-1:-1;;;10821:18:1;;;10814:48;10879:18;;47320:48:0::1;10561:342:1::0;47320:48:0::1;47404:7;47387:13;;:24;;47379:62;;;::::0;-1:-1:-1;;;47379:62:0;;13447:2:1;47379:62:0::1;::::0;::::1;13429:21:1::0;13486:2;13466:18;;;13459:30;13525:27;13505:18;;;13498:55;13570:18;;47379:62:0::1;13245:349:1::0;47379:62:0::1;47486:10;47477:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;47500:7;;47477:30:::1;:::i;:::-;47460:13;;:47;;47452:87;;;::::0;-1:-1:-1;;;47452:87:0;;18048:2:1;47452:87:0::1;::::0;::::1;18030:21:1::0;18087:2;18067:18;;;18060:30;18126:29;18106:18;;;18099:57;18173:18;;47452:87:0::1;17846:351:1::0;47452:87:0::1;47583:7;47571:9;;:19;;;;:::i;:::-;47558:9;:32;47550:70;;;::::0;-1:-1:-1;;;47550:70:0;;14227:2:1;47550:70:0::1;::::0;::::1;14209:21:1::0;14266:2;14246:18;;;14239:30;-1:-1:-1;;;14285:18:1;;;14278:55;14350:18;;47550:70:0::1;14025:349:1::0;47550:70:0::1;47669:12;::::0;47650:13:::1;::::0;47640:23:::1;::::0;:7;:23:::1;:::i;:::-;47639:43;;47631:68;;;;-1:-1:-1::0;;;47631:68:0::1;;;;;;;:::i;:::-;47730:10;47721:20;::::0;;;:8:::1;:20;::::0;;;;:31;;47745:7;;47721:20;:31:::1;::::0;47745:7;;47721:31:::1;:::i;:::-;::::0;;;-1:-1:-1;47763:30:0::1;::::0;-1:-1:-1;47773:10:0::1;47785:7:::0;47763:9:::1;:30::i;:::-;47821:7;47804:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;47244:592:0:o;48052:85::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48113:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48113:16:0;;::::1;::::0;;;::::1;::::0;;48052:85::o;29363:744::-;29472:7;29507:16;29517:5;29507:9;:16::i;:::-;29499:5;:24;29491:71;;;;-1:-1:-1;;;29491:71:0;;9651:2:1;29491:71:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:32;9822:19;;29491:71:0;9449:398:1;29491:71:0;29569:22;28808:12;;;29569:22;;29689:350;29713:14;29709:1;:18;29689:350;;;29743:31;29777:14;;;:11;:14;;;;;;;;;29743:48;;;;;;;;;-1:-1:-1;;;;;29743:48:0;;;;;-1:-1:-1;;;29743:48:0;;;-1:-1:-1;;;;;29743:48:0;;;;;;;;29804:28;29800:89;;29865:14;;;-1:-1:-1;29800:89:0;29922:5;-1:-1:-1;;;;;29901:26:0;:17;-1:-1:-1;;;;;29901:26:0;;29897:135;;;29959:5;29944:11;:20;29940:59;;;-1:-1:-1;29986:1:0;-1:-1:-1;29979:8:0;;-1:-1:-1;;;29979:8:0;29940:59;30009:13;;;;:::i;:::-;;;;29897:135;-1:-1:-1;29729:3:0;;;;:::i;:::-;;;;29689:350;;;-1:-1:-1;30045:56:0;;-1:-1:-1;;;30045:56:0;;19584:2:1;30045:56:0;;;19566:21:1;19623:2;19603:18;;;19596:30;19662:34;19642:18;;;19635:62;-1:-1:-1;;;19713:18:1;;;19706:44;19767:19;;30045:56:0;19382:410:1;49161:525:0;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;49230:21:::1;49285:42;49360;49209:18;49285:42:::0;49488:4:::1;49471:16;49230:21:::0;49484:3:::1;49471:16;:::i;:::-;:21;;;;:::i;:::-;49455:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49441:57;;;;;49517:7;49509:44;;;::::0;-1:-1:-1;;;49509:44:0;;16951:2:1;49509:44:0::1;::::0;::::1;16933:21:1::0;16990:2;16970:18;;;16963:30;-1:-1:-1;;;17009:18:1;;;17002:54;17073:18;;49509:44:0::1;16749:348:1::0;49509:44:0::1;-1:-1:-1::0;;;;;49580:7:0;::::1;49613:4;49596:16;:10:::0;49609:3:::1;49596:16;:::i;:::-;:21;;;;:::i;:::-;49580:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49566:57;;;;;49642:7;49634:44;;;::::0;-1:-1:-1;;;49634:44:0;;16951:2:1;49634:44:0::1;::::0;::::1;16933:21:1::0;16990:2;16970:18;;;16963:30;-1:-1:-1;;;17009:18:1;;;17002:54;17073:18;;49634:44:0::1;16749:348:1::0;49634:44:0::1;49198:488;;;;49161:525::o:0;34477:157::-;34589:39;34606:4;34612:2;34616:7;34589:39;;;;;;;;;;;;:16;:39::i;49694:362::-;49756:16;49785:23;49811:19;49821:8;49811:9;:19::i;:::-;49785:45;;49841:25;49883:15;-1:-1:-1;;;;;49869:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49869:30:0;;49841:58;;49915:9;49910:113;49930:15;49926:1;:19;49910:113;;;49979:32;49999:8;50009:1;49979:19;:32::i;:::-;49965:8;49974:1;49965:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;49947:3;;;;:::i;:::-;;;;49910:113;;;-1:-1:-1;50040:8:0;49694:362;-1:-1:-1;;;49694:362:0:o;46283:238::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;46407:12:::1;::::0;46388:13:::1;::::0;46378:23:::1;::::0;:7;:23:::1;:::i;:::-;46377:43;;46369:68;;;;-1:-1:-1::0;;;46369:68:0::1;;;;;;;:::i;:::-;46450:28;46460:8;46470:7;46450:9;:28::i;:::-;46506:7;46489:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;46283:238:0:o;28895:177::-;28962:7;28808:12;;28986:5;:21;28978:69;;;;-1:-1:-1;;;28978:69:0;;12284:2:1;28978:69:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:33;12456:19;;28978:69:0;12082:399:1;28978:69:0;-1:-1:-1;29061:5:0;28895:177::o;48590:96::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48658:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48590:96:::0;:::o;42659:405::-;42789:26;;-1:-1:-1;;6506:2:1;6502:15;;;6498:53;42789:26:0;;;6486:66:1;42746:4:0;;;;6568:12:1;;42789:26:0;;;;;;;;;;;;42779:37;;;;;;42763:53;;42832:9;42827:192;42851:6;:13;42847:1;:17;42827:192;;;42902:6;42909:1;42902:9;;;;;;;;:::i;:::-;;;;;;;42894:5;:17;:113;;42989:6;42996:1;42989:9;;;;;;;;:::i;:::-;;;;;;;43000:5;42972:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42972:34:0;;;;;;;;;;;;;42962:45;;;;;;42894:113;;;42941:5;42948:6;42955:1;42948:9;;;;;;;;:::i;:::-;;;;;;;42924:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42924:34:0;;;;;;;;;;;;;42914:45;;;;;;42894:113;42886:121;-1:-1:-1;42866:3:0;;;;:::i;:::-;;;;42827:192;;;-1:-1:-1;43045:11:0;;43036:20;;42659:405;-1:-1:-1;;;42659:405:0:o;48261:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48326:17:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;48326:25:0;;::::1;::::0;;;::::1;::::0;;48261:98::o;31720:118::-;31784:7;31807:20;31819:7;31807:11;:20::i;:::-;:25;;31720:118;-1:-1:-1;;31720:118:0:o;30597:211::-;30661:7;-1:-1:-1;;;;;30685:19:0;;30677:75;;;;-1:-1:-1;;;30677:75:0;;14581:2:1;30677:75:0;;;14563:21:1;14620:2;14600:18;;;14593:30;14659:34;14639:18;;;14632:62;-1:-1:-1;;;14710:18:1;;;14703:41;14761:19;;30677:75:0;14379:407:1;30677:75:0;-1:-1:-1;;;;;;30774:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30774:27:0;;30597:211::o;7388:103::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;7453:30:::1;7480:1;7453:18;:30::i;:::-;7388:103::o:0;48367:109::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48441:27:::1;48456:11;42620::::0;:25;42547:106;48441:27:::1;48367:109:::0;:::o;47950:94::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48016:9:::1;:20:::0;47950:94::o;32052:98::-;32108:13;32137:7;32130:14;;;;;:::i;48484:98::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48558:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;33690:274::-:0;-1:-1:-1;;;;;33781:24:0;;5545:10;33781:24;;33773:63;;;;-1:-1:-1;;;33773:63:0;;16177:2:1;33773:63:0;;;16159:21:1;16216:2;16196:18;;;16189:30;16255:28;16235:18;;;16228:56;16301:18;;33773:63:0;15975:350:1;33773:63:0;5545:10;33845:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33845:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33845:53:0;;;;;;;;;;33910:48;;9173:41:1;;;33845:42:0;;5545:10;33910:48;;9146:18:1;33910:48:0;;;;;;;33690:274;;:::o;34697:311::-;34834:28;34844:4;34850:2;34854:7;34834:9;:28::i;:::-;34885:48;34908:4;34914:2;34918:7;34927:5;34885:22;:48::i;:::-;34869:133;;;;-1:-1:-1;;;34869:133:0;;;;;;;:::i;48803:350::-;48876:13;48910:16;48918:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;48910:16;48902:76;;;;-1:-1:-1;;;48902:76:0;;15761:2:1;48902:76:0;;;15743:21:1;15800:2;15780:18;;;15773:30;15839:34;15819:18;;;15812:62;-1:-1:-1;;;15890:18:1;;;15883:45;15945:19;;48902:76:0;15559:411:1;48902:76:0;48992:8;;;;;;;48989:61;;49029:9;49022:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48803:350;;;:::o;48989:61::-;49091:16;:14;:16::i;:::-;49109:25;49126:7;49109:16;:25::i;:::-;49074:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49060:85;;48803:350;;;:::o;48149:104::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;48217:20:::1;:28:::0;;-1:-1:-1;;48217:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48149:104::o;46529:707::-;1719:1;2317:7;;:19;;2309:63;;;;-1:-1:-1;;;2309:63:0;;19999:2:1;2309:63:0;;;19981:21:1;20038:2;20018:18;;;20011:30;20077:33;20057:18;;;20050:61;20128:18;;2309:63:0;19797:355:1;2309:63:0;1719:1;2450:7;:18;46643:20:::1;::::0;::::1;;46635:54;;;::::0;-1:-1:-1;;;46635:54:0;;10054:2:1;46635:54:0::1;::::0;::::1;10036:21:1::0;10093:2;10073:18;;;10066:30;-1:-1:-1;;;10112:18:1;;;10105:51;10173:18;;46635:54:0::1;9852:345:1::0;46635:54:0::1;46708:33;46722:10;46734:6;46708:13;:33::i;:::-;46700:70;;;::::0;-1:-1:-1;;;46700:70:0;;12688:2:1;46700:70:0::1;::::0;::::1;12670:21:1::0;12727:2;12707:18;;;12700:30;12766:26;12746:18;;;12739:54;12810:18;;46700:70:0::1;12486:348:1::0;46700:70:0::1;46806:7;46789:13;;:24;;46781:64;;;::::0;-1:-1:-1;;;46781:64:0;;11928:2:1;46781:64:0::1;::::0;::::1;11910:21:1::0;11967:2;11947:18;;;11940:30;12006:29;11986:18;;;11979:57;12053:18;;46781:64:0::1;11726:351:1::0;46781:64:0::1;46890:10;46881:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;46904:7;;46881:30:::1;:::i;:::-;46864:13;;:47;;46856:90;;;::::0;-1:-1:-1;;;46856:90:0;;10404:2:1;46856:90:0::1;::::0;::::1;10386:21:1::0;10443:2;10423:18;;;10416:30;10482:32;10462:18;;;10455:60;10532:18;;46856:90:0::1;10202:354:1::0;46856:90:0::1;46992:7;46978:11;;:21;;;;:::i;:::-;46965:9;:34;46957:72;;;::::0;-1:-1:-1;;;46957:72:0;;14227:2:1;46957:72:0::1;::::0;::::1;14209:21:1::0;14266:2;14246:18;;;14239:30;-1:-1:-1;;;14285:18:1;;;14278:55;14350:18;;46957:72:0::1;14025:349:1::0;46957:72:0::1;47078:12;::::0;47059:13:::1;::::0;47049:23:::1;::::0;:7;:23:::1;:::i;:::-;47048:43;;47040:68;;;;-1:-1:-1::0;;;47040:68:0::1;;;;;;;:::i;:::-;47130:10;47121:20;::::0;;;:8:::1;:20;::::0;;;;:31;;47145:7;;47121:20;:31:::1;::::0;47145:7;;47121:31:::1;:::i;:::-;::::0;;;-1:-1:-1;47163:30:0::1;::::0;-1:-1:-1;47173:10:0::1;47185:7:::0;47163:9:::1;:30::i;:::-;47221:7;47204:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1675:1:0;2629:7;:22;-1:-1:-1;;46529:707:0:o;7646:201::-;6810:6;;-1:-1:-1;;;;;6810:6:0;5545:10;6957:23;6949:68;;;;-1:-1:-1;;;6949:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7735:22:0;::::1;7727:73;;;::::0;-1:-1:-1;;;7727:73:0;;11110:2:1;7727:73:0::1;::::0;::::1;11092:21:1::0;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;-1:-1:-1;;;11239:18:1;;;11232:36;11285:19;;7727:73:0::1;10908:402:1::0;7727:73:0::1;7811:28;7830:8;7811:18;:28::i;38934:172::-:0;39031:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39031:29:0;-1:-1:-1;;;;;39031:29:0;;;;;;;;;39072:28;;39031:24;;39072:28;;;;;;;38934:172;;;:::o;37299:1529::-;37396:35;37434:20;37446:7;37434:11;:20::i;:::-;37505:18;;37396:58;;-1:-1:-1;37463:22:0;;-1:-1:-1;;;;;37489:34:0;5545:10;-1:-1:-1;;;;;37489:34:0;;:81;;;-1:-1:-1;5545:10:0;37534:20;37546:7;37534:11;:20::i;:::-;-1:-1:-1;;;;;37534:36:0;;37489:81;:142;;;-1:-1:-1;37598:18:0;;37581:50;;5545:10;34027:186;:::i;37581:50::-;37463:169;;37657:17;37641:101;;;;-1:-1:-1;;;37641:101:0;;16532:2:1;37641:101:0;;;16514:21:1;16571:2;16551:18;;;16544:30;16610:34;16590:18;;;16583:62;-1:-1:-1;;;16661:18:1;;;16654:48;16719:19;;37641:101:0;16330:414:1;37641:101:0;37789:4;-1:-1:-1;;;;;37767:26:0;:13;:18;;;-1:-1:-1;;;;;37767:26:0;;37751:98;;;;-1:-1:-1;;;37751:98:0;;14993:2:1;37751:98:0;;;14975:21:1;15032:2;15012:18;;;15005:30;15071:34;15051:18;;;15044:62;-1:-1:-1;;;15122:18:1;;;15115:36;15168:19;;37751:98:0;14791:402:1;37751:98:0;-1:-1:-1;;;;;37864:16:0;;37856:66;;;;-1:-1:-1;;;37856:66:0;;13041:2:1;37856:66:0;;;13023:21:1;13080:2;13060:18;;;13053:30;13119:34;13099:18;;;13092:62;-1:-1:-1;;;13170:18:1;;;13163:35;13215:19;;37856:66:0;12839:401:1;37856:66:0;38031:49;38048:1;38052:7;38061:13;:18;;;38031:8;:49::i;:::-;-1:-1:-1;;;;;38089:18:0;;;;;;:12;:18;;;;;:31;;38119:1;;38089:18;:31;;38119:1;;-1:-1:-1;;;;;38089:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38089:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38127:16:0;;-1:-1:-1;38127:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38127:16:0;;:29;;-1:-1:-1;;38127:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38127:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38186:43:0;;;;;;;;-1:-1:-1;;;;;38186:43:0;;;;;-1:-1:-1;;;;;38212:15:0;38186:43;;;;;;;;;-1:-1:-1;38163:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38163:66:0;-1:-1:-1;;;;;;38163:66:0;;;;;;;;;;;38479:11;38175:7;-1:-1:-1;38479:11:0;:::i;:::-;38542:1;38501:24;;;:11;:24;;;;;:29;38457:33;;-1:-1:-1;;;;;;38501:29:0;38497:236;;38559:20;38567:11;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;38559:20;38555:171;;;38619:97;;;;;;;;38646:18;;-1:-1:-1;;;;;38619:97:0;;;;;;38677:28;;;;-1:-1:-1;;;;;38619:97:0;;;;;;;;;-1:-1:-1;38592:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38592:124:0;-1:-1:-1;;;;;;38592:124:0;;;;;;;;;;;;38555:171;38765:7;38761:2;-1:-1:-1;;;;;38746:27:0;38755:4;-1:-1:-1;;;;;38746:27:0;;;;;;;;;;;38780:42;37389:1439;;;37299:1529;;;:::o;35358:98::-;35423:27;35433:2;35437:8;35423:27;;;;;;;;;;;;:9;:27::i;31060:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31177:16:0;31185:7;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;31177:16;31169:71;;;;-1:-1:-1;;;31169:71:0;;11517:2:1;31169:71:0;;;11499:21:1;11556:2;11536:18;;;11529:30;11595:34;11575:18;;;11568:62;-1:-1:-1;;;11646:18:1;;;11639:40;11696:19;;31169:71:0;11315:406:1;31169:71:0;31249:26;31297:12;31286:7;:23;31282:93;;31341:22;31351:12;31341:7;:22;:::i;:::-;:26;;31366:1;31341:26;:::i;:::-;31320:47;;31282:93;31403:7;31383:212;31420:18;31412:4;:26;31383:212;;31457:31;31491:17;;;:11;:17;;;;;;;;;31457:51;;;;;;;;;-1:-1:-1;;;;;31457:51:0;;;;;-1:-1:-1;;;31457:51:0;;;-1:-1:-1;;;;;31457:51:0;;;;;;;;31521:28;31517:71;;31569:9;31060:606;-1:-1:-1;;;;31060:606:0:o;31517:71::-;-1:-1:-1;31440:6:0;;;;:::i;:::-;;;;31383:212;;;-1:-1:-1;31603:57:0;;-1:-1:-1;;;31603:57:0;;20359:2:1;31603:57:0;;;20341:21:1;20398:2;20378:18;;;20371:30;20437:34;20417:18;;;20410:62;-1:-1:-1;;;20488:18:1;;;20481:45;20543:19;;31603:57:0;20157:411:1;8007:191:0;8100:6;;;-1:-1:-1;;;;;8117:17:0;;;-1:-1:-1;;;;;;8117:17:0;;;;;;;8150:40;;8100:6;;;8117:17;8100:6;;8150:40;;8081:16;;8150:40;8070:128;8007:191;:::o;40649:690::-;40786:4;-1:-1:-1;;;;;40803:13:0;;9731:19;:23;40799:535;;40842:72;;-1:-1:-1;;;40842:72:0;;-1:-1:-1;;;;;40842:36:0;;;;;:72;;5545:10;;40893:4;;40899:7;;40908:5;;40842:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40842:72:0;;;;;;;;-1:-1:-1;;40842:72:0;;;;;;;;;;;;:::i;:::-;;;40829:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41073:13:0;;41069:215;;41106:61;;-1:-1:-1;;;41106:61:0;;;;;;;:::i;41069:215::-;41252:6;41246:13;41237:6;41233:2;41229:15;41222:38;40829:464;-1:-1:-1;;;;;;40964:55:0;-1:-1:-1;;;40964:55:0;;-1:-1:-1;40957:62:0;;40799:535;-1:-1:-1;41322:4:0;40799:535;40649:690;;;;;;:::o;48694:101::-;48742:13;48774;48767:20;;;;;:::i;3029:723::-;3085:13;3306:10;3302:53;;-1:-1:-1;;3333:10:0;;;;;;;;;;;;-1:-1:-1;;;3333:10:0;;;;;3029:723::o;3302:53::-;3380:5;3365:12;3421:78;3428:9;;3421:78;;3454:8;;;;:::i;:::-;;-1:-1:-1;3477:10:0;;-1:-1:-1;3485:2:0;3477:10;;:::i;:::-;;;3421:78;;;3509:19;3541:6;-1:-1:-1;;;;;3531:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3531:17:0;;3509:39;;3559:154;3566:10;;3559:154;;3593:11;3603:1;3593:11;;:::i;:::-;;-1:-1:-1;3662:10:0;3670:2;3662:5;:10;:::i;:::-;3649:24;;:2;:24;:::i;:::-;3636:39;;3619:6;3626;3619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3619:56:0;;;;;;;;-1:-1:-1;3690:11:0;3699:2;3690:11;;:::i;:::-;;;3559:154;;35795:1272;35900:20;35923:12;-1:-1:-1;;;;;35950:16:0;;35942:62;;;;-1:-1:-1;;;35942:62:0;;19182:2:1;35942:62:0;;;19164:21:1;19221:2;19201:18;;;19194:30;19260:34;19240:18;;;19233:62;-1:-1:-1;;;19311:18:1;;;19304:31;19352:19;;35942:62:0;18980:397:1;35942:62:0;36141:21;36149:12;35304:4;35334:12;-1:-1:-1;35324:22:0;35247:105;36141:21;36140:22;36132:64;;;;-1:-1:-1;;;36132:64:0;;18824:2:1;36132:64:0;;;18806:21:1;18863:2;18843:18;;;18836:30;18902:31;18882:18;;;18875:59;18951:18;;36132:64:0;18622:353:1;36132:64:0;36223:12;36211:8;:24;;36203:71;;;;-1:-1:-1;;;36203:71:0;;21189:2:1;36203:71:0;;;21171:21:1;21228:2;21208:18;;;21201:30;21267:34;21247:18;;;21240:62;-1:-1:-1;;;21318:18:1;;;21311:32;21360:19;;36203:71:0;20987:398:1;36203:71:0;-1:-1:-1;;;;;36386:16:0;;36353:30;36386:16;;;:12;:16;;;;;;;;;36353:49;;;;;;;;;-1:-1:-1;;;;;36353:49:0;;;;;-1:-1:-1;;;36353:49:0;;;;;;;;;;;36428:119;;;;;;;;36448:19;;36353:49;;36428:119;;;36448:39;;36478:8;;36448:39;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;36531:8;36496:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36428:119:0;;;;;;-1:-1:-1;;;;;36409:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36409:138:0;;;;;;;;;;;;36582:43;;;;;;;;;;-1:-1:-1;;;;;36608:15:0;36582:43;;;;;;;;36554:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36554:71:0;-1:-1:-1;;;;;;36554:71:0;;;;;;;;;;;;;;;;;;36566:12;;36678:281;36702:8;36698:1;:12;36678:281;;;36731:38;;36756:12;;-1:-1:-1;;;;;36731:38:0;;;36748:1;;36731:38;;36748:1;;36731:38;36796:59;36827:1;36831:2;36835:12;36849:5;36796:22;:59::i;:::-;36778:150;;;;-1:-1:-1;;;36778:150:0;;;;;;;:::i;:::-;36937:14;;;;:::i;:::-;;;;36712:3;;;;;:::i;:::-;;;;36678:281;;;-1:-1:-1;36967:12:0;:27;;;37001:60;49161:525;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;:::-;1637:39;1496:186;-1:-1:-1;;;1496:186:1:o;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;-1:-1:-1;;;;;3248:6:1;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:1:o;3901:180::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4049:26;4065:9;4049:26;:::i;4086:180::-;4145:6;4198:2;4186:9;4177:7;4173:23;4169:32;4166:52;;;4214:1;4211;4204:12;4166:52;-1:-1:-1;4237:23:1;;4086:180;-1:-1:-1;4086:180:1:o;4271:245::-;4329:6;4382:2;4370:9;4361:7;4357:23;4353:32;4350:52;;;4398:1;4395;4388:12;4350:52;4437:9;4424:23;4456:30;4480:5;4456:30;:::i;4521:249::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4691:9;4685:16;4710:30;4734:5;4710:30;:::i;4775:450::-;4844:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4953:9;4940:23;-1:-1:-1;;;;;4978:6:1;4975:30;4972:50;;;5018:1;5015;5008:12;4972:50;5041:22;;5094:4;5086:13;;5082:27;-1:-1:-1;5072:55:1;;5123:1;5120;5113:12;5072:55;5146:73;5211:7;5206:2;5193:16;5188:2;5184;5180:11;5146:73;:::i;5415:254::-;5483:6;5491;5544:2;5532:9;5523:7;5519:23;5515:32;5512:52;;;5560:1;5557;5550:12;5512:52;5596:9;5583:23;5573:33;;5625:38;5659:2;5648:9;5644:18;5625:38;:::i;5674:416::-;5767:6;5775;5828:2;5816:9;5807:7;5803:23;5799:32;5796:52;;;5844:1;5841;5834:12;5796:52;5880:9;5867:23;5857:33;;5941:2;5930:9;5926:18;5913:32;-1:-1:-1;;;;;5960:6:1;5957:30;5954:50;;;6000:1;5997;5990:12;6095:257;6136:3;6174:5;6168:12;6201:6;6196:3;6189:19;6217:63;6273:6;6266:4;6261:3;6257:14;6250:4;6243:5;6239:16;6217:63;:::i;:::-;6334:2;6313:15;-1:-1:-1;;6309:29:1;6300:39;;;;6341:4;6296:50;;6095:257;-1:-1:-1;;6095:257:1:o;6843:637::-;7123:3;7161:6;7155:13;7177:53;7223:6;7218:3;7211:4;7203:6;7199:17;7177:53;:::i;:::-;7293:13;;7252:16;;;;7315:57;7293:13;7252:16;7349:4;7337:17;;7315:57;:::i;:::-;-1:-1:-1;;;7394:20:1;;7423:22;;;7472:1;7461:13;;6843:637;-1:-1:-1;;;;6843:637:1:o;7903:488::-;-1:-1:-1;;;;;8172:15:1;;;8154:34;;8224:15;;8219:2;8204:18;;8197:43;8271:2;8256:18;;8249:34;;;8319:3;8314:2;8299:18;;8292:31;;;8097:4;;8340:45;;8365:19;;8357:6;8340:45;:::i;:::-;8332:53;7903:488;-1:-1:-1;;;;;;7903:488:1:o;8396:632::-;8567:2;8619:21;;;8689:13;;8592:18;;;8711:22;;;8538:4;;8567:2;8790:15;;;;8764:2;8749:18;;;8538:4;8833:169;8847:6;8844:1;8841:13;8833:169;;;8908:13;;8896:26;;8977:15;;;;8942:12;;;;8869:1;8862:9;8833:169;;;-1:-1:-1;9019:3:1;;8396:632;-1:-1:-1;;;;;;8396:632:1:o;9225:219::-;9374:2;9363:9;9356:21;9337:4;9394:44;9434:2;9423:9;9419:18;9411:6;9394:44;:::i;15198:356::-;15400:2;15382:21;;;15419:18;;;15412:30;15478:34;15473:2;15458:18;;15451:62;15545:2;15530:18;;15198:356::o;17102:336::-;17304:2;17286:21;;;17343:2;17323:18;;;17316:30;-1:-1:-1;;;17377:2:1;17362:18;;17355:42;17429:2;17414:18;;17102:336::o;18202:415::-;18404:2;18386:21;;;18443:2;18423:18;;;18416:30;18482:34;18477:2;18462:18;;18455:62;-1:-1:-1;;;18548:2:1;18533:18;;18526:49;18607:3;18592:19;;18202:415::o;21572:275::-;21643:2;21637:9;21708:2;21689:13;;-1:-1:-1;;21685:27:1;21673:40;;-1:-1:-1;;;;;21728:34:1;;21764:22;;;21725:62;21722:88;;;21790:18;;:::i;:::-;21826:2;21819:22;21572:275;;-1:-1:-1;21572:275:1:o;21852:253::-;21892:3;-1:-1:-1;;;;;21981:2:1;21978:1;21974:10;22011:2;22008:1;22004:10;22042:3;22038:2;22034:12;22029:3;22026:21;22023:47;;;22050:18;;:::i;:::-;22086:13;;21852:253;-1:-1:-1;;;;21852:253:1:o;22110:128::-;22150:3;22181:1;22177:6;22174:1;22171:13;22168:39;;;22187:18;;:::i;:::-;-1:-1:-1;22223:9:1;;22110:128::o;22243:120::-;22283:1;22309;22299:35;;22314:18;;:::i;:::-;-1:-1:-1;22348:9:1;;22243:120::o;22368:168::-;22408:7;22474:1;22470;22466:6;22462:14;22459:1;22456:21;22451:1;22444:9;22437:17;22433:45;22430:71;;;22481:18;;:::i;:::-;-1:-1:-1;22521:9:1;;22368:168::o;22541:246::-;22581:4;-1:-1:-1;;;;;22694:10:1;;;;22664;;22716:12;;;22713:38;;;22731:18;;:::i;:::-;22768:13;;22541:246;-1:-1:-1;;;22541:246:1:o;22792:125::-;22832:4;22860:1;22857;22854:8;22851:34;;;22865:18;;:::i;:::-;-1:-1:-1;22902:9:1;;22792:125::o;22922:258::-;22994:1;23004:113;23018:6;23015:1;23012:13;23004:113;;;23094:11;;;23088:18;23075:11;;;23068:39;23040:2;23033:10;23004:113;;;23135:6;23132:1;23129:13;23126:48;;;-1:-1:-1;;23170:1:1;23152:16;;23145:27;22922:258::o;23185:136::-;23224:3;23252:5;23242:39;;23261:18;;:::i;:::-;-1:-1:-1;;;23297:18:1;;23185:136::o;23326:380::-;23405:1;23401:12;;;;23448;;;23469:61;;23523:4;23515:6;23511:17;23501:27;;23469:61;23576:2;23568:6;23565:14;23545:18;23542:38;23539:161;;;23622:10;23617:3;23613:20;23610:1;23603:31;23657:4;23654:1;23647:15;23685:4;23682:1;23675:15;23539:161;;23326:380;;;:::o;23711:135::-;23750:3;-1:-1:-1;;23771:17:1;;23768:43;;;23791:18;;:::i;:::-;-1:-1:-1;23838:1:1;23827:13;;23711:135::o;23851:112::-;23883:1;23909;23899:35;;23914:18;;:::i;:::-;-1:-1:-1;23948:9:1;;23851:112::o;23968:127::-;24029:10;24024:3;24020:20;24017:1;24010:31;24060:4;24057:1;24050:15;24084:4;24081:1;24074:15;24100:127;24161:10;24156:3;24152:20;24149:1;24142:31;24192:4;24189:1;24182:15;24216:4;24213:1;24206:15;24232:127;24293:10;24288:3;24284:20;24281:1;24274:31;24324:4;24321:1;24314:15;24348:4;24345:1;24338:15;24364:127;24425:10;24420:3;24416:20;24413:1;24406:31;24456:4;24453:1;24446:15;24480:4;24477:1;24470:15;24496:131;-1:-1:-1;;;;;;24570:32:1;;24560:43;;24550:71;;24617:1;24614;24607:12
Swarm Source
ipfs://10ceaac46ed5e38544ffc7e478f87945c485690dd12fb0acaf15599a1df71ee2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.