Overview
TokenID
4734
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DeltaWolves
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/dw.sol // author :: itz0xAkira :D pragma solidity ^0.8.9; contract DeltaWolves is ERC721A, Ownable { uint256 MAX_SUPPLY = 7777; uint256 public MAX_MINT = 5; bool Publicsale = false; string private baseURI; mapping (address => uint256) public mintedCounts; mapping (address => bool) public AllowedMarketplaces; event Minted(address indexed recipient); constructor() ERC721A("Delta Wolves", "DW") {} function approve(address to, uint256 id) public virtual payable override { require(AllowedMarketplaces[to], "Invalid marketplace"); super.approve(to, id); } function setApprovalForAll(address operator, bool approved) public virtual override { require(AllowedMarketplaces[operator], "Invalid marketplace"); super.setApprovalForAll(operator, approved); } function setAllowedMarketplace(address marketplace, bool allowed) public onlyOwner{ AllowedMarketplaces[marketplace] = allowed; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function setBaseURI(string memory _baseURI_) external onlyOwner { baseURI = _baseURI_; } function setMaxMint(uint256 MaxMints) external onlyOwner { MAX_MINT = MaxMints; } function ownerMint(uint256 quantity) public onlyOwner { require((totalSupply() + quantity) <= MAX_SUPPLY, "There is no more wolves to mint!!"); _mint(msg.sender, quantity); } function AirDrop(address to, uint256 quantity) public onlyOwner { require((totalSupply() + quantity) <= MAX_SUPPLY, "There is no more wolves to mint!!"); _mint(to, quantity); } function mint(uint256 quantity) external payable callerIsUser { require(Publicsale, " Not active yet"); require((totalSupply() + quantity) <= MAX_SUPPLY, "There is no more wolves to mint!!"); require(quantity + mintedCounts[msg.sender] <= MAX_MINT, "Already claimed the max amount of wolves allowed"); _safeMint(msg.sender, quantity); mintedCounts[msg.sender] += quantity; emit Minted(msg.sender); } function ActivatePublicsale() external onlyOwner { Publicsale = !Publicsale; } function _baseURI() internal view override returns (string memory) { return baseURI; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ActivatePublicsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"AirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AllowedMarketplaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"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":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedCounts","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"marketplace","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setAllowedMarketplace","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":"_baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxMints","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052611e616009556005600a556000600b60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040518060400160405280600c81526020017f44656c746120576f6c76657300000000000000000000000000000000000000008152506040518060400160405280600281526020017f44570000000000000000000000000000000000000000000000000000000000008152508160029081620000b5919062000453565b508060039081620000c7919062000453565b50620000d86200010660201b60201c565b600081905550505062000100620000f46200010b60201b60201c565b6200011360201b60201c565b6200053a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025b57607f821691505b60208210810362000271576200027062000213565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002db7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200029c565b620002e786836200029c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003346200032e6200032884620002ff565b62000309565b620002ff565b9050919050565b6000819050919050565b620003508362000313565b620003686200035f826200033b565b848454620002a9565b825550505050565b600090565b6200037f62000370565b6200038c81848462000345565b505050565b5b81811015620003b457620003a860008262000375565b60018101905062000392565b5050565b601f8211156200040357620003cd8162000277565b620003d8846200028c565b81016020851015620003e8578190505b62000400620003f7856200028c565b83018262000391565b50505b505050565b600082821c905092915050565b6000620004286000198460080262000408565b1980831691505092915050565b600062000443838362000415565b9150826002028217905092915050565b6200045e82620001d9565b67ffffffffffffffff8111156200047a5762000479620001e4565b5b62000486825462000242565b62000493828285620003b8565b600060209050601f831160018114620004cb5760008415620004b6578287015190505b620004c2858262000435565b86555062000532565b601f198416620004db8662000277565b60005b828110156200050557848901518255600182019150602085019450602081019050620004de565b8683101562000525578489015162000521601f89168262000415565b8355505b6001600288020188555050505b505050505050565b613184806200054a6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146105a4578063f0292a03146105e1578063f19e75d41461060c578063f2fde38b14610635576101b7565b8063a22cb46514610522578063b88d4fde1461054b578063c87b56dd14610567576101b7565b80638da5cb5b116100c65780638da5cb5b1461048757806395d89b41146104b25780639fe577ce146104dd578063a0712d6814610506576101b7565b806370a082311461041c578063715018a614610459578063746149b614610470576101b7565b806337e4f2f61161015957806342842e0e1161013357806342842e0e14610371578063547520fe1461038d57806355f804b3146103b65780636352211e146103df576101b7565b806337e4f2f6146102ed5780633ccfd60b1461032a578063408337dc14610334576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d57806323b872dd146102a85780632a2f3a6f146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061232c565b61065e565b6040516101f09190612374565b60405180910390f35b34801561020557600080fd5b5061020e6106f0565b60405161021b919061241f565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612477565b610782565b60405161025891906124e5565b60405180910390f35b61027b6004803603810190610276919061252c565b610801565b005b34801561028957600080fd5b5061029261089b565b60405161029f919061257b565b60405180910390f35b6102c260048036038101906102bd9190612596565b6108b2565b005b3480156102d057600080fd5b506102eb60048036038101906102e6919061252c565b610bd4565b005b3480156102f957600080fd5b50610314600480360381019061030f91906125e9565b610cb5565b604051610321919061257b565b60405180910390f35b610332610ccd565b005b34801561034057600080fd5b5061035b600480360381019061035691906125e9565b610d99565b6040516103689190612374565b60405180910390f35b61038b60048036038101906103869190612596565b610db9565b005b34801561039957600080fd5b506103b460048036038101906103af9190612477565b610dd9565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061274b565b610e5f565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612477565b610eee565b60405161041391906124e5565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906125e9565b610f00565b604051610450919061257b565b60405180910390f35b34801561046557600080fd5b5061046e610fb8565b005b34801561047c57600080fd5b50610485611040565b005b34801561049357600080fd5b5061049c6110e8565b6040516104a991906124e5565b60405180910390f35b3480156104be57600080fd5b506104c7611112565b6040516104d4919061241f565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127c0565b6111a4565b005b610520600480360381019061051b9190612477565b61127b565b005b34801561052e57600080fd5b50610549600480360381019061054491906127c0565b6114c4565b005b610565600480360381019061056091906128a1565b61155e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612477565b6115d1565b60405161059b919061241f565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190612924565b61166f565b6040516105d89190612374565b60405180910390f35b3480156105ed57600080fd5b506105f6611703565b604051610603919061257b565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190612477565b611709565b005b34801561064157600080fd5b5061065c600480360381019061065791906125e9565b6117e9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ff90612993565b80601f016020809104026020016040519081016040528092919081815260200182805461072b90612993565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b600061078d826118e0565b6107c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612a10565b60405180910390fd5b610897828261193f565b5050565b60006108a5611a83565b6001546000540303905090565b60006108bd82611a88565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610924576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061093084611b54565b915091506109468187610941611b7b565b611b83565b6109925761095b86610956611b7b565b61166f565b610991576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a058686866001611bc7565b8015610a1057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ade85610aba888887611bcd565b7c020000000000000000000000000000000000000000000000000000000017611bf5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b645760006001850190506000600460008381526020019081526020016000205403610b62576000548114610b61578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bcc8686866001611c20565b505050505050565b610bdc611c26565b73ffffffffffffffffffffffffffffffffffffffff16610bfa6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790612a7c565b60405180910390fd5b60095481610c5c61089b565b610c669190612acb565b1115610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90612b71565b60405180910390fd5b610cb18282611c2e565b5050565b600d6020528060005260406000206000915090505481565b610cd5611c26565b73ffffffffffffffffffffffffffffffffffffffff16610cf36110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612a7c565b60405180910390fd5b610d516110e8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d96573d6000803e3d6000fd5b50565b600e6020528060005260406000206000915054906101000a900460ff1681565b610dd48383836040518060200160405280600081525061155e565b505050565b610de1611c26565b73ffffffffffffffffffffffffffffffffffffffff16610dff6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612a7c565b60405180910390fd5b80600a8190555050565b610e67611c26565b73ffffffffffffffffffffffffffffffffffffffff16610e856110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612a7c565b60405180910390fd5b80600c9081610eea9190612d3d565b5050565b6000610ef982611a88565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc0611c26565b73ffffffffffffffffffffffffffffffffffffffff16610fde6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90612a7c565b60405180910390fd5b61103e6000611de9565b565b611048611c26565b73ffffffffffffffffffffffffffffffffffffffff166110666110e8565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612a7c565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112190612993565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612993565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b5050505050905090565b6111ac611c26565b73ffffffffffffffffffffffffffffffffffffffff166111ca6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790612a7c565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612e5b565b60405180910390fd5b600b60009054906101000a900460ff16611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612ec7565b60405180910390fd5b6009548161134461089b565b61134e9190612acb565b111561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690612b71565b60405180910390fd5b600a54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826113dd9190612acb565b111561141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612f59565b60405180910390fd5b6114283382611eaf565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114779190612acb565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d860405160405180910390a250565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790612a10565b60405180910390fd5b61155a8282611ecd565b5050565b6115698484846108b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cb5761159484848484611fd8565b6115ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115dc826118e0565b611612576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061161c612128565b9050600081510361163c5760405180602001604052806000815250611667565b80611646846121ba565b604051602001611657929190612fb5565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611711611c26565b73ffffffffffffffffffffffffffffffffffffffff1661172f6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90612a7c565b60405180910390fd5b6009548161179161089b565b61179b9190612acb565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390612b71565b60405180910390fd5b6117e63382611c2e565b50565b6117f1611c26565b73ffffffffffffffffffffffffffffffffffffffff1661180f6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90612a7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb9061304b565b60405180910390fd5b6118dd81611de9565b50565b6000816118eb611a83565b111580156118fa575060005482105b8015611938575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061194a82610eee565b90508073ffffffffffffffffffffffffffffffffffffffff1661196b611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146119ce5761199781611992611b7b565b61166f565b6119cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60008082905080611a97611a83565b11611b1d57600054811015611b1c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b1a575b60008103611b10576004600083600190039350838152602001908152602001600020549050611ae6565b8092505050611b4f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be486868461220a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008054905060008203611c6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b6000848385611bc7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cf283611ce36000866000611bcd565b611cec85612213565b17611bf5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d9357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d58565b5060008203611dce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611de46000848385611c20565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec9828260405180602001604052806000815250612223565b5050565b8060076000611eda611b7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f87611b7b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fcc9190612374565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffe611b7b565b8786866040518563ffffffff1660e01b815260040161202094939291906130c0565b6020604051808303816000875af192505050801561205c57506040513d601f19601f820116820180604052508101906120599190613121565b60015b6120d5573d806000811461208c576040519150601f19603f3d011682016040523d82523d6000602084013e612091565b606091505b5060008151036120cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461213790612993565b80601f016020809104026020016040519081016040528092919081815260200182805461216390612993565b80156121b05780601f10612185576101008083540402835291602001916121b0565b820191906000526020600020905b81548152906001019060200180831161219357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121f557600184039350600a81066030018453600a81049050806121d3575b50828103602084039350808452505050919050565b60009392505050565b60006001821460e11b9050919050565b61222d8383611c2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bb57600080549050600083820390505b61226d6000868380600101945086611fd8565b6122a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061225a5781600054146122b857600080fd5b50505b505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612309816122d4565b811461231457600080fd5b50565b60008135905061232681612300565b92915050565b600060208284031215612342576123416122ca565b5b600061235084828501612317565b91505092915050565b60008115159050919050565b61236e81612359565b82525050565b60006020820190506123896000830184612365565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c95780820151818401526020810190506123ae565b60008484015250505050565b6000601f19601f8301169050919050565b60006123f18261238f565b6123fb818561239a565b935061240b8185602086016123ab565b612414816123d5565b840191505092915050565b6000602082019050818103600083015261243981846123e6565b905092915050565b6000819050919050565b61245481612441565b811461245f57600080fd5b50565b6000813590506124718161244b565b92915050565b60006020828403121561248d5761248c6122ca565b5b600061249b84828501612462565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124cf826124a4565b9050919050565b6124df816124c4565b82525050565b60006020820190506124fa60008301846124d6565b92915050565b612509816124c4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b60008060408385031215612543576125426122ca565b5b600061255185828601612517565b925050602061256285828601612462565b9150509250929050565b61257581612441565b82525050565b6000602082019050612590600083018461256c565b92915050565b6000806000606084860312156125af576125ae6122ca565b5b60006125bd86828701612517565b93505060206125ce86828701612517565b92505060406125df86828701612462565b9150509250925092565b6000602082840312156125ff576125fe6122ca565b5b600061260d84828501612517565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612658826123d5565b810181811067ffffffffffffffff8211171561267757612676612620565b5b80604052505050565b600061268a6122c0565b9050612696828261264f565b919050565b600067ffffffffffffffff8211156126b6576126b5612620565b5b6126bf826123d5565b9050602081019050919050565b82818337600083830152505050565b60006126ee6126e98461269b565b612680565b90508281526020810184848401111561270a5761270961261b565b5b6127158482856126cc565b509392505050565b600082601f83011261273257612731612616565b5b81356127428482602086016126db565b91505092915050565b600060208284031215612761576127606122ca565b5b600082013567ffffffffffffffff81111561277f5761277e6122cf565b5b61278b8482850161271d565b91505092915050565b61279d81612359565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d66122ca565b5b60006127e585828601612517565b92505060206127f6858286016127ab565b9150509250929050565b600067ffffffffffffffff82111561281b5761281a612620565b5b612824826123d5565b9050602081019050919050565b600061284461283f84612800565b612680565b9050828152602081018484840111156128605761285f61261b565b5b61286b8482856126cc565b509392505050565b600082601f83011261288857612887612616565b5b8135612898848260208601612831565b91505092915050565b600080600080608085870312156128bb576128ba6122ca565b5b60006128c987828801612517565b94505060206128da87828801612517565b93505060406128eb87828801612462565b925050606085013567ffffffffffffffff81111561290c5761290b6122cf565b5b61291887828801612873565b91505092959194509250565b6000806040838503121561293b5761293a6122ca565b5b600061294985828601612517565b925050602061295a85828601612517565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129ab57607f821691505b6020821081036129be576129bd612964565b5b50919050565b7f496e76616c6964206d61726b6574706c61636500000000000000000000000000600082015250565b60006129fa60138361239a565b9150612a05826129c4565b602082019050919050565b60006020820190508181036000830152612a29816129ed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6660208361239a565b9150612a7182612a30565b602082019050919050565b60006020820190508181036000830152612a9581612a59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad682612441565b9150612ae183612441565b9250828201905080821115612af957612af8612a9c565b5b92915050565b7f5468657265206973206e6f206d6f726520776f6c76657320746f206d696e742160008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b5b60218361239a565b9150612b6682612aff565b604082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bf37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bb6565b612bfd8683612bb6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c3a612c35612c3084612441565b612c15565b612441565b9050919050565b6000819050919050565b612c5483612c1f565b612c68612c6082612c41565b848454612bc3565b825550505050565b600090565b612c7d612c70565b612c88818484612c4b565b505050565b5b81811015612cac57612ca1600082612c75565b600181019050612c8e565b5050565b601f821115612cf157612cc281612b91565b612ccb84612ba6565b81016020851015612cda578190505b612cee612ce685612ba6565b830182612c8d565b50505b505050565b600082821c905092915050565b6000612d1460001984600802612cf6565b1980831691505092915050565b6000612d2d8383612d03565b9150826002028217905092915050565b612d468261238f565b67ffffffffffffffff811115612d5f57612d5e612620565b5b612d698254612993565b612d74828285612cb0565b600060209050601f831160018114612da75760008415612d95578287015190505b612d9f8582612d21565b865550612e07565b601f198416612db586612b91565b60005b82811015612ddd57848901518255600182019150602085019450602081019050612db8565b86831015612dfa5784890151612df6601f891682612d03565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e45601e8361239a565b9150612e5082612e0f565b602082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f204e6f7420616374697665207965740000000000000000000000000000000000600082015250565b6000612eb1600f8361239a565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f416c726561647920636c61696d656420746865206d617820616d6f756e74206f60008201527f6620776f6c76657320616c6c6f77656400000000000000000000000000000000602082015250565b6000612f4360308361239a565b9150612f4e82612ee7565b604082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b600081905092915050565b6000612f8f8261238f565b612f998185612f79565b9350612fa98185602086016123ab565b80840191505092915050565b6000612fc18285612f84565b9150612fcd8284612f84565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303560268361239a565b915061304082612fd9565b604082019050919050565b6000602082019050818103600083015261306481613028565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130928261306b565b61309c8185613076565b93506130ac8185602086016123ab565b6130b5816123d5565b840191505092915050565b60006080820190506130d560008301876124d6565b6130e260208301866124d6565b6130ef604083018561256c565b81810360608301526131018184613087565b905095945050505050565b60008151905061311b81612300565b92915050565b600060208284031215613137576131366122ca565b5b60006131458482850161310c565b9150509291505056fea264697066735822122045060153aa23b9afee00c6d0e5c0cd5200d451556258871921e375b2e63a25d264736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146105a4578063f0292a03146105e1578063f19e75d41461060c578063f2fde38b14610635576101b7565b8063a22cb46514610522578063b88d4fde1461054b578063c87b56dd14610567576101b7565b80638da5cb5b116100c65780638da5cb5b1461048757806395d89b41146104b25780639fe577ce146104dd578063a0712d6814610506576101b7565b806370a082311461041c578063715018a614610459578063746149b614610470576101b7565b806337e4f2f61161015957806342842e0e1161013357806342842e0e14610371578063547520fe1461038d57806355f804b3146103b65780636352211e146103df576101b7565b806337e4f2f6146102ed5780633ccfd60b1461032a578063408337dc14610334576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d57806323b872dd146102a85780632a2f3a6f146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061232c565b61065e565b6040516101f09190612374565b60405180910390f35b34801561020557600080fd5b5061020e6106f0565b60405161021b919061241f565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612477565b610782565b60405161025891906124e5565b60405180910390f35b61027b6004803603810190610276919061252c565b610801565b005b34801561028957600080fd5b5061029261089b565b60405161029f919061257b565b60405180910390f35b6102c260048036038101906102bd9190612596565b6108b2565b005b3480156102d057600080fd5b506102eb60048036038101906102e6919061252c565b610bd4565b005b3480156102f957600080fd5b50610314600480360381019061030f91906125e9565b610cb5565b604051610321919061257b565b60405180910390f35b610332610ccd565b005b34801561034057600080fd5b5061035b600480360381019061035691906125e9565b610d99565b6040516103689190612374565b60405180910390f35b61038b60048036038101906103869190612596565b610db9565b005b34801561039957600080fd5b506103b460048036038101906103af9190612477565b610dd9565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061274b565b610e5f565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612477565b610eee565b60405161041391906124e5565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906125e9565b610f00565b604051610450919061257b565b60405180910390f35b34801561046557600080fd5b5061046e610fb8565b005b34801561047c57600080fd5b50610485611040565b005b34801561049357600080fd5b5061049c6110e8565b6040516104a991906124e5565b60405180910390f35b3480156104be57600080fd5b506104c7611112565b6040516104d4919061241f565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906127c0565b6111a4565b005b610520600480360381019061051b9190612477565b61127b565b005b34801561052e57600080fd5b50610549600480360381019061054491906127c0565b6114c4565b005b610565600480360381019061056091906128a1565b61155e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612477565b6115d1565b60405161059b919061241f565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c69190612924565b61166f565b6040516105d89190612374565b60405180910390f35b3480156105ed57600080fd5b506105f6611703565b604051610603919061257b565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190612477565b611709565b005b34801561064157600080fd5b5061065c600480360381019061065791906125e9565b6117e9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ff90612993565b80601f016020809104026020016040519081016040528092919081815260200182805461072b90612993565b80156107785780601f1061074d57610100808354040283529160200191610778565b820191906000526020600020905b81548152906001019060200180831161075b57829003601f168201915b5050505050905090565b600061078d826118e0565b6107c3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490612a10565b60405180910390fd5b610897828261193f565b5050565b60006108a5611a83565b6001546000540303905090565b60006108bd82611a88565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610924576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061093084611b54565b915091506109468187610941611b7b565b611b83565b6109925761095b86610956611b7b565b61166f565b610991576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a058686866001611bc7565b8015610a1057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ade85610aba888887611bcd565b7c020000000000000000000000000000000000000000000000000000000017611bf5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610b645760006001850190506000600460008381526020019081526020016000205403610b62576000548114610b61578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bcc8686866001611c20565b505050505050565b610bdc611c26565b73ffffffffffffffffffffffffffffffffffffffff16610bfa6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790612a7c565b60405180910390fd5b60095481610c5c61089b565b610c669190612acb565b1115610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e90612b71565b60405180910390fd5b610cb18282611c2e565b5050565b600d6020528060005260406000206000915090505481565b610cd5611c26565b73ffffffffffffffffffffffffffffffffffffffff16610cf36110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612a7c565b60405180910390fd5b610d516110e8565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d96573d6000803e3d6000fd5b50565b600e6020528060005260406000206000915054906101000a900460ff1681565b610dd48383836040518060200160405280600081525061155e565b505050565b610de1611c26565b73ffffffffffffffffffffffffffffffffffffffff16610dff6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612a7c565b60405180910390fd5b80600a8190555050565b610e67611c26565b73ffffffffffffffffffffffffffffffffffffffff16610e856110e8565b73ffffffffffffffffffffffffffffffffffffffff1614610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612a7c565b60405180910390fd5b80600c9081610eea9190612d3d565b5050565b6000610ef982611a88565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc0611c26565b73ffffffffffffffffffffffffffffffffffffffff16610fde6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90612a7c565b60405180910390fd5b61103e6000611de9565b565b611048611c26565b73ffffffffffffffffffffffffffffffffffffffff166110666110e8565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b390612a7c565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461112190612993565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612993565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b5050505050905090565b6111ac611c26565b73ffffffffffffffffffffffffffffffffffffffff166111ca6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121790612a7c565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090612e5b565b60405180910390fd5b600b60009054906101000a900460ff16611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90612ec7565b60405180910390fd5b6009548161134461089b565b61134e9190612acb565b111561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690612b71565b60405180910390fd5b600a54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826113dd9190612acb565b111561141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612f59565b60405180910390fd5b6114283382611eaf565b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114779190612acb565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d860405160405180910390a250565b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790612a10565b60405180910390fd5b61155a8282611ecd565b5050565b6115698484846108b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115cb5761159484848484611fd8565b6115ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115dc826118e0565b611612576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061161c612128565b9050600081510361163c5760405180602001604052806000815250611667565b80611646846121ba565b604051602001611657929190612fb5565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611711611c26565b73ffffffffffffffffffffffffffffffffffffffff1661172f6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90612a7c565b60405180910390fd5b6009548161179161089b565b61179b9190612acb565b11156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d390612b71565b60405180910390fd5b6117e63382611c2e565b50565b6117f1611c26565b73ffffffffffffffffffffffffffffffffffffffff1661180f6110e8565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90612a7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb9061304b565b60405180910390fd5b6118dd81611de9565b50565b6000816118eb611a83565b111580156118fa575060005482105b8015611938575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061194a82610eee565b90508073ffffffffffffffffffffffffffffffffffffffff1661196b611b7b565b73ffffffffffffffffffffffffffffffffffffffff16146119ce5761199781611992611b7b565b61166f565b6119cd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60008082905080611a97611a83565b11611b1d57600054811015611b1c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b1a575b60008103611b10576004600083600190039350838152602001908152602001600020549050611ae6565b8092505050611b4f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611be486868461220a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008054905060008203611c6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c7b6000848385611bc7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cf283611ce36000866000611bcd565b611cec85612213565b17611bf5565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d9357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d58565b5060008203611dce576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611de46000848385611c20565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec9828260405180602001604052806000815250612223565b5050565b8060076000611eda611b7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f87611b7b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fcc9190612374565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffe611b7b565b8786866040518563ffffffff1660e01b815260040161202094939291906130c0565b6020604051808303816000875af192505050801561205c57506040513d601f19601f820116820180604052508101906120599190613121565b60015b6120d5573d806000811461208c576040519150601f19603f3d011682016040523d82523d6000602084013e612091565b606091505b5060008151036120cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461213790612993565b80601f016020809104026020016040519081016040528092919081815260200182805461216390612993565b80156121b05780601f10612185576101008083540402835291602001916121b0565b820191906000526020600020905b81548152906001019060200180831161219357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156121f557600184039350600a81066030018453600a81049050806121d3575b50828103602084039350808452505050919050565b60009392505050565b60006001821460e11b9050919050565b61222d8383611c2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bb57600080549050600083820390505b61226d6000868380600101945086611fd8565b6122a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061225a5781600054146122b857600080fd5b50505b505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612309816122d4565b811461231457600080fd5b50565b60008135905061232681612300565b92915050565b600060208284031215612342576123416122ca565b5b600061235084828501612317565b91505092915050565b60008115159050919050565b61236e81612359565b82525050565b60006020820190506123896000830184612365565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c95780820151818401526020810190506123ae565b60008484015250505050565b6000601f19601f8301169050919050565b60006123f18261238f565b6123fb818561239a565b935061240b8185602086016123ab565b612414816123d5565b840191505092915050565b6000602082019050818103600083015261243981846123e6565b905092915050565b6000819050919050565b61245481612441565b811461245f57600080fd5b50565b6000813590506124718161244b565b92915050565b60006020828403121561248d5761248c6122ca565b5b600061249b84828501612462565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124cf826124a4565b9050919050565b6124df816124c4565b82525050565b60006020820190506124fa60008301846124d6565b92915050565b612509816124c4565b811461251457600080fd5b50565b60008135905061252681612500565b92915050565b60008060408385031215612543576125426122ca565b5b600061255185828601612517565b925050602061256285828601612462565b9150509250929050565b61257581612441565b82525050565b6000602082019050612590600083018461256c565b92915050565b6000806000606084860312156125af576125ae6122ca565b5b60006125bd86828701612517565b93505060206125ce86828701612517565b92505060406125df86828701612462565b9150509250925092565b6000602082840312156125ff576125fe6122ca565b5b600061260d84828501612517565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612658826123d5565b810181811067ffffffffffffffff8211171561267757612676612620565b5b80604052505050565b600061268a6122c0565b9050612696828261264f565b919050565b600067ffffffffffffffff8211156126b6576126b5612620565b5b6126bf826123d5565b9050602081019050919050565b82818337600083830152505050565b60006126ee6126e98461269b565b612680565b90508281526020810184848401111561270a5761270961261b565b5b6127158482856126cc565b509392505050565b600082601f83011261273257612731612616565b5b81356127428482602086016126db565b91505092915050565b600060208284031215612761576127606122ca565b5b600082013567ffffffffffffffff81111561277f5761277e6122cf565b5b61278b8482850161271d565b91505092915050565b61279d81612359565b81146127a857600080fd5b50565b6000813590506127ba81612794565b92915050565b600080604083850312156127d7576127d66122ca565b5b60006127e585828601612517565b92505060206127f6858286016127ab565b9150509250929050565b600067ffffffffffffffff82111561281b5761281a612620565b5b612824826123d5565b9050602081019050919050565b600061284461283f84612800565b612680565b9050828152602081018484840111156128605761285f61261b565b5b61286b8482856126cc565b509392505050565b600082601f83011261288857612887612616565b5b8135612898848260208601612831565b91505092915050565b600080600080608085870312156128bb576128ba6122ca565b5b60006128c987828801612517565b94505060206128da87828801612517565b93505060406128eb87828801612462565b925050606085013567ffffffffffffffff81111561290c5761290b6122cf565b5b61291887828801612873565b91505092959194509250565b6000806040838503121561293b5761293a6122ca565b5b600061294985828601612517565b925050602061295a85828601612517565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129ab57607f821691505b6020821081036129be576129bd612964565b5b50919050565b7f496e76616c6964206d61726b6574706c61636500000000000000000000000000600082015250565b60006129fa60138361239a565b9150612a05826129c4565b602082019050919050565b60006020820190508181036000830152612a29816129ed565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6660208361239a565b9150612a7182612a30565b602082019050919050565b60006020820190508181036000830152612a9581612a59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad682612441565b9150612ae183612441565b9250828201905080821115612af957612af8612a9c565b5b92915050565b7f5468657265206973206e6f206d6f726520776f6c76657320746f206d696e742160008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b5b60218361239a565b9150612b6682612aff565b604082019050919050565b60006020820190508181036000830152612b8a81612b4e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bf37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612bb6565b612bfd8683612bb6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c3a612c35612c3084612441565b612c15565b612441565b9050919050565b6000819050919050565b612c5483612c1f565b612c68612c6082612c41565b848454612bc3565b825550505050565b600090565b612c7d612c70565b612c88818484612c4b565b505050565b5b81811015612cac57612ca1600082612c75565b600181019050612c8e565b5050565b601f821115612cf157612cc281612b91565b612ccb84612ba6565b81016020851015612cda578190505b612cee612ce685612ba6565b830182612c8d565b50505b505050565b600082821c905092915050565b6000612d1460001984600802612cf6565b1980831691505092915050565b6000612d2d8383612d03565b9150826002028217905092915050565b612d468261238f565b67ffffffffffffffff811115612d5f57612d5e612620565b5b612d698254612993565b612d74828285612cb0565b600060209050601f831160018114612da75760008415612d95578287015190505b612d9f8582612d21565b865550612e07565b601f198416612db586612b91565b60005b82811015612ddd57848901518255600182019150602085019450602081019050612db8565b86831015612dfa5784890151612df6601f891682612d03565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000612e45601e8361239a565b9150612e5082612e0f565b602082019050919050565b60006020820190508181036000830152612e7481612e38565b9050919050565b7f204e6f7420616374697665207965740000000000000000000000000000000000600082015250565b6000612eb1600f8361239a565b9150612ebc82612e7b565b602082019050919050565b60006020820190508181036000830152612ee081612ea4565b9050919050565b7f416c726561647920636c61696d656420746865206d617820616d6f756e74206f60008201527f6620776f6c76657320616c6c6f77656400000000000000000000000000000000602082015250565b6000612f4360308361239a565b9150612f4e82612ee7565b604082019050919050565b60006020820190508181036000830152612f7281612f36565b9050919050565b600081905092915050565b6000612f8f8261238f565b612f998185612f79565b9350612fa98185602086016123ab565b80840191505092915050565b6000612fc18285612f84565b9150612fcd8284612f84565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061303560268361239a565b915061304082612fd9565b604082019050919050565b6000602082019050818103600083015261306481613028565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130928261306b565b61309c8185613076565b93506130ac8185602086016123ab565b6130b5816123d5565b840191505092915050565b60006080820190506130d560008301876124d6565b6130e260208301866124d6565b6130ef604083018561256c565b81810360608301526131018184613087565b905095945050505050565b60008151905061311b81612300565b92915050565b600060208284031215613137576131366122ca565b5b60006131458482850161310c565b9150509291505056fea264697066735822122045060153aa23b9afee00c6d0e5c0cd5200d451556258871921e375b2e63a25d264736f6c63430008120033
Deployed Bytecode Sourcemap
91741:2522:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58609:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59511:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66002:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92146:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55262:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69641:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93261:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91922:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94144:114;;;:::i;:::-;;91983:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72562:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92949:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92839:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60904:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56446:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4785:103;;;;;;;;;;;;;:::i;:::-;;93936:92;;;;;;;;;;;;;:::i;:::-;;4134:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59687:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92559:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93468:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92333:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73353:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59897:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66951:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91821:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93052:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5043:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58609:639;58694:4;59033:10;59018:25;;:11;:25;;;;:102;;;;59110:10;59095:25;;:11;:25;;;;59018:102;:179;;;;59187:10;59172:25;;:11;:25;;;;59018:179;58998:199;;58609:639;;;:::o;59511:100::-;59565:13;59598:5;59591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59511:100;:::o;66002:218::-;66078:7;66103:16;66111:7;66103;:16::i;:::-;66098:64;;66128:34;;;;;;;;;;;;;;66098:64;66182:15;:24;66198:7;66182:24;;;;;;;;;;;:30;;;;;;;;;;;;66175:37;;66002:218;;;:::o;92146:179::-;92238:19;:23;92258:2;92238:23;;;;;;;;;;;;;;;;;;;;;;;;;92230:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;92296:21;92310:2;92314;92296:13;:21::i;:::-;92146:179;;:::o;55262:323::-;55323:7;55551:15;:13;:15::i;:::-;55536:12;;55520:13;;:28;:46;55513:53;;55262:323;:::o;69641:2825::-;69783:27;69813;69832:7;69813:18;:27::i;:::-;69783:57;;69898:4;69857:45;;69873:19;69857:45;;;69853:86;;69911:28;;;;;;;;;;;;;;69853:86;69953:27;69982:23;70009:35;70036:7;70009:26;:35::i;:::-;69952:92;;;;70144:68;70169:15;70186:4;70192:19;:17;:19::i;:::-;70144:24;:68::i;:::-;70139:180;;70232:43;70249:4;70255:19;:17;:19::i;:::-;70232:16;:43::i;:::-;70227:92;;70284:35;;;;;;;;;;;;;;70227:92;70139:180;70350:1;70336:16;;:2;:16;;;70332:52;;70361:23;;;;;;;;;;;;;;70332:52;70397:43;70419:4;70425:2;70429:7;70438:1;70397:21;:43::i;:::-;70533:15;70530:160;;;70673:1;70652:19;70645:30;70530:160;71070:18;:24;71089:4;71070:24;;;;;;;;;;;;;;;;71068:26;;;;;;;;;;;;71139:18;:22;71158:2;71139:22;;;;;;;;;;;;;;;;71137:24;;;;;;;;;;;71461:146;71498:2;71547:45;71562:4;71568:2;71572:19;71547:14;:45::i;:::-;51661:8;71519:73;71461:18;:146::i;:::-;71432:17;:26;71450:7;71432:26;;;;;;;;;;;:175;;;;71778:1;51661:8;71727:19;:47;:52;71723:627;;71800:19;71832:1;71822:7;:11;71800:33;;71989:1;71955:17;:30;71973:11;71955:30;;;;;;;;;;;;:35;71951:384;;72093:13;;72078:11;:28;72074:242;;72273:19;72240:17;:30;72258:11;72240:30;;;;;;;;;;;:52;;;;72074:242;71951:384;71781:569;71723:627;72397:7;72393:2;72378:27;;72387:4;72378:27;;;;;;;;;;;;72416:42;72437:4;72443:2;72447:7;72456:1;72416:20;:42::i;:::-;69772:2694;;;69641:2825;;;:::o;93261:199::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93374:10:::1;;93361:8;93345:13;:11;:13::i;:::-;:24;;;;:::i;:::-;93344:40;;93336:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;93433:19;93439:2;93443:8;93433:5;:19::i;:::-;93261:199:::0;;:::o;91922:48::-;;;;;;;;;;;;;;;;;:::o;94144:114::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;94210:7:::1;:5;:7::i;:::-;94202:25;;:48;94228:21;94202:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;94144:114::o:0;91983:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;72562:193::-;72708:39;72725:4;72731:2;72735:7;72708:39;;;;;;;;;;;;:16;:39::i;:::-;72562:193;;;:::o;92949:95::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93028:8:::1;93017;:19;;;;92949:95:::0;:::o;92839:102::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92924:9:::1;92914:7;:19;;;;;;:::i;:::-;;92839:102:::0;:::o;60904:152::-;60976:7;61019:27;61038:7;61019:18;:27::i;:::-;60996:52;;60904:152;;;:::o;56446:233::-;56518:7;56559:1;56542:19;;:5;:19;;;56538:60;;56570:28;;;;;;;;;;;;;;56538:60;50605:13;56616:18;:25;56635:5;56616:25;;;;;;;;;;;;;;;;:55;56609:62;;56446:233;;;:::o;4785:103::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4850:30:::1;4877:1;4850:18;:30::i;:::-;4785:103::o:0;93936:92::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;94010:10:::1;;;;;;;;;;;94009:11;93996:10;;:24;;;;;;;;;;;;;;;;;;93936:92::o:0;4134:87::-;4180:7;4207:6;;;;;;;;;;;4200:13;;4134:87;:::o;59687:104::-;59743:13;59776:7;59769:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59687:104;:::o;92559:143::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92687:7:::1;92652:19;:32;92672:11;92652:32;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;92559:143:::0;;:::o;93468:460::-;92766:10;92753:23;;:9;:23;;;92745:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;93549:10:::1;;;;;;;;;;;93541:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;93628:10;;93615:8;93599:13;:11;:13::i;:::-;:24;;;;:::i;:::-;93598:40;;93590:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;93734:8;;93706:12;:24;93719:10;93706:24;;;;;;;;;;;;;;;;93695:8;:35;;;;:::i;:::-;:47;;93687:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;93808:31;93818:10;93830:8;93808:9;:31::i;:::-;93878:8;93850:12;:24;93863:10;93850:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;93909:10;93902:18;;;;;;;;;;;;93468:460:::0;:::o;92333:218::-;92436:19;:29;92456:8;92436:29;;;;;;;;;;;;;;;;;;;;;;;;;92428:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;92500:43;92524:8;92534;92500:23;:43::i;:::-;92333:218;;:::o;73353:407::-;73528:31;73541:4;73547:2;73551:7;73528:12;:31::i;:::-;73592:1;73574:2;:14;;;:19;73570:183;;73613:56;73644:4;73650:2;73654:7;73663:5;73613:30;:56::i;:::-;73608:145;;73697:40;;;;;;;;;;;;;;73608:145;73570:183;73353:407;;;;:::o;59897:318::-;59970:13;60001:16;60009:7;60001;:16::i;:::-;59996:59;;60026:29;;;;;;;;;;;;;;59996:59;60068:21;60092:10;:8;:10::i;:::-;60068:34;;60145:1;60126:7;60120:21;:26;:87;;;;;;;;;;;;;;;;;60173:7;60182:18;60192:7;60182:9;:18::i;:::-;60156:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60120:87;60113:94;;;59897:318;;;:::o;66951:164::-;67048:4;67072:18;:25;67091:5;67072:25;;;;;;;;;;;;;;;:35;67098:8;67072:35;;;;;;;;;;;;;;;;;;;;;;;;;67065:42;;66951:164;;;;:::o;91821:27::-;;;;:::o;93052:197::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;93155:10:::1;;93142:8;93126:13;:11;:13::i;:::-;:24;;;;:::i;:::-;93125:40;;93117:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;93214:27;93220:10;93232:8;93214:5;:27::i;:::-;93052:197:::0;:::o;5043:201::-;4365:12;:10;:12::i;:::-;4354:23;;:7;:5;:7::i;:::-;:23;;;4346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5152:1:::1;5132:22;;:8;:22;;::::0;5124:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5208:28;5227:8;5208:18;:28::i;:::-;5043:201:::0;:::o;67373:282::-;67438:4;67494:7;67475:15;:13;:15::i;:::-;:26;;:66;;;;;67528:13;;67518:7;:23;67475:66;:153;;;;;67627:1;51381:8;67579:17;:26;67597:7;67579:26;;;;;;;;;;;;:44;:49;67475:153;67455:173;;67373:282;;;:::o;65435:408::-;65524:13;65540:16;65548:7;65540;:16::i;:::-;65524:32;;65596:5;65573:28;;:19;:17;:19::i;:::-;:28;;;65569:175;;65621:44;65638:5;65645:19;:17;:19::i;:::-;65621:16;:44::i;:::-;65616:128;;65693:35;;;;;;;;;;;;;;65616:128;65569:175;65789:2;65756:15;:24;65772:7;65756:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;65827:7;65823:2;65807:28;;65816:5;65807:28;;;;;;;;;;;;65513:330;65435:408;;:::o;54778:92::-;54834:7;54778:92;:::o;62059:1275::-;62126:7;62146:12;62161:7;62146:22;;62229:4;62210:15;:13;:15::i;:::-;:23;62206:1061;;62263:13;;62256:4;:20;62252:1015;;;62301:14;62318:17;:23;62336:4;62318:23;;;;;;;;;;;;62301:40;;62435:1;51381:8;62407:6;:24;:29;62403:845;;63072:113;63089:1;63079:6;:11;63072:113;;63132:17;:25;63150:6;;;;;;;63132:25;;;;;;;;;;;;63123:34;;63072:113;;;63218:6;63211:13;;;;;;62403:845;62278:989;62252:1015;62206:1061;63295:31;;;;;;;;;;;;;;62059:1275;;;;:::o;68536:485::-;68638:27;68667:23;68708:38;68749:15;:24;68765:7;68749:24;;;;;;;;;;;68708:65;;68926:18;68903:41;;68983:19;68977:26;68958:45;;68888:126;68536:485;;;:::o;89681:105::-;89741:7;89768:10;89761:17;;89681:105;:::o;67764:659::-;67913:11;68078:16;68071:5;68067:28;68058:37;;68238:16;68227:9;68223:32;68210:45;;68388:15;68377:9;68374:30;68366:5;68355:9;68352:20;68349:56;68339:66;;67764:659;;;;;:::o;74422:159::-;;;;;:::o;88990:311::-;89125:7;89145:16;51785:3;89171:19;:41;;89145:68;;51785:3;89239:31;89250:4;89256:2;89260:9;89239:10;:31::i;:::-;89231:40;;:62;;89224:69;;;88990:311;;;;;:::o;63882:450::-;63962:14;64130:16;64123:5;64119:28;64110:37;;64307:5;64293:11;64268:23;64264:41;64261:52;64254:5;64251:63;64241:73;;63882:450;;;;:::o;75246:158::-;;;;;:::o;2852:98::-;2905:7;2932:10;2925:17;;2852:98;:::o;77022:2966::-;77095:20;77118:13;;77095:36;;77158:1;77146:8;:13;77142:44;;77168:18;;;;;;;;;;;;;;77142:44;77199:61;77229:1;77233:2;77237:12;77251:8;77199:21;:61::i;:::-;77743:1;50743:2;77713:1;:26;;77712:32;77700:8;:45;77674:18;:22;77693:2;77674:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;78022:139;78059:2;78113:33;78136:1;78140:2;78144:1;78113:14;:33::i;:::-;78080:30;78101:8;78080:20;:30::i;:::-;:66;78022:18;:139::i;:::-;77988:17;:31;78006:12;77988:31;;;;;;;;;;;:173;;;;78178:16;78209:11;78238:8;78223:12;:23;78209:37;;78759:16;78755:2;78751:25;78739:37;;79131:12;79091:8;79050:1;78988:25;78929:1;78868;78841:335;79502:1;79488:12;79484:20;79442:346;79543:3;79534:7;79531:16;79442:346;;79761:7;79751:8;79748:1;79721:25;79718:1;79715;79710:59;79596:1;79587:7;79583:15;79572:26;;79442:346;;;79446:77;79833:1;79821:8;:13;79817:45;;79843:19;;;;;;;;;;;;;;79817:45;79895:3;79879:13;:19;;;;77448:2462;;79920:60;79949:1;79953:2;79957:12;79971:8;79920:20;:60::i;:::-;77084:2904;77022:2966;;:::o;5404:191::-;5478:16;5497:6;;;;;;;;;;;5478:25;;5523:8;5514:6;;:17;;;;;;;;;;;;;;;;;;5578:8;5547:40;;5568:8;5547:40;;;;;;;;;;;;5467:128;5404:191;:::o;83513:112::-;83590:27;83600:2;83604:8;83590:27;;;;;;;;;;;;:9;:27::i;:::-;83513:112;;:::o;66560:234::-;66707:8;66655:18;:39;66674:19;:17;:19::i;:::-;66655:39;;;;;;;;;;;;;;;:49;66695:8;66655:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;66767:8;66731:55;;66746:19;:17;:19::i;:::-;66731:55;;;66777:8;66731:55;;;;;;:::i;:::-;;;;;;;;66560:234;;:::o;75844:716::-;76007:4;76053:2;76028:45;;;76074:19;:17;:19::i;:::-;76095:4;76101:7;76110:5;76028:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;76024:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76328:1;76311:6;:13;:18;76307:235;;76357:40;;;;;;;;;;;;;;76307:235;76500:6;76494:13;76485:6;76481:2;76477:15;76470:38;76024:529;76197:54;;;76187:64;;;:6;:64;;;;76180:71;;;75844:716;;;;;;:::o;94036:100::-;94088:13;94121:7;94114:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94036:100;:::o;89888:1745::-;89953:17;90387:4;90380;90374:11;90370:22;90479:1;90473:4;90466:15;90554:4;90551:1;90547:12;90540:19;;90636:1;90631:3;90624:14;90740:3;90979:5;90961:428;90987:1;90961:428;;;91027:1;91022:3;91018:11;91011:18;;91198:2;91192:4;91188:13;91184:2;91180:22;91175:3;91167:36;91292:2;91286:4;91282:13;91274:21;;91359:4;90961:428;91349:25;90961:428;90965:21;91428:3;91423;91419:13;91543:4;91538:3;91534:14;91527:21;;91608:6;91603:3;91596:19;89992:1634;;;89888:1745;;;:::o;88691:147::-;88828:6;88691:147;;;;;:::o;64434:324::-;64504:14;64737:1;64727:8;64724:15;64698:24;64694:46;64684:56;;64434:324;;;:::o;82740:689::-;82871:19;82877:2;82881:8;82871:5;:19::i;:::-;82950:1;82932:2;:14;;;:19;82928:483;;82972:11;82986:13;;82972:27;;83018:13;83040:8;83034:3;:14;83018:30;;83067:233;83098:62;83137:1;83141:2;83145:7;;;;;;83154:5;83098:30;:62::i;:::-;83093:167;;83196:40;;;;;;;;;;;;;;83093:167;83295:3;83287:5;:11;83067:233;;83382:3;83365:13;;:20;83361:34;;83387:8;;;83361:34;82953:458;;82928:483;82740:689;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:169::-;12743:21;12739:1;12731:6;12727:14;12720:45;12603:169;:::o;12778:366::-;12920:3;12941:67;13005:2;13000:3;12941:67;:::i;:::-;12934:74;;13017:93;13106:3;13017:93;:::i;:::-;13135:2;13130:3;13126:12;13119:19;;12778:366;;;:::o;13150:419::-;13316:4;13354:2;13343:9;13339:18;13331:26;;13403:9;13397:4;13393:20;13389:1;13378:9;13374:17;13367:47;13431:131;13557:4;13431:131;:::i;:::-;13423:139;;13150:419;;;:::o;13575:182::-;13715:34;13711:1;13703:6;13699:14;13692:58;13575:182;:::o;13763:366::-;13905:3;13926:67;13990:2;13985:3;13926:67;:::i;:::-;13919:74;;14002:93;14091:3;14002:93;:::i;:::-;14120:2;14115:3;14111:12;14104:19;;13763:366;;;:::o;14135:419::-;14301:4;14339:2;14328:9;14324:18;14316:26;;14388:9;14382:4;14378:20;14374:1;14363:9;14359:17;14352:47;14416:131;14542:4;14416:131;:::i;:::-;14408:139;;14135:419;;;:::o;14560:180::-;14608:77;14605:1;14598:88;14705:4;14702:1;14695:15;14729:4;14726:1;14719:15;14746:191;14786:3;14805:20;14823:1;14805:20;:::i;:::-;14800:25;;14839:20;14857:1;14839:20;:::i;:::-;14834:25;;14882:1;14879;14875:9;14868:16;;14903:3;14900:1;14897:10;14894:36;;;14910:18;;:::i;:::-;14894:36;14746:191;;;;:::o;14943:220::-;15083:34;15079:1;15071:6;15067:14;15060:58;15152:3;15147:2;15139:6;15135:15;15128:28;14943:220;:::o;15169:366::-;15311:3;15332:67;15396:2;15391:3;15332:67;:::i;:::-;15325:74;;15408:93;15497:3;15408:93;:::i;:::-;15526:2;15521:3;15517:12;15510:19;;15169:366;;;:::o;15541:419::-;15707:4;15745:2;15734:9;15730:18;15722:26;;15794:9;15788:4;15784:20;15780:1;15769:9;15765:17;15758:47;15822:131;15948:4;15822:131;:::i;:::-;15814:139;;15541:419;;;:::o;15966:141::-;16015:4;16038:3;16030:11;;16061:3;16058:1;16051:14;16095:4;16092:1;16082:18;16074:26;;15966:141;;;:::o;16113:93::-;16150:6;16197:2;16192;16185:5;16181:14;16177:23;16167:33;;16113:93;;;:::o;16212:107::-;16256:8;16306:5;16300:4;16296:16;16275:37;;16212:107;;;;:::o;16325:393::-;16394:6;16444:1;16432:10;16428:18;16467:97;16497:66;16486:9;16467:97;:::i;:::-;16585:39;16615:8;16604:9;16585:39;:::i;:::-;16573:51;;16657:4;16653:9;16646:5;16642:21;16633:30;;16706:4;16696:8;16692:19;16685:5;16682:30;16672:40;;16401:317;;16325:393;;;;;:::o;16724:60::-;16752:3;16773:5;16766:12;;16724:60;;;:::o;16790:142::-;16840:9;16873:53;16891:34;16900:24;16918:5;16900:24;:::i;:::-;16891:34;:::i;:::-;16873:53;:::i;:::-;16860:66;;16790:142;;;:::o;16938:75::-;16981:3;17002:5;16995:12;;16938:75;;;:::o;17019:269::-;17129:39;17160:7;17129:39;:::i;:::-;17190:91;17239:41;17263:16;17239:41;:::i;:::-;17231:6;17224:4;17218:11;17190:91;:::i;:::-;17184:4;17177:105;17095:193;17019:269;;;:::o;17294:73::-;17339:3;17294:73;:::o;17373:189::-;17450:32;;:::i;:::-;17491:65;17549:6;17541;17535:4;17491:65;:::i;:::-;17426:136;17373:189;;:::o;17568:186::-;17628:120;17645:3;17638:5;17635:14;17628:120;;;17699:39;17736:1;17729:5;17699:39;:::i;:::-;17672:1;17665:5;17661:13;17652:22;;17628:120;;;17568:186;;:::o;17760:543::-;17861:2;17856:3;17853:11;17850:446;;;17895:38;17927:5;17895:38;:::i;:::-;17979:29;17997:10;17979:29;:::i;:::-;17969:8;17965:44;18162:2;18150:10;18147:18;18144:49;;;18183:8;18168:23;;18144:49;18206:80;18262:22;18280:3;18262:22;:::i;:::-;18252:8;18248:37;18235:11;18206:80;:::i;:::-;17865:431;;17850:446;17760:543;;;:::o;18309:117::-;18363:8;18413:5;18407:4;18403:16;18382:37;;18309:117;;;;:::o;18432:169::-;18476:6;18509:51;18557:1;18553:6;18545:5;18542:1;18538:13;18509:51;:::i;:::-;18505:56;18590:4;18584;18580:15;18570:25;;18483:118;18432:169;;;;:::o;18606:295::-;18682:4;18828:29;18853:3;18847:4;18828:29;:::i;:::-;18820:37;;18890:3;18887:1;18883:11;18877:4;18874:21;18866:29;;18606:295;;;;:::o;18906:1395::-;19023:37;19056:3;19023:37;:::i;:::-;19125:18;19117:6;19114:30;19111:56;;;19147:18;;:::i;:::-;19111:56;19191:38;19223:4;19217:11;19191:38;:::i;:::-;19276:67;19336:6;19328;19322:4;19276:67;:::i;:::-;19370:1;19394:4;19381:17;;19426:2;19418:6;19415:14;19443:1;19438:618;;;;20100:1;20117:6;20114:77;;;20166:9;20161:3;20157:19;20151:26;20142:35;;20114:77;20217:67;20277:6;20270:5;20217:67;:::i;:::-;20211:4;20204:81;20073:222;19408:887;;19438:618;19490:4;19486:9;19478:6;19474:22;19524:37;19556:4;19524:37;:::i;:::-;19583:1;19597:208;19611:7;19608:1;19605:14;19597:208;;;19690:9;19685:3;19681:19;19675:26;19667:6;19660:42;19741:1;19733:6;19729:14;19719:24;;19788:2;19777:9;19773:18;19760:31;;19634:4;19631:1;19627:12;19622:17;;19597:208;;;19833:6;19824:7;19821:19;19818:179;;;19891:9;19886:3;19882:19;19876:26;19934:48;19976:4;19968:6;19964:17;19953:9;19934:48;:::i;:::-;19926:6;19919:64;19841:156;19818:179;20043:1;20039;20031:6;20027:14;20023:22;20017:4;20010:36;19445:611;;;19408:887;;18998:1303;;;18906:1395;;:::o;20307:180::-;20447:32;20443:1;20435:6;20431:14;20424:56;20307:180;:::o;20493:366::-;20635:3;20656:67;20720:2;20715:3;20656:67;:::i;:::-;20649:74;;20732:93;20821:3;20732:93;:::i;:::-;20850:2;20845:3;20841:12;20834:19;;20493:366;;;:::o;20865:419::-;21031:4;21069:2;21058:9;21054:18;21046:26;;21118:9;21112:4;21108:20;21104:1;21093:9;21089:17;21082:47;21146:131;21272:4;21146:131;:::i;:::-;21138:139;;20865:419;;;:::o;21290:165::-;21430:17;21426:1;21418:6;21414:14;21407:41;21290:165;:::o;21461:366::-;21603:3;21624:67;21688:2;21683:3;21624:67;:::i;:::-;21617:74;;21700:93;21789:3;21700:93;:::i;:::-;21818:2;21813:3;21809:12;21802:19;;21461:366;;;:::o;21833:419::-;21999:4;22037:2;22026:9;22022:18;22014:26;;22086:9;22080:4;22076:20;22072:1;22061:9;22057:17;22050:47;22114:131;22240:4;22114:131;:::i;:::-;22106:139;;21833:419;;;:::o;22258:235::-;22398:34;22394:1;22386:6;22382:14;22375:58;22467:18;22462:2;22454:6;22450:15;22443:43;22258:235;:::o;22499:366::-;22641:3;22662:67;22726:2;22721:3;22662:67;:::i;:::-;22655:74;;22738:93;22827:3;22738:93;:::i;:::-;22856:2;22851:3;22847:12;22840:19;;22499:366;;;:::o;22871:419::-;23037:4;23075:2;23064:9;23060:18;23052:26;;23124:9;23118:4;23114:20;23110:1;23099:9;23095:17;23088:47;23152:131;23278:4;23152:131;:::i;:::-;23144:139;;22871:419;;;:::o;23296:148::-;23398:11;23435:3;23420:18;;23296:148;;;;:::o;23450:390::-;23556:3;23584:39;23617:5;23584:39;:::i;:::-;23639:89;23721:6;23716:3;23639:89;:::i;:::-;23632:96;;23737:65;23795:6;23790:3;23783:4;23776:5;23772:16;23737:65;:::i;:::-;23827:6;23822:3;23818:16;23811:23;;23560:280;23450:390;;;;:::o;23846:435::-;24026:3;24048:95;24139:3;24130:6;24048:95;:::i;:::-;24041:102;;24160:95;24251:3;24242:6;24160:95;:::i;:::-;24153:102;;24272:3;24265:10;;23846:435;;;;;:::o;24287:225::-;24427:34;24423:1;24415:6;24411:14;24404:58;24496:8;24491:2;24483:6;24479:15;24472:33;24287:225;:::o;24518:366::-;24660:3;24681:67;24745:2;24740:3;24681:67;:::i;:::-;24674:74;;24757:93;24846:3;24757:93;:::i;:::-;24875:2;24870:3;24866:12;24859:19;;24518:366;;;:::o;24890:419::-;25056:4;25094:2;25083:9;25079:18;25071:26;;25143:9;25137:4;25133:20;25129:1;25118:9;25114:17;25107:47;25171:131;25297:4;25171:131;:::i;:::-;25163:139;;24890:419;;;:::o;25315:98::-;25366:6;25400:5;25394:12;25384:22;;25315:98;;;:::o;25419:168::-;25502:11;25536:6;25531:3;25524:19;25576:4;25571:3;25567:14;25552:29;;25419:168;;;;:::o;25593:373::-;25679:3;25707:38;25739:5;25707:38;:::i;:::-;25761:70;25824:6;25819:3;25761:70;:::i;:::-;25754:77;;25840:65;25898:6;25893:3;25886:4;25879:5;25875:16;25840:65;:::i;:::-;25930:29;25952:6;25930:29;:::i;:::-;25925:3;25921:39;25914:46;;25683:283;25593:373;;;;:::o;25972:640::-;26167:4;26205:3;26194:9;26190:19;26182:27;;26219:71;26287:1;26276:9;26272:17;26263:6;26219:71;:::i;:::-;26300:72;26368:2;26357:9;26353:18;26344:6;26300:72;:::i;:::-;26382;26450:2;26439:9;26435:18;26426:6;26382:72;:::i;:::-;26501:9;26495:4;26491:20;26486:2;26475:9;26471:18;26464:48;26529:76;26600:4;26591:6;26529:76;:::i;:::-;26521:84;;25972:640;;;;;;;:::o;26618:141::-;26674:5;26705:6;26699:13;26690:22;;26721:32;26747:5;26721:32;:::i;:::-;26618:141;;;;:::o;26765:349::-;26834:6;26883:2;26871:9;26862:7;26858:23;26854:32;26851:119;;;26889:79;;:::i;:::-;26851:119;27009:1;27034:63;27089:7;27080:6;27069:9;27065:22;27034:63;:::i;:::-;27024:73;;26980:127;26765:349;;;;:::o
Swarm Source
ipfs://45060153aa23b9afee00c6d0e5c0cd5200d451556258871921e375b2e63a25d2
Loading...
Loading
Loading...
Loading
[ 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.