ERC-721
Overview
Max Total Supply
593 HAC
Holders
333
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 HACLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HypeApeClub
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-19 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/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/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/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() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/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/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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; contract HypeApeClub is ERC721, Ownable { uint256 public constant MAX_SUPPLY = 888; uint256 private mintCount = 0; uint256 constant PRICE = 88000000000000000; string baseTokenURI; bool public saleOpen = false; event Minted(uint256 totalMinted); constructor(string memory baseURI) ERC721("Hype Ape Club", "HAC") { setBaseURI(baseURI); } function totalSupply() public view returns (uint256) { return mintCount; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function toggleSale() external onlyOwner { saleOpen = !saleOpen; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } function mint(address _to, uint256 _count) external payable { uint256 supply = totalSupply(); require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply"); require(_count > 0, "Minimum 1 NFT has to be minted per transaction"); if (msg.sender != owner()) { require(saleOpen, "Sale is not open yet"); require( _count <= 6, "Maximum 6 NFTs can be minted per transaction" ); require( msg.value >= PRICE * _count, "Ether sent with this transaction is not correct" ); } mintCount += _count; for (uint256 i = 0; i < _count; i++) { _safeMint(_to, ++supply); emit Minted(supply); } } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006007556009805460ff191690553480156200002057600080fd5b506040516200214f3803806200214f83398101604081905262000043916200024b565b604080518082018252600d81526c243cb8329020b8329021b63ab160991b60208083019182528351808501909452600384526248414360e81b9084015281519192916200009391600091620001a5565b508051620000a9906001906020840190620001a5565b505050620000c6620000c0620000d860201b60201c565b620000dc565b620000d1816200012e565b50620003a2565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000138620000d8565b6001600160a01b03166200014b62000196565b6001600160a01b0316146200017d5760405162461bcd60e51b815260040162000174906200031a565b60405180910390fd5b805162000192906008906020840190620001a5565b5050565b6006546001600160a01b031690565b828054620001b3906200034f565b90600052602060002090601f016020900481019282620001d7576000855562000222565b82601f10620001f257805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022257825182559160200191906001019062000205565b506200023092915062000234565b5090565b5b8082111562000230576000815560010162000235565b600060208083850312156200025e578182fd5b82516001600160401b038082111562000275578384fd5b818501915085601f83011262000289578384fd5b8151818111156200029e576200029e6200038c565b604051601f8201601f1916810185018381118282101715620002c457620002c46200038c565b6040528181528382018501881015620002db578586fd5b8592505b81831015620002fe5783830185015181840186015291840191620002df565b818311156200030f57858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200036457607f821691505b602082108114156200038657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d9d80620003b26000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b657806399288dbb1161006f57806399288dbb1461033f578063a22cb46514610354578063b88d4fde14610374578063c87b56dd14610394578063e985e9c5146103b4578063f2fde38b146103d457610140565b80636352211e146102ab57806370a08231146102cb578063715018a6146102eb5780637d8966e4146103005780638da5cb5b1461031557806395d89b411461032a57610140565b806323b872dd1161010857806323b872dd1461020e57806332cb6b0c1461022e5780633ccfd60b1461024357806340c10f191461025857806342842e0e1461026b57806355f804b31461028b57610140565b806301ffc9a71461014557806306fdde031461017b578063081812fc1461019d578063095ea7b3146101ca57806318160ddd146101ec575b600080fd5b34801561015157600080fd5b506101656101603660046114d4565b6103f4565b6040516101729190611619565b60405180910390f35b34801561018757600080fd5b5061019061043c565b6040516101729190611624565b3480156101a957600080fd5b506101bd6101b8366004611552565b6104ce565b60405161017291906115c8565b3480156101d657600080fd5b506101ea6101e53660046114ab565b61051a565b005b3480156101f857600080fd5b506102016105b2565b6040516101729190611c0e565b34801561021a57600080fd5b506101ea6102293660046113bd565b6105b8565b34801561023a57600080fd5b506102016105f0565b34801561024f57600080fd5b506101ea6105f6565b6101ea6102663660046114ab565b6106b4565b34801561027757600080fd5b506101ea6102863660046113bd565b610826565b34801561029757600080fd5b506101ea6102a636600461150c565b610841565b3480156102b757600080fd5b506101bd6102c6366004611552565b610897565b3480156102d757600080fd5b506102016102e6366004611371565b6108cc565b3480156102f757600080fd5b506101ea610910565b34801561030c57600080fd5b506101ea61095b565b34801561032157600080fd5b506101bd6109ae565b34801561033657600080fd5b506101906109bd565b34801561034b57600080fd5b506101656109cc565b34801561036057600080fd5b506101ea61036f366004611471565b6109d5565b34801561038057600080fd5b506101ea61038f3660046113f8565b610aa3565b3480156103a057600080fd5b506101906103af366004611552565b610adc565b3480156103c057600080fd5b506101656103cf36600461138b565b610b5f565b3480156103e057600080fd5b506101ea6103ef366004611371565b610b8d565b60006001600160e01b031982166380ac58cd60e01b148061042557506001600160e01b03198216635b5e139f60e01b145b80610434575061043482610bfb565b90505b919050565b60606000805461044b90611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611ca5565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b60006104d982610c14565b6104fe5760405162461bcd60e51b81526004016104f59061196e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061052582610897565b9050806001600160a01b0316836001600160a01b031614156105595760405162461bcd60e51b81526004016104f590611ad6565b806001600160a01b031661056b610c31565b6001600160a01b031614806105875750610587816103cf610c31565b6105a35760405162461bcd60e51b81526004016104f590611849565b6105ad8383610c35565b505050565b60075490565b6105c96105c3610c31565b82610ca3565b6105e55760405162461bcd60e51b81526004016104f590611b71565b6105ad838383610d28565b61037881565b6105fe610c31565b6001600160a01b031661060f6109ae565b6001600160a01b0316146106355760405162461bcd60e51b81526004016104f590611a09565b6000336001600160a01b03164760405161064e906115c5565b60006040518083038185875af1925050503d806000811461068b576040519150601f19603f3d011682016040523d82523d6000602084013e610690565b606091505b50509050806106b15760405162461bcd60e51b81526004016104f590611b47565b50565b60006106be6105b2565b90506103786106cd8383611c17565b11156106eb5760405162461bcd60e51b81526004016104f590611b17565b6000821161070b5760405162461bcd60e51b81526004016104f590611637565b6107136109ae565b6001600160a01b0316336001600160a01b03161461079f5760095460ff1661074d5760405162461bcd60e51b81526004016104f5906117cf565b600682111561076e5760405162461bcd60e51b81526004016104f590611bc2565b61078082670138a388a43c0000611c43565b34101561079f5760405162461bcd60e51b81526004016104f5906119ba565b81600760008282546107b19190611c17565b90915550600090505b82811015610820576107d7846107cf84611ce0565b935083610e55565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516108069190611c0e565b60405180910390a18061081881611ce0565b9150506107ba565b50505050565b6105ad83838360405180602001604052806000815250610aa3565b610849610c31565b6001600160a01b031661085a6109ae565b6001600160a01b0316146108805760405162461bcd60e51b81526004016104f590611a09565b8051610893906008906020840190611251565b5050565b6000818152600260205260408120546001600160a01b0316806104345760405162461bcd60e51b81526004016104f5906118f0565b60006001600160a01b0382166108f45760405162461bcd60e51b81526004016104f5906118a6565b506001600160a01b031660009081526003602052604090205490565b610918610c31565b6001600160a01b03166109296109ae565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016104f590611a09565b6109596000610e6f565b565b610963610c31565b6001600160a01b03166109746109ae565b6001600160a01b03161461099a5760405162461bcd60e51b81526004016104f590611a09565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b60606001805461044b90611ca5565b60095460ff1681565b6109dd610c31565b6001600160a01b0316826001600160a01b03161415610a0e5760405162461bcd60e51b81526004016104f590611798565b8060056000610a1b610c31565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a5f610c31565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a979190611619565b60405180910390a35050565b610ab4610aae610c31565b83610ca3565b610ad05760405162461bcd60e51b81526004016104f590611b71565b61082084848484610ec1565b6060610ae782610c14565b610b035760405162461bcd60e51b81526004016104f590611a87565b6000610b0d610ef4565b90506000815111610b2d5760405180602001604052806000815250610b58565b80610b3784610f03565b604051602001610b48929190611596565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b95610c31565b6001600160a01b0316610ba66109ae565b6001600160a01b031614610bcc5760405162461bcd60e51b81526004016104f590611a09565b6001600160a01b038116610bf25760405162461bcd60e51b81526004016104f5906116d7565b6106b181610e6f565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c6a82610897565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cae82610c14565b610cca5760405162461bcd60e51b81526004016104f5906117fd565b6000610cd583610897565b9050806001600160a01b0316846001600160a01b03161480610d105750836001600160a01b0316610d05846104ce565b6001600160a01b0316145b80610d205750610d208185610b5f565b949350505050565b826001600160a01b0316610d3b82610897565b6001600160a01b031614610d615760405162461bcd60e51b81526004016104f590611a3e565b6001600160a01b038216610d875760405162461bcd60e51b81526004016104f590611754565b610d928383836105ad565b610d9d600082610c35565b6001600160a01b0383166000908152600360205260408120805460019290610dc6908490611c62565b90915550506001600160a01b0382166000908152600360205260408120805460019290610df4908490611c17565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61089382826040518060200160405280600081525061101e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ecc848484610d28565b610ed884848484611051565b6108205760405162461bcd60e51b81526004016104f590611685565b60606008805461044b90611ca5565b606081610f2857506040805180820190915260018152600360fc1b6020820152610437565b8160005b8115610f525780610f3c81611ce0565b9150610f4b9050600a83611c2f565b9150610f2c565b60008167ffffffffffffffff811115610f7b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fa5576020820181803683370190505b5090505b8415610d2057610fba600183611c62565b9150610fc7600a86611cfb565b610fd2906030611c17565b60f81b818381518110610ff557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611017600a86611c2f565b9450610fa9565b611028838361116c565b6110356000848484611051565b6105ad5760405162461bcd60e51b81526004016104f590611685565b6000611065846001600160a01b031661124b565b1561116157836001600160a01b031663150b7a02611081610c31565b8786866040518563ffffffff1660e01b81526004016110a394939291906115dc565b602060405180830381600087803b1580156110bd57600080fd5b505af19250505080156110ed575060408051601f3d908101601f191682019092526110ea918101906114f0565b60015b611147573d80801561111b576040519150601f19603f3d011682016040523d82523d6000602084013e611120565b606091505b50805161113f5760405162461bcd60e51b81526004016104f590611685565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d20565b506001949350505050565b6001600160a01b0382166111925760405162461bcd60e51b81526004016104f590611939565b61119b81610c14565b156111b85760405162461bcd60e51b81526004016104f59061171d565b6111c4600083836105ad565b6001600160a01b03821660009081526003602052604081208054600192906111ed908490611c17565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461125d90611ca5565b90600052602060002090601f01602090048101928261127f57600085556112c5565b82601f1061129857805160ff19168380011785556112c5565b828001600101855582156112c5579182015b828111156112c55782518255916020019190600101906112aa565b506112d19291506112d5565b5090565b5b808211156112d157600081556001016112d6565b600067ffffffffffffffff8084111561130557611305611d3b565b604051601f8501601f19168101602001828111828210171561132957611329611d3b565b60405284815291508183850186101561134157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461043757600080fd5b600060208284031215611382578081fd5b610b588261135a565b6000806040838503121561139d578081fd5b6113a68361135a565b91506113b46020840161135a565b90509250929050565b6000806000606084860312156113d1578081fd5b6113da8461135a565b92506113e86020850161135a565b9150604084013590509250925092565b6000806000806080858703121561140d578081fd5b6114168561135a565b93506114246020860161135a565b925060408501359150606085013567ffffffffffffffff811115611446578182fd5b8501601f81018713611456578182fd5b611465878235602084016112ea565b91505092959194509250565b60008060408385031215611483578182fd5b61148c8361135a565b9150602083013580151581146114a0578182fd5b809150509250929050565b600080604083850312156114bd578182fd5b6114c68361135a565b946020939093013593505050565b6000602082840312156114e5578081fd5b8135610b5881611d51565b600060208284031215611501578081fd5b8151610b5881611d51565b60006020828403121561151d578081fd5b813567ffffffffffffffff811115611533578182fd5b8201601f81018413611543578182fd5b610d20848235602084016112ea565b600060208284031215611563578081fd5b5035919050565b60008151808452611582816020860160208601611c79565b601f01601f19169290920160200192915050565b600083516115a8818460208801611c79565b8351908301906115bc818360208801611c79565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061160f9083018461156a565b9695505050505050565b901515815260200190565b600060208252610b58602083018461156a565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4d6178696d756d2036204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b90815260200190565b60008219821115611c2a57611c2a611d0f565b500190565b600082611c3e57611c3e611d25565b500490565b6000816000190483118215151615611c5d57611c5d611d0f565b500290565b600082821015611c7457611c74611d0f565b500390565b60005b83811015611c94578181015183820152602001611c7c565b838111156108205750506000910152565b600281046001821680611cb957607f821691505b60208210811415611cda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cf457611cf4611d0f565b5060010190565b600082611d0a57611d0a611d25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106b157600080fdfea26469706673582212209fb2486208ac297334c9f4479a23c439c9a56638fdd2574a1bee1873867076e764736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101405760003560e01c80636352211e116100b657806399288dbb1161006f57806399288dbb1461033f578063a22cb46514610354578063b88d4fde14610374578063c87b56dd14610394578063e985e9c5146103b4578063f2fde38b146103d457610140565b80636352211e146102ab57806370a08231146102cb578063715018a6146102eb5780637d8966e4146103005780638da5cb5b1461031557806395d89b411461032a57610140565b806323b872dd1161010857806323b872dd1461020e57806332cb6b0c1461022e5780633ccfd60b1461024357806340c10f191461025857806342842e0e1461026b57806355f804b31461028b57610140565b806301ffc9a71461014557806306fdde031461017b578063081812fc1461019d578063095ea7b3146101ca57806318160ddd146101ec575b600080fd5b34801561015157600080fd5b506101656101603660046114d4565b6103f4565b6040516101729190611619565b60405180910390f35b34801561018757600080fd5b5061019061043c565b6040516101729190611624565b3480156101a957600080fd5b506101bd6101b8366004611552565b6104ce565b60405161017291906115c8565b3480156101d657600080fd5b506101ea6101e53660046114ab565b61051a565b005b3480156101f857600080fd5b506102016105b2565b6040516101729190611c0e565b34801561021a57600080fd5b506101ea6102293660046113bd565b6105b8565b34801561023a57600080fd5b506102016105f0565b34801561024f57600080fd5b506101ea6105f6565b6101ea6102663660046114ab565b6106b4565b34801561027757600080fd5b506101ea6102863660046113bd565b610826565b34801561029757600080fd5b506101ea6102a636600461150c565b610841565b3480156102b757600080fd5b506101bd6102c6366004611552565b610897565b3480156102d757600080fd5b506102016102e6366004611371565b6108cc565b3480156102f757600080fd5b506101ea610910565b34801561030c57600080fd5b506101ea61095b565b34801561032157600080fd5b506101bd6109ae565b34801561033657600080fd5b506101906109bd565b34801561034b57600080fd5b506101656109cc565b34801561036057600080fd5b506101ea61036f366004611471565b6109d5565b34801561038057600080fd5b506101ea61038f3660046113f8565b610aa3565b3480156103a057600080fd5b506101906103af366004611552565b610adc565b3480156103c057600080fd5b506101656103cf36600461138b565b610b5f565b3480156103e057600080fd5b506101ea6103ef366004611371565b610b8d565b60006001600160e01b031982166380ac58cd60e01b148061042557506001600160e01b03198216635b5e139f60e01b145b80610434575061043482610bfb565b90505b919050565b60606000805461044b90611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461047790611ca5565b80156104c45780601f10610499576101008083540402835291602001916104c4565b820191906000526020600020905b8154815290600101906020018083116104a757829003601f168201915b5050505050905090565b60006104d982610c14565b6104fe5760405162461bcd60e51b81526004016104f59061196e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061052582610897565b9050806001600160a01b0316836001600160a01b031614156105595760405162461bcd60e51b81526004016104f590611ad6565b806001600160a01b031661056b610c31565b6001600160a01b031614806105875750610587816103cf610c31565b6105a35760405162461bcd60e51b81526004016104f590611849565b6105ad8383610c35565b505050565b60075490565b6105c96105c3610c31565b82610ca3565b6105e55760405162461bcd60e51b81526004016104f590611b71565b6105ad838383610d28565b61037881565b6105fe610c31565b6001600160a01b031661060f6109ae565b6001600160a01b0316146106355760405162461bcd60e51b81526004016104f590611a09565b6000336001600160a01b03164760405161064e906115c5565b60006040518083038185875af1925050503d806000811461068b576040519150601f19603f3d011682016040523d82523d6000602084013e610690565b606091505b50509050806106b15760405162461bcd60e51b81526004016104f590611b47565b50565b60006106be6105b2565b90506103786106cd8383611c17565b11156106eb5760405162461bcd60e51b81526004016104f590611b17565b6000821161070b5760405162461bcd60e51b81526004016104f590611637565b6107136109ae565b6001600160a01b0316336001600160a01b03161461079f5760095460ff1661074d5760405162461bcd60e51b81526004016104f5906117cf565b600682111561076e5760405162461bcd60e51b81526004016104f590611bc2565b61078082670138a388a43c0000611c43565b34101561079f5760405162461bcd60e51b81526004016104f5906119ba565b81600760008282546107b19190611c17565b90915550600090505b82811015610820576107d7846107cf84611ce0565b935083610e55565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a826040516108069190611c0e565b60405180910390a18061081881611ce0565b9150506107ba565b50505050565b6105ad83838360405180602001604052806000815250610aa3565b610849610c31565b6001600160a01b031661085a6109ae565b6001600160a01b0316146108805760405162461bcd60e51b81526004016104f590611a09565b8051610893906008906020840190611251565b5050565b6000818152600260205260408120546001600160a01b0316806104345760405162461bcd60e51b81526004016104f5906118f0565b60006001600160a01b0382166108f45760405162461bcd60e51b81526004016104f5906118a6565b506001600160a01b031660009081526003602052604090205490565b610918610c31565b6001600160a01b03166109296109ae565b6001600160a01b03161461094f5760405162461bcd60e51b81526004016104f590611a09565b6109596000610e6f565b565b610963610c31565b6001600160a01b03166109746109ae565b6001600160a01b03161461099a5760405162461bcd60e51b81526004016104f590611a09565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b60606001805461044b90611ca5565b60095460ff1681565b6109dd610c31565b6001600160a01b0316826001600160a01b03161415610a0e5760405162461bcd60e51b81526004016104f590611798565b8060056000610a1b610c31565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a5f610c31565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a979190611619565b60405180910390a35050565b610ab4610aae610c31565b83610ca3565b610ad05760405162461bcd60e51b81526004016104f590611b71565b61082084848484610ec1565b6060610ae782610c14565b610b035760405162461bcd60e51b81526004016104f590611a87565b6000610b0d610ef4565b90506000815111610b2d5760405180602001604052806000815250610b58565b80610b3784610f03565b604051602001610b48929190611596565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610b95610c31565b6001600160a01b0316610ba66109ae565b6001600160a01b031614610bcc5760405162461bcd60e51b81526004016104f590611a09565b6001600160a01b038116610bf25760405162461bcd60e51b81526004016104f5906116d7565b6106b181610e6f565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c6a82610897565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610cae82610c14565b610cca5760405162461bcd60e51b81526004016104f5906117fd565b6000610cd583610897565b9050806001600160a01b0316846001600160a01b03161480610d105750836001600160a01b0316610d05846104ce565b6001600160a01b0316145b80610d205750610d208185610b5f565b949350505050565b826001600160a01b0316610d3b82610897565b6001600160a01b031614610d615760405162461bcd60e51b81526004016104f590611a3e565b6001600160a01b038216610d875760405162461bcd60e51b81526004016104f590611754565b610d928383836105ad565b610d9d600082610c35565b6001600160a01b0383166000908152600360205260408120805460019290610dc6908490611c62565b90915550506001600160a01b0382166000908152600360205260408120805460019290610df4908490611c17565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61089382826040518060200160405280600081525061101e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ecc848484610d28565b610ed884848484611051565b6108205760405162461bcd60e51b81526004016104f590611685565b60606008805461044b90611ca5565b606081610f2857506040805180820190915260018152600360fc1b6020820152610437565b8160005b8115610f525780610f3c81611ce0565b9150610f4b9050600a83611c2f565b9150610f2c565b60008167ffffffffffffffff811115610f7b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610fa5576020820181803683370190505b5090505b8415610d2057610fba600183611c62565b9150610fc7600a86611cfb565b610fd2906030611c17565b60f81b818381518110610ff557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611017600a86611c2f565b9450610fa9565b611028838361116c565b6110356000848484611051565b6105ad5760405162461bcd60e51b81526004016104f590611685565b6000611065846001600160a01b031661124b565b1561116157836001600160a01b031663150b7a02611081610c31565b8786866040518563ffffffff1660e01b81526004016110a394939291906115dc565b602060405180830381600087803b1580156110bd57600080fd5b505af19250505080156110ed575060408051601f3d908101601f191682019092526110ea918101906114f0565b60015b611147573d80801561111b576040519150601f19603f3d011682016040523d82523d6000602084013e611120565b606091505b50805161113f5760405162461bcd60e51b81526004016104f590611685565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d20565b506001949350505050565b6001600160a01b0382166111925760405162461bcd60e51b81526004016104f590611939565b61119b81610c14565b156111b85760405162461bcd60e51b81526004016104f59061171d565b6111c4600083836105ad565b6001600160a01b03821660009081526003602052604081208054600192906111ed908490611c17565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461125d90611ca5565b90600052602060002090601f01602090048101928261127f57600085556112c5565b82601f1061129857805160ff19168380011785556112c5565b828001600101855582156112c5579182015b828111156112c55782518255916020019190600101906112aa565b506112d19291506112d5565b5090565b5b808211156112d157600081556001016112d6565b600067ffffffffffffffff8084111561130557611305611d3b565b604051601f8501601f19168101602001828111828210171561132957611329611d3b565b60405284815291508183850186101561134157600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461043757600080fd5b600060208284031215611382578081fd5b610b588261135a565b6000806040838503121561139d578081fd5b6113a68361135a565b91506113b46020840161135a565b90509250929050565b6000806000606084860312156113d1578081fd5b6113da8461135a565b92506113e86020850161135a565b9150604084013590509250925092565b6000806000806080858703121561140d578081fd5b6114168561135a565b93506114246020860161135a565b925060408501359150606085013567ffffffffffffffff811115611446578182fd5b8501601f81018713611456578182fd5b611465878235602084016112ea565b91505092959194509250565b60008060408385031215611483578182fd5b61148c8361135a565b9150602083013580151581146114a0578182fd5b809150509250929050565b600080604083850312156114bd578182fd5b6114c68361135a565b946020939093013593505050565b6000602082840312156114e5578081fd5b8135610b5881611d51565b600060208284031215611501578081fd5b8151610b5881611d51565b60006020828403121561151d578081fd5b813567ffffffffffffffff811115611533578182fd5b8201601f81018413611543578182fd5b610d20848235602084016112ea565b600060208284031215611563578081fd5b5035919050565b60008151808452611582816020860160208601611c79565b601f01601f19169290920160200192915050565b600083516115a8818460208801611c79565b8351908301906115bc818360208801611c79565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061160f9083018461156a565b9695505050505050565b901515815260200190565b600060208252610b58602083018461156a565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f4d6178696d756d2036204e4654732063616e206265206d696e7465642070657260408201526b103a3930b739b0b1ba34b7b760a11b606082015260800190565b90815260200190565b60008219821115611c2a57611c2a611d0f565b500190565b600082611c3e57611c3e611d25565b500490565b6000816000190483118215151615611c5d57611c5d611d0f565b500290565b600082821015611c7457611c74611d0f565b500390565b60005b83811015611c94578181015183820152602001611c7c565b838111156108205750506000910152565b600281046001821680611cb957607f821691505b60208210811415611cda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cf457611cf4611d0f565b5060010190565b600082611d0a57611d0a611d25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106b157600080fdfea26469706673582212209fb2486208ac297334c9f4479a23c439c9a56638fdd2574a1bee1873867076e764736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36559:1851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25830:411::-;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;36957:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27366:376::-;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;36606:40::-;;;;;;;;;;;;;:::i;37250:206::-;;;;;;;;;;;;;:::i;37464:822::-;;;;;;:::i;:::-;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;37053:101::-;;;;;;;;;;-1:-1:-1;37053:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;37162:80::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;;;;:::i;24783:104::-;;;;;;;;;;;;;:::i;36766:28::-;;;;;;;;;;;;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;;:::i;8582:229::-;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;;23756:36;23780:11;23756:23;:36::i;:::-;23614:178;;23445:355;;;;:::o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;26475:16;26483:7;26475;:16::i;:::-;26453:110;;;;-1:-1:-1;;;26453:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;;;;;;:::i;:::-;26069:5;-1:-1:-1;;;;;26053:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26053:21:0;;:62;;;;26078:37;26095:5;26102:12;:10;:12::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;;;;;;:::i;:::-;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25830:411;;;:::o;36957:88::-;37028:9;;36957:88;:::o;27366:376::-;27575:41;27594:12;:10;:12::i;:::-;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;36606:40::-;36643:3;36606:40;:::o;37250:206::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37301:12:::1;37327:10;-1:-1:-1::0;;;;;37319:24:0::1;37365:21;37319:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37300:101;;;37420:7;37412:36;;;;-1:-1:-1::0;;;37412:36:0::1;;;;;;;:::i;:::-;7973:1;37250:206::o:0;37464:822::-;37535:14;37552:13;:11;:13::i;:::-;37535:30;-1:-1:-1;36643:3:0;37586:15;37595:6;37535:30;37586:15;:::i;:::-;:29;;37578:64;;;;-1:-1:-1;;;37578:64:0;;;;;;;:::i;:::-;37670:1;37661:6;:10;37653:69;;;;-1:-1:-1;;;37653:69:0;;;;;;;:::i;:::-;37753:7;:5;:7::i;:::-;-1:-1:-1;;;;;37739:21:0;:10;-1:-1:-1;;;;;37739:21:0;;37735:378;;37785:8;;;;37777:41;;;;-1:-1:-1;;;37777:41:0;;;;;;;:::i;:::-;37869:1;37859:6;:11;;37833:117;;;;-1:-1:-1;;;37833:117:0;;;;;;;:::i;:::-;38004:14;38012:6;36716:17;38004:14;:::i;:::-;37991:9;:27;;37965:136;;;;-1:-1:-1;;;37965:136:0;;;;;;;:::i;:::-;38138:6;38125:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;38162:9:0;;-1:-1:-1;38157:122:0;38181:6;38177:1;:10;38157:122;;;38209:24;38219:3;38224:8;;;:::i;:::-;;;;38209:9;:24::i;:::-;38253:14;38260:6;38253:14;;;;;;:::i;:::-;;;;;;;;38189:3;;;;:::i;:::-;;;;38157:122;;;;37464:822;;;:::o;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;37053:101::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37124:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37053:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;;;;;;:::i;23864:295::-;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;37162:80::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37226:8:::1;::::0;;-1:-1:-1;;37214:20:0;::::1;37226:8;::::0;;::::1;37225:9;37214:20;::::0;;37162:80::o;7682:87::-;7755:6;;-1:-1:-1;;;;;7755:6:0;7682:87;:::o;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;36766:28::-;;;;;;:::o;26687:327::-;26834:12;:10;:12::i;:::-;-1:-1:-1;;;;;26822:24:0;:8;-1:-1:-1;;;;;26822:24:0;;;26814:62;;;;-1:-1:-1;;;26814:62:0;;;;;;;:::i;:::-;26934:8;26889:18;:32;26908:12;:10;:12::i;:::-;-1:-1:-1;;;;;26889:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26889:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;;26973:12;:10;:12::i;:::-;-1:-1:-1;;;;;26958:48:0;;26997:8;26958:48;;;;;;:::i;:::-;;;;;;;;26687:327;;:::o;28069:365::-;28258:41;28277:12;:10;:12::i;:::-;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;24958:468::-;25076:13;25129:16;25137:7;25129;:16::i;:::-;25107:113;;;;-1:-1:-1;;;25107:113:0;;;;;;;:::i;:::-;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;27085:214::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214::o;8582:229::-;7913:12;:10;:12::i;:::-;-1:-1:-1;;;;;7902:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7902:23:0;;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;;-1:-1:-1::0;;;8663:110:0::1;;;;;;;:::i;:::-;8784:19;8794:8;8784:9;:19::i;9791:207::-:0;-1:-1:-1;;;;;;9950:40:0;;-1:-1:-1;;;9950:40:0;9791:207;;;:::o;29981:127::-;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;;;29981:127::o;655:98::-;735:10;655:98;:::o;34104:174::-;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30448:16;30456:7;30448;:16::i;:::-;30426:110;;;;-1:-1:-1;;;30426:110:0;;;;;;;:::i;:::-;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;;30686:32;30703:5;30710:7;30686:16;:32::i;:::-;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;;;;;;:::i;:::-;33706:39;33727:4;33733:2;33737:7;33706:20;:39::i;:::-;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8819:173;;:::o;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;38294:113::-;38354:13;38387:12;38380:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;;10585:53;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;-1:-1:-1;;;10814:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;-1:-1:-1;;;10902:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;35019:15;:2;-1:-1:-1;;;;;35019:13:0;;:15::i;:::-;35015:805;;;35088:2;-1:-1:-1;;;;;35072:36:0;;35131:12;:10;:12::i;:::-;35166:4;35193:7;35223:5;35072:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;;;;;;:::i;:::-;32216:16;32224:7;32216;:16::i;:::-;32215:17;32207:58;;;;-1:-1:-1;;;32207:58:0;;;;;;;:::i;:::-;32278:45;32307:1;32311:2;32315:7;32278:20;:45::i;:::-;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063:382;;:::o;12865:387::-;13188:20;13236:8;;;12865:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:205::-;5136:3;5127:14::o;5146:203::-;-1:-1:-1;;;;;5310:32:1;;;;5292:51;;5280:2;5265:18;;5247:102::o;5354:490::-;-1:-1:-1;;;;;5623:15:1;;;5605:34;;5675:15;;5670:2;5655:18;;5648:43;5722:2;5707:18;;5700:34;;;5770:3;5765:2;5750:18;;5743:31;;;5354:490;;5791:47;;5818:19;;5810:6;5791:47;:::i;:::-;5783:55;5557:287;-1:-1:-1;;;;;;5557:287:1:o;5849:187::-;6014:14;;6007:22;5989:41;;5977:2;5962:18;;5944:92::o;6041:221::-;;6190:2;6179:9;6172:21;6210:46;6252:2;6241:9;6237:18;6229:6;6210:46;:::i;6267:410::-;6469:2;6451:21;;;6508:2;6488:18;;;6481:30;6547:34;6542:2;6527:18;;6520:62;-1:-1:-1;;;6613:2:1;6598:18;;6591:44;6667:3;6652:19;;6441:236::o;6682:414::-;6884:2;6866:21;;;6923:2;6903:18;;;6896:30;6962:34;6957:2;6942:18;;6935:62;-1:-1:-1;;;7028:2:1;7013:18;;7006:48;7086:3;7071:19;;6856:240::o;7101:402::-;7303:2;7285:21;;;7342:2;7322:18;;;7315:30;7381:34;7376:2;7361:18;;7354:62;-1:-1:-1;;;7447:2:1;7432:18;;7425:36;7493:3;7478:19;;7275:228::o;7508:352::-;7710:2;7692:21;;;7749:2;7729:18;;;7722:30;7788;7783:2;7768:18;;7761:58;7851:2;7836:18;;7682:178::o;7865:400::-;8067:2;8049:21;;;8106:2;8086:18;;;8079:30;8145:34;8140:2;8125:18;;8118:62;-1:-1:-1;;;8211:2:1;8196:18;;8189:34;8255:3;8240:19;;8039:226::o;8270:349::-;8472:2;8454:21;;;8511:2;8491:18;;;8484:30;8550:27;8545:2;8530:18;;8523:55;8610:2;8595:18;;8444:175::o;8624:344::-;8826:2;8808:21;;;8865:2;8845:18;;;8838:30;-1:-1:-1;;;8899:2:1;8884:18;;8877:50;8959:2;8944:18;;8798:170::o;8973:408::-;9175:2;9157:21;;;9214:2;9194:18;;;9187:30;9253:34;9248:2;9233:18;;9226:62;-1:-1:-1;;;9319:2:1;9304:18;;9297:42;9371:3;9356:19;;9147:234::o;9386:420::-;9588:2;9570:21;;;9627:2;9607:18;;;9600:30;9666:34;9661:2;9646:18;;9639:62;9737:26;9732:2;9717:18;;9710:54;9796:3;9781:19;;9560:246::o;9811:406::-;10013:2;9995:21;;;10052:2;10032:18;;;10025:30;10091:34;10086:2;10071:18;;10064:62;-1:-1:-1;;;10157:2:1;10142:18;;10135:40;10207:3;10192:19;;9985:232::o;10222:405::-;10424:2;10406:21;;;10463:2;10443:18;;;10436:30;10502:34;10497:2;10482:18;;10475:62;-1:-1:-1;;;10568:2:1;10553:18;;10546:39;10617:3;10602:19;;10396:231::o;10632:356::-;10834:2;10816:21;;;10853:18;;;10846:30;10912:34;10907:2;10892:18;;10885:62;10979:2;10964:18;;10806:182::o;10993:408::-;11195:2;11177:21;;;11234:2;11214:18;;;11207:30;11273:34;11268:2;11253:18;;11246:62;-1:-1:-1;;;11339:2:1;11324:18;;11317:42;11391:3;11376:19;;11167:234::o;11406:411::-;11608:2;11590:21;;;11647:2;11627:18;;;11620:30;11686:34;11681:2;11666:18;;11659:62;-1:-1:-1;;;11752:2:1;11737:18;;11730:45;11807:3;11792:19;;11580:237::o;11822:356::-;12024:2;12006:21;;;12043:18;;;12036:30;12102:34;12097:2;12082:18;;12075:62;12169:2;12154:18;;11996:182::o;12183:405::-;12385:2;12367:21;;;12424:2;12404:18;;;12397:30;12463:34;12458:2;12443:18;;12436:62;-1:-1:-1;;;12529:2:1;12514:18;;12507:39;12578:3;12563:19;;12357:231::o;12593:411::-;12795:2;12777:21;;;12834:2;12814:18;;;12807:30;12873:34;12868:2;12853:18;;12846:62;-1:-1:-1;;;12939:2:1;12924:18;;12917:45;12994:3;12979:19;;12767:237::o;13009:397::-;13211:2;13193:21;;;13250:2;13230:18;;;13223:30;13289:34;13284:2;13269:18;;13262:62;-1:-1:-1;;;13355:2:1;13340:18;;13333:31;13396:3;13381:19;;13183:223::o;13411:346::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;-1:-1:-1;;;13686:2:1;13671:18;;13664:52;13748:2;13733:18;;13585:172::o;13762:340::-;13964:2;13946:21;;;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14037:2:1;14022:18;;14015:46;14093:2;14078:18;;13936:166::o;14107:413::-;14309:2;14291:21;;;14348:2;14328:18;;;14321:30;14387:34;14382:2;14367:18;;14360:62;-1:-1:-1;;;14453:2:1;14438:18;;14431:47;14510:3;14495:19;;14281:239::o;14525:408::-;14727:2;14709:21;;;14766:2;14746:18;;;14739:30;14805:34;14800:2;14785:18;;14778:62;-1:-1:-1;;;14871:2:1;14856:18;;14849:42;14923:3;14908:19;;14699:234::o;14938:177::-;15084:25;;;15072:2;15057:18;;15039:76::o;15120:128::-;;15191:1;15187:6;15184:1;15181:13;15178:2;;;15197:18;;:::i;:::-;-1:-1:-1;15233:9:1;;15168:80::o;15253:120::-;;15319:1;15309:2;;15324:18;;:::i;:::-;-1:-1:-1;15358:9:1;;15299:74::o;15378:168::-;;15484:1;15480;15476:6;15472:14;15469:1;15466:21;15461:1;15454:9;15447:17;15443:45;15440:2;;;15491:18;;:::i;:::-;-1:-1:-1;15531:9:1;;15430:116::o;15551:125::-;;15619:1;15616;15613:8;15610:2;;;15624:18;;:::i;:::-;-1:-1:-1;15661:9:1;;15600:76::o;15681:258::-;15753:1;15763:113;15777:6;15774:1;15771:13;15763:113;;;15853:11;;;15847:18;15834:11;;;15827:39;15799:2;15792:10;15763:113;;;15894:6;15891:1;15888:13;15885:2;;;-1:-1:-1;;15929:1:1;15911:16;;15904:27;15734:205::o;15944:380::-;16029:1;16019:12;;16076:1;16066:12;;;16087:2;;16141:4;16133:6;16129:17;16119:27;;16087:2;16194;16186:6;16183:14;16163:18;16160:38;16157:2;;;16240:10;16235:3;16231:20;16228:1;16221:31;16275:4;16272:1;16265:15;16303:4;16300:1;16293:15;16157:2;;15999:325;;;:::o;16329:135::-;;-1:-1:-1;;16389:17:1;;16386:2;;;16409:18;;:::i;:::-;-1:-1:-1;16456:1:1;16445:13;;16376:88::o;16469:112::-;;16527:1;16517:2;;16532:18;;:::i;:::-;-1:-1:-1;16566:9:1;;16507:74::o;16586:127::-;16647:10;16642:3;16638:20;16635:1;16628:31;16678:4;16675:1;16668:15;16702:4;16699:1;16692:15;16718:127;16779:10;16774:3;16770:20;16767:1;16760:31;16810:4;16807:1;16800:15;16834:4;16831:1;16824:15;16850:127;16911:10;16906:3;16902:20;16899:1;16892:31;16942:4;16939:1;16932:15;16966:4;16963:1;16956:15;16982:133;-1:-1:-1;;;;;;17058:32:1;;17048:43;;17038:2;;17105:1;17102;17095:12
Swarm Source
ipfs://9fb2486208ac297334c9f4479a23c439c9a56638fdd2574a1bee1873867076e7
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.