Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
604 PNKLS
Holders
109
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 PNKLSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
punkles
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /** * @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); } } /** * @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; } } /** * @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); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } /** * @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); } /** * @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; } } /** * @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; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 101; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex - 1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract punkles is ERC721A, Ownable { uint8 public ownerCounter = 1; uint16 public maxSupply = 10000; uint64 public tokenPrice = 0.02 ether; mapping(address => uint8) public _freeTokensMinted; constructor() ERC721A("punkles", "PNKLS") {} function _baseURI() internal pure override returns (string memory) { return "ipfs://QmYhGVBfQ6rfanUd1AveSh1nAG6dJYfk3QhgVeFp7khbid/"; } function ownerMint(address wallet, uint8 amount) external onlyOwner { require(amount <= 20, "Incorrect amount!"); require(ownerCounter + amount <= 101, "Not enough tokens to mint"); uint pastIndex = currentIndex; currentIndex = ownerCounter; _safeMint(wallet, amount); ownerCounter += amount; currentIndex = pastIndex; } function freeMint(uint8 amount) external { require(currentIndex + amount <= 601, "Not enough free tokens to mint!"); require(amount <= 5, "Max 5 free tokens per tx!"); require(_freeTokensMinted[msg.sender] + amount <= 5, "Max free tokens already minted!"); _safeMint(msg.sender, amount); _freeTokensMinted[msg.sender] += amount; } function saleMint(uint8 amount) external payable { require(currentIndex > 600, "Free round not finished!"); require(amount <= 20, "Incorrect amount!"); require(msg.value == amount * tokenPrice, "Incorrect value!"); require(currentIndex + amount <= maxSupply + 1, "Not enough tokens to sell!"); _safeMint(msg.sender, amount); } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeTokensMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"name":"ownerCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint8","name":"amount","type":"uint8"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052606560005560078054600160a01b600160f81b03191669470de4df82000027100160a01b1790553480156200003857600080fd5b50604080518082018252600781526670756e6b6c657360c81b602080830191825283518085019094526005845264504e4b4c5360d81b908401528151919291620000859160019162000114565b5080516200009b90600290602084019062000114565b505050620000b8620000b2620000be60201b60201c565b620000c2565b620001f7565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012290620001ba565b90600052602060002090601f01602090048101928262000146576000855562000191565b82601f106200016157805160ff191683800117855562000191565b8280016001018555821562000191579182015b828111156200019157825182559160200191906001019062000174565b506200019f929150620001a3565b5090565b5b808211156200019f5760008155600101620001a4565b600181811c90821680620001cf57607f821691505b60208210811415620001f157634e487b7160e01b600052602260045260246000fd5b50919050565b61209680620002076000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87c089c11610064578063c87c089c146104c9578063d5abeb01146104e9578063e985e9c51461051e578063f2fde38b1461056757600080fd5b8063b88d4fde14610476578063bf79334614610496578063c87b56dd146104a957600080fd5b80637ff9b596116100c65780637ff9b596146103e25780638da5cb5b1461042357806395d89b4114610441578063a22cb4651461045657600080fd5b80636352211e1461038d57806370a08231146103ad578063715018a6146103cd57600080fd5b80632f745c59116101595780633ccfd60b116101335780633ccfd60b1461030857806342842e0e1461031d578063495064401461033d5780634f6ccce71461036d57600080fd5b80632f745c591461029557806330943fcf146102b55780633855c60d146102e857600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611aaa565b610587565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105f4565b6040516101cd9190611b1f565b34801561020457600080fd5b50610218610213366004611b32565b610686565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611b67565b610716565b005b34801561025e57600080fd5b5061026761082e565b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611b91565b610844565b3480156102a157600080fd5b506102676102b0366004611b67565b61084f565b3480156102c157600080fd5b506007546102d690600160a01b900460ff1681565b60405160ff90911681526020016101cd565b3480156102f457600080fd5b50610250610303366004611bde565b6109b6565b34801561031457600080fd5b50610250610afa565b34801561032957600080fd5b50610250610338366004611b91565b610b53565b34801561034957600080fd5b506102d6610358366004611c11565b60086020526000908152604090205460ff1681565b34801561037957600080fd5b50610267610388366004611b32565b610b6e565b34801561039957600080fd5b506102186103a8366004611b32565b610bd6565b3480156103b957600080fd5b506102676103c8366004611c11565b610be8565b3480156103d957600080fd5b50610250610c79565b3480156103ee57600080fd5b5060075461040a90600160b81b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101cd565b34801561042f57600080fd5b506007546001600160a01b0316610218565b34801561044d57600080fd5b506101eb610caf565b34801561046257600080fd5b50610250610471366004611c2c565b610cbe565b34801561048257600080fd5b50610250610491366004611c7e565b610d83565b6102506104a4366004611d5a565b610dbc565b3480156104b557600080fd5b506101eb6104c4366004611b32565b610f4c565b3480156104d557600080fd5b506102506104e4366004611d5a565b61101a565b3480156104f557600080fd5b5060075461050b90600160a81b900461ffff1681565b60405161ffff90911681526020016101cd565b34801561052a57600080fd5b506101c1610539366004611d75565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057357600080fd5b50610250610582366004611c11565b61118c565b60006001600160e01b031982166380ac58cd60e01b14806105b857506001600160e01b03198216635b5e139f60e01b145b806105d357506001600160e01b0319821663780e9d6360e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060390611d9f565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611d9f565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b6000610693826000541190565b6106fa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072182610bd6565b9050806001600160a01b0316836001600160a01b031614156107905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f1565b336001600160a01b03821614806107ac57506107ac8133610539565b61081e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f1565b610829838383611224565b505050565b6000600160005461083f9190611df0565b905090565b610829838383611280565b600061085a83610be8565b82106108b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f1565b60006108bd61082e565b905060008060005b83811015610956576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091857805192505b876001600160a01b0316836001600160a01b0316141561094d5786841415610946575093506105ee92505050565b6001909301925b506001016108c5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106f1565b6007546001600160a01b031633146109e05760405162461bcd60e51b81526004016106f190611e07565b60148160ff161115610a285760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b60448201526064016106f1565b600754606590610a43908390600160a01b900460ff16611e3c565b60ff161115610a945760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206d696e740000000000000060448201526064016106f1565b6000805460075460ff600160a01b909104811690925590610ab89084908416611565565b81600760148282829054906101000a900460ff16610ad69190611e3c565b92506101000a81548160ff021916908360ff16021790555080600081905550505050565b6007546001600160a01b03163314610b245760405162461bcd60e51b81526004016106f190611e07565b60405133904780156108fc02916000818181858888f19350505050158015610b50573d6000803e3d6000fd5b50565b61082983838360405180602001604052806000815250610d83565b6000610b7861082e565b8210610bd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106f1565b5090565b6000610be182611583565b5192915050565b60006001600160a01b038216610c545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f1565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ca35760405162461bcd60e51b81526004016106f190611e07565b610cad600061165a565b565b60606002805461060390611d9f565b6001600160a01b038216331415610d175760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f1565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8e848484611280565b610d9a848484846116ac565b610db65760405162461bcd60e51b81526004016106f190611e61565b50505050565b61025860005411610e0f5760405162461bcd60e51b815260206004820152601860248201527f4672656520726f756e64206e6f742066696e697368656421000000000000000060448201526064016106f1565b60148160ff161115610e575760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b60448201526064016106f1565b600754610e7890600160b81b900467ffffffffffffffff1660ff8316611eb4565b67ffffffffffffffff163414610ec35760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75652160801b60448201526064016106f1565b600754610edc90600160a81b900461ffff166001611ee4565b61ffff168160ff16600054610ef19190611f0a565b1115610f3f5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c2100000000000060448201526064016106f1565b610b50338260ff16611565565b6060610f59826000541190565b610fbd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f1565b6000610fc76117ab565b9050805160001415610fe85760405180602001604052806000815250611013565b80610ff2846117cb565b604051602001611003929190611f22565b6040516020818303038152906040525b9392505050565b6102598160ff1660005461102e9190611f0a565b111561107c5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768206672656520746f6b656e7320746f206d696e74210060448201526064016106f1565b60058160ff1611156110d05760405162461bcd60e51b815260206004820152601960248201527f4d61782035206672656520746f6b656e7320706572207478210000000000000060448201526064016106f1565b336000908152600860205260409020546005906110f190839060ff16611e3c565b60ff1611156111425760405162461bcd60e51b815260206004820152601f60248201527f4d6178206672656520746f6b656e7320616c7265616479206d696e746564210060448201526064016106f1565b61114f338260ff16611565565b336000908152600860205260408120805483929061117190849060ff16611e3c565b92506101000a81548160ff021916908360ff16021790555050565b6007546001600160a01b031633146111b65760405162461bcd60e51b81526004016106f190611e07565b6001600160a01b03811661121b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f1565b610b508161165a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128b82611583565b80519091506000906001600160a01b0316336001600160a01b031614806112c25750336112b784610686565b6001600160a01b0316145b806112d4575081516112d49033610539565b90508061133e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f1565b846001600160a01b031682600001516001600160a01b0316146113b25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f1565b6001600160a01b0384166114165760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f1565b6114266000848460000151611224565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661151b576114ce816000541190565b1561151b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61157f8282604051806020016040528060008152506118c9565b5050565b60408051808201909152600080825260208201526115a2826000541190565b6116015760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f1565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611650579392505050565b5060001901611603565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561179f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f0903390899088908890600401611f61565b6020604051808303816000875af192505050801561172b575060408051601f3d908101601f1916820190925261172891810190611f9e565b60015b611785573d808015611759576040519150601f19603f3d011682016040523d82523d6000602084013e61175e565b606091505b50805161177d5760405162461bcd60e51b81526004016106f190611e61565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a3565b5060015b949350505050565b606060405180606001604052806036815260200161202b60369139905090565b6060816117ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611819578061180381611fbb565b91506118129050600a83611fec565b91506117f3565b60008167ffffffffffffffff81111561183457611834611c68565b6040519080825280601f01601f19166020018201604052801561185e576020820181803683370190505b5090505b84156117a357611873600183611df0565b9150611880600a86612000565b61188b906030611f0a565b60f81b8183815181106118a0576118a0612014565b60200101906001600160f81b031916908160001a9053506118c2600a86611fec565b9450611862565b61082983838360016000546001600160a01b0385166119345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f1565b836119925760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f1565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a8b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a7f57611a6360008884886116ac565b611a7f5760405162461bcd60e51b81526004016106f190611e61565b60019182019101611a10565b5060005561155e565b6001600160e01b031981168114610b5057600080fd5b600060208284031215611abc57600080fd5b813561101381611a94565b60005b83811015611ae2578181015183820152602001611aca565b83811115610db65750506000910152565b60008151808452611b0b816020860160208601611ac7565b601f01601f19169290920160200192915050565b6020815260006110136020830184611af3565b600060208284031215611b4457600080fd5b5035919050565b80356001600160a01b0381168114611b6257600080fd5b919050565b60008060408385031215611b7a57600080fd5b611b8383611b4b565b946020939093013593505050565b600080600060608486031215611ba657600080fd5b611baf84611b4b565b9250611bbd60208501611b4b565b9150604084013590509250925092565b803560ff81168114611b6257600080fd5b60008060408385031215611bf157600080fd5b611bfa83611b4b565b9150611c0860208401611bcd565b90509250929050565b600060208284031215611c2357600080fd5b61101382611b4b565b60008060408385031215611c3f57600080fd5b611c4883611b4b565b915060208301358015158114611c5d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c9457600080fd5b611c9d85611b4b565b9350611cab60208601611b4b565b925060408501359150606085013567ffffffffffffffff80821115611ccf57600080fd5b818701915087601f830112611ce357600080fd5b813581811115611cf557611cf5611c68565b604051601f8201601f19908116603f01168101908382118183101715611d1d57611d1d611c68565b816040528281528a6020848701011115611d3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611d6c57600080fd5b61101382611bcd565b60008060408385031215611d8857600080fd5b611d9183611b4b565b9150611c0860208401611b4b565b600181811c90821680611db357607f821691505b60208210811415611dd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e0257611e02611dda565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060ff821660ff84168060ff03821115611e5957611e59611dda565b019392505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600067ffffffffffffffff80831681851681830481118215151615611edb57611edb611dda565b02949350505050565b600061ffff808316818516808303821115611f0157611f01611dda565b01949350505050565b60008219821115611f1d57611f1d611dda565b500190565b60008351611f34818460208801611ac7565b835190830190611f48818360208801611ac7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9490830184611af3565b9695505050505050565b600060208284031215611fb057600080fd5b815161101381611a94565b6000600019821415611fcf57611fcf611dda565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ffb57611ffb611fd6565b500490565b60008261200f5761200f611fd6565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d59684756426651367266616e5564314176655368316e414736644a59666b3351686756654670376b686269642fa26469706673582212200e8d91159a7c87f4e522cfafb0c8eb675d246c47edbd20d29ac0a576ef6eebdf64736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063c87c089c11610064578063c87c089c146104c9578063d5abeb01146104e9578063e985e9c51461051e578063f2fde38b1461056757600080fd5b8063b88d4fde14610476578063bf79334614610496578063c87b56dd146104a957600080fd5b80637ff9b596116100c65780637ff9b596146103e25780638da5cb5b1461042357806395d89b4114610441578063a22cb4651461045657600080fd5b80636352211e1461038d57806370a08231146103ad578063715018a6146103cd57600080fd5b80632f745c59116101595780633ccfd60b116101335780633ccfd60b1461030857806342842e0e1461031d578063495064401461033d5780634f6ccce71461036d57600080fd5b80632f745c591461029557806330943fcf146102b55780633855c60d146102e857600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611aaa565b610587565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105f4565b6040516101cd9190611b1f565b34801561020457600080fd5b50610218610213366004611b32565b610686565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611b67565b610716565b005b34801561025e57600080fd5b5061026761082e565b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611b91565b610844565b3480156102a157600080fd5b506102676102b0366004611b67565b61084f565b3480156102c157600080fd5b506007546102d690600160a01b900460ff1681565b60405160ff90911681526020016101cd565b3480156102f457600080fd5b50610250610303366004611bde565b6109b6565b34801561031457600080fd5b50610250610afa565b34801561032957600080fd5b50610250610338366004611b91565b610b53565b34801561034957600080fd5b506102d6610358366004611c11565b60086020526000908152604090205460ff1681565b34801561037957600080fd5b50610267610388366004611b32565b610b6e565b34801561039957600080fd5b506102186103a8366004611b32565b610bd6565b3480156103b957600080fd5b506102676103c8366004611c11565b610be8565b3480156103d957600080fd5b50610250610c79565b3480156103ee57600080fd5b5060075461040a90600160b81b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016101cd565b34801561042f57600080fd5b506007546001600160a01b0316610218565b34801561044d57600080fd5b506101eb610caf565b34801561046257600080fd5b50610250610471366004611c2c565b610cbe565b34801561048257600080fd5b50610250610491366004611c7e565b610d83565b6102506104a4366004611d5a565b610dbc565b3480156104b557600080fd5b506101eb6104c4366004611b32565b610f4c565b3480156104d557600080fd5b506102506104e4366004611d5a565b61101a565b3480156104f557600080fd5b5060075461050b90600160a81b900461ffff1681565b60405161ffff90911681526020016101cd565b34801561052a57600080fd5b506101c1610539366004611d75565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057357600080fd5b50610250610582366004611c11565b61118c565b60006001600160e01b031982166380ac58cd60e01b14806105b857506001600160e01b03198216635b5e139f60e01b145b806105d357506001600160e01b0319821663780e9d6360e01b145b806105ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060390611d9f565b80601f016020809104026020016040519081016040528092919081815260200182805461062f90611d9f565b801561067c5780601f106106515761010080835404028352916020019161067c565b820191906000526020600020905b81548152906001019060200180831161065f57829003601f168201915b5050505050905090565b6000610693826000541190565b6106fa5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072182610bd6565b9050806001600160a01b0316836001600160a01b031614156107905760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f1565b336001600160a01b03821614806107ac57506107ac8133610539565b61081e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f1565b610829838383611224565b505050565b6000600160005461083f9190611df0565b905090565b610829838383611280565b600061085a83610be8565b82106108b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f1565b60006108bd61082e565b905060008060005b83811015610956576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561091857805192505b876001600160a01b0316836001600160a01b0316141561094d5786841415610946575093506105ee92505050565b6001909301925b506001016108c5565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106f1565b6007546001600160a01b031633146109e05760405162461bcd60e51b81526004016106f190611e07565b60148160ff161115610a285760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b60448201526064016106f1565b600754606590610a43908390600160a01b900460ff16611e3c565b60ff161115610a945760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820746f6b656e7320746f206d696e740000000000000060448201526064016106f1565b6000805460075460ff600160a01b909104811690925590610ab89084908416611565565b81600760148282829054906101000a900460ff16610ad69190611e3c565b92506101000a81548160ff021916908360ff16021790555080600081905550505050565b6007546001600160a01b03163314610b245760405162461bcd60e51b81526004016106f190611e07565b60405133904780156108fc02916000818181858888f19350505050158015610b50573d6000803e3d6000fd5b50565b61082983838360405180602001604052806000815250610d83565b6000610b7861082e565b8210610bd25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106f1565b5090565b6000610be182611583565b5192915050565b60006001600160a01b038216610c545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f1565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ca35760405162461bcd60e51b81526004016106f190611e07565b610cad600061165a565b565b60606002805461060390611d9f565b6001600160a01b038216331415610d175760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f1565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8e848484611280565b610d9a848484846116ac565b610db65760405162461bcd60e51b81526004016106f190611e61565b50505050565b61025860005411610e0f5760405162461bcd60e51b815260206004820152601860248201527f4672656520726f756e64206e6f742066696e697368656421000000000000000060448201526064016106f1565b60148160ff161115610e575760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b60448201526064016106f1565b600754610e7890600160b81b900467ffffffffffffffff1660ff8316611eb4565b67ffffffffffffffff163414610ec35760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75652160801b60448201526064016106f1565b600754610edc90600160a81b900461ffff166001611ee4565b61ffff168160ff16600054610ef19190611f0a565b1115610f3f5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f75676820746f6b656e7320746f2073656c6c2100000000000060448201526064016106f1565b610b50338260ff16611565565b6060610f59826000541190565b610fbd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f1565b6000610fc76117ab565b9050805160001415610fe85760405180602001604052806000815250611013565b80610ff2846117cb565b604051602001611003929190611f22565b6040516020818303038152906040525b9392505050565b6102598160ff1660005461102e9190611f0a565b111561107c5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768206672656520746f6b656e7320746f206d696e74210060448201526064016106f1565b60058160ff1611156110d05760405162461bcd60e51b815260206004820152601960248201527f4d61782035206672656520746f6b656e7320706572207478210000000000000060448201526064016106f1565b336000908152600860205260409020546005906110f190839060ff16611e3c565b60ff1611156111425760405162461bcd60e51b815260206004820152601f60248201527f4d6178206672656520746f6b656e7320616c7265616479206d696e746564210060448201526064016106f1565b61114f338260ff16611565565b336000908152600860205260408120805483929061117190849060ff16611e3c565b92506101000a81548160ff021916908360ff16021790555050565b6007546001600160a01b031633146111b65760405162461bcd60e51b81526004016106f190611e07565b6001600160a01b03811661121b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f1565b610b508161165a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061128b82611583565b80519091506000906001600160a01b0316336001600160a01b031614806112c25750336112b784610686565b6001600160a01b0316145b806112d4575081516112d49033610539565b90508061133e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f1565b846001600160a01b031682600001516001600160a01b0316146113b25760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f1565b6001600160a01b0384166114165760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f1565b6114266000848460000151611224565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661151b576114ce816000541190565b1561151b578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b61157f8282604051806020016040528060008152506118c9565b5050565b60408051808201909152600080825260208201526115a2826000541190565b6116015760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f1565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611650579392505050565b5060001901611603565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561179f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f0903390899088908890600401611f61565b6020604051808303816000875af192505050801561172b575060408051601f3d908101601f1916820190925261172891810190611f9e565b60015b611785573d808015611759576040519150601f19603f3d011682016040523d82523d6000602084013e61175e565b606091505b50805161177d5760405162461bcd60e51b81526004016106f190611e61565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a3565b5060015b949350505050565b606060405180606001604052806036815260200161202b60369139905090565b6060816117ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611819578061180381611fbb565b91506118129050600a83611fec565b91506117f3565b60008167ffffffffffffffff81111561183457611834611c68565b6040519080825280601f01601f19166020018201604052801561185e576020820181803683370190505b5090505b84156117a357611873600183611df0565b9150611880600a86612000565b61188b906030611f0a565b60f81b8183815181106118a0576118a0612014565b60200101906001600160f81b031916908160001a9053506118c2600a86611fec565b9450611862565b61082983838360016000546001600160a01b0385166119345760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f1565b836119925760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f1565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a8b5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a7f57611a6360008884886116ac565b611a7f5760405162461bcd60e51b81526004016106f190611e61565b60019182019101611a10565b5060005561155e565b6001600160e01b031981168114610b5057600080fd5b600060208284031215611abc57600080fd5b813561101381611a94565b60005b83811015611ae2578181015183820152602001611aca565b83811115610db65750506000910152565b60008151808452611b0b816020860160208601611ac7565b601f01601f19169290920160200192915050565b6020815260006110136020830184611af3565b600060208284031215611b4457600080fd5b5035919050565b80356001600160a01b0381168114611b6257600080fd5b919050565b60008060408385031215611b7a57600080fd5b611b8383611b4b565b946020939093013593505050565b600080600060608486031215611ba657600080fd5b611baf84611b4b565b9250611bbd60208501611b4b565b9150604084013590509250925092565b803560ff81168114611b6257600080fd5b60008060408385031215611bf157600080fd5b611bfa83611b4b565b9150611c0860208401611bcd565b90509250929050565b600060208284031215611c2357600080fd5b61101382611b4b565b60008060408385031215611c3f57600080fd5b611c4883611b4b565b915060208301358015158114611c5d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c9457600080fd5b611c9d85611b4b565b9350611cab60208601611b4b565b925060408501359150606085013567ffffffffffffffff80821115611ccf57600080fd5b818701915087601f830112611ce357600080fd5b813581811115611cf557611cf5611c68565b604051601f8201601f19908116603f01168101908382118183101715611d1d57611d1d611c68565b816040528281528a6020848701011115611d3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611d6c57600080fd5b61101382611bcd565b60008060408385031215611d8857600080fd5b611d9183611b4b565b9150611c0860208401611b4b565b600181811c90821680611db357607f821691505b60208210811415611dd457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e0257611e02611dda565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060ff821660ff84168060ff03821115611e5957611e59611dda565b019392505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600067ffffffffffffffff80831681851681830481118215151615611edb57611edb611dda565b02949350505050565b600061ffff808316818516808303821115611f0157611f01611dda565b01949350505050565b60008219821115611f1d57611f1d611dda565b500190565b60008351611f34818460208801611ac7565b835190830190611f48818360208801611ac7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9490830184611af3565b9695505050505050565b600060208284031215611fb057600080fd5b815161101381611a94565b6000600019821415611fcf57611fcf611dda565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ffb57611ffb611fd6565b500490565b60008261200f5761200f611fd6565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d59684756426651367266616e5564314176655368316e414736644a59666b3351686756654670376b686269642fa26469706673582212200e8d91159a7c87f4e522cfafb0c8eb675d246c47edbd20d29ac0a576ef6eebdf64736f6c634300080b0033
Deployed Bytecode Sourcemap
38476:1714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25343:372;;;;;;;;;;-1:-1:-1;25343:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25343:372:0;;;;;;;;27229:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28800:214::-;;;;;;;;;;-1:-1:-1;28800:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28800:214:0;1528:203:1;28321:413:0;;;;;;;;;;-1:-1:-1;28321:413:0;;;;;:::i;:::-;;:::i;:::-;;23596:104;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;23596:104:0;2173:177:1;29676:162:0;;;;;;;;;;-1:-1:-1;29676:162:0;;;;;:::i;:::-;;:::i;24264:1007::-;;;;;;;;;;-1:-1:-1;24264:1007:0;;;;;:::i;:::-;;:::i;38522:29::-;;;;;;;;;;-1:-1:-1;38522:29:0;;;;-1:-1:-1;;;38522:29:0;;;;;;;;;2860:4:1;2848:17;;;2830:36;;2818:2;2803:18;38522:29:0;2688:184:1;38910:388:0;;;;;;;;;;-1:-1:-1;38910:388:0;;;;;:::i;:::-;;:::i;40078:109::-;;;;;;;;;;;;;:::i;29909:177::-;;;;;;;;;;-1:-1:-1;29909:177:0;;;;;:::i;:::-;;:::i;38642:50::-;;;;;;;;;;-1:-1:-1;38642:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23777:187;;;;;;;;;;-1:-1:-1;23777:187:0;;;;;:::i;:::-;;:::i;27038:124::-;;;;;;;;;;-1:-1:-1;27038:124:0;;;;;:::i;:::-;;:::i;25779:221::-;;;;;;;;;;-1:-1:-1;25779:221:0;;;;;:::i;:::-;;:::i;4374:103::-;;;;;;;;;;;;;:::i;38596:37::-;;;;;;;;;;-1:-1:-1;38596:37:0;;;;-1:-1:-1;;;38596:37:0;;;;;;;;;3664:18:1;3652:31;;;3634:50;;3622:2;3607:18;38596:37:0;3490:200:1;3723:87:0;;;;;;;;;;-1:-1:-1;3796:6:0;;-1:-1:-1;;;;;3796:6:0;3723:87;;27398:104;;;;;;;;;;;;;:::i;29086:288::-;;;;;;;;;;-1:-1:-1;29086:288:0;;;;;:::i;:::-;;:::i;30157:355::-;;;;;;;;;;-1:-1:-1;30157:355:0;;;;;:::i;:::-;;:::i;39694:376::-;;;;;;:::i;:::-;;:::i;27573:344::-;;;;;;;;;;-1:-1:-1;27573:344:0;;;;;:::i;:::-;;:::i;39306:380::-;;;;;;;;;;-1:-1:-1;39306:380:0;;;;;:::i;:::-;;:::i;38558:31::-;;;;;;;;;;-1:-1:-1;38558:31:0;;;;-1:-1:-1;;;38558:31:0;;;;;;;;;5683:6:1;5671:19;;;5653:38;;5641:2;5626:18;38558:31:0;5509:188:1;29445:164:0;;;;;;;;;;-1:-1:-1;29445:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29566:25:0;;;29542:4;29566:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29445:164;4632:201;;;;;;;;;;-1:-1:-1;4632:201:0;;;;;:::i;:::-;;:::i;25343:372::-;25445:4;-1:-1:-1;;;;;;25482:40:0;;-1:-1:-1;;;25482:40:0;;:105;;-1:-1:-1;;;;;;;25539:48:0;;-1:-1:-1;;;25539:48:0;25482:105;:172;;;-1:-1:-1;;;;;;;25604:50:0;;-1:-1:-1;;;25604:50:0;25482:172;:225;;;-1:-1:-1;;;;;;;;;;15622:40:0;;;25671:36;25462:245;25343:372;-1:-1:-1;;25343:372:0:o;27229:100::-;27283:13;27316:5;27309:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27229:100;:::o;28800:214::-;28868:7;28896:16;28904:7;30824:4;30858:12;-1:-1:-1;30848:22:0;30767:111;28896:16;28888:74;;;;-1:-1:-1;;;28888:74:0;;6554:2:1;28888:74:0;;;6536:21:1;6593:2;6573:18;;;6566:30;6632:34;6612:18;;;6605:62;-1:-1:-1;;;6683:18:1;;;6676:43;6736:19;;28888:74:0;;;;;;;;;-1:-1:-1;28982:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28982:24:0;;28800:214::o;28321:413::-;28394:13;28410:24;28426:7;28410:15;:24::i;:::-;28394:40;;28459:5;-1:-1:-1;;;;;28453:11:0;:2;-1:-1:-1;;;;;28453:11:0;;;28445:58;;;;-1:-1:-1;;;28445:58:0;;6968:2:1;28445:58:0;;;6950:21:1;7007:2;6987:18;;;6980:30;7046:34;7026:18;;;7019:62;-1:-1:-1;;;7097:18:1;;;7090:32;7139:19;;28445:58:0;6766:398:1;28445:58:0;2670:10;-1:-1:-1;;;;;28538:21:0;;;;:62;;-1:-1:-1;28563:37:0;28580:5;2670:10;29445:164;:::i;28563:37::-;28516:169;;;;-1:-1:-1;;;28516:169:0;;7371:2:1;28516:169:0;;;7353:21:1;7410:2;7390:18;;;7383:30;7449:34;7429:18;;;7422:62;7520:27;7500:18;;;7493:55;7565:19;;28516:169:0;7169:421:1;28516:169:0;28698:28;28707:2;28711:7;28720:5;28698:8;:28::i;:::-;28383:351;28321:413;;:::o;23596:104::-;23649:7;23691:1;23676:12;;:16;;;;:::i;:::-;23669:23;;23596:104;:::o;29676:162::-;29802:28;29812:4;29818:2;29822:7;29802:9;:28::i;24264:1007::-;24353:7;24389:16;24399:5;24389:9;:16::i;:::-;24381:5;:24;24373:71;;;;-1:-1:-1;;;24373:71:0;;8059:2:1;24373:71:0;;;8041:21:1;8098:2;8078:18;;;8071:30;8137:34;8117:18;;;8110:62;-1:-1:-1;;;8188:18:1;;;8181:32;8230:19;;24373:71:0;7857:398:1;24373:71:0;24455:22;24480:13;:11;:13::i;:::-;24455:38;;24504:19;24534:25;24723:9;24718:466;24738:14;24734:1;:18;24718:466;;;24778:31;24812:14;;;:11;:14;;;;;;;;;24778:48;;;;;;;;;-1:-1:-1;;;;;24778:48:0;;;;;-1:-1:-1;;;24778:48:0;;;;;;;;;;;;24849:28;24845:111;;24922:14;;;-1:-1:-1;24845:111:0;24999:5;-1:-1:-1;;;;;24978:26:0;:17;-1:-1:-1;;;;;24978:26:0;;24974:195;;;25048:5;25033:11;:20;25029:85;;;-1:-1:-1;25089:1:0;-1:-1:-1;25082:8:0;;-1:-1:-1;;;25082:8:0;25029:85;25136:13;;;;;24974:195;-1:-1:-1;24754:3:0;;24718:466;;;-1:-1:-1;25207:56:0;;-1:-1:-1;;;25207:56:0;;8462:2:1;25207:56:0;;;8444:21:1;8501:2;8481:18;;;8474:30;8540:34;8520:18;;;8513:62;-1:-1:-1;;;8591:18:1;;;8584:44;8645:19;;25207:56:0;8260:410:1;38910:388:0;3796:6;;-1:-1:-1;;;;;3796:6:0;2670:10;3943:23;3935:68;;;;-1:-1:-1;;;3935:68:0;;;;;;;:::i;:::-;39007:2:::1;38997:6;:12;;;;38989:42;;;::::0;-1:-1:-1;;;38989:42:0;;9238:2:1;38989:42:0::1;::::0;::::1;9220:21:1::0;9277:2;9257:18;;;9250:30;-1:-1:-1;;;9296:18:1;;;9289:47;9353:18;;38989:42:0::1;9036:341:1::0;38989:42:0::1;39050:12;::::0;39075:3:::1;::::0;39050:21:::1;::::0;39065:6;;-1:-1:-1;;;39050:12:0;::::1;;;:21;:::i;:::-;:28;;;;39042:66;;;::::0;-1:-1:-1;;;39042:66:0;;9793:2:1;39042:66:0::1;::::0;::::1;9775:21:1::0;9832:2;9812:18;;;9805:30;9871:27;9851:18;;;9844:55;9916:18;;39042:66:0::1;9591:349:1::0;39042:66:0::1;39119:14;39136:12:::0;;39174::::1;::::0;::::1;-1:-1:-1::0;;;39174:12:0;;::::1;::::0;::::1;39159:27:::0;;;39136:12;39197:25:::1;::::0;39207:6;;39197:25;::::1;:9;:25::i;:::-;39249:6;39233:12;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39281:9;39266:12;:24;;;;38978:320;38910:388:::0;;:::o;40078:109::-;3796:6;;-1:-1:-1;;;;;3796:6:0;2670:10;3943:23;3935:68;;;;-1:-1:-1;;;3935:68:0;;;;;;;:::i;:::-;40128:51:::1;::::0;40136:10:::1;::::0;40157:21:::1;40128:51:::0;::::1;;;::::0;::::1;::::0;;;40157:21;40136:10;40128:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40078:109::o:0;29909:177::-;30039:39;30056:4;30062:2;30066:7;30039:39;;;;;;;;;;;;:16;:39::i;23777:187::-;23844:7;23880:13;:11;:13::i;:::-;23872:5;:21;23864:69;;;;-1:-1:-1;;;23864:69:0;;10147:2:1;23864:69:0;;;10129:21:1;10186:2;10166:18;;;10159:30;10225:34;10205:18;;;10198:62;-1:-1:-1;;;10276:18:1;;;10269:33;10319:19;;23864:69:0;9945:399:1;23864:69:0;-1:-1:-1;23951:5:0;23777:187::o;27038:124::-;27102:7;27129:20;27141:7;27129:11;:20::i;:::-;:25;;27038:124;-1:-1:-1;;27038:124:0:o;25779:221::-;25843:7;-1:-1:-1;;;;;25871:19:0;;25863:75;;;;-1:-1:-1;;;25863:75:0;;10551:2:1;25863:75:0;;;10533:21:1;10590:2;10570:18;;;10563:30;10629:34;10609:18;;;10602:62;-1:-1:-1;;;10680:18:1;;;10673:41;10731:19;;25863:75:0;10349:407:1;25863:75:0;-1:-1:-1;;;;;;25964:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25964:27:0;;25779:221::o;4374:103::-;3796:6;;-1:-1:-1;;;;;3796:6:0;2670:10;3943:23;3935:68;;;;-1:-1:-1;;;3935:68:0;;;;;;;:::i;:::-;4439:30:::1;4466:1;4439:18;:30::i;:::-;4374:103::o:0;27398:104::-;27454:13;27487:7;27480:14;;;;;:::i;29086:288::-;-1:-1:-1;;;;;29181:24:0;;2670:10;29181:24;;29173:63;;;;-1:-1:-1;;;29173:63:0;;10963:2:1;29173:63:0;;;10945:21:1;11002:2;10982:18;;;10975:30;11041:28;11021:18;;;11014:56;11087:18;;29173:63:0;10761:350:1;29173:63:0;2670:10;29249:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29249:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29249:53:0;;;;;;;;;;29318:48;;540:41:1;;;29249:42:0;;2670:10;29318:48;;513:18:1;29318:48:0;;;;;;;29086:288;;:::o;30157:355::-;30316:28;30326:4;30332:2;30336:7;30316:9;:28::i;:::-;30377:48;30400:4;30406:2;30410:7;30419:5;30377:22;:48::i;:::-;30355:149;;;;-1:-1:-1;;;30355:149:0;;;;;;;:::i;:::-;30157:355;;;;:::o;39694:376::-;39777:3;39762:12;;:18;39754:55;;;;-1:-1:-1;;;39754:55:0;;11738:2:1;39754:55:0;;;11720:21:1;11777:2;11757:18;;;11750:30;11816:26;11796:18;;;11789:54;11860:18;;39754:55:0;11536:348:1;39754:55:0;39838:2;39828:6;:12;;;;39820:42;;;;-1:-1:-1;;;39820:42:0;;9238:2:1;39820:42:0;;;9220:21:1;9277:2;9257:18;;;9250:30;-1:-1:-1;;;9296:18:1;;;9289:47;9353:18;;39820:42:0;9036:341:1;39820:42:0;39903:10;;39894:19;;-1:-1:-1;;;39903:10:0;;;;39894:19;;;;:::i;:::-;39881:32;;:9;:32;39873:61;;;;-1:-1:-1;;;39873:61:0;;12366:2:1;39873:61:0;;;12348:21:1;12405:2;12385:18;;;12378:30;-1:-1:-1;;;12424:18:1;;;12417:46;12480:18;;39873:61:0;12164:340:1;39873:61:0;39978:9;;:13;;-1:-1:-1;;;39978:9:0;;;;39990:1;39978:13;:::i;:::-;39953:38;;39968:6;39953:21;;:12;;:21;;;;:::i;:::-;:38;;39945:77;;;;-1:-1:-1;;;39945:77:0;;13073:2:1;39945:77:0;;;13055:21:1;13112:2;13092:18;;;13085:30;13151:28;13131:18;;;13124:56;13197:18;;39945:77:0;12871:350:1;39945:77:0;40033:29;40043:10;40055:6;40033:29;;:9;:29::i;27573:344::-;27646:13;27680:16;27688:7;30824:4;30858:12;-1:-1:-1;30848:22:0;30767:111;27680:16;27672:76;;;;-1:-1:-1;;;27672:76:0;;13428:2:1;27672:76:0;;;13410:21:1;13467:2;13447:18;;;13440:30;13506:34;13486:18;;;13479:62;-1:-1:-1;;;13557:18:1;;;13550:45;13612:19;;27672:76:0;13226:411:1;27672:76:0;27761:21;27785:10;:8;:10::i;:::-;27761:34;;27819:7;27813:21;27838:1;27813:26;;:96;;;;;;;;;;;;;;;;;27866:7;27875:18;:7;:16;:18::i;:::-;27849:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27813:96;27806:103;27573:344;-1:-1:-1;;;27573:344:0:o;39306:380::-;39391:3;39381:6;39366:21;;:12;;:21;;;;:::i;:::-;:28;;39358:72;;;;-1:-1:-1;;;39358:72:0;;14486:2:1;39358:72:0;;;14468:21:1;14525:2;14505:18;;;14498:30;14564:33;14544:18;;;14537:61;14615:18;;39358:72:0;14284:355:1;39358:72:0;39459:1;39449:6;:11;;;;39441:49;;;;-1:-1:-1;;;39441:49:0;;14846:2:1;39441:49:0;;;14828:21:1;14885:2;14865:18;;;14858:30;14924:27;14904:18;;;14897:55;14969:18;;39441:49:0;14644:349:1;39441:49:0;39527:10;39509:29;;;;:17;:29;;;;;;39551:1;;39509:38;;39541:6;;39509:29;;:38;:::i;:::-;:43;;;;39501:87;;;;-1:-1:-1;;;39501:87:0;;15200:2:1;39501:87:0;;;15182:21:1;15239:2;15219:18;;;15212:30;15278:33;15258:18;;;15251:61;15329:18;;39501:87:0;14998:355:1;39501:87:0;39599:29;39609:10;39621:6;39599:29;;:9;:29::i;:::-;39657:10;39639:29;;;;:17;:29;;;;;:39;;39672:6;;39639:29;:39;;39672:6;;39639:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39306:380;:::o;4632:201::-;3796:6;;-1:-1:-1;;;;;3796:6:0;2670:10;3943:23;3935:68;;;;-1:-1:-1;;;3935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4721:22:0;::::1;4713:73;;;::::0;-1:-1:-1;;;4713:73:0;;15560:2:1;4713:73:0::1;::::0;::::1;15542:21:1::0;15599:2;15579:18;;;15572:30;15638:34;15618:18;;;15611:62;-1:-1:-1;;;15689:18:1;;;15682:36;15735:19;;4713:73:0::1;15358:402:1::0;4713:73:0::1;4797:28;4816:8;4797:18;:28::i;35687:196::-:0;35802:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35802:29:0;-1:-1:-1;;;;;35802:29:0;;;;;;;;;35847:28;;35802:24;;35847:28;;;;;;;35687:196;;;:::o;33567:2002::-;33682:35;33720:20;33732:7;33720:11;:20::i;:::-;33795:18;;33682:58;;-1:-1:-1;33753:22:0;;-1:-1:-1;;;;;33779:34:0;2670:10;-1:-1:-1;;;;;33779:34:0;;:87;;;-1:-1:-1;2670:10:0;33830:20;33842:7;33830:11;:20::i;:::-;-1:-1:-1;;;;;33830:36:0;;33779:87;:154;;;-1:-1:-1;33900:18:0;;33883:50;;2670:10;29445:164;:::i;33883:50::-;33753:181;;33955:17;33947:80;;;;-1:-1:-1;;;33947:80:0;;15967:2:1;33947:80:0;;;15949:21:1;16006:2;15986:18;;;15979:30;16045:34;16025:18;;;16018:62;-1:-1:-1;;;16096:18:1;;;16089:48;16154:19;;33947:80:0;15765:414:1;33947:80:0;34070:4;-1:-1:-1;;;;;34048:26:0;:13;:18;;;-1:-1:-1;;;;;34048:26:0;;34040:77;;;;-1:-1:-1;;;34040:77:0;;16386:2:1;34040:77:0;;;16368:21:1;16425:2;16405:18;;;16398:30;16464:34;16444:18;;;16437:62;-1:-1:-1;;;16515:18:1;;;16508:36;16561:19;;34040:77:0;16184:402:1;34040:77:0;-1:-1:-1;;;;;34136:16:0;;34128:66;;;;-1:-1:-1;;;34128:66:0;;16793:2:1;34128:66:0;;;16775:21:1;16832:2;16812:18;;;16805:30;16871:34;16851:18;;;16844:62;-1:-1:-1;;;16922:18:1;;;16915:35;16967:19;;34128:66:0;16591:401:1;34128:66:0;34315:49;34332:1;34336:7;34345:13;:18;;;34315:8;:49::i;:::-;-1:-1:-1;;;;;34660:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34660:31:0;;;-1:-1:-1;;;;;34660:31:0;;;-1:-1:-1;;34660:31:0;;;;;;;34706:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34706:29:0;;;;;;;;;;;;;34752:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34797:61:0;;;;-1:-1:-1;;;34842:15:0;34797:61;;;;;;35132:11;;;35162:24;;;;;:29;35132:11;;35162:29;35158:295;;35230:20;35238:11;30824:4;30858:12;-1:-1:-1;30848:22:0;30767:111;35230:20;35226:212;;;35307:18;;;35275:24;;;:11;:24;;;;;;;;:50;;35390:28;;;;35348:70;;-1:-1:-1;;;35348:70:0;-1:-1:-1;;;;;;35348:70:0;;;-1:-1:-1;;;;;35275:50:0;;;35348:70;;;;;;;35226:212;34635:829;35500:7;35496:2;-1:-1:-1;;;;;35481:27:0;35490:4;-1:-1:-1;;;;;35481:27:0;;;;;;;;;;;35519:42;33671:1898;;33567:2002;;;:::o;30886:104::-;30955:27;30965:2;30969:8;30955:27;;;;;;;;;;;;:9;:27::i;:::-;30886:104;;:::o;26439:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26542:16:0;26550:7;30824:4;30858:12;-1:-1:-1;30848:22:0;30767:111;26542:16;26534:71;;;;-1:-1:-1;;;26534:71:0;;17199:2:1;26534:71:0;;;17181:21:1;17238:2;17218:18;;;17211:30;17277:34;17257:18;;;17250:62;-1:-1:-1;;;17328:18:1;;;17321:40;17378:19;;26534:71:0;16997:406:1;26534:71:0;26663:7;26643:245;26710:31;26744:17;;;:11;:17;;;;;;;;;26710:51;;;;;;;;;-1:-1:-1;;;;;26710:51:0;;;;;-1:-1:-1;;;26710:51:0;;;;;;;;;;;;26784:28;26780:93;;26844:9;26439:537;-1:-1:-1;;;26439:537:0:o;26780:93::-;-1:-1:-1;;;26683:6:0;26643:245;;4993:191;5086:6;;;-1:-1:-1;;;;;5103:17:0;;;-1:-1:-1;;;;;;5103:17:0;;;;;;;5136:40;;5086:6;;;5103:17;5086:6;;5136:40;;5067:16;;5136:40;5056:128;4993:191;:::o;36448:804::-;36603:4;-1:-1:-1;;;;;36624:13:0;;6195:20;6243:8;36620:625;;36660:72;;-1:-1:-1;;;36660:72:0;;-1:-1:-1;;;;;36660:36:0;;;;;:72;;2670:10;;36711:4;;36717:7;;36726:5;;36660:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36660:72:0;;;;;;;;-1:-1:-1;;36660:72:0;;;;;;;;;;;;:::i;:::-;;;36656:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36906:13:0;;36902:273;;36949:61;;-1:-1:-1;;;36949:61:0;;;;;;;:::i;36902:273::-;37125:6;37119:13;37110:6;37106:2;37102:15;37095:38;36656:534;-1:-1:-1;;;;;;36783:55:0;-1:-1:-1;;;36783:55:0;;-1:-1:-1;36776:62:0;;36620:625;-1:-1:-1;37229:4:0;36620:625;36448:804;;;;;;:::o;38753:149::-;38805:13;38831:63;;;;;;;;;;;;;;;;;;;38753:149;:::o;289:723::-;345:13;566:10;562:53;;-1:-1:-1;;593:10:0;;;;;;;;;;;;-1:-1:-1;;;593:10:0;;;;;289:723::o;562:53::-;640:5;625:12;681:78;688:9;;681:78;;714:8;;;;:::i;:::-;;-1:-1:-1;737:10:0;;-1:-1:-1;745:2:0;737:10;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;791:17:0;;769:39;;819:154;826:10;;819:154;;853:11;863:1;853:11;;:::i;:::-;;-1:-1:-1;922:10:0;930:2;922:5;:10;:::i;:::-;909:24;;:2;:24;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;879:56:0;;;;;;;;-1:-1:-1;950:11:0;959:2;950:11;;:::i;:::-;;;819:154;;31353:163;31476:32;31482:2;31486:8;31496:5;31503:4;31914:20;31937:12;-1:-1:-1;;;;;31968:16:0;;31960:62;;;;-1:-1:-1;;;31960:62:0;;19420:2:1;31960:62:0;;;19402:21:1;19459:2;19439:18;;;19432:30;19498:34;19478:18;;;19471:62;-1:-1:-1;;;19549:18:1;;;19542:31;19590:19;;31960:62:0;19218:397:1;31960:62:0;32041:13;32033:66;;;;-1:-1:-1;;;32033:66:0;;19822:2:1;32033:66:0;;;19804:21:1;19861:2;19841:18;;;19834:30;19900:34;19880:18;;;19873:62;-1:-1:-1;;;19951:18:1;;;19944:38;19999:19;;32033:66:0;19620:404:1;32033:66:0;-1:-1:-1;;;;;32451:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32451:45:0;;-1:-1:-1;;;;;32451:45:0;;;;;;;;;;32511:50;;;;;;;;;;;;;;32578:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32628:66:0;;;;-1:-1:-1;;;32678:15:0;32628:66;;;;;;;32578:25;;32763:415;32783:8;32779:1;:12;32763:415;;;32822:38;;32847:12;;-1:-1:-1;;;;;32822:38:0;;;32839:1;;32822:38;;32839:1;;32822:38;32883:4;32879:249;;;32946:59;32977:1;32981:2;32985:12;32999:5;32946:22;:59::i;:::-;32912:196;;;;-1:-1:-1;;;32912:196:0;;;;;;;:::i;:::-;33148:14;;;;;32793:3;32763:415;;;-1:-1:-1;33194:12:0;:27;33245:60;30157:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2877:156::-;2943:20;;3003:4;2992:16;;2982:27;;2972:55;;3023:1;3020;3013:12;3038:256;3104:6;3112;3165:2;3153:9;3144:7;3140:23;3136:32;3133:52;;;3181:1;3178;3171:12;3133:52;3204:29;3223:9;3204:29;:::i;:::-;3194:39;;3252:36;3284:2;3273:9;3269:18;3252:36;:::i;:::-;3242:46;;3038:256;;;;;:::o;3299:186::-;3358:6;3411:2;3399:9;3390:7;3386:23;3382:32;3379:52;;;3427:1;3424;3417:12;3379:52;3450:29;3469:9;3450:29;:::i;3695:347::-;3760:6;3768;3821:2;3809:9;3800:7;3796:23;3792:32;3789:52;;;3837:1;3834;3827:12;3789:52;3860:29;3879:9;3860:29;:::i;:::-;3850:39;;3939:2;3928:9;3924:18;3911:32;3986:5;3979:13;3972:21;3965:5;3962:32;3952:60;;4008:1;4005;3998:12;3952:60;4031:5;4021:15;;;3695:347;;;;;:::o;4047:127::-;4108:10;4103:3;4099:20;4096:1;4089:31;4139:4;4136:1;4129:15;4163:4;4160:1;4153:15;4179:1138;4274:6;4282;4290;4298;4351:3;4339:9;4330:7;4326:23;4322:33;4319:53;;;4368:1;4365;4358:12;4319:53;4391:29;4410:9;4391:29;:::i;:::-;4381:39;;4439:38;4473:2;4462:9;4458:18;4439:38;:::i;:::-;4429:48;;4524:2;4513:9;4509:18;4496:32;4486:42;;4579:2;4568:9;4564:18;4551:32;4602:18;4643:2;4635:6;4632:14;4629:34;;;4659:1;4656;4649:12;4629:34;4697:6;4686:9;4682:22;4672:32;;4742:7;4735:4;4731:2;4727:13;4723:27;4713:55;;4764:1;4761;4754:12;4713:55;4800:2;4787:16;4822:2;4818;4815:10;4812:36;;;4828:18;;:::i;:::-;4903:2;4897:9;4871:2;4957:13;;-1:-1:-1;;4953:22:1;;;4977:2;4949:31;4945:40;4933:53;;;5001:18;;;5021:22;;;4998:46;4995:72;;;5047:18;;:::i;:::-;5087:10;5083:2;5076:22;5122:2;5114:6;5107:18;5162:7;5157:2;5152;5148;5144:11;5140:20;5137:33;5134:53;;;5183:1;5180;5173:12;5134:53;5239:2;5234;5230;5226:11;5221:2;5213:6;5209:15;5196:46;5284:1;5279:2;5274;5266:6;5262:15;5258:24;5251:35;5305:6;5295:16;;;;;;;4179:1138;;;;;;;:::o;5322:182::-;5379:6;5432:2;5420:9;5411:7;5407:23;5403:32;5400:52;;;5448:1;5445;5438:12;5400:52;5471:27;5488:9;5471:27;:::i;5702:260::-;5770:6;5778;5831:2;5819:9;5810:7;5806:23;5802:32;5799:52;;;5847:1;5844;5837:12;5799:52;5870:29;5889:9;5870:29;:::i;:::-;5860:39;;5918:38;5952:2;5941:9;5937:18;5918:38;:::i;5967:380::-;6046:1;6042:12;;;;6089;;;6110:61;;6164:4;6156:6;6152:17;6142:27;;6110:61;6217:2;6209:6;6206:14;6186:18;6183:38;6180:161;;;6263:10;6258:3;6254:20;6251:1;6244:31;6298:4;6295:1;6288:15;6326:4;6323:1;6316:15;6180:161;;5967:380;;;:::o;7595:127::-;7656:10;7651:3;7647:20;7644:1;7637:31;7687:4;7684:1;7677:15;7711:4;7708:1;7701:15;7727:125;7767:4;7795:1;7792;7789:8;7786:34;;;7800:18;;:::i;:::-;-1:-1:-1;7837:9:1;;7727:125::o;8675:356::-;8877:2;8859:21;;;8896:18;;;8889:30;8955:34;8950:2;8935:18;;8928:62;9022:2;9007:18;;8675:356::o;9382:204::-;9420:3;9456:4;9453:1;9449:12;9488:4;9485:1;9481:12;9523:3;9517:4;9513:14;9508:3;9505:23;9502:49;;;9531:18;;:::i;:::-;9567:13;;9382:204;-1:-1:-1;;;9382:204:1:o;11116:415::-;11318:2;11300:21;;;11357:2;11337:18;;;11330:30;11396:34;11391:2;11376:18;;11369:62;-1:-1:-1;;;11462:2:1;11447:18;;11440:49;11521:3;11506:19;;11116:415::o;11889:270::-;11928:7;11960:18;12005:2;12002:1;11998:10;12035:2;12032:1;12028:10;12091:3;12087:2;12083:12;12078:3;12075:21;12068:3;12061:11;12054:19;12050:47;12047:73;;;12100:18;;:::i;:::-;12140:13;;11889:270;-1:-1:-1;;;;11889:270:1:o;12509:224::-;12548:3;12576:6;12609:2;12606:1;12602:10;12639:2;12636:1;12632:10;12670:3;12666:2;12662:12;12657:3;12654:21;12651:47;;;12678:18;;:::i;:::-;12714:13;;12509:224;-1:-1:-1;;;;12509:224:1:o;12738:128::-;12778:3;12809:1;12805:6;12802:1;12799:13;12796:39;;;12815:18;;:::i;:::-;-1:-1:-1;12851:9:1;;12738:128::o;13642:637::-;13922:3;13960:6;13954:13;13976:53;14022:6;14017:3;14010:4;14002:6;13998:17;13976:53;:::i;:::-;14092:13;;14051:16;;;;14114:57;14092:13;14051:16;14148:4;14136:17;;14114:57;:::i;:::-;-1:-1:-1;;;14193:20:1;;14222:22;;;14271:1;14260:13;;13642:637;-1:-1:-1;;;;13642:637:1:o;17824:489::-;-1:-1:-1;;;;;18093:15:1;;;18075:34;;18145:15;;18140:2;18125:18;;18118:43;18192:2;18177:18;;18170:34;;;18240:3;18235:2;18220:18;;18213:31;;;18018:4;;18261:46;;18287:19;;18279:6;18261:46;:::i;:::-;18253:54;17824:489;-1:-1:-1;;;;;;17824:489:1:o;18318:249::-;18387:6;18440:2;18428:9;18419:7;18415:23;18411:32;18408:52;;;18456:1;18453;18446:12;18408:52;18488:9;18482:16;18507:30;18531:5;18507:30;:::i;18572:135::-;18611:3;-1:-1:-1;;18632:17:1;;18629:43;;;18652:18;;:::i;:::-;-1:-1:-1;18699:1:1;18688:13;;18572:135::o;18712:127::-;18773:10;18768:3;18764:20;18761:1;18754:31;18804:4;18801:1;18794:15;18828:4;18825:1;18818:15;18844:120;18884:1;18910;18900:35;;18915:18;;:::i;:::-;-1:-1:-1;18949:9:1;;18844:120::o;18969:112::-;19001:1;19027;19017:35;;19032:18;;:::i;:::-;-1:-1:-1;19066:9:1;;18969:112::o;19086:127::-;19147:10;19142:3;19138:20;19135:1;19128:31;19178:4;19175:1;19168:15;19202:4;19199:1;19192:15
Swarm Source
ipfs://0e8d91159a7c87f4e522cfafb0c8eb675d246c47edbd20d29ac0a576ef6eebdf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.