Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
999 BURN
Holders
178
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BURNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Burnables
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-13 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Counters.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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/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 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/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); } /** * @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 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 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 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 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 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/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.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 {} } // File: contracts/Burnables.sol pragma solidity ^0.8.0; contract Burnables is ERC721, Ownable { using Strings for uint256; using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; Counters.Counter private _burnedTracker; string public baseTokenURI; uint256 public constant MAX_ELEMENTS = 999; uint256 public constant MINT_PRICE = 8 * 10**16; address public constant creatorAddress = 0xc988f2D5BDB203955c5fBB70E2191D62478b2ee7; event CreateBurnable(uint256 indexed id); constructor() public ERC721("Burnables", "BURN") {} modifier saleIsOpen { require(_totalSupply() <= MAX_ELEMENTS, "Sale end"); _; } function totalSupply() public view returns (uint256) { return _tokenIdTracker.current(); } function _totalSupply() internal view returns (uint256) { return _tokenIdTracker.current(); } function _totalBurned() internal view returns (uint256) { return _burnedTracker.current(); } function totalBurned() public view returns (uint256) { return _totalBurned(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(total + _count <= MAX_ELEMENTS, "Max limit"); require(total <= MAX_ELEMENTS, "Sale end"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } } function price(uint256 _count) public pure returns (uint256) { return MINT_PRICE.mul(_count); } function _mintAnElement(address _to) private { uint256 id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateBurnable(id); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } /** * @dev Returns an URI for a given token ID */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string(abi.encodePacked(baseTokenURI, _tokenId.toString())); } /** * @dev Burns and pays the mint price to the token owner. * @param _tokenId The token to burn. */ function burn(uint256 _tokenId) public { require(ownerOf(_tokenId) == msg.sender); //Burn token _transfer( msg.sender, 0x000000000000000000000000000000000000dEaD, _tokenId ); // increment burn _burnedTracker.increment(); // pay token owner _widthdraw(msg.sender, MINT_PRICE); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateBurnable","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_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260098152684275726e61626c657360b81b602080830191825283518085019094526004845263212aa92760e11b9084015281519192916200005f91600091620000ee565b50805162000075906001906020840190620000ee565b505050620000926200008c6200009860201b60201c565b6200009c565b620001d1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fc9062000194565b90600052602060002090601f0160209004810192826200012057600085556200016b565b82601f106200013b57805160ff19168380011785556200016b565b828001600101855582156200016b579182015b828111156200016b5782518255916020019190600101906200014e565b50620001799291506200017d565b5090565b5b808211156200017957600081556001016200017e565b600181811c90821680620001a957607f821691505b60208210811415620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b611ca980620001e16000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063c002d23d1161008a578063d89135cd11610064578063d89135cd1461046c578063e927fc5c14610481578063e985e9c5146104a9578063f2fde38b146104f257600080fd5b8063c002d23d1461041b578063c87b56dd14610437578063d547cfb71461045757600080fd5b80638da5cb5b116100c65780638da5cb5b146103a857806395d89b41146103c6578063a22cb465146103db578063b88d4fde146103fb57600080fd5b80636352211e1461035357806370a0823114610373578063715018a61461039357600080fd5b806326a49e371161015957806342842e0e1161013357806342842e0e146102de57806342966c68146102fe57806355f804b31461031e57806359a7715a1461033e57600080fd5b806326a49e37146102955780633502a716146102b557806340c10f19146102cb57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461185a565b610512565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610564565b6040516101cd9190611a22565b34801561020457600080fd5b506102186102133660046118dd565b6105f6565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611830565b610690565b005b34801561025e57600080fd5b506102676107a6565b6040519081526020016101cd565b34801561028157600080fd5b5061025061029036600461173c565b6107b6565b3480156102a157600080fd5b506102676102b03660046118dd565b6107e7565b3480156102c157600080fd5b506102676103e781565b6102506102d9366004611830565b6107fb565b3480156102ea57600080fd5b506102506102f936600461173c565b610947565b34801561030a57600080fd5b506102506103193660046118dd565b610962565b34801561032a57600080fd5b50610250610339366004611894565b6109af565b34801561034a57600080fd5b506102676109f0565b34801561035f57600080fd5b5061021861036e3660046118dd565b6109fa565b34801561037f57600080fd5b5061026761038e3660046116ee565b610a71565b34801561039f57600080fd5b50610250610af8565b3480156103b457600080fd5b506006546001600160a01b0316610218565b3480156103d257600080fd5b506101eb610b2e565b3480156103e757600080fd5b506102506103f63660046117f4565b610b3d565b34801561040757600080fd5b50610250610416366004611778565b610c02565b34801561042757600080fd5b5061026767011c37937e08000081565b34801561044357600080fd5b506101eb6104523660046118dd565b610c34565b34801561046357600080fd5b506101eb610c68565b34801561047857600080fd5b50610267610cf6565b34801561048d57600080fd5b5061021873c988f2d5bdb203955c5fbb70e2191d62478b2ee781565b3480156104b557600080fd5b506101c16104c4366004611709565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fe57600080fd5b5061025061050d3660046116ee565b610d00565b60006001600160e01b031982166380ac58cd60e01b148061054357506001600160e01b03198216635b5e139f60e01b145b8061055e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057390611b9b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90611b9b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069b826109fa565b9050806001600160a01b0316836001600160a01b031614156107095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066b565b336001600160a01b0382161480610725575061072581336104c4565b6107975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066b565b6107a18383610d98565b505050565b60006107b160075490565b905090565b6107c03382610e06565b6107dc5760405162461bcd60e51b815260040161066b90611abc565b6107a1838383610efd565b600061055e67011c37937e0800008361109d565b6103e76108066107a6565b111561083f5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161066b565b60006108496107a6565b90506103e76108588383611b0d565b11156108925760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161066b565b6103e78111156108cf5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161066b565b6108d8826107e7565b34101561091b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161066b565b60005b828110156109415761092f846110b0565b8061093981611bd6565b91505061091e565b50505050565b6107a183838360405180602001604052806000815250610c02565b3361096c826109fa565b6001600160a01b03161461097f57600080fd5b61098c3361dead83610efd565b61099a600880546001019055565b6109ac3367011c37937e080000611103565b50565b6006546001600160a01b031633146109d95760405162461bcd60e51b815260040161066b90611a87565b80516109ec9060099060208401906115c3565b5050565b60006107b16107a6565b6000818152600260205260408120546001600160a01b03168061055e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066b565b60006001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b225760405162461bcd60e51b815260040161066b90611a87565b610b2c6000611199565b565b60606001805461057390611b9b565b6001600160a01b038216331415610b965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c0c3383610e06565b610c285760405162461bcd60e51b815260040161066b90611abc565b610941848484846111eb565b60606009610c418361121e565b604051602001610c5292919061193e565b6040516020818303038152906040529050919050565b60098054610c7590611b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190611b9b565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b60006107b161131c565b6006546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161066b90611a87565b6001600160a01b038116610d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066b565b6109ac81611199565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dcd826109fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066b565b6000610e8a836109fa565b9050806001600160a01b0316846001600160a01b03161480610ec55750836001600160a01b0316610eba846105f6565b6001600160a01b0316145b80610ef557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f10826109fa565b6001600160a01b031614610f785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066b565b6001600160a01b038216610fda5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066b565b610fe5600082610d98565b6001600160a01b038316600090815260036020526040812080546001929061100e908490611b58565b90915550506001600160a01b038216600090815260036020526040812080546001929061103c908490611b0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110a98284611b39565b9392505050565b60006110ba6107a6565b90506110ca600780546001019055565b6110d48282611327565b60405181907f70aa49f36189c865708acd69ac2f094018a8c228abe3fc99fe28dbdd6c9a5b8990600090a25050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611150576040519150601f19603f3d011682016040523d82523d6000602084013e611155565b606091505b50509050806107a15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161066b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111f6848484610efd565b61120284848484611341565b6109415760405162461bcd60e51b815260040161066b90611a35565b6060816112425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561126c578061125681611bd6565b91506112659050600a83611b25565b9150611246565b60008167ffffffffffffffff81111561128757611287611c47565b6040519080825280601f01601f1916602001820160405280156112b1576020820181803683370190505b5090505b8415610ef5576112c6600183611b58565b91506112d3600a86611bf1565b6112de906030611b0d565b60f81b8183815181106112f3576112f3611c31565b60200101906001600160f81b031916908160001a905350611315600a86611b25565b94506112b5565b60006107b160085490565b6109ec82826040518060200160405280600081525061144e565b60006001600160a01b0384163b1561144357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113859033908990889088906004016119e5565b602060405180830381600087803b15801561139f57600080fd5b505af19250505080156113cf575060408051601f3d908101601f191682019092526113cc91810190611877565b60015b611429573d8080156113fd576040519150601f19603f3d011682016040523d82523d6000602084013e611402565b606091505b5080516114215760405162461bcd60e51b815260040161066b90611a35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ef5565b506001949350505050565b6114588383611481565b6114656000848484611341565b6107a15760405162461bcd60e51b815260040161066b90611a35565b6001600160a01b0382166114d75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066b565b6000818152600260205260409020546001600160a01b03161561153c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6001600160a01b0382166000908152600360205260408120805460019290611565908490611b0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115cf90611b9b565b90600052602060002090601f0160209004810192826115f15760008555611637565b82601f1061160a57805160ff1916838001178555611637565b82800160010185558215611637579182015b8281111561163757825182559160200191906001019061161c565b50611643929150611647565b5090565b5b808211156116435760008155600101611648565b600067ffffffffffffffff8084111561167757611677611c47565b604051601f8501601f19908116603f0116810190828211818310171561169f5761169f611c47565b816040528093508581528686860111156116b857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116e957600080fd5b919050565b60006020828403121561170057600080fd5b6110a9826116d2565b6000806040838503121561171c57600080fd5b611725836116d2565b9150611733602084016116d2565b90509250929050565b60008060006060848603121561175157600080fd5b61175a846116d2565b9250611768602085016116d2565b9150604084013590509250925092565b6000806000806080858703121561178e57600080fd5b611797856116d2565b93506117a5602086016116d2565b925060408501359150606085013567ffffffffffffffff8111156117c857600080fd5b8501601f810187136117d957600080fd5b6117e88782356020840161165c565b91505092959194509250565b6000806040838503121561180757600080fd5b611810836116d2565b91506020830135801515811461182557600080fd5b809150509250929050565b6000806040838503121561184357600080fd5b61184c836116d2565b946020939093013593505050565b60006020828403121561186c57600080fd5b81356110a981611c5d565b60006020828403121561188957600080fd5b81516110a981611c5d565b6000602082840312156118a657600080fd5b813567ffffffffffffffff8111156118bd57600080fd5b8201601f810184136118ce57600080fd5b610ef58482356020840161165c565b6000602082840312156118ef57600080fd5b5035919050565b6000815180845261190e816020860160208601611b6f565b601f01601f19169290920160200192915050565b60008151611934818560208601611b6f565b9290920192915050565b600080845481600182811c91508083168061195a57607f831692505b602080841082141561197a57634e487b7160e01b86526022600452602486fd5b81801561198e576001811461199f576119cc565b60ff198616895284890196506119cc565b60008b81526020902060005b868110156119c45781548b8201529085019083016119ab565b505084890196505b5050505050506119dc8185611922565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a18908301846118f6565b9695505050505050565b6020815260006110a960208301846118f6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b2057611b20611c05565b500190565b600082611b3457611b34611c1b565b500490565b6000816000190483118215151615611b5357611b53611c05565b500290565b600082821015611b6a57611b6a611c05565b500390565b60005b83811015611b8a578181015183820152602001611b72565b838111156109415750506000910152565b600181811c90821680611baf57607f821691505b60208210811415611bd057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bea57611bea611c05565b5060010190565b600082611c0057611c00611c1b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ac57600080fdfea264697066735822122084cd3a2f72b151cfb824f5922b083e3cdc51c506c92911189a7bf6cc36a92d1364736f6c63430008070033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063c002d23d1161008a578063d89135cd11610064578063d89135cd1461046c578063e927fc5c14610481578063e985e9c5146104a9578063f2fde38b146104f257600080fd5b8063c002d23d1461041b578063c87b56dd14610437578063d547cfb71461045757600080fd5b80638da5cb5b116100c65780638da5cb5b146103a857806395d89b41146103c6578063a22cb465146103db578063b88d4fde146103fb57600080fd5b80636352211e1461035357806370a0823114610373578063715018a61461039357600080fd5b806326a49e371161015957806342842e0e1161013357806342842e0e146102de57806342966c68146102fe57806355f804b31461031e57806359a7715a1461033e57600080fd5b806326a49e37146102955780633502a716146102b557806340c10f19146102cb57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461185a565b610512565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610564565b6040516101cd9190611a22565b34801561020457600080fd5b506102186102133660046118dd565b6105f6565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611830565b610690565b005b34801561025e57600080fd5b506102676107a6565b6040519081526020016101cd565b34801561028157600080fd5b5061025061029036600461173c565b6107b6565b3480156102a157600080fd5b506102676102b03660046118dd565b6107e7565b3480156102c157600080fd5b506102676103e781565b6102506102d9366004611830565b6107fb565b3480156102ea57600080fd5b506102506102f936600461173c565b610947565b34801561030a57600080fd5b506102506103193660046118dd565b610962565b34801561032a57600080fd5b50610250610339366004611894565b6109af565b34801561034a57600080fd5b506102676109f0565b34801561035f57600080fd5b5061021861036e3660046118dd565b6109fa565b34801561037f57600080fd5b5061026761038e3660046116ee565b610a71565b34801561039f57600080fd5b50610250610af8565b3480156103b457600080fd5b506006546001600160a01b0316610218565b3480156103d257600080fd5b506101eb610b2e565b3480156103e757600080fd5b506102506103f63660046117f4565b610b3d565b34801561040757600080fd5b50610250610416366004611778565b610c02565b34801561042757600080fd5b5061026767011c37937e08000081565b34801561044357600080fd5b506101eb6104523660046118dd565b610c34565b34801561046357600080fd5b506101eb610c68565b34801561047857600080fd5b50610267610cf6565b34801561048d57600080fd5b5061021873c988f2d5bdb203955c5fbb70e2191d62478b2ee781565b3480156104b557600080fd5b506101c16104c4366004611709565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fe57600080fd5b5061025061050d3660046116ee565b610d00565b60006001600160e01b031982166380ac58cd60e01b148061054357506001600160e01b03198216635b5e139f60e01b145b8061055e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057390611b9b565b80601f016020809104026020016040519081016040528092919081815260200182805461059f90611b9b565b80156105ec5780601f106105c1576101008083540402835291602001916105ec565b820191906000526020600020905b8154815290600101906020018083116105cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069b826109fa565b9050806001600160a01b0316836001600160a01b031614156107095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161066b565b336001600160a01b0382161480610725575061072581336104c4565b6107975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161066b565b6107a18383610d98565b505050565b60006107b160075490565b905090565b6107c03382610e06565b6107dc5760405162461bcd60e51b815260040161066b90611abc565b6107a1838383610efd565b600061055e67011c37937e0800008361109d565b6103e76108066107a6565b111561083f5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161066b565b60006108496107a6565b90506103e76108588383611b0d565b11156108925760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b604482015260640161066b565b6103e78111156108cf5760405162461bcd60e51b815260206004820152600860248201526714d85b1948195b9960c21b604482015260640161066b565b6108d8826107e7565b34101561091b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b604482015260640161066b565b60005b828110156109415761092f846110b0565b8061093981611bd6565b91505061091e565b50505050565b6107a183838360405180602001604052806000815250610c02565b3361096c826109fa565b6001600160a01b03161461097f57600080fd5b61098c3361dead83610efd565b61099a600880546001019055565b6109ac3367011c37937e080000611103565b50565b6006546001600160a01b031633146109d95760405162461bcd60e51b815260040161066b90611a87565b80516109ec9060099060208401906115c3565b5050565b60006107b16107a6565b6000818152600260205260408120546001600160a01b03168061055e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161066b565b60006001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161066b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b225760405162461bcd60e51b815260040161066b90611a87565b610b2c6000611199565b565b60606001805461057390611b9b565b6001600160a01b038216331415610b965760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161066b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c0c3383610e06565b610c285760405162461bcd60e51b815260040161066b90611abc565b610941848484846111eb565b60606009610c418361121e565b604051602001610c5292919061193e565b6040516020818303038152906040529050919050565b60098054610c7590611b9b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca190611b9b565b8015610cee5780601f10610cc357610100808354040283529160200191610cee565b820191906000526020600020905b815481529060010190602001808311610cd157829003601f168201915b505050505081565b60006107b161131c565b6006546001600160a01b03163314610d2a5760405162461bcd60e51b815260040161066b90611a87565b6001600160a01b038116610d8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066b565b6109ac81611199565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dcd826109fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e7f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161066b565b6000610e8a836109fa565b9050806001600160a01b0316846001600160a01b03161480610ec55750836001600160a01b0316610eba846105f6565b6001600160a01b0316145b80610ef557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f10826109fa565b6001600160a01b031614610f785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161066b565b6001600160a01b038216610fda5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161066b565b610fe5600082610d98565b6001600160a01b038316600090815260036020526040812080546001929061100e908490611b58565b90915550506001600160a01b038216600090815260036020526040812080546001929061103c908490611b0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006110a98284611b39565b9392505050565b60006110ba6107a6565b90506110ca600780546001019055565b6110d48282611327565b60405181907f70aa49f36189c865708acd69ac2f094018a8c228abe3fc99fe28dbdd6c9a5b8990600090a25050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611150576040519150601f19603f3d011682016040523d82523d6000602084013e611155565b606091505b50509050806107a15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161066b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111f6848484610efd565b61120284848484611341565b6109415760405162461bcd60e51b815260040161066b90611a35565b6060816112425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561126c578061125681611bd6565b91506112659050600a83611b25565b9150611246565b60008167ffffffffffffffff81111561128757611287611c47565b6040519080825280601f01601f1916602001820160405280156112b1576020820181803683370190505b5090505b8415610ef5576112c6600183611b58565b91506112d3600a86611bf1565b6112de906030611b0d565b60f81b8183815181106112f3576112f3611c31565b60200101906001600160f81b031916908160001a905350611315600a86611b25565b94506112b5565b60006107b160085490565b6109ec82826040518060200160405280600081525061144e565b60006001600160a01b0384163b1561144357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113859033908990889088906004016119e5565b602060405180830381600087803b15801561139f57600080fd5b505af19250505080156113cf575060408051601f3d908101601f191682019092526113cc91810190611877565b60015b611429573d8080156113fd576040519150601f19603f3d011682016040523d82523d6000602084013e611402565b606091505b5080516114215760405162461bcd60e51b815260040161066b90611a35565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ef5565b506001949350505050565b6114588383611481565b6114656000848484611341565b6107a15760405162461bcd60e51b815260040161066b90611a35565b6001600160a01b0382166114d75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161066b565b6000818152600260205260409020546001600160a01b03161561153c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161066b565b6001600160a01b0382166000908152600360205260408120805460019290611565908490611b0d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115cf90611b9b565b90600052602060002090601f0160209004810192826115f15760008555611637565b82601f1061160a57805160ff1916838001178555611637565b82800160010185558215611637579182015b8281111561163757825182559160200191906001019061161c565b50611643929150611647565b5090565b5b808211156116435760008155600101611648565b600067ffffffffffffffff8084111561167757611677611c47565b604051601f8501601f19908116603f0116810190828211818310171561169f5761169f611c47565b816040528093508581528686860111156116b857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146116e957600080fd5b919050565b60006020828403121561170057600080fd5b6110a9826116d2565b6000806040838503121561171c57600080fd5b611725836116d2565b9150611733602084016116d2565b90509250929050565b60008060006060848603121561175157600080fd5b61175a846116d2565b9250611768602085016116d2565b9150604084013590509250925092565b6000806000806080858703121561178e57600080fd5b611797856116d2565b93506117a5602086016116d2565b925060408501359150606085013567ffffffffffffffff8111156117c857600080fd5b8501601f810187136117d957600080fd5b6117e88782356020840161165c565b91505092959194509250565b6000806040838503121561180757600080fd5b611810836116d2565b91506020830135801515811461182557600080fd5b809150509250929050565b6000806040838503121561184357600080fd5b61184c836116d2565b946020939093013593505050565b60006020828403121561186c57600080fd5b81356110a981611c5d565b60006020828403121561188957600080fd5b81516110a981611c5d565b6000602082840312156118a657600080fd5b813567ffffffffffffffff8111156118bd57600080fd5b8201601f810184136118ce57600080fd5b610ef58482356020840161165c565b6000602082840312156118ef57600080fd5b5035919050565b6000815180845261190e816020860160208601611b6f565b601f01601f19169290920160200192915050565b60008151611934818560208601611b6f565b9290920192915050565b600080845481600182811c91508083168061195a57607f831692505b602080841082141561197a57634e487b7160e01b86526022600452602486fd5b81801561198e576001811461199f576119cc565b60ff198616895284890196506119cc565b60008b81526020902060005b868110156119c45781548b8201529085019083016119ab565b505084890196505b5050505050506119dc8185611922565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a18908301846118f6565b9695505050505050565b6020815260006110a960208301846118f6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b2057611b20611c05565b500190565b600082611b3457611b34611c1b565b500490565b6000816000190483118215151615611b5357611b53611c05565b500290565b600082821015611b6a57611b6a611c05565b500390565b60005b83811015611b8a578181015183820152602001611b72565b838111156109415750506000910152565b600181811c90821680611baf57607f821691505b60208210811415611bd057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bea57611bea611c05565b5060010190565b600082611c0057611c00611c1b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ac57600080fdfea264697066735822122084cd3a2f72b151cfb824f5922b083e3cdc51c506c92911189a7bf6cc36a92d1364736f6c63430008070033
Deployed Bytecode Sourcemap
43527:3076:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31329:305;;;;;;;;;;-1:-1:-1;31329:305:0;;;;;:::i;:::-;;:::i;:::-;;;6750:14:1;;6743:22;6725:41;;6713:2;6698:18;31329:305:0;;;;;;;;32274:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33833:221::-;;;;;;;;;;-1:-1:-1;33833:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6048:32:1;;;6030:51;;6018:2;6003:18;33833:221:0;5884:203:1;33356:411:0;;;;;;;;;;-1:-1:-1;33356:411:0;;;;;:::i;:::-;;:::i;:::-;;44247:104;;;;;;;;;;;;;:::i;:::-;;;14477:25:1;;;14465:2;14450:18;44247:104:0;14331:177:1;34723:339:0;;;;;;;;;;-1:-1:-1;34723:339:0;;;;;:::i;:::-;;:::i;45208:109::-;;;;;;;;;;-1:-1:-1;45208:109:0;;;;;:::i;:::-;;:::i;43815:42::-;;;;;;;;;;;;43854:3;43815:42;;44800:396;;;;;;:::i;:::-;;:::i;35133:185::-;;;;;;;;;;-1:-1:-1;35133:185:0;;;;;:::i;:::-;;:::i;46003:408::-;;;;;;;;;;-1:-1:-1;46003:408:0;;;;;:::i;:::-;;:::i;45525:101::-;;;;;;;;;;-1:-1:-1;45525:101:0;;;;;:::i;:::-;;:::i;44697:91::-;;;;;;;;;;;;;:::i;31968:239::-;;;;;;;;;;-1:-1:-1;31968:239:0;;;;;:::i;:::-;;:::i;31698:208::-;;;;;;;;;;-1:-1:-1;31698:208:0;;;;;:::i;:::-;;:::i;12964:94::-;;;;;;;;;;;;;:::i;12313:87::-;;;;;;;;;;-1:-1:-1;12386:6:0;;-1:-1:-1;;;;;12386:6:0;12313:87;;32443:104;;;;;;;;;;;;;:::i;34126:295::-;;;;;;;;;;-1:-1:-1;34126:295:0;;;;;:::i;:::-;;:::i;35389:328::-;;;;;;;;;;-1:-1:-1;35389:328:0;;;;;:::i;:::-;;:::i;43868:47::-;;;;;;;;;;;;43905:10;43868:47;;45701:166;;;;;;;;;;-1:-1:-1;45701:166:0;;;;;:::i;:::-;;:::i;43780:26::-;;;;;;;;;;;;;:::i;44596:93::-;;;;;;;;;;;;;:::i;43928:92::-;;;;;;;;;;;;43978:42;43928:92;;34492:164;;;;;;;;;;-1:-1:-1;34492:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34613:25:0;;;34589:4;34613:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34492:164;13213:192;;;;;;;;;;-1:-1:-1;13213:192:0;;;;;:::i;:::-;;:::i;31329:305::-;31431:4;-1:-1:-1;;;;;;31468:40:0;;-1:-1:-1;;;31468:40:0;;:105;;-1:-1:-1;;;;;;;31525:48:0;;-1:-1:-1;;;31525:48:0;31468:105;:158;;;-1:-1:-1;;;;;;;;;;24408:40:0;;;31590:36;31448:178;31329:305;-1:-1:-1;;31329:305:0:o;32274:100::-;32328:13;32361:5;32354:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32274:100;:::o;33833:221::-;33909:7;37316:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37316:16:0;33929:73;;;;-1:-1:-1;;;33929:73:0;;11838:2:1;33929:73:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:42;12019:19;;33929:73:0;;;;;;;;;-1:-1:-1;34022:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34022:24:0;;33833:221::o;33356:411::-;33437:13;33453:23;33468:7;33453:14;:23::i;:::-;33437:39;;33501:5;-1:-1:-1;;;;;33495:11:0;:2;-1:-1:-1;;;;;33495:11:0;;;33487:57;;;;-1:-1:-1;;;33487:57:0;;13368:2:1;33487:57:0;;;13350:21:1;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;-1:-1:-1;;;13497:18:1;;;13490:31;13538:19;;33487:57:0;13166:397:1;33487:57:0;11181:10;-1:-1:-1;;;;;33579:21:0;;;;:62;;-1:-1:-1;33604:37:0;33621:5;11181:10;34492:164;:::i;33604:37::-;33557:168;;;;-1:-1:-1;;;33557:168:0;;9895:2:1;33557:168:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;10044:26;10024:18;;;10017:54;10088:19;;33557:168:0;9693:420:1;33557:168:0;33738:21;33747:2;33751:7;33738:8;:21::i;:::-;33426:341;33356:411;;:::o;44247:104::-;44291:7;44318:25;:15;948:14;;856:114;44318:25;44311:32;;44247:104;:::o;34723:339::-;34918:41;11181:10;34951:7;34918:18;:41::i;:::-;34910:103;;;;-1:-1:-1;;;34910:103:0;;;;;;;:::i;:::-;35026:28;35036:4;35042:2;35046:7;35026:9;:28::i;45208:109::-;45260:7;45287:22;43905:10;45302:6;45287:14;:22::i;44800:396::-;43854:3;44176:14;:12;:14::i;:::-;:30;;44168:51;;;;-1:-1:-1;;;44168:51:0;;11502:2:1;44168:51:0;;;11484:21:1;11541:1;11521:18;;;11514:29;-1:-1:-1;;;11559:18:1;;;11552:38;11607:18;;44168:51:0;11300:331:1;44168:51:0;44880:13:::1;44896:14;:12;:14::i;:::-;44880:30:::0;-1:-1:-1;43854:3:0::1;44929:14;44937:6:::0;44880:30;44929:14:::1;:::i;:::-;:30;;44921:52;;;::::0;-1:-1:-1;;;44921:52:0;;9145:2:1;44921:52:0::1;::::0;::::1;9127:21:1::0;9184:1;9164:18;;;9157:29;-1:-1:-1;;;9202:18:1;;;9195:39;9251:18;;44921:52:0::1;8943:332:1::0;44921:52:0::1;43854:3;44992:5;:21;;44984:42;;;::::0;-1:-1:-1;;;44984:42:0;;11502:2:1;44984:42:0::1;::::0;::::1;11484:21:1::0;11541:1;11521:18;;;11514:29;-1:-1:-1;;;11559:18:1;;;11552:38;11607:18;;44984:42:0::1;11300:331:1::0;44984:42:0::1;45058:13;45064:6;45058:5;:13::i;:::-;45045:9;:26;;45037:56;;;::::0;-1:-1:-1;;;45037:56:0;;13022:2:1;45037:56:0::1;::::0;::::1;13004:21:1::0;13061:2;13041:18;;;13034:30;-1:-1:-1;;;13080:18:1;;;13073:47;13137:18;;45037:56:0::1;12820:341:1::0;45037:56:0::1;45111:9;45106:83;45130:6;45126:1;:10;45106:83;;;45158:19;45173:3;45158:14;:19::i;:::-;45138:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45106:83;;;;44869:327;44800:396:::0;;:::o;35133:185::-;35271:39;35288:4;35294:2;35298:7;35271:39;;;;;;;;;;;;:16;:39::i;46003:408::-;46082:10;46061:17;46069:8;46061:7;:17::i;:::-;-1:-1:-1;;;;;46061:31:0;;46053:40;;;;;;46128:125;46152:10;46177:42;46234:8;46128:9;:125::i;:::-;46301:26;:14;1067:19;;1085:1;1067:19;;;978:127;46301:26;46369:34;46380:10;43905;46369;:34::i;:::-;46003:408;:::o;45525:101::-;12386:6;;-1:-1:-1;;;;;12386:6:0;11181:10;12533:23;12525:68;;;;-1:-1:-1;;;12525:68:0;;;;;;;:::i;:::-;45596:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45525:101:::0;:::o;44697:91::-;44739:7;44766:14;:12;:14::i;31968:239::-;32040:7;32076:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32076:16:0;32111:19;32103:73;;;;-1:-1:-1;;;32103:73:0;;10731:2:1;32103:73:0;;;10713:21:1;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:39;10909:19;;32103:73:0;10529:405:1;31698:208:0;31770:7;-1:-1:-1;;;;;31798:19:0;;31790:74;;;;-1:-1:-1;;;31790:74:0;;10320:2:1;31790:74:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:40;10499:19;;31790:74:0;10118:406:1;31790:74:0;-1:-1:-1;;;;;;31882:16:0;;;;;:9;:16;;;;;;;31698:208::o;12964:94::-;12386:6;;-1:-1:-1;;;;;12386:6:0;11181:10;12533:23;12525:68;;;;-1:-1:-1;;;12525:68:0;;;;;;;:::i;:::-;13029:21:::1;13047:1;13029:9;:21::i;:::-;12964:94::o:0;32443:104::-;32499:13;32532:7;32525:14;;;;;:::i;34126:295::-;-1:-1:-1;;;;;34229:24:0;;11181:10;34229:24;;34221:62;;;;-1:-1:-1;;;34221:62:0;;8791:2:1;34221:62:0;;;8773:21:1;8830:2;8810:18;;;8803:30;8869:27;8849:18;;;8842:55;8914:18;;34221:62:0;8589:349:1;34221:62:0;11181:10;34296:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34296:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34296:53:0;;;;;;;;;;34365:48;;6725:41:1;;;34296:42:0;;11181:10;34365:48;;6698:18:1;34365:48:0;;;;;;;34126:295;;:::o;35389:328::-;35564:41;11181:10;35597:7;35564:18;:41::i;:::-;35556:103;;;;-1:-1:-1;;;35556:103:0;;;;;;;:::i;:::-;35670:39;35684:4;35690:2;35694:7;35703:5;35670:13;:39::i;45701:166::-;45767:13;45824:12;45838:19;:8;:17;:19::i;:::-;45807:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45793:66;;45701:166;;;:::o;43780:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44596:93::-;44640:7;44667:14;:12;:14::i;13213:192::-;12386:6;;-1:-1:-1;;;;;12386:6:0;11181:10;12533:23;12525:68;;;;-1:-1:-1;;;12525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13302:22:0;::::1;13294:73;;;::::0;-1:-1:-1;;;13294:73:0;;7622:2:1;13294:73:0::1;::::0;::::1;7604:21:1::0;7661:2;7641:18;;;7634:30;7700:34;7680:18;;;7673:62;-1:-1:-1;;;7751:18:1;;;7744:36;7797:19;;13294:73:0::1;7420:402:1::0;13294:73:0::1;13378:19;13388:8;13378:9;:19::i;41209:174::-:0;41284:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41284:29:0;-1:-1:-1;;;;;41284:29:0;;;;;;;;:24;;41338:23;41284:24;41338:14;:23::i;:::-;-1:-1:-1;;;;;41329:46:0;;;;;;;;;;;41209:174;;:::o;37521:348::-;37614:4;37316:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37316:16:0;37631:73;;;;-1:-1:-1;;;37631:73:0;;9482:2:1;37631:73:0;;;9464:21:1;9521:2;9501:18;;;9494:30;9560:34;9540:18;;;9533:62;-1:-1:-1;;;9611:18:1;;;9604:42;9663:19;;37631:73:0;9280:408:1;37631:73:0;37715:13;37731:23;37746:7;37731:14;:23::i;:::-;37715:39;;37784:5;-1:-1:-1;;;;;37773:16:0;:7;-1:-1:-1;;;;;37773:16:0;;:51;;;;37817:7;-1:-1:-1;;;;;37793:31:0;:20;37805:7;37793:11;:20::i;:::-;-1:-1:-1;;;;;37793:31:0;;37773:51;:87;;;-1:-1:-1;;;;;;34613:25:0;;;34589:4;34613:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37828:32;37765:96;37521:348;-1:-1:-1;;;;37521:348:0:o;40513:578::-;40672:4;-1:-1:-1;;;;;40645:31:0;:23;40660:7;40645:14;:23::i;:::-;-1:-1:-1;;;;;40645:31:0;;40637:85;;;;-1:-1:-1;;;40637:85:0;;12612:2:1;40637:85:0;;;12594:21:1;12651:2;12631:18;;;12624:30;12690:34;12670:18;;;12663:62;-1:-1:-1;;;12741:18:1;;;12734:39;12790:19;;40637:85:0;12410:405:1;40637:85:0;-1:-1:-1;;;;;40741:16:0;;40733:65;;;;-1:-1:-1;;;40733:65:0;;8386:2:1;40733:65:0;;;8368:21:1;8425:2;8405:18;;;8398:30;8464:34;8444:18;;;8437:62;-1:-1:-1;;;8515:18:1;;;8508:34;8559:19;;40733:65:0;8184:400:1;40733:65:0;40915:29;40932:1;40936:7;40915:8;:29::i;:::-;-1:-1:-1;;;;;40957:15:0;;;;;;:9;:15;;;;;:20;;40976:1;;40957:15;:20;;40976:1;;40957:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40988:13:0;;;;;;:9;:13;;;;;:18;;41005:1;;40988:13;:18;;41005:1;;40988:18;:::i;:::-;;;;-1:-1:-1;;41017:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41017:21:0;-1:-1:-1;;;;;41017:21:0;;;;;;;;;41056:27;;41017:16;;41056:27;;;;;;;40513:578;;;:::o;4979:98::-;5037:7;5064:5;5068:1;5064;:5;:::i;:::-;5057:12;4979:98;-1:-1:-1;;;4979:98:0:o;45325:192::-;45381:10;45394:14;:12;:14::i;:::-;45381:27;;45419;:15;1067:19;;1085:1;1067:19;;;978:127;45419:27;45457:18;45467:3;45472:2;45457:9;:18::i;:::-;45491;;45506:2;;45491:18;;;;;45370:147;45325:192;:::o;46419:181::-;46494:12;46512:8;-1:-1:-1;;;;;46512:13:0;46533:7;46512:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46493:52;;;46564:7;46556:36;;;;-1:-1:-1;;;46556:36:0;;13770:2:1;46556:36:0;;;13752:21:1;13809:2;13789:18;;;13782:30;-1:-1:-1;;;13828:18:1;;;13821:46;13884:18;;46556:36:0;13568:340:1;13413:173:0;13488:6;;;-1:-1:-1;;;;;13505:17:0;;;-1:-1:-1;;;;;;13505:17:0;;;;;;;13538:40;;13488:6;;;13505:17;13488:6;;13538:40;;13469:16;;13538:40;13458:128;13413:173;:::o;36599:315::-;36756:28;36766:4;36772:2;36776:7;36756:9;:28::i;:::-;36803:48;36826:4;36832:2;36836:7;36845:5;36803:22;:48::i;:::-;36795:111;;;;-1:-1:-1;;;36795:111:0;;;;;;;:::i;8717:723::-;8773:13;8994:10;8990:53;;-1:-1:-1;;9021:10:0;;;;;;;;;;;;-1:-1:-1;;;9021:10:0;;;;;8717:723::o;8990:53::-;9068:5;9053:12;9109:78;9116:9;;9109:78;;9142:8;;;;:::i;:::-;;-1:-1:-1;9165:10:0;;-1:-1:-1;9173:2:0;9165:10;;:::i;:::-;;;9109:78;;;9197:19;9229:6;9219:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9219:17:0;;9197:39;;9247:154;9254:10;;9247:154;;9281:11;9291:1;9281:11;;:::i;:::-;;-1:-1:-1;9350:10:0;9358:2;9350:5;:10;:::i;:::-;9337:24;;:2;:24;:::i;:::-;9324:39;;9307:6;9314;9307:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9307:56:0;;;;;;;;-1:-1:-1;9378:11:0;9387:2;9378:11;;:::i;:::-;;;9247:154;;44478:106;44525:7;44552:24;:14;948;;856:114;38211:110;38287:26;38297:2;38301:7;38287:26;;;;;;;;;;;;:9;:26::i;41948:799::-;42103:4;-1:-1:-1;;;;;42124:13:0;;14682:20;14730:8;42120:620;;42160:72;;-1:-1:-1;;;42160:72:0;;-1:-1:-1;;;;;42160:36:0;;;;;:72;;11181:10;;42211:4;;42217:7;;42226:5;;42160:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42160:72:0;;;;;;;;-1:-1:-1;;42160:72:0;;;;;;;;;;;;:::i;:::-;;;42156:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42402:13:0;;42398:272;;42445:60;;-1:-1:-1;;;42445:60:0;;;;;;;:::i;42398:272::-;42620:6;42614:13;42605:6;42601:2;42597:15;42590:38;42156:529;-1:-1:-1;;;;;;42283:51:0;-1:-1:-1;;;42283:51:0;;-1:-1:-1;42276:58:0;;42120:620;-1:-1:-1;42724:4:0;41948:799;;;;;;:::o;38548:321::-;38678:18;38684:2;38688:7;38678:5;:18::i;:::-;38729:54;38760:1;38764:2;38768:7;38777:5;38729:22;:54::i;:::-;38707:154;;;;-1:-1:-1;;;38707:154:0;;;;;;;:::i;39205:382::-;-1:-1:-1;;;;;39285:16:0;;39277:61;;;;-1:-1:-1;;;39277:61:0;;11141:2:1;39277:61:0;;;11123:21:1;;;11160:18;;;11153:30;11219:34;11199:18;;;11192:62;11271:18;;39277:61:0;10939:356:1;39277:61:0;37292:4;37316:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37316:16:0;:30;39349:58;;;;-1:-1:-1;;;39349:58:0;;8029:2:1;39349:58:0;;;8011:21:1;8068:2;8048:18;;;8041:30;8107;8087:18;;;8080:58;8155:18;;39349:58:0;7827:352:1;39349:58:0;-1:-1:-1;;;;;39478:13:0;;;;;;:9;:13;;;;;:18;;39495:1;;39478:13;:18;;39495:1;;39478:18;:::i;:::-;;;;-1:-1:-1;;39507:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39507:21:0;-1:-1:-1;;;;;39507:21:0;;;;;;;;39546:33;;39507:16;;;39546:33;;39507:16;;39546:33;39205:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4495:1174::-;4671:3;4700:1;4733:6;4727:13;4763:3;4785:1;4813:9;4809:2;4805:18;4795:28;;4873:2;4862:9;4858:18;4895;4885:61;;4939:4;4931:6;4927:17;4917:27;;4885:61;4965:2;5013;5005:6;5002:14;4982:18;4979:38;4976:165;;;-1:-1:-1;;;5040:33:1;;5096:4;5093:1;5086:15;5126:4;5047:3;5114:17;4976:165;5157:18;5184:104;;;;5302:1;5297:320;;;;5150:467;;5184:104;-1:-1:-1;;5217:24:1;;5205:37;;5262:16;;;;-1:-1:-1;5184:104:1;;5297:320;14586:1;14579:14;;;14623:4;14610:18;;5392:1;5406:165;5420:6;5417:1;5414:13;5406:165;;;5498:14;;5485:11;;;5478:35;5541:16;;;;5435:10;;5406:165;;;5410:3;;5600:6;5595:3;5591:16;5584:23;;5150:467;;;;;;;5633:30;5659:3;5651:6;5633:30;:::i;:::-;5626:37;4495:1174;-1:-1:-1;;;;;4495:1174:1:o;6092:488::-;-1:-1:-1;;;;;6361:15:1;;;6343:34;;6413:15;;6408:2;6393:18;;6386:43;6460:2;6445:18;;6438:34;;;6508:3;6503:2;6488:18;;6481:31;;;6286:4;;6529:45;;6554:19;;6546:6;6529:45;:::i;:::-;6521:53;6092:488;-1:-1:-1;;;;;;6092:488:1:o;6777:219::-;6926:2;6915:9;6908:21;6889:4;6946:44;6986:2;6975:9;6971:18;6963:6;6946:44;:::i;7001:414::-;7203:2;7185:21;;;7242:2;7222:18;;;7215:30;7281:34;7276:2;7261:18;;7254:62;-1:-1:-1;;;7347:2:1;7332:18;;7325:48;7405:3;7390:19;;7001:414::o;12049:356::-;12251:2;12233:21;;;12270:18;;;12263:30;12329:34;12324:2;12309:18;;12302:62;12396:2;12381:18;;12049:356::o;13913:413::-;14115:2;14097:21;;;14154:2;14134:18;;;14127:30;14193:34;14188:2;14173:18;;14166:62;-1:-1:-1;;;14259:2:1;14244:18;;14237:47;14316:3;14301:19;;13913:413::o;14639:128::-;14679:3;14710:1;14706:6;14703:1;14700:13;14697:39;;;14716:18;;:::i;:::-;-1:-1:-1;14752:9:1;;14639:128::o;14772:120::-;14812:1;14838;14828:35;;14843:18;;:::i;:::-;-1:-1:-1;14877:9:1;;14772:120::o;14897:168::-;14937:7;15003:1;14999;14995:6;14991:14;14988:1;14985:21;14980:1;14973:9;14966:17;14962:45;14959:71;;;15010:18;;:::i;:::-;-1:-1:-1;15050:9:1;;14897:168::o;15070:125::-;15110:4;15138:1;15135;15132:8;15129:34;;;15143:18;;:::i;:::-;-1:-1:-1;15180:9:1;;15070:125::o;15200:258::-;15272:1;15282:113;15296:6;15293:1;15290:13;15282:113;;;15372:11;;;15366:18;15353:11;;;15346:39;15318:2;15311:10;15282:113;;;15413:6;15410:1;15407:13;15404:48;;;-1:-1:-1;;15448:1:1;15430:16;;15423:27;15200:258::o;15463:380::-;15542:1;15538:12;;;;15585;;;15606:61;;15660:4;15652:6;15648:17;15638:27;;15606:61;15713:2;15705:6;15702:14;15682:18;15679:38;15676:161;;;15759:10;15754:3;15750:20;15747:1;15740:31;15794:4;15791:1;15784:15;15822:4;15819:1;15812:15;15676:161;;15463:380;;;:::o;15848:135::-;15887:3;-1:-1:-1;;15908:17:1;;15905:43;;;15928:18;;:::i;:::-;-1:-1:-1;15975:1:1;15964:13;;15848:135::o;15988:112::-;16020:1;16046;16036:35;;16051:18;;:::i;:::-;-1:-1:-1;16085:9:1;;15988:112::o;16105:127::-;16166:10;16161:3;16157:20;16154:1;16147:31;16197:4;16194:1;16187:15;16221:4;16218:1;16211:15;16237:127;16298:10;16293:3;16289:20;16286:1;16279:31;16329:4;16326:1;16319:15;16353:4;16350:1;16343:15;16369:127;16430:10;16425:3;16421:20;16418:1;16411:31;16461:4;16458:1;16451:15;16485:4;16482:1;16475:15;16501:127;16562:10;16557:3;16553:20;16550:1;16543:31;16593:4;16590:1;16583:15;16617:4;16614:1;16607:15;16633:131;-1:-1:-1;;;;;;16707:32:1;;16697:43;;16687:71;;16754:1;16751;16744:12
Swarm Source
ipfs://84cd3a2f72b151cfb824f5922b083e3cdc51c506c92911189a7bf6cc36a92d13
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.