Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
260 OmPu
Holders
76
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 OmPuLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OmniPunks
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-05 */ // 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/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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 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) { 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) { 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) { 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 { _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 virtual 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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: contracts/ggwp.sol pragma solidity ^0.8.4; contract OmniPunks is ERC721A, Ownable { uint256 MAX_MINTS = 5; uint256 MAX_SUPPLY = 3333; uint256 public mintRate = 0.005 ether; string public baseURI = "ipfs://QmPQdJmWBXNm1onQjLUJyaxjF8cbDQyeUd4bgkCT3yJzgw?filename=sneakpeak.png"; constructor(string memory _name, string memory _symbol) ERC721A("OmniPunks", "OmPu") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintRate * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function changeBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function setMintRate(uint256 _mintRate) public onlyOwner { mintRate = _mintRate; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6005600955610d05600a556611c37937e08000600b55610100604052604c60808181529062001c3660a03980516200004091600c9160209091019062000140565b503480156200004e57600080fd5b5060405162001c8238038062001c82833981016040819052620000719162000299565b60408051808201825260098152684f6d6e6950756e6b7360b81b6020808301918252835180850190945260048452634f6d507560e01b908401528151919291620000be9160029162000140565b508051620000d490600390602084019062000140565b50506000805550620000e633620000ee565b505062000353565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e9062000300565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600082601f830112620001f7578081fd5b81516001600160401b03808211156200021457620002146200033d565b604051601f8301601f19908116603f011681019082821181831017156200023f576200023f6200033d565b816040528381526020925086838588010111156200025b578485fd5b8491505b838210156200027e57858201830151818301840152908201906200025f565b838211156200028f57848385830101525b9695505050505050565b60008060408385031215620002ac578182fd5b82516001600160401b0380821115620002c3578384fd5b620002d186838701620001e6565b93506020850151915080821115620002e7578283fd5b50620002f685828601620001e6565b9150509250929050565b600181811c908216806200031557607f821691505b602082108114156200033757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6118d380620003636000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610351578063c87b56dd14610371578063ca0dcf1614610391578063dbe2193f146103a7578063e985e9c5146103c7578063f2fde38b1461041057600080fd5b806370a08231146102b6578063715018a6146102d65780638da5cb5b146102eb57806395d89b4114610309578063a0712d681461031e578063a22cb4651461033157600080fd5b806323b872dd1161010857806323b872dd1461021957806339a0c6f9146102395780633ccfd60b1461025957806342842e0e146102615780636352211e146102815780636c0360eb146102a157600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101f6575b600080fd5b34801561015157600080fd5b506101656101603660046115d7565b610430565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610482565b6040516101719190611705565b3480156101a857600080fd5b506101bc6101b7366004611655565b610514565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef3660046115ae565b610558565b005b34801561020257600080fd5b50600154600054035b604051908152602001610171565b34801561022557600080fd5b506101f46102343660046114c0565b6105e6565b34801561024557600080fd5b506101f461025436600461160f565b6105f1565b6101f461063b565b34801561026d57600080fd5b506101f461027c3660046114c0565b6106a1565b34801561028d57600080fd5b506101bc61029c366004611655565b6106bc565b3480156102ad57600080fd5b5061018f6106ce565b3480156102c257600080fd5b5061020b6102d1366004611474565b61075c565b3480156102e257600080fd5b506101f46107ab565b3480156102f757600080fd5b506008546001600160a01b03166101bc565b34801561031557600080fd5b5061018f6107e1565b6101f461032c366004611655565b6107f0565b34801561033d57600080fd5b506101f461034c366004611574565b610922565b34801561035d57600080fd5b506101f461036c3660046114fb565b6109b8565b34801561037d57600080fd5b5061018f61038c366004611655565b610a09565b34801561039d57600080fd5b5061020b600b5481565b3480156103b357600080fd5b506101f46103c2366004611655565b610a8e565b3480156103d357600080fd5b506101656103e236600461148e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561041c57600080fd5b506101f461042b366004611474565b610abd565b60006001600160e01b031982166380ac58cd60e01b148061046157506001600160e01b03198216635b5e139f60e01b145b8061047c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610491906117db565b80601f01602080910402602001604051908101604052809291908181526020018280546104bd906117db565b801561050a5780601f106104df5761010080835404028352916020019161050a565b820191906000526020600020905b8154815290600101906020018083116104ed57829003601f168201915b5050505050905090565b600061051f82610b55565b61053c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610563826106bc565b9050806001600160a01b0316836001600160a01b031614156105985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105b857506105b681336103e2565b155b156105d6576040516367d9dca160e11b815260040160405180910390fd5b6105e1838383610b80565b505050565b6105e1838383610bdc565b6008546001600160a01b031633146106245760405162461bcd60e51b815260040161061b90611718565b60405180910390fd5b805161063790600c906020840190611349565b5050565b6008546001600160a01b031633146106655760405162461bcd60e51b815260040161061b90611718565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561069e573d6000803e3d6000fd5b50565b6105e1838383604051806020016040528060008152506109b8565b60006106c782610dcc565b5192915050565b600c80546106db906117db565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906117db565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b505050505081565b60006001600160a01b038216610785576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107d55760405162461bcd60e51b815260040161061b90611718565b6107df6000610ee8565b565b606060038054610491906117db565b60095433600090815260056020526040902054600160401b900467ffffffffffffffff1661081e908361174d565b11156108615760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161061b565b600a54816108726001546000540390565b61087c919061174d565b11156108c35760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161061b565b80600b546108d19190611779565b3410156109185760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161061b565b61069e3382610f3a565b6001600160a01b03821633141561094c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c3848484610bdc565b6001600160a01b0383163b151580156109e557506109e384848484610f54565b155b15610a03576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a1482610b55565b610a3157604051630a14c4b560e41b815260040160405180910390fd5b6000610a3b61104c565b9050805160001415610a5c5760405180602001604052806000815250610a87565b80610a668461105b565b604051602001610a77929190611699565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ab85760405162461bcd60e51b815260040161061b90611718565b600b55565b6008546001600160a01b03163314610ae75760405162461bcd60e51b815260040161061b90611718565b6001600160a01b038116610b4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061b565b61069e81610ee8565b600080548210801561047c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610be782610dcc565b9050836001600160a01b031681600001516001600160a01b031614610c1e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610c3c5750610c3c85336103e2565b80610c57575033610c4c84610514565b6001600160a01b0316145b905080610c7757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610c9e57604051633a954ecd60e21b815260040160405180910390fd5b610caa60008487610b80565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d80576000548214610d80578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610ecf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ecd5780516001600160a01b031615610e63579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610ec8579392505050565b610e63565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610637828260405180602001604052806000815250611175565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f899033908990889088906004016116c8565b602060405180830381600087803b158015610fa357600080fd5b505af1925050508015610fd3575060408051601f3d908101601f19168201909252610fd0918101906115f3565b60015b61102e573d808015611001576040519150601f19603f3d011682016040523d82523d6000602084013e611006565b606091505b508051611026576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610491906117db565b60608161107f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110a9578061109381611816565b91506110a29050600a83611765565b9150611083565b60008167ffffffffffffffff8111156110d257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110fc576020820181803683370190505b5090505b841561104457611111600183611798565b915061111e600a86611831565b61112990603061174d565b60f81b81838151811061114c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061116e600a86611765565b9450611100565b6105e183838360016000546001600160a01b0385166111a657604051622e076360e81b815260040160405180910390fd5b836111c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561127157506001600160a01b0387163b15155b156112fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112c26000888480600101955088610f54565b6112df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156112775782600054146112f557600080fd5b611340565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156112fb575b50600055610dc5565b828054611355906117db565b90600052602060002090601f01602090048101928261137757600085556113bd565b82601f1061139057805160ff19168380011785556113bd565b828001600101855582156113bd579182015b828111156113bd5782518255916020019190600101906113a2565b506113c99291506113cd565b5090565b5b808211156113c957600081556001016113ce565b600067ffffffffffffffff808411156113fd576113fd611871565b604051601f8501601f19908116603f0116810190828211818310171561142557611425611871565b8160405280935085815286868601111561143e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146f57600080fd5b919050565b600060208284031215611485578081fd5b610a8782611458565b600080604083850312156114a0578081fd5b6114a983611458565b91506114b760208401611458565b90509250929050565b6000806000606084860312156114d4578081fd5b6114dd84611458565b92506114eb60208501611458565b9150604084013590509250925092565b60008060008060808587031215611510578081fd5b61151985611458565b935061152760208601611458565b925060408501359150606085013567ffffffffffffffff811115611549578182fd5b8501601f81018713611559578182fd5b611568878235602084016113e2565b91505092959194509250565b60008060408385031215611586578182fd5b61158f83611458565b9150602083013580151581146115a3578182fd5b809150509250929050565b600080604083850312156115c0578182fd5b6115c983611458565b946020939093013593505050565b6000602082840312156115e8578081fd5b8135610a8781611887565b600060208284031215611604578081fd5b8151610a8781611887565b600060208284031215611620578081fd5b813567ffffffffffffffff811115611636578182fd5b8201601f81018413611646578182fd5b611044848235602084016113e2565b600060208284031215611666578081fd5b5035919050565b600081518084526116858160208601602086016117af565b601f01601f19169290920160200192915050565b600083516116ab8184602088016117af565b8351908301906116bf8183602088016117af565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116fb9083018461166d565b9695505050505050565b602081526000610a87602083018461166d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561176057611760611845565b500190565b6000826117745761177461185b565b500490565b600081600019048311821515161561179357611793611845565b500290565b6000828210156117aa576117aa611845565b500390565b60005b838110156117ca5781810151838201526020016117b2565b83811115610a035750506000910152565b600181811c908216806117ef57607f821691505b6020821081141561181057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561182a5761182a611845565b5060010190565b6000826118405761184061185b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069e57600080fdfea26469706673582212204651d92ac5f198022cd4f375b0663154b27111a67c1fbb9bc2f3c1945b59a38364736f6c63430008040033697066733a2f2f516d5051644a6d5742584e6d316f6e516a4c554a7961786a463863624451796555643462676b435433794a7a67773f66696c656e616d653d736e65616b7065616b2e706e670000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610351578063c87b56dd14610371578063ca0dcf1614610391578063dbe2193f146103a7578063e985e9c5146103c7578063f2fde38b1461041057600080fd5b806370a08231146102b6578063715018a6146102d65780638da5cb5b146102eb57806395d89b4114610309578063a0712d681461031e578063a22cb4651461033157600080fd5b806323b872dd1161010857806323b872dd1461021957806339a0c6f9146102395780633ccfd60b1461025957806342842e0e146102615780636352211e146102815780636c0360eb146102a157600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101f6575b600080fd5b34801561015157600080fd5b506101656101603660046115d7565b610430565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610482565b6040516101719190611705565b3480156101a857600080fd5b506101bc6101b7366004611655565b610514565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef3660046115ae565b610558565b005b34801561020257600080fd5b50600154600054035b604051908152602001610171565b34801561022557600080fd5b506101f46102343660046114c0565b6105e6565b34801561024557600080fd5b506101f461025436600461160f565b6105f1565b6101f461063b565b34801561026d57600080fd5b506101f461027c3660046114c0565b6106a1565b34801561028d57600080fd5b506101bc61029c366004611655565b6106bc565b3480156102ad57600080fd5b5061018f6106ce565b3480156102c257600080fd5b5061020b6102d1366004611474565b61075c565b3480156102e257600080fd5b506101f46107ab565b3480156102f757600080fd5b506008546001600160a01b03166101bc565b34801561031557600080fd5b5061018f6107e1565b6101f461032c366004611655565b6107f0565b34801561033d57600080fd5b506101f461034c366004611574565b610922565b34801561035d57600080fd5b506101f461036c3660046114fb565b6109b8565b34801561037d57600080fd5b5061018f61038c366004611655565b610a09565b34801561039d57600080fd5b5061020b600b5481565b3480156103b357600080fd5b506101f46103c2366004611655565b610a8e565b3480156103d357600080fd5b506101656103e236600461148e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561041c57600080fd5b506101f461042b366004611474565b610abd565b60006001600160e01b031982166380ac58cd60e01b148061046157506001600160e01b03198216635b5e139f60e01b145b8061047c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610491906117db565b80601f01602080910402602001604051908101604052809291908181526020018280546104bd906117db565b801561050a5780601f106104df5761010080835404028352916020019161050a565b820191906000526020600020905b8154815290600101906020018083116104ed57829003601f168201915b5050505050905090565b600061051f82610b55565b61053c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610563826106bc565b9050806001600160a01b0316836001600160a01b031614156105985760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105b857506105b681336103e2565b155b156105d6576040516367d9dca160e11b815260040160405180910390fd5b6105e1838383610b80565b505050565b6105e1838383610bdc565b6008546001600160a01b031633146106245760405162461bcd60e51b815260040161061b90611718565b60405180910390fd5b805161063790600c906020840190611349565b5050565b6008546001600160a01b031633146106655760405162461bcd60e51b815260040161061b90611718565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561069e573d6000803e3d6000fd5b50565b6105e1838383604051806020016040528060008152506109b8565b60006106c782610dcc565b5192915050565b600c80546106db906117db565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906117db565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b505050505081565b60006001600160a01b038216610785576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107d55760405162461bcd60e51b815260040161061b90611718565b6107df6000610ee8565b565b606060038054610491906117db565b60095433600090815260056020526040902054600160401b900467ffffffffffffffff1661081e908361174d565b11156108615760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161061b565b600a54816108726001546000540390565b61087c919061174d565b11156108c35760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161061b565b80600b546108d19190611779565b3410156109185760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161061b565b61069e3382610f3a565b6001600160a01b03821633141561094c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c3848484610bdc565b6001600160a01b0383163b151580156109e557506109e384848484610f54565b155b15610a03576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a1482610b55565b610a3157604051630a14c4b560e41b815260040160405180910390fd5b6000610a3b61104c565b9050805160001415610a5c5760405180602001604052806000815250610a87565b80610a668461105b565b604051602001610a77929190611699565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ab85760405162461bcd60e51b815260040161061b90611718565b600b55565b6008546001600160a01b03163314610ae75760405162461bcd60e51b815260040161061b90611718565b6001600160a01b038116610b4c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061b565b61069e81610ee8565b600080548210801561047c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610be782610dcc565b9050836001600160a01b031681600001516001600160a01b031614610c1e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610c3c5750610c3c85336103e2565b80610c57575033610c4c84610514565b6001600160a01b0316145b905080610c7757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610c9e57604051633a954ecd60e21b815260040160405180910390fd5b610caa60008487610b80565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d80576000548214610d80578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610ecf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ecd5780516001600160a01b031615610e63579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610ec8579392505050565b610e63565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610637828260405180602001604052806000815250611175565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f899033908990889088906004016116c8565b602060405180830381600087803b158015610fa357600080fd5b505af1925050508015610fd3575060408051601f3d908101601f19168201909252610fd0918101906115f3565b60015b61102e573d808015611001576040519150601f19603f3d011682016040523d82523d6000602084013e611006565b606091505b508051611026576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610491906117db565b60608161107f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110a9578061109381611816565b91506110a29050600a83611765565b9150611083565b60008167ffffffffffffffff8111156110d257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110fc576020820181803683370190505b5090505b841561104457611111600183611798565b915061111e600a86611831565b61112990603061174d565b60f81b81838151811061114c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061116e600a86611765565b9450611100565b6105e183838360016000546001600160a01b0385166111a657604051622e076360e81b815260040160405180910390fd5b836111c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561127157506001600160a01b0387163b15155b156112fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112c26000888480600101955088610f54565b6112df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156112775782600054146112f557600080fd5b611340565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156112fb575b50600055610dc5565b828054611355906117db565b90600052602060002090601f01602090048101928261137757600085556113bd565b82601f1061139057805160ff19168380011785556113bd565b828001600101855582156113bd579182015b828111156113bd5782518255916020019190600101906113a2565b506113c99291506113cd565b5090565b5b808211156113c957600081556001016113ce565b600067ffffffffffffffff808411156113fd576113fd611871565b604051601f8501601f19908116603f0116810190828211818310171561142557611425611871565b8160405280935085815286868601111561143e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146f57600080fd5b919050565b600060208284031215611485578081fd5b610a8782611458565b600080604083850312156114a0578081fd5b6114a983611458565b91506114b760208401611458565b90509250929050565b6000806000606084860312156114d4578081fd5b6114dd84611458565b92506114eb60208501611458565b9150604084013590509250925092565b60008060008060808587031215611510578081fd5b61151985611458565b935061152760208601611458565b925060408501359150606085013567ffffffffffffffff811115611549578182fd5b8501601f81018713611559578182fd5b611568878235602084016113e2565b91505092959194509250565b60008060408385031215611586578182fd5b61158f83611458565b9150602083013580151581146115a3578182fd5b809150509250929050565b600080604083850312156115c0578182fd5b6115c983611458565b946020939093013593505050565b6000602082840312156115e8578081fd5b8135610a8781611887565b600060208284031215611604578081fd5b8151610a8781611887565b600060208284031215611620578081fd5b813567ffffffffffffffff811115611636578182fd5b8201601f81018413611646578182fd5b611044848235602084016113e2565b600060208284031215611666578081fd5b5035919050565b600081518084526116858160208601602086016117af565b601f01601f19169290920160200192915050565b600083516116ab8184602088016117af565b8351908301906116bf8183602088016117af565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116fb9083018461166d565b9695505050505050565b602081526000610a87602083018461166d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561176057611760611845565b500190565b6000826117745761177461185b565b500490565b600081600019048311821515161561179357611793611845565b500290565b6000828210156117aa576117aa611845565b500390565b60005b838110156117ca5781810151838201526020016117b2565b83811115610a035750506000910152565b600181811c908216806117ef57607f821691505b6020821081141561181057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561182a5761182a611845565b5060010190565b6000826118405761184061185b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461069e57600080fdfea26469706673582212204651d92ac5f198022cd4f375b0663154b27111a67c1fbb9bc2f3c1945b59a38364736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string):
Arg [1] : _symbol (string):
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44794:1237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;-1:-1:-1;26972:305:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;26972:305:0;;;;;;;;30085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31588:204::-;;;;;;;;;;-1:-1:-1;31588:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;31588:204:0;5031:102:1;31151:371:0;;;;;;;;;;-1:-1:-1;31151:371:0;;;;;:::i;:::-;;:::i;:::-;;26221:303;;;;;;;;;;-1:-1:-1;26475:12:0;;26265:7;26459:13;:28;26221:303;;;8009:25:1;;;7997:2;7982:18;26221:303:0;7964:76:1;32453:170:0;;;;;;;;;;-1:-1:-1;32453:170:0;;;;;:::i;:::-;;:::i;45823:101::-;;;;;;;;;;-1:-1:-1;45823:101:0;;;;;:::i;:::-;;:::i;45593:114::-;;;:::i;32694:185::-;;;;;;;;;;-1:-1:-1;32694:185:0;;;;;:::i;:::-;;:::i;29893:125::-;;;;;;;;;;-1:-1:-1;29893:125:0;;;;;:::i;:::-;;:::i;44946:102::-;;;;;;;;;;;;;:::i;27341:206::-;;;;;;;;;;-1:-1:-1;27341:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;30254:104;;;;;;;;;;;;;:::i;45152:433::-;;;;;;:::i;:::-;;:::i;31864:287::-;;;;;;;;;;-1:-1:-1;31864:287:0;;;;;:::i;:::-;;:::i;32950:369::-;;;;;;;;;;-1:-1:-1;32950:369:0;;;;;:::i;:::-;;:::i;30429:318::-;;;;;;;;;;-1:-1:-1;30429:318:0;;;;;:::i;:::-;;:::i;44900:37::-;;;;;;;;;;;;;;;;45932:96;;;;;;;;;;-1:-1:-1;45932:96:0;;;;;:::i;:::-;;:::i;32222:164::-;;;;;;;;;;-1:-1:-1;32222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32343:25:0;;;32319:4;32343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32222:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;26972:305::-;27074:4;-1:-1:-1;;;;;;27111:40:0;;-1:-1:-1;;;27111:40:0;;:105;;-1:-1:-1;;;;;;;27168:48:0;;-1:-1:-1;;;27168:48:0;27111:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27233:36;27091:178;26972:305;-1:-1:-1;;26972:305:0:o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;-1:-1:-1;;;31706:34:0;;;;;;;;;;;31676:64;-1:-1:-1;31760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31760:24:0;;31588:204::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;-1:-1:-1;;;;;31279:11:0;:2;-1:-1:-1;;;;;31279:11:0;;31275:48;;;31299:24;;-1:-1:-1;;;31299:24:0;;;;;;;;;;;31275:48;2883:10;-1:-1:-1;;;;;31340:21:0;;;;;;:63;;-1:-1:-1;31366:37:0;31383:5;2883:10;32222:164;:::i;31366:37::-;31365:38;31340:63;31336:138;;;31427:35;;-1:-1:-1;;;31427:35:0;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31151:371;;;:::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;45823:101::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;45898:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45823:101:::0;:::o;45593:114::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;45651:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;45677:21:::1;45651:48:::0;::::1;;;::::0;::::1;::::0;;;45677:21;4152:6;45651:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45593:114::o:0;32694:185::-;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;29893:125::-;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;29893:125;-1:-1:-1;;29893:125:0:o;44946:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27341:206::-;27405:7;-1:-1:-1;;;;;27429:19:0;;27425:60;;27457:28;;-1:-1:-1;;;27457:28:0;;;;;;;;;;;27425:60;-1:-1:-1;;;;;;27511:19:0;;;;;:12;:19;;;;;:27;;;;27341:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;45152:433::-;45340:9;;45325:10;27690:7;27725:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27725:32:0;;;;45300:36;;:8;:36;:::i;:::-;:49;;45292:80;;;;-1:-1:-1;;;45292:80:0;;6656:2:1;45292:80:0;;;6638:21:1;6695:2;6675:18;;;6668:30;-1:-1:-1;;;6714:18:1;;;6707:48;6772:18;;45292:80:0;6628:168:1;45292:80:0;45419:10;;45407:8;45391:13;26475:12;;26265:7;26459:13;:28;;26221:303;45391:13;:24;;;;:::i;:::-;:38;;45383:73;;;;-1:-1:-1;;;45383:73:0;;7003:2:1;45383:73:0;;;6985:21:1;7042:2;7022:18;;;7015:30;-1:-1:-1;;;7061:18:1;;;7054:52;7123:18;;45383:73:0;6975:172:1;45383:73:0;45500:8;45489;;:19;;;;:::i;:::-;45475:9;:34;;45467:68;;;;-1:-1:-1;;;45467:68:0;;7715:2:1;45467:68:0;;;7697:21:1;7754:2;7734:18;;;7727:30;-1:-1:-1;;;7773:18:1;;;7766:51;7834:18;;45467:68:0;7687:171:1;45467:68:0;45546:31;45556:10;45568:8;45546:9;:31::i;31864:287::-;-1:-1:-1;;;;;31963:24:0;;2883:10;31963:24;31959:54;;;31996:17;;-1:-1:-1;;;31996:17:0;;;;;;;;;;;31959:54;2883:10;32026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32026:53:0;;;;;;;;;;32095:48;;5771:41:1;;;32026:42:0;;2883:10;32095:48;;5744:18:1;32095:48:0;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;-1:-1:-1;;;;;33160:13:0;;7075:19;:23;;33160:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;-1:-1:-1;;;33260:40:0;;;;;;;;;;;33156:156;32950:369;;;;:::o;30429:318::-;30502:13;30533:16;30541:7;30533;:16::i;:::-;30528:59;;30558:29;;-1:-1:-1;;;30558:29:0;;;;;;;;;;;30528:59;30600:21;30624:10;:8;:10::i;:::-;30600:34;;30658:7;30652:21;30677:1;30652:26;;:87;;;;;;;;;;;;;;;;;30705:7;30714:18;:7;:16;:18::i;:::-;30688:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30652:87;30645:94;30429:318;-1:-1:-1;;;30429:318:0:o;45932:96::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46000:8:::1;:20:::0;45932:96::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;6249:2:1;5069:73:0::1;::::0;::::1;6231:21:1::0;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:1;;;6371:36;6424:19;;5069:73:0::1;6221:228:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33574:187::-:0;33631:4;33695:13;;33685:7;:23;33655:98;;;;-1:-1:-1;;33726:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33726:27:0;;;;33725:28;;33574:187::o;41744:196::-;41859:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41859:29:0;-1:-1:-1;;;;;41859:29:0;;;;;;;;;41904:28;;41859:24;;41904:28;;;;;;;41744:196;;;:::o;36687:2130::-;36802:35;36840:21;36853:7;36840:12;:21::i;:::-;36802:59;;36900:4;-1:-1:-1;;;;;36878:26:0;:13;:18;;;-1:-1:-1;;;;;36878:26:0;;36874:67;;36913:28;;-1:-1:-1;;;36913:28:0;;;;;;;;;;;36874:67;36954:22;2883:10;-1:-1:-1;;;;;36980:20:0;;;;:73;;-1:-1:-1;37017:36:0;37034:4;2883:10;32222:164;:::i;37017:36::-;36980:126;;;-1:-1:-1;2883:10:0;37070:20;37082:7;37070:11;:20::i;:::-;-1:-1:-1;;;;;37070:36:0;;36980:126;36954:153;;37125:17;37120:66;;37151:35;;-1:-1:-1;;;37151:35:0;;;;;;;;;;;37120:66;-1:-1:-1;;;;;37201:16:0;;37197:52;;37226:23;;-1:-1:-1;;;37226:23:0;;;;;;;;;;;37197:52;37370:35;37387:1;37391:7;37400:4;37370:8;:35::i;:::-;-1:-1:-1;;;;;37701:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37701:31:0;;;;;;;-1:-1:-1;;37701:31:0;;;;;;;37747:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37747:29:0;;;;;;;;;;;37827:20;;;:11;:20;;;;;;37862:18;;-1:-1:-1;;;;;;37895:49:0;;;;-1:-1:-1;;;37928:15:0;37895:49;;;;;;;;;;38218:11;;38278:24;;;;;38321:13;;37827:20;;38278:24;;38321:13;38317:384;;38531:13;;38516:11;:28;38512:174;;38569:20;;38638:28;;;;38612:54;;-1:-1:-1;;;38612:54:0;-1:-1:-1;;;;;;38612:54:0;;;-1:-1:-1;;;;;38569:20:0;;38612:54;;;;38512:174;36687:2130;;;38748:7;38744:2;-1:-1:-1;;;;;38729:27:0;38738:4;-1:-1:-1;;;;;38729:27:0;;;;;;;;;;;38767:42;36687:2130;;;;;:::o;28722:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28833:7:0;28916:13;;28909:4;:20;28878:886;;;28950:31;28984:17;;;:11;:17;;;;;;;;;28950:51;;;;;;;;;-1:-1:-1;;;;;28950:51:0;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;;;;29020:729;;29070:14;;-1:-1:-1;;;;;29070:28:0;;29066:101;;29134:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29066:101::-;-1:-1:-1;;;29509:6:0;29554:17;;;;:11;:17;;;;;;;;;29542:29;;;;;;;;;-1:-1:-1;;;;;29542:29:0;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;;;29602:28;29598:109;;29670:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29598:109::-;29469:261;;;28878:886;;29792:31;;-1:-1:-1;;;29792: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;5349:191;;:::o;33769:104::-;33838:27;33848:2;33852:8;33838:27;;;;;;;;;;;;:9;:27::i;42432:667::-;42616:72;;-1:-1:-1;;;42616:72:0;;42595:4;;-1:-1:-1;;;;;42616:36:0;;;;;:72;;2883:10;;42667:4;;42673:7;;42682:5;;42616:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42616:72:0;;;;;;;;-1:-1:-1;;42616:72:0;;;;;;;;;;;;:::i;:::-;;;42612:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42850:13:0;;42846:235;;42896:40;;-1:-1:-1;;;42896:40:0;;;;;;;;;;;42846:235;43039:6;43033:13;43024:6;43020:2;43016:15;43009:38;42612:480;-1:-1:-1;;;;;;42735:55:0;-1:-1:-1;;;42735:55:0;;-1:-1:-1;42612:480:0;42432:667;;;;;;:::o;45715:100::-;45767:13;45800:7;45793:14;;;;;:::i;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;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34236:163;34359:32;34365:2;34369:8;34379:5;34386:4;34797:20;34820:13;-1:-1:-1;;;;;34848:16:0;;34844:48;;34873:19;;-1:-1:-1;;;34873:19:0;;;;;;;;;;;34844:48;34907:13;34903:44;;34929:18;;-1:-1:-1;;;34929:18:0;;;;;;;;;;;34903:44;-1:-1:-1;;;;;35298:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35357:49:0;;35298:44;;;;;;;;35357:49;;;-1:-1:-1;;;;;35298:44:0;;;;;;35357:49;;;;;;;;;;;;;;;;35423:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35473:66:0;;;;-1:-1:-1;;;35523:15:0;35473:66;;;;;;;;;;35423:25;35620:23;;;35664:4;:23;;;;-1:-1:-1;;;;;;35672:13:0;;7075:19;:23;;35672:15;35660:641;;;35708:314;35739:38;;35764:12;;-1:-1:-1;;;;;35739:38:0;;;35756:1;;35739:38;;35756:1;;35739:38;35805:69;35844:1;35848:2;35852:14;;;;;;35868:5;35805:30;:69::i;:::-;35800:174;;35910:40;;-1:-1:-1;;;35910:40:0;;;;;;;;;;;35800:174;36017:3;36001:12;:19;;35708:314;;36103:12;36086:13;;:29;36082:43;;36117:8;;;36082:43;35660:641;;;36166:120;36197:40;;36222:14;;;;;-1:-1:-1;;;;;36197:40:0;;;36214:1;;36197:40;;36214:1;;36197:40;36281:3;36265:12;:19;;36166:120;;35660:641;-1:-1:-1;36315:13:0;:28;36365:60;32950:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;7152:356::-;7354:2;7336:21;;;7373:18;;;7366:30;7432:34;7427:2;7412:18;;7405:62;7499:2;7484:18;;7326:182::o;8045:128::-;8085:3;8116:1;8112:6;8109:1;8106:13;8103:2;;;8122:18;;:::i;:::-;-1:-1:-1;8158:9:1;;8093:80::o;8178:120::-;8218:1;8244;8234:2;;8249:18;;:::i;:::-;-1:-1:-1;8283:9:1;;8224:74::o;8303:168::-;8343:7;8409:1;8405;8401:6;8397:14;8394:1;8391:21;8386:1;8379:9;8372:17;8368:45;8365:2;;;8416:18;;:::i;:::-;-1:-1:-1;8456:9:1;;8355:116::o;8476:125::-;8516:4;8544:1;8541;8538:8;8535:2;;;8549:18;;:::i;:::-;-1:-1:-1;8586:9:1;;8525:76::o;8606:258::-;8678:1;8688:113;8702:6;8699:1;8696:13;8688:113;;;8778:11;;;8772:18;8759:11;;;8752:39;8724:2;8717:10;8688:113;;;8819:6;8816:1;8813:13;8810:2;;;-1:-1:-1;;8854:1:1;8836:16;;8829:27;8659:205::o;8869:380::-;8948:1;8944:12;;;;8991;;;9012:2;;9066:4;9058:6;9054:17;9044:27;;9012:2;9119;9111:6;9108:14;9088:18;9085:38;9082:2;;;9165:10;9160:3;9156:20;9153:1;9146:31;9200:4;9197:1;9190:15;9228:4;9225:1;9218:15;9082:2;;8924:325;;;:::o;9254:135::-;9293:3;-1:-1:-1;;9314:17:1;;9311:2;;;9334:18;;:::i;:::-;-1:-1:-1;9381:1:1;9370:13;;9301:88::o;9394:112::-;9426:1;9452;9442:2;;9457:18;;:::i;:::-;-1:-1:-1;9491:9:1;;9432:74::o;9511:127::-;9572:10;9567:3;9563:20;9560:1;9553:31;9603:4;9600:1;9593:15;9627:4;9624:1;9617:15;9643:127;9704:10;9699:3;9695:20;9692:1;9685:31;9735:4;9732:1;9725:15;9759:4;9756:1;9749:15;9775:127;9836:10;9831:3;9827:20;9824:1;9817:31;9867:4;9864:1;9857:15;9891:4;9888:1;9881:15;9907:131;-1:-1:-1;;;;;;9981:32:1;;9971:43;;9961:2;;10028:1;10025;10018:12
Swarm Source
ipfs://4651d92ac5f198022cd4f375b0663154b27111a67c1fbb9bc2f3c1945b59a383
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.