Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
6,000,000,000 IPX
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
25,544,471.523512430208892657 IPXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InpulseX
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.17; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; import "@openzeppelin/contracts/interfaces/IERC1363.sol"; import "@openzeppelin/contracts/interfaces/IERC1363Receiver.sol"; import "@openzeppelin/contracts/interfaces/IERC1363Spender.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract InpulseX is Context, IERC165, IERC1363, Ownable { using Address for address; /* ERC20 related */ mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private constant _SYMBOL = "IPX"; string private constant _NAME = "InpulseX"; /** * Define a total supply of 6,000,000,000 tokens * with a decimal accuracy of 18 places */ uint8 private constant _DECIMALS = 18; uint256 private constant _TOTAL_SUPPLY = 6e9 * 1e18; constructor() { _balances[msg.sender] = _TOTAL_SUPPLY; emit Transfer(address(0), msg.sender, _TOTAL_SUPPLY); } /** * @dev Returns the contract owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external pure returns (uint8) { return _DECIMALS; } /** * @dev Returns the token symbol. */ function symbol() external pure returns (string memory) { return _SYMBOL; } /** * @dev Returns the token name. */ function name() external pure returns (string memory) { return _NAME; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external pure returns (uint256) { return _TOTAL_SUPPLY; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address addr, address spender) external view returns (uint256) { return _allowances[addr][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public returns (bool) { require( _allowances[sender][_msgSender()] >= amount, "ERC20: transfer amount exceeds allowance" ); _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()] - amount ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) { require( _allowances[_msgSender()][spender] > subtractedValue, "ERC20: decreased allowance below zero" ); _approve( _msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue ); return true; } event Reflect(uint256 amount); /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * Emits a {Reflect} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require( _balances[sender] >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] -= amount; _balances[recipient] += amount; } emit Transfer(sender, recipient, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `addr`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `addr` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address addr, address spender, uint256 amount ) internal { require(addr != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[addr][spender] = amount; emit Approval(addr, spender, amount); } /* ERC165 methods */ /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) external pure returns (bool) { return interfaceId == type(IERC1363).interfaceId || interfaceId == type(IERC20).interfaceId || interfaceId == type(IERC165).interfaceId; } /* ERC1363 methods */ /** * @dev Transfer tokens to a specified address and then execute a callback on recipient. * @param recipient The address to transfer to. * @param amount The amount to be transferred. * @return A boolean that indicates if the operation was successful. */ function transferAndCall(address recipient, uint256 amount) external returns (bool) { return transferAndCall(recipient, amount, ""); } /** * @dev Transfer tokens to a specified address and then execute a callback on recipient. * @param recipient The address to transfer to * @param amount The amount to be transferred * @param data Additional data with no specified format * @return A boolean that indicates if the operation was successful. */ function transferAndCall( address recipient, uint256 amount, bytes memory data ) public returns (bool) { transfer(recipient, amount); require( _checkAndCallTransfer(_msgSender(), recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts" ); return true; } /** * @dev Transfer tokens from one address to another and then execute a callback on recipient. * @param sender The address which you want to send tokens from * @param recipient The address which you want to transfer to * @param amount The amount of tokens to be transferred * @return A boolean that indicates if the operation was successful. */ function transferFromAndCall( address sender, address recipient, uint256 amount ) external returns (bool) { return transferFromAndCall(sender, recipient, amount, ""); } /** * @dev Transfer tokens from one address to another and then execute a callback on recipient. * @param sender The address which you want to send tokens from * @param recipient The address which you want to transfer to * @param amount The amount of tokens to be transferred * @param data Additional data with no specified format * @return A boolean that indicates if the operation was successful. */ function transferFromAndCall( address sender, address recipient, uint256 amount, bytes memory data ) public returns (bool) { transferFrom(sender, recipient, amount); require( _checkAndCallTransfer(sender, recipient, amount, data), "ERC1363: _checkAndCallTransfer reverts" ); return true; } /** * @dev Approve spender to transfer tokens and then execute a callback on recipient. * @param spender The address allowed to transfer to * @param amount The amount allowed to be transferred * @return A boolean that indicates if the operation was successful. */ function approveAndCall(address spender, uint256 amount) external returns (bool) { return approveAndCall(spender, amount, ""); } /** * @dev Approve spender to transfer tokens and then execute a callback on recipient. * @param spender The address allowed to transfer to. * @param amount The amount allowed to be transferred. * @param data Additional data with no specified format. * @return A boolean that indicates if the operation was successful. */ function approveAndCall( address spender, uint256 amount, bytes memory data ) public returns (bool) { approve(spender, amount); require( _checkAndCallApprove(spender, amount, data), "ERC1363: _checkAndCallApprove reverts" ); return true; } /** * @dev Internal function to invoke `onTransferReceived` on a target address * The call is not executed if the target address is not a contract * @param sender address Representing the previous owner of the given token value * @param recipient address Target address that will receive the tokens * @param amount uint256 The amount mount of tokens to be transferred * @param data bytes Optional data to send along with the call * @return whether the call correctly returned the expected magic value */ function _checkAndCallTransfer( address sender, address recipient, uint256 amount, bytes memory data ) internal returns (bool) { if (!recipient.isContract()) { return false; } bytes4 retval = IERC1363Receiver(recipient).onTransferReceived( _msgSender(), sender, amount, data ); return (retval == IERC1363Receiver(recipient).onTransferReceived.selector); } /** * @dev Internal function to invoke `onApprovalReceived` on a target address * The call is not executed if the target address is not a contract * @param spender address The address which will spend the funds * @param amount uint256 The amount of tokens to be spent * @param data bytes Optional data to send along with the call * @return whether the call correctly returned the expected magic value */ function _checkAndCallApprove( address spender, uint256 amount, bytes memory data ) internal returns (bool) { if (!spender.isContract()) { return false; } bytes4 retval = IERC1363Spender(spender).onApprovalReceived( _msgSender(), amount, data ); return (retval == IERC1363Spender(spender).onApprovalReceived.selector); } /** * @dev Sends `amount` of ERC20 `token` from contract address to `recipient` * * Useful if someone sent ERC20 tokens to the contract address by mistake. */ function recoverERC20( address token, address recipient, uint256 amount ) external onlyOwner returns (bool) { require(token != address(this), "InpulseX: cannot recover IPX"); return IERC20(token).transfer(recipient, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC165.sol"; interface IERC1363 is IERC165, IERC20 { /* * Note: the ERC-165 identifier for this interface is 0x4bbee2df. * 0x4bbee2df === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) */ /* * Note: the ERC-165 identifier for this interface is 0xfb9ec8ce. * 0xfb9ec8ce === * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ /** * @dev Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver * @param to address The address which you want to transfer to * @param value uint256 The amount of tokens to be transferred * @return true unless throwing */ function transferAndCall(address to, uint256 value) external returns (bool); /** * @dev Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver * @param to address The address which you want to transfer to * @param value uint256 The amount of tokens to be transferred * @param data bytes Additional data with no specified format, sent in call to `to` * @return true unless throwing */ function transferAndCall( address to, uint256 value, bytes memory data ) external returns (bool); /** * @dev Transfer tokens from one address to another and then call `onTransferReceived` on receiver * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 The amount of tokens to be transferred * @return true unless throwing */ function transferFromAndCall( address from, address to, uint256 value ) external returns (bool); /** * @dev Transfer tokens from one address to another and then call `onTransferReceived` on receiver * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 The amount of tokens to be transferred * @param data bytes Additional data with no specified format, sent in call to `to` * @return true unless throwing */ function transferFromAndCall( address from, address to, uint256 value, bytes memory data ) external returns (bool); /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender * and then call `onApprovalReceived` on spender. * @param spender address The address which will spend the funds * @param value uint256 The amount of tokens to be spent */ function approveAndCall(address spender, uint256 value) external returns (bool); /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender * and then call `onApprovalReceived` on spender. * @param spender address The address which will spend the funds * @param value uint256 The amount of tokens to be spent * @param data bytes Additional data with no specified format, sent in call to `spender` */ function approveAndCall( address spender, uint256 value, bytes memory data ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363Receiver.sol) pragma solidity ^0.8.0; interface IERC1363Receiver { /* * Note: the ERC-165 identifier for this interface is 0x88a7ca5c. * 0x88a7ca5c === bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)")) */ /** * @notice Handle the receipt of ERC1363 tokens * @dev Any ERC1363 smart contract calls this function on the recipient * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the * transfer. Return of other than the magic value MUST result in the * transaction being reverted. * Note: the token contract address is always the message sender. * @param operator address The address which called `transferAndCall` or `transferFromAndCall` function * @param from address The address which are token transferred from * @param value uint256 The amount of tokens transferred * @param data bytes Additional data with no specified format * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` * unless throwing */ function onTransferReceived( address operator, address from, uint256 value, bytes memory data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1363Spender.sol) pragma solidity ^0.8.0; interface IERC1363Spender { /* * Note: the ERC-165 identifier for this interface is 0x7b04a2d0. * 0x7b04a2d0 === bytes4(keccak256("onApprovalReceived(address,uint256,bytes)")) */ /** * @notice Handle the approval of ERC1363 tokens * @dev Any ERC1363 smart contract calls this function on the recipient * after an `approve`. This function MAY throw to revert and reject the * approval. Return of other than the magic value MUST result in the * transaction being reverted. * Note: the token contract address is always the message sender. * @param owner address The address which called `approveAndCall` function * @param value uint256 The amount of tokens to be spent * @param data bytes Additional data with no specified format * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` * unless throwing */ function onApprovalReceived( address owner, uint256 value, bytes memory data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Reflect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506200003262000026620000fc60201b60201c565b6200010460201b60201c565b6b1363156bbee3016d70000000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b1363156bbee3016d70000000604051620000ee9190620001e3565b60405180910390a362000200565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b620001dd81620001c8565b82525050565b6000602082019050620001fa6000830184620001d2565b92915050565b61255980620002106000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103f0578063c1d34b8914610420578063cae9ca5114610450578063d8fbe99414610480578063dd62ed3e146104b0578063f2fde38b146104e05761014d565b806370a082311461032c578063715018a61461035c578063893d20e8146103665780638da5cb5b1461038457806395d89b41146103a2578063a457c2d7146103c05761014d565b806318160ddd1161011557806318160ddd1461023057806323b872dd1461024e578063313ce5671461027e5780633177029f1461029c57806339509351146102cc5780634000aea0146102fc5761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a05780631171bda9146101d05780631296ee6214610200575b600080fd5b61016c60048036038101906101679190611702565b6104fc565b604051610179919061174a565b60405180910390f35b61018a610636565b60405161019791906117f5565b60405180910390f35b6101ba60048036038101906101b591906118ab565b610673565b6040516101c7919061174a565b60405180910390f35b6101ea60048036038101906101e591906118eb565b610691565b6040516101f7919061174a565b60405180910390f35b61021a600480360381019061021591906118ab565b610790565b604051610227919061174a565b60405180910390f35b6102386107b4565b604051610245919061194d565b60405180910390f35b610268600480360381019061026391906118eb565b6107c8565b604051610275919061174a565b60405180910390f35b610286610946565b6040516102939190611984565b60405180910390f35b6102b660048036038101906102b191906118ab565b61094f565b6040516102c3919061174a565b60405180910390f35b6102e660048036038101906102e191906118ab565b610973565b6040516102f3919061174a565b60405180910390f35b61031660048036038101906103119190611ad4565b610a1f565b604051610323919061174a565b60405180910390f35b61034660048036038101906103419190611b43565b610a89565b604051610353919061194d565b60405180910390f35b610364610ad2565b005b61036e610ae6565b60405161037b9190611b7f565b60405180910390f35b61038c610af5565b6040516103999190611b7f565b60405180910390f35b6103aa610b1e565b6040516103b791906117f5565b60405180910390f35b6103da60048036038101906103d591906118ab565b610b5b565b6040516103e7919061174a565b60405180910390f35b61040a600480360381019061040591906118ab565b610ccc565b604051610417919061174a565b60405180910390f35b61043a60048036038101906104359190611b9a565b610cea565b604051610447919061174a565b60405180910390f35b61046a60048036038101906104659190611ad4565b610d4f565b604051610477919061174a565b60405180910390f35b61049a600480360381019061049591906118eb565b610db1565b6040516104a7919061174a565b60405180910390f35b6104ca60048036038101906104c59190611c1d565b610dd7565b6040516104d7919061194d565b60405180910390f35b6104fa60048036038101906104f59190611b43565b610e5e565b005b60007fb0202a11000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c757507f36372b07000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f496e70756c736558000000000000000000000000000000000000000000000000815250905090565b6000610687610680610ee1565b8484610ee9565b6001905092915050565b600061069b6110b2565b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070090611ca9565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610744929190611cc9565b6020604051808303816000875af1158015610763573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107879190611d1e565b90509392505050565b60006107ac838360405180602001604052806000815250610a1f565b905092915050565b60006b1363156bbee3016d70000000905090565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610814610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611dbd565b60405180910390fd5b61089b848484611130565b61093b846108a7610ee1565b84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f1610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109369190611e0c565b610ee9565b600190509392505050565b60006012905090565b600061096b838360405180602001604052806000815250610d4f565b905092915050565b6000610a15610980610ee1565b84846002600061098e610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a109190611e40565b610ee9565b6001905092915050565b6000610a2b8484610ccc565b50610a3f610a37610ee1565b858585611394565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611ee6565b60405180910390fd5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ada6110b2565b610ae460006114a3565b565b6000610af0610af5565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4950580000000000000000000000000000000000000000000000000000000000815250905090565b60008160026000610b6a610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990611f78565b60405180910390fd5b610cc2610c2d610ee1565b848460026000610c3b610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbd9190611e0c565b610ee9565b6001905092915050565b6000610ce0610cd9610ee1565b8484611130565b6001905092915050565b6000610cf78585856107c8565b50610d0485858585611394565b610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90611ee6565b60405180910390fd5b60019050949350505050565b6000610d5b8484610673565b50610d67848484611567565b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061200a565b60405180910390fd5b600190509392505050565b6000610dce84848460405180602001604052806000815250610cea565b90509392505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e666110b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc9061209c565b60405180910390fd5b610ede816114a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f9061212e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906121c0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110a5919061194d565b60405180910390a3505050565b6110ba610ee1565b73ffffffffffffffffffffffffffffffffffffffff166110d8610af5565b73ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111259061222c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906122be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612350565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906123e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611387919061194d565b60405180910390a3505050565b60006113b58473ffffffffffffffffffffffffffffffffffffffff16611673565b6113c2576000905061149b565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c6113e8610ee1565b8887876040518563ffffffff1660e01b815260040161140a9493929190612457565b6020604051808303816000875af1158015611429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144d91906124b8565b90506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006115888473ffffffffffffffffffffffffffffffffffffffff16611673565b611595576000905061166c565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d06115bb610ee1565b86866040518463ffffffff1660e01b81526004016115db939291906124e5565b6020604051808303816000875af11580156115fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161e91906124b8565b9050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6116df816116aa565b81146116ea57600080fd5b50565b6000813590506116fc816116d6565b92915050565b600060208284031215611718576117176116a0565b5b6000611726848285016116ed565b91505092915050565b60008115159050919050565b6117448161172f565b82525050565b600060208201905061175f600083018461173b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179f578082015181840152602081019050611784565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c782611765565b6117d18185611770565b93506117e1818560208601611781565b6117ea816117ab565b840191505092915050565b6000602082019050818103600083015261180f81846117bc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184282611817565b9050919050565b61185281611837565b811461185d57600080fd5b50565b60008135905061186f81611849565b92915050565b6000819050919050565b61188881611875565b811461189357600080fd5b50565b6000813590506118a58161187f565b92915050565b600080604083850312156118c2576118c16116a0565b5b60006118d085828601611860565b92505060206118e185828601611896565b9150509250929050565b600080600060608486031215611904576119036116a0565b5b600061191286828701611860565b935050602061192386828701611860565b925050604061193486828701611896565b9150509250925092565b61194781611875565b82525050565b6000602082019050611962600083018461193e565b92915050565b600060ff82169050919050565b61197e81611968565b82525050565b60006020820190506119996000830184611975565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119e1826117ab565b810181811067ffffffffffffffff82111715611a00576119ff6119a9565b5b80604052505050565b6000611a13611696565b9050611a1f82826119d8565b919050565b600067ffffffffffffffff821115611a3f57611a3e6119a9565b5b611a48826117ab565b9050602081019050919050565b82818337600083830152505050565b6000611a77611a7284611a24565b611a09565b905082815260208101848484011115611a9357611a926119a4565b5b611a9e848285611a55565b509392505050565b600082601f830112611abb57611aba61199f565b5b8135611acb848260208601611a64565b91505092915050565b600080600060608486031215611aed57611aec6116a0565b5b6000611afb86828701611860565b9350506020611b0c86828701611896565b925050604084013567ffffffffffffffff811115611b2d57611b2c6116a5565b5b611b3986828701611aa6565b9150509250925092565b600060208284031215611b5957611b586116a0565b5b6000611b6784828501611860565b91505092915050565b611b7981611837565b82525050565b6000602082019050611b946000830184611b70565b92915050565b60008060008060808587031215611bb457611bb36116a0565b5b6000611bc287828801611860565b9450506020611bd387828801611860565b9350506040611be487828801611896565b925050606085013567ffffffffffffffff811115611c0557611c046116a5565b5b611c1187828801611aa6565b91505092959194509250565b60008060408385031215611c3457611c336116a0565b5b6000611c4285828601611860565b9250506020611c5385828601611860565b9150509250929050565b7f496e70756c7365583a2063616e6e6f74207265636f7665722049505800000000600082015250565b6000611c93601c83611770565b9150611c9e82611c5d565b602082019050919050565b60006020820190508181036000830152611cc281611c86565b9050919050565b6000604082019050611cde6000830185611b70565b611ceb602083018461193e565b9392505050565b611cfb8161172f565b8114611d0657600080fd5b50565b600081519050611d1881611cf2565b92915050565b600060208284031215611d3457611d336116a0565b5b6000611d4284828501611d09565b91505092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611da7602883611770565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e1782611875565b9150611e2283611875565b9250828203905081811115611e3a57611e39611ddd565b5b92915050565b6000611e4b82611875565b9150611e5683611875565b9250828201905080821115611e6e57611e6d611ddd565b5b92915050565b7f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260008201527f6576657274730000000000000000000000000000000000000000000000000000602082015250565b6000611ed0602683611770565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f62602583611770565b9150611f6d82611f06565b604082019050919050565b60006020820190508181036000830152611f9181611f55565b9050919050565b7f455243313336333a205f636865636b416e6443616c6c417070726f766520726560008201527f7665727473000000000000000000000000000000000000000000000000000000602082015250565b6000611ff4602583611770565b9150611fff82611f98565b604082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612086602683611770565b91506120918261202a565b604082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612118602483611770565b9150612123826120bc565b604082019050919050565b600060208201905081810360008301526121478161210b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121aa602283611770565b91506121b58261214e565b604082019050919050565b600060208201905081810360008301526121d98161219d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612216602083611770565b9150612221826121e0565b602082019050919050565b6000602082019050818103600083015261224581612209565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122a8602583611770565b91506122b38261224c565b604082019050919050565b600060208201905081810360008301526122d78161229b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061233a602383611770565b9150612345826122de565b604082019050919050565b600060208201905081810360008301526123698161232d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123cc602683611770565b91506123d782612370565b604082019050919050565b600060208201905081810360008301526123fb816123bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061242982612402565b612433818561240d565b9350612443818560208601611781565b61244c816117ab565b840191505092915050565b600060808201905061246c6000830187611b70565b6124796020830186611b70565b612486604083018561193e565b8181036060830152612498818461241e565b905095945050505050565b6000815190506124b2816116d6565b92915050565b6000602082840312156124ce576124cd6116a0565b5b60006124dc848285016124a3565b91505092915050565b60006060820190506124fa6000830186611b70565b612507602083018561193e565b8181036040830152612519818461241e565b905094935050505056fea2646970667358221220e3311c8e4394d0cb1b8e3f9c341ae283678a96fbd23b9778bd4ae28df26fdacf64736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103f0578063c1d34b8914610420578063cae9ca5114610450578063d8fbe99414610480578063dd62ed3e146104b0578063f2fde38b146104e05761014d565b806370a082311461032c578063715018a61461035c578063893d20e8146103665780638da5cb5b1461038457806395d89b41146103a2578063a457c2d7146103c05761014d565b806318160ddd1161011557806318160ddd1461023057806323b872dd1461024e578063313ce5671461027e5780633177029f1461029c57806339509351146102cc5780634000aea0146102fc5761014d565b806301ffc9a71461015257806306fdde0314610182578063095ea7b3146101a05780631171bda9146101d05780631296ee6214610200575b600080fd5b61016c60048036038101906101679190611702565b6104fc565b604051610179919061174a565b60405180910390f35b61018a610636565b60405161019791906117f5565b60405180910390f35b6101ba60048036038101906101b591906118ab565b610673565b6040516101c7919061174a565b60405180910390f35b6101ea60048036038101906101e591906118eb565b610691565b6040516101f7919061174a565b60405180910390f35b61021a600480360381019061021591906118ab565b610790565b604051610227919061174a565b60405180910390f35b6102386107b4565b604051610245919061194d565b60405180910390f35b610268600480360381019061026391906118eb565b6107c8565b604051610275919061174a565b60405180910390f35b610286610946565b6040516102939190611984565b60405180910390f35b6102b660048036038101906102b191906118ab565b61094f565b6040516102c3919061174a565b60405180910390f35b6102e660048036038101906102e191906118ab565b610973565b6040516102f3919061174a565b60405180910390f35b61031660048036038101906103119190611ad4565b610a1f565b604051610323919061174a565b60405180910390f35b61034660048036038101906103419190611b43565b610a89565b604051610353919061194d565b60405180910390f35b610364610ad2565b005b61036e610ae6565b60405161037b9190611b7f565b60405180910390f35b61038c610af5565b6040516103999190611b7f565b60405180910390f35b6103aa610b1e565b6040516103b791906117f5565b60405180910390f35b6103da60048036038101906103d591906118ab565b610b5b565b6040516103e7919061174a565b60405180910390f35b61040a600480360381019061040591906118ab565b610ccc565b604051610417919061174a565b60405180910390f35b61043a60048036038101906104359190611b9a565b610cea565b604051610447919061174a565b60405180910390f35b61046a60048036038101906104659190611ad4565b610d4f565b604051610477919061174a565b60405180910390f35b61049a600480360381019061049591906118eb565b610db1565b6040516104a7919061174a565b60405180910390f35b6104ca60048036038101906104c59190611c1d565b610dd7565b6040516104d7919061194d565b60405180910390f35b6104fa60048036038101906104f59190611b43565b610e5e565b005b60007fb0202a11000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c757507f36372b07000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f496e70756c736558000000000000000000000000000000000000000000000000815250905090565b6000610687610680610ee1565b8484610ee9565b6001905092915050565b600061069b6110b2565b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070090611ca9565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610744929190611cc9565b6020604051808303816000875af1158015610763573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107879190611d1e565b90509392505050565b60006107ac838360405180602001604052806000815250610a1f565b905092915050565b60006b1363156bbee3016d70000000905090565b600081600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610814610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611dbd565b60405180910390fd5b61089b848484611130565b61093b846108a7610ee1565b84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108f1610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109369190611e0c565b610ee9565b600190509392505050565b60006012905090565b600061096b838360405180602001604052806000815250610d4f565b905092915050565b6000610a15610980610ee1565b84846002600061098e610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a109190611e40565b610ee9565b6001905092915050565b6000610a2b8484610ccc565b50610a3f610a37610ee1565b858585611394565b610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611ee6565b60405180910390fd5b600190509392505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ada6110b2565b610ae460006114a3565b565b6000610af0610af5565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4950580000000000000000000000000000000000000000000000000000000000815250905090565b60008160026000610b6a610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990611f78565b60405180910390fd5b610cc2610c2d610ee1565b848460026000610c3b610ee1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbd9190611e0c565b610ee9565b6001905092915050565b6000610ce0610cd9610ee1565b8484611130565b6001905092915050565b6000610cf78585856107c8565b50610d0485858585611394565b610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90611ee6565b60405180910390fd5b60019050949350505050565b6000610d5b8484610673565b50610d67848484611567565b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061200a565b60405180910390fd5b600190509392505050565b6000610dce84848460405180602001604052806000815250610cea565b90509392505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e666110b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc9061209c565b60405180910390fd5b610ede816114a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f9061212e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906121c0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110a5919061194d565b60405180910390a3505050565b6110ba610ee1565b73ffffffffffffffffffffffffffffffffffffffff166110d8610af5565b73ffffffffffffffffffffffffffffffffffffffff161461112e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111259061222c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611196906122be565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612350565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611290576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611287906123e2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611387919061194d565b60405180910390a3505050565b60006113b58473ffffffffffffffffffffffffffffffffffffffff16611673565b6113c2576000905061149b565b60008473ffffffffffffffffffffffffffffffffffffffff166388a7ca5c6113e8610ee1565b8887876040518563ffffffff1660e01b815260040161140a9493929190612457565b6020604051808303816000875af1158015611429573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144d91906124b8565b90506388a7ca5c60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006115888473ffffffffffffffffffffffffffffffffffffffff16611673565b611595576000905061166c565b60008473ffffffffffffffffffffffffffffffffffffffff16637b04a2d06115bb610ee1565b86866040518463ffffffff1660e01b81526004016115db939291906124e5565b6020604051808303816000875af11580156115fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161e91906124b8565b9050637b04a2d060e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b9392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6116df816116aa565b81146116ea57600080fd5b50565b6000813590506116fc816116d6565b92915050565b600060208284031215611718576117176116a0565b5b6000611726848285016116ed565b91505092915050565b60008115159050919050565b6117448161172f565b82525050565b600060208201905061175f600083018461173b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561179f578082015181840152602081019050611784565b60008484015250505050565b6000601f19601f8301169050919050565b60006117c782611765565b6117d18185611770565b93506117e1818560208601611781565b6117ea816117ab565b840191505092915050565b6000602082019050818103600083015261180f81846117bc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184282611817565b9050919050565b61185281611837565b811461185d57600080fd5b50565b60008135905061186f81611849565b92915050565b6000819050919050565b61188881611875565b811461189357600080fd5b50565b6000813590506118a58161187f565b92915050565b600080604083850312156118c2576118c16116a0565b5b60006118d085828601611860565b92505060206118e185828601611896565b9150509250929050565b600080600060608486031215611904576119036116a0565b5b600061191286828701611860565b935050602061192386828701611860565b925050604061193486828701611896565b9150509250925092565b61194781611875565b82525050565b6000602082019050611962600083018461193e565b92915050565b600060ff82169050919050565b61197e81611968565b82525050565b60006020820190506119996000830184611975565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6119e1826117ab565b810181811067ffffffffffffffff82111715611a00576119ff6119a9565b5b80604052505050565b6000611a13611696565b9050611a1f82826119d8565b919050565b600067ffffffffffffffff821115611a3f57611a3e6119a9565b5b611a48826117ab565b9050602081019050919050565b82818337600083830152505050565b6000611a77611a7284611a24565b611a09565b905082815260208101848484011115611a9357611a926119a4565b5b611a9e848285611a55565b509392505050565b600082601f830112611abb57611aba61199f565b5b8135611acb848260208601611a64565b91505092915050565b600080600060608486031215611aed57611aec6116a0565b5b6000611afb86828701611860565b9350506020611b0c86828701611896565b925050604084013567ffffffffffffffff811115611b2d57611b2c6116a5565b5b611b3986828701611aa6565b9150509250925092565b600060208284031215611b5957611b586116a0565b5b6000611b6784828501611860565b91505092915050565b611b7981611837565b82525050565b6000602082019050611b946000830184611b70565b92915050565b60008060008060808587031215611bb457611bb36116a0565b5b6000611bc287828801611860565b9450506020611bd387828801611860565b9350506040611be487828801611896565b925050606085013567ffffffffffffffff811115611c0557611c046116a5565b5b611c1187828801611aa6565b91505092959194509250565b60008060408385031215611c3457611c336116a0565b5b6000611c4285828601611860565b9250506020611c5385828601611860565b9150509250929050565b7f496e70756c7365583a2063616e6e6f74207265636f7665722049505800000000600082015250565b6000611c93601c83611770565b9150611c9e82611c5d565b602082019050919050565b60006020820190508181036000830152611cc281611c86565b9050919050565b6000604082019050611cde6000830185611b70565b611ceb602083018461193e565b9392505050565b611cfb8161172f565b8114611d0657600080fd5b50565b600081519050611d1881611cf2565b92915050565b600060208284031215611d3457611d336116a0565b5b6000611d4284828501611d09565b91505092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611da7602883611770565b9150611db282611d4b565b604082019050919050565b60006020820190508181036000830152611dd681611d9a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e1782611875565b9150611e2283611875565b9250828203905081811115611e3a57611e39611ddd565b5b92915050565b6000611e4b82611875565b9150611e5683611875565b9250828201905080821115611e6e57611e6d611ddd565b5b92915050565b7f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260008201527f6576657274730000000000000000000000000000000000000000000000000000602082015250565b6000611ed0602683611770565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f62602583611770565b9150611f6d82611f06565b604082019050919050565b60006020820190508181036000830152611f9181611f55565b9050919050565b7f455243313336333a205f636865636b416e6443616c6c417070726f766520726560008201527f7665727473000000000000000000000000000000000000000000000000000000602082015250565b6000611ff4602583611770565b9150611fff82611f98565b604082019050919050565b6000602082019050818103600083015261202381611fe7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612086602683611770565b91506120918261202a565b604082019050919050565b600060208201905081810360008301526120b581612079565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612118602483611770565b9150612123826120bc565b604082019050919050565b600060208201905081810360008301526121478161210b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121aa602283611770565b91506121b58261214e565b604082019050919050565b600060208201905081810360008301526121d98161219d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612216602083611770565b9150612221826121e0565b602082019050919050565b6000602082019050818103600083015261224581612209565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122a8602583611770565b91506122b38261224c565b604082019050919050565b600060208201905081810360008301526122d78161229b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061233a602383611770565b9150612345826122de565b604082019050919050565b600060208201905081810360008301526123698161232d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123cc602683611770565b91506123d782612370565b604082019050919050565b600060208201905081810360008301526123fb816123bf565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061242982612402565b612433818561240d565b9350612443818560208601611781565b61244c816117ab565b840191505092915050565b600060808201905061246c6000830187611b70565b6124796020830186611b70565b612486604083018561193e565b8181036060830152612498818461241e565b905095945050505050565b6000815190506124b2816116d6565b92915050565b6000602082840312156124ce576124cd6116a0565b5b60006124dc848285016124a3565b91505092915050565b60006060820190506124fa6000830186611b70565b612507602083018561193e565b8181036040830152612519818461241e565b905094935050505056fea2646970667358221220e3311c8e4394d0cb1b8e3f9c341ae283678a96fbd23b9778bd4ae28df26fdacf64736f6c63430008110033
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.