ERC-721
Overview
Max Total Supply
10,000 FLAZUKI
Holders
312
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
50 FLAZUKILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FLAZUKI
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-04 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/v3.0.0/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contract.sol pragma solidity 0.8.12; contract FLAZUKI is ERC721A, Ownable { uint16 public constant MAX_SUPPLY = 10000; uint8 public constant MAX_PER_TX = 50; string private baseUri = "https://gateway.pinata.cloud/ipfs/QmesvMzgr98qCfSbyvbH1FmQEHvWty63E5NNpdG3PTZSF8/"; uint96 private royaltyBasisPoints = 1000; constructor() ERC721A("Flazuki", "FLAZUKI") {} function soldOut() external view returns (bool) { return totalSupply() == MAX_SUPPLY; } function mint(uint256 _quantity) external { require(_quantity > 0, "INCORRECT_QUANTITY"); require(_quantity <= MAX_PER_TX, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function giveawayMint(uint256 _quantity) external onlyOwner { require(_quantity > 0, "INCORRECT_QUANTITY"); require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED"); _safeMint(msg.sender, _quantity); } function setBaseUri(string calldata _baseUri) external onlyOwner { baseUri = _baseUri; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory filename = Strings.toString(tokenId); return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : ''; } function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner { royaltyBasisPoints = _royaltyBasisPoints; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) { require(_exists(_tokenId), "Cannot query non-existent token"); return (owner(), (_salePrice * royaltyBasisPoints) / 10000); } function transferFunds() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052605160808181529062001d6260a03980516200002a9160099160209091019062000125565b50600a80546001600160601b0319166103e81790553480156200004c57600080fd5b5060405180604001604052806007815260200166466c617a756b6960c81b81525060405180604001604052806007815260200166464c415a554b4960c81b8152508160029080519060200190620000a592919062000125565b508051620000bb90600390602084019062000125565b50506000805550620000cd33620000d3565b62000208565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013390620001cb565b90600052602060002090601f016020900481019282620001575760008555620001a2565b82601f106200017257805160ff1916838001178555620001a2565b82800160010185558215620001a2579182015b82811115620001a257825182559160200191906001019062000185565b50620001b0929150620001b4565b5090565b5b80821115620001b05760008155600101620001b5565b600181811c90821680620001e057607f821691505b602082108114156200020257634e487b7160e01b600052602260045260246000fd5b50919050565b611b4a80620002186000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c806379ee8e3e116100ee578063a22cb46511610097578063cac9266911610071578063cac9266914610383578063e985e9c514610396578063f2fde38b146103d2578063f43a22dc146103e557600080fd5b8063a22cb4651461034a578063b88d4fde1461035d578063c87b56dd1461037057600080fd5b806395d89b41116100c857806395d89b411461031c578063a0712d6814610324578063a0bcfc7f1461033757600080fd5b806379ee8e3e146102f0578063893da6c9146103035780638da5cb5b1461030b57600080fd5b80632a55205a1161015b57806342842e0e1161013557806342842e0e146102af5780636352211e146102c257806370a08231146102d5578063715018a6146102e857600080fd5b80632a55205a1461025957806332cb6b0c1461028b5780633c68eb81146102a757600080fd5b8063095ea7b31161018c578063095ea7b31461021b57806318160ddd1461023057806323b872dd1461024657600080fd5b806301ffc9a7146101b357806306fdde03146101db578063081812fc146101f0575b600080fd5b6101c66101c1366004611575565b6103ff565b60405190151581526020015b60405180910390f35b6101e3610451565b6040516101d291906115ea565b6102036101fe3660046115fd565b6104e3565b6040516001600160a01b0390911681526020016101d2565b61022e610229366004611632565b610527565b005b600154600054035b6040519081526020016101d2565b61022e61025436600461165c565b6105b5565b61026c610267366004611698565b6105c0565b604080516001600160a01b0390931683526020830191909152016101d2565b61029461271081565b60405161ffff90911681526020016101d2565b61022e61065d565b61022e6102bd36600461165c565b6106f3565b6102036102d03660046115fd565b61070e565b6102386102e33660046116ba565b610720565b61022e61076f565b61022e6102fe3660046115fd565b6107d5565b6101c66108d4565b6008546001600160a01b0316610203565b6101e36108ec565b61022e6103323660046115fd565b6108fb565b61022e6103453660046116d5565b610986565b61022e610358366004611747565b6109ec565b61022e61036b366004611799565b610a82565b6101e361037e3660046115fd565b610ad3565b61022e610391366004611875565b610b5d565b6101c66103a43660046118a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61022e6103e03660046116ba565b610be3565b6103ed603281565b60405160ff90911681526020016101d2565b60006001600160e01b031982166380ac58cd60e01b148061043057506001600160e01b03198216635b5e139f60e01b145b8061044b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610460906118d6565b80601f016020809104026020016040519081016040528092919081815260200182805461048c906118d6565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b60006104ee82610cab565b61050b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105328261070e565b9050806001600160a01b0316836001600160a01b031614156105675760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610587575061058581336103a4565b155b156105a5576040516367d9dca160e11b815260040160405180910390fd5b6105b0838383610cd6565b505050565b6105b0838383610d3f565b6000806105cc84610cab565b61061d5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a5461271090610648906bffffffffffffffffffffffff1686611927565b610652919061195c565b915091509250929050565b6008546001600160a01b031633146106b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156106f0573d6000803e3d6000fd5b50565b6105b083838360405180602001604052806000815250610a82565b600061071982610f55565b5192915050565b60006001600160a01b038216610749576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6107d36000611071565b565b6008546001600160a01b0316331461082f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b600081116108745760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b612710816108856001546000540390565b61088f9190611970565b11156108ca5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b6044820152606401610614565b6106f033826110d0565b60006127106108e66001546000540390565b14905090565b606060038054610460906118d6565b600081116109405760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b60328111156108745760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b6008546001600160a01b031633146109e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6105b0600983836114c6565b6001600160a01b038216331415610a165760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a8d848484610d3f565b6001600160a01b0383163b15158015610aaf5750610aad848484846110ee565b155b15610acd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ade82610cab565b610afb57604051630a14c4b560e41b815260040160405180910390fd5b6000610b06836111d7565b905060098054610b15906118d6565b15159050610b325760405180602001604052806000815250610b56565b600981604051602001610b469291906119a4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6008546001600160a01b03163314610c3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6001600160a01b038116610ca25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610614565b6106f081611071565b600080548210801561044b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4a82610f55565b80519091506000906001600160a01b0316336001600160a01b03161480610d7857508151610d7890336103a4565b80610d93575033610d88846104e3565b6001600160a01b0316145b905080610db357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610de85760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e0f57604051633a954ecd60e21b815260040160405180910390fd5b610e1f6000848460000151610cd6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f0b57600054811015610f0b578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561105857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110565780516001600160a01b031615610fec579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611051579392505050565b610fec565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110ea8282604051806020016040528060008152506112ed565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611123903390899088908890600401611a5f565b6020604051808303816000875af192505050801561115e575060408051601f3d908101601f1916820190925261115b91810190611a9b565b60015b6111b9573d80801561118c576040519150601f19603f3d011682016040523d82523d6000602084013e611191565b606091505b5080516111b1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611225578061120f81611ab8565b915061121e9050600a8361195c565b91506111ff565b60008167ffffffffffffffff81111561124057611240611783565b6040519080825280601f01601f19166020018201604052801561126a576020820181803683370190505b5090505b84156111cf5761127f600183611ad3565b915061128c600a86611aea565b611297906030611970565b60f81b8183815181106112ac576112ac611afe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506112e6600a8661195c565b945061126e565b6105b083838360016000546001600160a01b03851661131e57604051622e076360e81b815260040160405180910390fd5b8361133c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113ee57506001600160a01b0387163b15155b15611477575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461143f60008884806001019550886110ee565b61145c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156113f457826000541461147257600080fd5b6114bd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611478575b50600055610f4e565b8280546114d2906118d6565b90600052602060002090601f0160209004810192826114f4576000855561153a565b82601f1061150d5782800160ff1982351617855561153a565b8280016001018555821561153a579182015b8281111561153a57823582559160200191906001019061151f565b5061154692915061154a565b5090565b5b80821115611546576000815560010161154b565b6001600160e01b0319811681146106f057600080fd5b60006020828403121561158757600080fd5b8135610b568161155f565b60005b838110156115ad578181015183820152602001611595565b83811115610acd5750506000910152565b600081518084526115d6816020860160208601611592565b601f01601f19169290920160200192915050565b602081526000610b5660208301846115be565b60006020828403121561160f57600080fd5b5035919050565b80356001600160a01b038116811461162d57600080fd5b919050565b6000806040838503121561164557600080fd5b61164e83611616565b946020939093013593505050565b60008060006060848603121561167157600080fd5b61167a84611616565b925061168860208501611616565b9150604084013590509250925092565b600080604083850312156116ab57600080fd5b50508035926020909101359150565b6000602082840312156116cc57600080fd5b610b5682611616565b600080602083850312156116e857600080fd5b823567ffffffffffffffff8082111561170057600080fd5b818501915085601f83011261171457600080fd5b81358181111561172357600080fd5b86602082850101111561173557600080fd5b60209290920196919550909350505050565b6000806040838503121561175a57600080fd5b61176383611616565b91506020830135801515811461177857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117af57600080fd5b6117b885611616565b93506117c660208601611616565b925060408501359150606085013567ffffffffffffffff808211156117ea57600080fd5b818701915087601f8301126117fe57600080fd5b81358181111561181057611810611783565b604051601f8201601f19908116603f0116810190838211818310171561183857611838611783565b816040528281528a602084870101111561185157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561188757600080fd5b81356bffffffffffffffffffffffff81168114610b5657600080fd5b600080604083850312156118b657600080fd5b6118bf83611616565b91506118cd60208401611616565b90509250929050565b600181811c908216806118ea57607f821691505b6020821081141561190b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561194157611941611911565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261196b5761196b611946565b500490565b6000821982111561198357611983611911565b500190565b6000815161199a818560208601611592565b9290920192915050565b600080845481600182811c9150808316806119c057607f831692505b60208084108214156119e057634e487b7160e01b86526022600452602486fd5b8180156119f45760018114611a0557611a32565b60ff19861689528489019650611a32565b60008b81526020902060005b86811015611a2a5781548b820152908501908301611a11565b505084890196505b505050505050611a56611a458286611988565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a9160808301846115be565b9695505050505050565b600060208284031215611aad57600080fd5b8151610b568161155f565b6000600019821415611acc57611acc611911565b5060010190565b600082821015611ae557611ae5611911565b500390565b600082611af957611af9611946565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b8c976bbe02f341a1928711e819373702b27760c65cd10d71092b5668477c55264736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6573764d7a6772393871436653627976624831466d51454876577479363345354e4e7064473350545a5346382f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c806379ee8e3e116100ee578063a22cb46511610097578063cac9266911610071578063cac9266914610383578063e985e9c514610396578063f2fde38b146103d2578063f43a22dc146103e557600080fd5b8063a22cb4651461034a578063b88d4fde1461035d578063c87b56dd1461037057600080fd5b806395d89b41116100c857806395d89b411461031c578063a0712d6814610324578063a0bcfc7f1461033757600080fd5b806379ee8e3e146102f0578063893da6c9146103035780638da5cb5b1461030b57600080fd5b80632a55205a1161015b57806342842e0e1161013557806342842e0e146102af5780636352211e146102c257806370a08231146102d5578063715018a6146102e857600080fd5b80632a55205a1461025957806332cb6b0c1461028b5780633c68eb81146102a757600080fd5b8063095ea7b31161018c578063095ea7b31461021b57806318160ddd1461023057806323b872dd1461024657600080fd5b806301ffc9a7146101b357806306fdde03146101db578063081812fc146101f0575b600080fd5b6101c66101c1366004611575565b6103ff565b60405190151581526020015b60405180910390f35b6101e3610451565b6040516101d291906115ea565b6102036101fe3660046115fd565b6104e3565b6040516001600160a01b0390911681526020016101d2565b61022e610229366004611632565b610527565b005b600154600054035b6040519081526020016101d2565b61022e61025436600461165c565b6105b5565b61026c610267366004611698565b6105c0565b604080516001600160a01b0390931683526020830191909152016101d2565b61029461271081565b60405161ffff90911681526020016101d2565b61022e61065d565b61022e6102bd36600461165c565b6106f3565b6102036102d03660046115fd565b61070e565b6102386102e33660046116ba565b610720565b61022e61076f565b61022e6102fe3660046115fd565b6107d5565b6101c66108d4565b6008546001600160a01b0316610203565b6101e36108ec565b61022e6103323660046115fd565b6108fb565b61022e6103453660046116d5565b610986565b61022e610358366004611747565b6109ec565b61022e61036b366004611799565b610a82565b6101e361037e3660046115fd565b610ad3565b61022e610391366004611875565b610b5d565b6101c66103a43660046118a3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61022e6103e03660046116ba565b610be3565b6103ed603281565b60405160ff90911681526020016101d2565b60006001600160e01b031982166380ac58cd60e01b148061043057506001600160e01b03198216635b5e139f60e01b145b8061044b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610460906118d6565b80601f016020809104026020016040519081016040528092919081815260200182805461048c906118d6565b80156104d95780601f106104ae576101008083540402835291602001916104d9565b820191906000526020600020905b8154815290600101906020018083116104bc57829003601f168201915b5050505050905090565b60006104ee82610cab565b61050b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105328261070e565b9050806001600160a01b0316836001600160a01b031614156105675760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610587575061058581336103a4565b155b156105a5576040516367d9dca160e11b815260040160405180910390fd5b6105b0838383610cd6565b505050565b6105b0838383610d3f565b6000806105cc84610cab565b61061d5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a5461271090610648906bffffffffffffffffffffffff1686611927565b610652919061195c565b915091509250929050565b6008546001600160a01b031633146106b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156106f0573d6000803e3d6000fd5b50565b6105b083838360405180602001604052806000815250610a82565b600061071982610f55565b5192915050565b60006001600160a01b038216610749576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6107d36000611071565b565b6008546001600160a01b0316331461082f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b600081116108745760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b612710816108856001546000540390565b61088f9190611970565b11156108ca5760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b6044820152606401610614565b6106f033826110d0565b60006127106108e66001546000540390565b14905090565b606060038054610460906118d6565b600081116109405760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b60328111156108745760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b6044820152606401610614565b6008546001600160a01b031633146109e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6105b0600983836114c6565b6001600160a01b038216331415610a165760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a8d848484610d3f565b6001600160a01b0383163b15158015610aaf5750610aad848484846110ee565b155b15610acd576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ade82610cab565b610afb57604051630a14c4b560e41b815260040160405180910390fd5b6000610b06836111d7565b905060098054610b15906118d6565b15159050610b325760405180602001604052806000815250610b56565b600981604051602001610b469291906119a4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6008546001600160a01b03163314610c3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610614565b6001600160a01b038116610ca25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610614565b6106f081611071565b600080548210801561044b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4a82610f55565b80519091506000906001600160a01b0316336001600160a01b03161480610d7857508151610d7890336103a4565b80610d93575033610d88846104e3565b6001600160a01b0316145b905080610db357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610de85760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e0f57604051633a954ecd60e21b815260040160405180910390fd5b610e1f6000848460000151610cd6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f0b57600054811015610f0b578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561105857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110565780516001600160a01b031615610fec579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611051579392505050565b610fec565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110ea8282604051806020016040528060008152506112ed565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611123903390899088908890600401611a5f565b6020604051808303816000875af192505050801561115e575060408051601f3d908101601f1916820190925261115b91810190611a9b565b60015b6111b9573d80801561118c576040519150601f19603f3d011682016040523d82523d6000602084013e611191565b606091505b5080516111b1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611225578061120f81611ab8565b915061121e9050600a8361195c565b91506111ff565b60008167ffffffffffffffff81111561124057611240611783565b6040519080825280601f01601f19166020018201604052801561126a576020820181803683370190505b5090505b84156111cf5761127f600183611ad3565b915061128c600a86611aea565b611297906030611970565b60f81b8183815181106112ac576112ac611afe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506112e6600a8661195c565b945061126e565b6105b083838360016000546001600160a01b03851661131e57604051622e076360e81b815260040160405180910390fd5b8361133c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156113ee57506001600160a01b0387163b15155b15611477575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461143f60008884806001019550886110ee565b61145c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156113f457826000541461147257600080fd5b6114bd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611478575b50600055610f4e565b8280546114d2906118d6565b90600052602060002090601f0160209004810192826114f4576000855561153a565b82601f1061150d5782800160ff1982351617855561153a565b8280016001018555821561153a579182015b8281111561153a57823582559160200191906001019061151f565b5061154692915061154a565b5090565b5b80821115611546576000815560010161154b565b6001600160e01b0319811681146106f057600080fd5b60006020828403121561158757600080fd5b8135610b568161155f565b60005b838110156115ad578181015183820152602001611595565b83811115610acd5750506000910152565b600081518084526115d6816020860160208601611592565b601f01601f19169290920160200192915050565b602081526000610b5660208301846115be565b60006020828403121561160f57600080fd5b5035919050565b80356001600160a01b038116811461162d57600080fd5b919050565b6000806040838503121561164557600080fd5b61164e83611616565b946020939093013593505050565b60008060006060848603121561167157600080fd5b61167a84611616565b925061168860208501611616565b9150604084013590509250925092565b600080604083850312156116ab57600080fd5b50508035926020909101359150565b6000602082840312156116cc57600080fd5b610b5682611616565b600080602083850312156116e857600080fd5b823567ffffffffffffffff8082111561170057600080fd5b818501915085601f83011261171457600080fd5b81358181111561172357600080fd5b86602082850101111561173557600080fd5b60209290920196919550909350505050565b6000806040838503121561175a57600080fd5b61176383611616565b91506020830135801515811461177857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156117af57600080fd5b6117b885611616565b93506117c660208601611616565b925060408501359150606085013567ffffffffffffffff808211156117ea57600080fd5b818701915087601f8301126117fe57600080fd5b81358181111561181057611810611783565b604051601f8201601f19908116603f0116810190838211818310171561183857611838611783565b816040528281528a602084870101111561185157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60006020828403121561188757600080fd5b81356bffffffffffffffffffffffff81168114610b5657600080fd5b600080604083850312156118b657600080fd5b6118bf83611616565b91506118cd60208401611616565b90509250929050565b600181811c908216806118ea57607f821691505b6020821081141561190b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561194157611941611911565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261196b5761196b611946565b500490565b6000821982111561198357611983611911565b500190565b6000815161199a818560208601611592565b9290920192915050565b600080845481600182811c9150808316806119c057607f831692505b60208084108214156119e057634e487b7160e01b86526022600452602486fd5b8180156119f45760018114611a0557611a32565b60ff19861689528489019650611a32565b60008b81526020902060005b86811015611a2a5781548b820152908501908301611a11565b505084890196505b505050505050611a56611a458286611988565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a9160808301846115be565b9695505050505050565b600060208284031215611aad57600080fd5b8151610b568161155f565b6000600019821415611acc57611acc611911565b5060010190565b600082821015611ae557611ae5611911565b500390565b600082611af957611af9611946565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b8c976bbe02f341a1928711e819373702b27760c65cd10d71092b5668477c55264736f6c634300080c0033
Deployed Bytecode Sourcemap
45835:1998:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28314:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28314:305:0;;;;;;;;31699:100;;;:::i;:::-;;;;;;;:::i;33202:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;33202:204:0;1550:226:1;32765:371:0;;;;;;:::i;:::-;;:::i;:::-;;27563:303;27817:12;;27607:7;27801:13;:28;27563:303;;;2387:25:1;;;2375:2;2360:18;27563:303:0;2241:177:1;34059:170:0;;;;;;:::i;:::-;;:::i;47438:273::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3201:55:1;;;3183:74;;3288:2;3273:18;;3266:34;;;;3156:18;47438:273:0;3009:297:1;45879:41:0;;45915:5;45879:41;;;;;3485:6:1;3473:19;;;3455:38;;3443:2;3428:18;45879:41:0;3311:188:1;47719:111:0;;;:::i;34300:185::-;;;;;;:::i;:::-;;:::i;31508:124::-;;;;;;:::i;:::-;;:::i;28683:206::-;;;;;;:::i;:::-;;:::i;4730:103::-;;;:::i;46596:249::-;;;;;;:::i;:::-;;:::i;46191:101::-;;;:::i;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;4079:87;;31868:104;;;:::i;46300:288::-;;;;;;:::i;:::-;;:::i;46853:102::-;;;;;;:::i;:::-;;:::i;33478:279::-;;;;;;:::i;:::-;;:::i;34556:369::-;;;;;;:::i;:::-;;:::i;46963:333::-;;;;;;:::i;:::-;;:::i;47304:126::-;;;;;;:::i;:::-;;:::i;33828:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;33949:25:0;;;33925:4;33949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33828:164;4988:201;;;;;;:::i;:::-;;:::i;45927:37::-;;45962:2;45927:37;;;;;6653:4:1;6641:17;;;6623:36;;6611:2;6596:18;45927:37:0;6481:184:1;28314:305:0;28416:4;-1:-1:-1;;;;;;28453:40:0;;-1:-1:-1;;;28453:40:0;;:105;;-1:-1:-1;;;;;;;28510:48:0;;-1:-1:-1;;;28510:48:0;28453:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;28575:36;28433:178;28314:305;-1:-1:-1;;28314:305:0:o;31699:100::-;31753:13;31786:5;31779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31699:100;:::o;33202:204::-;33270:7;33295:16;33303:7;33295;:16::i;:::-;33290:64;;33320:34;;-1:-1:-1;;;33320:34:0;;;;;;;;;;;33290:64;-1:-1:-1;33374:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33374:24:0;;33202:204::o;32765:371::-;32838:13;32854:24;32870:7;32854:15;:24::i;:::-;32838:40;;32899:5;-1:-1:-1;;;;;32893:11:0;:2;-1:-1:-1;;;;;32893:11:0;;32889:48;;;32913:24;;-1:-1:-1;;;32913:24:0;;;;;;;;;;;32889:48;2883:10;-1:-1:-1;;;;;32954:21:0;;;;;;:63;;-1:-1:-1;32980:37:0;32997:5;2883:10;33828:164;:::i;32980:37::-;32979:38;32954:63;32950:138;;;33041:35;;-1:-1:-1;;;33041:35:0;;;;;;;;;;;32950:138;33100:28;33109:2;33113:7;33122:5;33100:8;:28::i;:::-;32827:309;32765:371;;:::o;34059:170::-;34193:28;34203:4;34209:2;34213:7;34193:9;:28::i;47438:273::-;47520:16;47538:21;47580:17;47588:8;47580:7;:17::i;:::-;47572:61;;;;-1:-1:-1;;;47572:61:0;;7257:2:1;47572:61:0;;;7239:21:1;7296:2;7276:18;;;7269:30;7335:33;7315:18;;;7308:61;7386:18;;47572:61:0;;;;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;47675:18;;47697:5;;47662:31;;47675:18;;47662:10;:31;:::i;:::-;47661:41;;;;:::i;:::-;47644:59;;;;47438:273;;;;;:::o;47719:111::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4152:6;;47774:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47800:21:::1;47774:48:::0;::::1;;;::::0;::::1;::::0;;;47800:21;4152:6;47774:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47719:111::o:0;34300:185::-;34438:39;34455:4;34461:2;34465:7;34438:39;;;;;;;;;;;;:16;:39::i;31508:124::-;31572:7;31599:20;31611:7;31599:11;:20::i;:::-;:25;;31508:124;-1:-1:-1;;31508:124:0:o;28683:206::-;28747:7;-1:-1:-1;;;;;28771:19:0;;28767:60;;28799:28;;-1:-1:-1;;;28799:28:0;;;;;;;;;;;28767:60;-1:-1:-1;;;;;;28853:19:0;;;;;:12;:19;;;;;:27;;;;28683:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46596:249::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46687:1:::1;46675:9;:13;46667:44;;;::::0;-1:-1:-1;;;46667:44:0;;8540:2:1;46667:44:0::1;::::0;::::1;8522:21:1::0;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;46667:44:0::1;8338:342:1::0;46667:44:0::1;45915:5;46746:9:::0;46730:13:::1;27817:12:::0;;27607:7;27801:13;:28;;27563:303;46730:13:::1;:25;;;;:::i;:::-;:39;;46722:62;;;::::0;-1:-1:-1;;;46722:62:0;;9020:2:1;46722:62:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:40;9128:18;;46722:62:0::1;8818:334:1::0;46722:62:0::1;46805:32;46815:10;46827:9;46805;:32::i;46191:101::-:0;46233:4;45915:5;46257:13;27817:12;;27607:7;27801:13;:28;;27563:303;46257:13;:27;46250:34;;46191:101;:::o;31868:104::-;31924:13;31957:7;31950:14;;;;;:::i;46300:288::-;46373:1;46361:9;:13;46353:44;;;;-1:-1:-1;;;46353:44:0;;8540:2:1;46353:44:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;46353:44:0;8338:342:1;46353:44:0;45962:2;46416:23;;;46408:54;;;;-1:-1:-1;;;46408:54:0;;8540:2:1;46408:54:0;;;8522:21:1;8579:2;8559:18;;;8552:30;-1:-1:-1;;;8598:18:1;;;8591:48;8656:18;;46408:54:0;8338:342:1;46853:102:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;46929:18:::1;:7;46939:8:::0;;46929:18:::1;:::i;33478:279::-:0;-1:-1:-1;;;;;33569:24:0;;2883:10;33569:24;33565:54;;;33602:17;;-1:-1:-1;;;33602:17:0;;;;;;;;;;;33565:54;2883:10;33632:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33632:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33632:53:0;;;;;;;;;;33701:48;;540:41:1;;;33632:42:0;;2883:10;33701:48;;513:18:1;33701:48:0;;;;;;;33478:279;;:::o;34556:369::-;34723:28;34733:4;34739:2;34743:7;34723:9;:28::i;:::-;-1:-1:-1;;;;;34766:13:0;;7075:19;:23;;34766:76;;;;;34786:56;34817:4;34823:2;34827:7;34836:5;34786:30;:56::i;:::-;34785:57;34766:76;34762:156;;;34866:40;;-1:-1:-1;;;34866:40:0;;;;;;;;;;;34762:156;34556:369;;;;:::o;46963:333::-;47036:13;47067:16;47075:7;47067;:16::i;:::-;47062:59;;47092:29;;-1:-1:-1;;;47092:29:0;;;;;;;;;;;47062:59;47134:22;47159:25;47176:7;47159:16;:25::i;:::-;47134:50;;47208:7;47202:21;;;;;:::i;:::-;:26;;;-1:-1:-1;47202:86:0;;;;;;;;;;;;;;;;;47255:7;47264:8;47238:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47202:86;47195:93;46963:333;-1:-1:-1;;;46963:333:0:o;47304:126::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;47382:18:::1;:40:::0;;-1:-1:-1;;47382:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47304:126::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8179:2:1;4291:68:0;;;8161:21:1;;;8198:18;;;8191:30;8257:34;8237:18;;;8230:62;8309:18;;4291:68:0;7977:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;11099:2:1;5069:73:0::1;::::0;::::1;11081:21:1::0;11138:2;11118:18;;;11111:30;11177:34;11157:18;;;11150:62;-1:-1:-1;;;11228:18:1;;;11221:36;11274:19;;5069:73:0::1;10897:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;35180:187::-:0;35237:4;35301:13;;35291:7;:23;35261:98;;;;-1:-1:-1;;35332:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35332:27:0;;;;35331:28;;35180:187::o;42791:196::-;42906:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42906:29:0;-1:-1:-1;;;;;42906:29:0;;;;;;;;;42951:28;;42906:24;;42951:28;;;;;;;42791:196;;;:::o;38293:2112::-;38408:35;38446:20;38458:7;38446:11;:20::i;:::-;38521:18;;38408:58;;-1:-1:-1;38479:22:0;;-1:-1:-1;;;;;38505:34:0;2883:10;-1:-1:-1;;;;;38505:34:0;;:101;;;-1:-1:-1;38573:18:0;;38556:50;;2883:10;33828:164;:::i;38556:50::-;38505:154;;;-1:-1:-1;2883:10:0;38623:20;38635:7;38623:11;:20::i;:::-;-1:-1:-1;;;;;38623:36:0;;38505:154;38479:181;;38678:17;38673:66;;38704:35;;-1:-1:-1;;;38704:35:0;;;;;;;;;;;38673:66;38776:4;-1:-1:-1;;;;;38754:26:0;:13;:18;;;-1:-1:-1;;;;;38754:26:0;;38750:67;;38789:28;;-1:-1:-1;;;38789:28:0;;;;;;;;;;;38750:67;-1:-1:-1;;;;;38832:16:0;;38828:52;;38857:23;;-1:-1:-1;;;38857:23:0;;;;;;;;;;;38828:52;39001:49;39018:1;39022:7;39031:13;:18;;;39001:8;:49::i;:::-;-1:-1:-1;;;;;39346:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39346:31:0;;;;;;;-1:-1:-1;;39346:31:0;;;;;;;39392:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39392:29:0;;;;;;;;;;;39438:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39483:61:0;;;;-1:-1:-1;;;39528:15:0;39483:61;;;;;;;;;;;39818:11;;;39848:24;;;;;:29;39818:11;;39848:29;39844:445;;40073:13;;40059:11;:27;40055:219;;;40143:18;;;40111:24;;;:11;:24;;;;;;;;:50;;40226:28;;;;40184:70;;-1:-1:-1;;;40184:70:0;-1:-1:-1;;;;;;40184:70:0;;;-1:-1:-1;;;;;40111:50:0;;;40184:70;;;;;;;40055:219;39321:979;40336:7;40332:2;-1:-1:-1;;;;;40317:27:0;40326:4;-1:-1:-1;;;;;40317:27:0;;;;;;;;;;;40355:42;38397:2008;;38293:2112;;;:::o;30338:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30448:7:0;30531:13;;30524:4;:20;30493:886;;;30565:31;30599:17;;;:11;:17;;;;;;;;;30565:51;;;;;;;;;-1:-1:-1;;;;;30565:51:0;;;;-1:-1:-1;;;30565:51:0;;;;;;;;;;;-1:-1:-1;;;30565:51:0;;;;;;;;;;;;;;30635:729;;30685:14;;-1:-1:-1;;;;;30685:28:0;;30681:101;;30749:9;30338:1108;-1:-1:-1;;;30338:1108:0:o;30681:101::-;-1:-1:-1;;;31124:6:0;31169:17;;;;:11;:17;;;;;;;;;31157:29;;;;;;;;;-1:-1:-1;;;;;31157:29:0;;;;;-1:-1:-1;;;31157:29:0;;;;;;;;;;;-1:-1:-1;;;31157:29:0;;;;;;;;;;;;;31217:28;31213:109;;31285:9;30338:1108;-1:-1:-1;;;30338:1108:0:o;31213:109::-;31084:261;;;30546:833;30493:886;31407:31;;-1:-1:-1;;;31407:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;35375:104::-;35444:27;35454:2;35458:8;35444:27;;;;;;;;;;;;:9;:27::i;:::-;35375:104;;:::o;43479:667::-;43663:72;;-1:-1:-1;;;43663:72:0;;43642:4;;-1:-1:-1;;;;;43663:36:0;;;;;:72;;2883:10;;43714:4;;43720:7;;43729:5;;43663:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43663:72:0;;;;;;;;-1:-1:-1;;43663:72:0;;;;;;;;;;;;:::i;:::-;;;43659:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43897:13:0;;43893:235;;43943:40;;-1:-1:-1;;;43943:40:0;;;;;;;;;;;43893:235;44086:6;44080:13;44071:6;44067:2;44063:15;44056:38;43659:480;-1:-1:-1;;;;;;43782:55:0;-1:-1:-1;;;43782:55:0;;-1:-1:-1;43659:480:0;43479:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35842:163;35965:32;35971:2;35975:8;35985:5;35992:4;36403:20;36426:13;-1:-1:-1;;;;;36454:16:0;;36450:48;;36479:19;;-1:-1:-1;;;36479:19:0;;;;;;;;;;;36450:48;36513:13;36509:44;;36535:18;;-1:-1:-1;;;36535:18:0;;;;;;;;;;;36509:44;-1:-1:-1;;;;;36904:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36963:49:0;;36904:44;;;;;;;;36963:49;;;;-1:-1:-1;;36904:44:0;;;;;;36963:49;;;;;;;;;;;;;;;;37029:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37079:66:0;;;;-1:-1:-1;;;37129:15:0;37079:66;;;;;;;;;;37029:25;37226:23;;;37270:4;:23;;;;-1:-1:-1;;;;;;37278:13:0;;7075:19;:23;;37278:15;37266:641;;;37314:314;37345:38;;37370:12;;-1:-1:-1;;;;;37345:38:0;;;37362:1;;37345:38;;37362:1;;37345:38;37411:69;37450:1;37454:2;37458:14;;;;;;37474:5;37411:30;:69::i;:::-;37406:174;;37516:40;;-1:-1:-1;;;37516:40:0;;;;;;;;;;;37406:174;37623:3;37607:12;:19;;37314:314;;37709:12;37692:13;;:29;37688:43;;37723:8;;;37688:43;37266:641;;;37772:120;37803:40;;37828:14;;;;;-1:-1:-1;;;;;37803:40:0;;;37820:1;;37803:40;;37820:1;;37803:40;37887:3;37871:12;:19;;37772:120;;37266:641;-1:-1:-1;37921:13:0;:28;37971:60;34556:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592: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:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2423:328::-;2500:6;2508;2516;2569:2;2557:9;2548:7;2544:23;2540:32;2537:52;;;2585:1;2582;2575:12;2537:52;2608:29;2627:9;2608:29;:::i;:::-;2598:39;;2656:38;2690:2;2679:9;2675:18;2656:38;:::i;:::-;2646:48;;2741:2;2730:9;2726:18;2713:32;2703:42;;2423:328;;;;;:::o;2756:248::-;2824:6;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:52;;;2901:1;2898;2891:12;2853:52;-1:-1:-1;;2924:23:1;;;2994:2;2979:18;;;2966:32;;-1:-1:-1;2756:248:1:o;3504:186::-;3563:6;3616:2;3604:9;3595:7;3591:23;3587:32;3584:52;;;3632:1;3629;3622:12;3584:52;3655:29;3674:9;3655:29;:::i;3695:592::-;3766:6;3774;3827:2;3815:9;3806:7;3802:23;3798:32;3795:52;;;3843:1;3840;3833:12;3795:52;3883:9;3870:23;3912:18;3953:2;3945:6;3942:14;3939:34;;;3969:1;3966;3959:12;3939:34;4007:6;3996:9;3992:22;3982:32;;4052:7;4045:4;4041:2;4037:13;4033:27;4023:55;;4074:1;4071;4064:12;4023:55;4114:2;4101:16;4140:2;4132:6;4129:14;4126:34;;;4156:1;4153;4146:12;4126:34;4201:7;4196:2;4187:6;4183:2;4179:15;4175:24;4172:37;4169:57;;;4222:1;4219;4212:12;4169:57;4253:2;4245:11;;;;;4275:6;;-1:-1:-1;3695:592:1;;-1:-1:-1;;;;3695:592:1:o;4292:347::-;4357:6;4365;4418:2;4406:9;4397:7;4393:23;4389:32;4386:52;;;4434:1;4431;4424:12;4386:52;4457:29;4476:9;4457:29;:::i;:::-;4447:39;;4536:2;4525:9;4521:18;4508:32;4583:5;4576:13;4569:21;4562:5;4559:32;4549:60;;4605:1;4602;4595:12;4549:60;4628:5;4618:15;;;4292:347;;;;;:::o;4644:127::-;4705:10;4700:3;4696:20;4693:1;4686:31;4736:4;4733:1;4726:15;4760:4;4757:1;4750:15;4776:1138;4871:6;4879;4887;4895;4948:3;4936:9;4927:7;4923:23;4919:33;4916:53;;;4965:1;4962;4955:12;4916:53;4988:29;5007:9;4988:29;:::i;:::-;4978:39;;5036:38;5070:2;5059:9;5055:18;5036:38;:::i;:::-;5026:48;;5121:2;5110:9;5106:18;5093:32;5083:42;;5176:2;5165:9;5161:18;5148:32;5199:18;5240:2;5232:6;5229:14;5226:34;;;5256:1;5253;5246:12;5226:34;5294:6;5283:9;5279:22;5269:32;;5339:7;5332:4;5328:2;5324:13;5320:27;5310:55;;5361:1;5358;5351:12;5310:55;5397:2;5384:16;5419:2;5415;5412:10;5409:36;;;5425:18;;:::i;:::-;5500:2;5494:9;5468:2;5554:13;;-1:-1:-1;;5550:22:1;;;5574:2;5546:31;5542:40;5530:53;;;5598:18;;;5618:22;;;5595:46;5592:72;;;5644:18;;:::i;:::-;5684:10;5680:2;5673:22;5719:2;5711:6;5704:18;5759:7;5754:2;5749;5745;5741:11;5737:20;5734:33;5731:53;;;5780:1;5777;5770:12;5731:53;5836:2;5831;5827;5823:11;5818:2;5810:6;5806:15;5793:46;5881:1;5876:2;5871;5863:6;5859:15;5855:24;5848:35;5902:6;5892:16;;;;;;;4776:1138;;;;;;;:::o;5919:292::-;5977:6;6030:2;6018:9;6009:7;6005:23;6001:32;5998:52;;;6046:1;6043;6036:12;5998:52;6085:9;6072:23;6135:26;6128:5;6124:38;6117:5;6114:49;6104:77;;6177:1;6174;6167:12;6216:260;6284:6;6292;6345:2;6333:9;6324:7;6320:23;6316:32;6313:52;;;6361:1;6358;6351:12;6313:52;6384:29;6403:9;6384:29;:::i;:::-;6374:39;;6432:38;6466:2;6455:9;6451:18;6432:38;:::i;:::-;6422:48;;6216:260;;;;;:::o;6670:380::-;6749:1;6745:12;;;;6792;;;6813:61;;6867:4;6859:6;6855:17;6845:27;;6813:61;6920:2;6912:6;6909:14;6889:18;6886:38;6883:161;;;6966:10;6961:3;6957:20;6954:1;6947:31;7001:4;6998:1;6991:15;7029:4;7026:1;7019:15;6883:161;;6670:380;;;:::o;7415:127::-;7476:10;7471:3;7467:20;7464:1;7457:31;7507:4;7504:1;7497:15;7531:4;7528:1;7521:15;7547:168;7587:7;7653:1;7649;7645:6;7641:14;7638:1;7635:21;7630:1;7623:9;7616:17;7612:45;7609:71;;;7660:18;;:::i;:::-;-1:-1:-1;7700:9:1;;7547:168::o;7720:127::-;7781:10;7776:3;7772:20;7769:1;7762:31;7812:4;7809:1;7802:15;7836:4;7833:1;7826:15;7852:120;7892:1;7918;7908:35;;7923:18;;:::i;:::-;-1:-1:-1;7957:9:1;;7852:120::o;8685:128::-;8725:3;8756:1;8752:6;8749:1;8746:13;8743:39;;;8762:18;;:::i;:::-;-1:-1:-1;8798:9:1;;8685:128::o;9283:185::-;9325:3;9363:5;9357:12;9378:52;9423:6;9418:3;9411:4;9404:5;9400:16;9378:52;:::i;:::-;9446:16;;;;;9283:185;-1:-1:-1;;9283:185:1:o;9591:1301::-;9868:3;9897:1;9930:6;9924:13;9960:3;9982:1;10010:9;10006:2;10002:18;9992:28;;10070:2;10059:9;10055:18;10092;10082:61;;10136:4;10128:6;10124:17;10114:27;;10082:61;10162:2;10210;10202:6;10199:14;10179:18;10176:38;10173:165;;;-1:-1:-1;;;10237:33:1;;10293:4;10290:1;10283:15;10323:4;10244:3;10311:17;10173:165;10354:18;10381:104;;;;10499:1;10494:320;;;;10347:467;;10381:104;-1:-1:-1;;10414:24:1;;10402:37;;10459:16;;;;-1:-1:-1;10381:104:1;;10494:320;9230:1;9223:14;;;9267:4;9254:18;;10589:1;10603:165;10617:6;10614:1;10611:13;10603:165;;;10695:14;;10682:11;;;10675:35;10738:16;;;;10632:10;;10603:165;;;10607:3;;10797:6;10792:3;10788:16;10781:23;;10347:467;;;;;;;10830:56;10855:30;10881:3;10873:6;10855:30;:::i;:::-;-1:-1:-1;;;9533:20:1;;9578:1;9569:11;;9473:113;10830:56;10823:63;9591:1301;-1:-1:-1;;;;;9591:1301:1:o;11304:523::-;11498:4;-1:-1:-1;;;;;11608:2:1;11600:6;11596:15;11585:9;11578:34;11660:2;11652:6;11648:15;11643:2;11632:9;11628:18;11621:43;;11700:6;11695:2;11684:9;11680:18;11673:34;11743:3;11738:2;11727:9;11723:18;11716:31;11764:57;11816:3;11805:9;11801:19;11793:6;11764:57;:::i;:::-;11756:65;11304:523;-1:-1:-1;;;;;;11304:523:1:o;11832:249::-;11901:6;11954:2;11942:9;11933:7;11929:23;11925:32;11922:52;;;11970:1;11967;11960:12;11922:52;12002:9;11996:16;12021:30;12045:5;12021:30;:::i;12086:135::-;12125:3;-1:-1:-1;;12146:17:1;;12143:43;;;12166:18;;:::i;:::-;-1:-1:-1;12213:1:1;12202:13;;12086:135::o;12226:125::-;12266:4;12294:1;12291;12288:8;12285:34;;;12299:18;;:::i;:::-;-1:-1:-1;12336:9:1;;12226:125::o;12356:112::-;12388:1;12414;12404:35;;12419:18;;:::i;:::-;-1:-1:-1;12453:9:1;;12356:112::o;12473:127::-;12534:10;12529:3;12525:20;12522:1;12515:31;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15
Swarm Source
ipfs://b8c976bbe02f341a1928711e819373702b27760c65cd10d71092b5668477c552
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.