ETH Price: $1,972.69 (+0.54%)
 

Overview

Max Total Supply

101,966 KEN

Holders

749 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.01 KEN

Value
$0.00
0xca8fa8f0b631ecdb18cda619c4fc9d197c8affca
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Kohenoor KEN Premium is a next-generation DeFi and fintech asset revolutionizing financial ecosystems through AI, blockchain, and tokenized investments. Built for global scalability, it merges smart trading, portfolio intelligence, and digital asset growth; unlocking unlimited potential in DeFi eco.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Kohenoor

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Audited
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable2Step.sol";

/// @title Kohenoor (KEN)
/// @notice Fixed-supply ERC20 with timelocked website metadata, 2-step ownership transfer, and rescue functions.
/// No mint/burn/pause/tax.
contract Kohenoor is ERC20, Ownable2Step {
    using SafeERC20 for IERC20;

    // --- Constants ---
    address public constant SAFE_WALLET   = 0x47865542D29d3a93FEC6a55F145c89E6846Bf1A0; // your Safe
    uint256 public constant TOTAL_SUPPLY  = 101_966 * 1e18; // 101,966 KEN
    uint256 public constant WEBSITE_DELAY = 1 days;

    // --- Minimal on-chain metadata ---
    string public website = "https://www.kohenoor.tech";

    // Timelocked website update
    string  private _pendingWebsite;
    uint256 private _pendingWebsiteEta;
    bool    public websiteLocked;

    // --- Events ---
    event WebsiteUpdateScheduled(string newWebsite, uint256 eta);
    event WebsiteUpdateCancelled();
    event WebsiteUpdated(string oldWebsite, string newWebsite);
    event WebsiteLockedForever();
    event RescueERC20(address indexed token, address indexed to, uint256 amount);
    event RescueETH(address indexed to, uint256 amount);

    // --- Constructor ---
    // Option A (direct Safe as initial owner; requires OZ v5):
    constructor() ERC20("Kohenoor", "KEN") Ownable(SAFE_WALLET) {
        _mint(SAFE_WALLET, TOTAL_SUPPLY);
    }

    // Option B (if you prefer deployer as temp owner; uncomment and remove the constructor above):
    // constructor() ERC20("Kohenoor", "KEN") Ownable(msg.sender) {
    //     _mint(SAFE_WALLET, TOTAL_SUPPLY);
    //     transferOwnership(SAFE_WALLET);
    // }

    // --- Website timelock flow ---
    /// @notice Schedule a website update, executable after WEBSITE_DELAY.
    function scheduleWebsite(string calldata newWebsite) external onlyOwner {
        require(!websiteLocked, "Website locked");
        uint256 eta = block.timestamp + WEBSITE_DELAY;
        _pendingWebsite = newWebsite;
        _pendingWebsiteEta = eta;
        emit WebsiteUpdateScheduled(newWebsite, eta);
    }

    /// @notice Cancel a scheduled website update.
    function cancelScheduledWebsite() external onlyOwner {
        require(_pendingWebsiteEta != 0, "Nothing scheduled");
        delete _pendingWebsite;
        delete _pendingWebsiteEta;
        emit WebsiteUpdateCancelled();
    }

    /// @notice Execute the scheduled website update after delay.
    function executeScheduledWebsite() external onlyOwner {
        require(!websiteLocked, "Website locked");
        uint256 eta = _pendingWebsiteEta;
        require(eta != 0, "Nothing scheduled");
        require(block.timestamp >= eta, "Too early");
        string memory old = website;
        website = _pendingWebsite;
        delete _pendingWebsite;
        delete _pendingWebsiteEta;
        emit WebsiteUpdated(old, website);
    }

    /// @notice Lock website forever (no further changes).
    function lockWebsiteForever() external onlyOwner {
        require(!websiteLocked, "Already locked");
        websiteLocked = true;
        // Clear pending, if any
        if (_pendingWebsiteEta != 0) {
            delete _pendingWebsite;
            delete _pendingWebsiteEta;
            emit WebsiteUpdateCancelled();
        }
        emit WebsiteLockedForever();
    }

    // --- Admin safety: disable renounce to avoid accidents ---
    function renounceOwnership() public view override onlyOwner {
    revert("renounceOwnership disabled");
}

    // --- Rescue functions ---
    /// @notice Recover ERC20 tokens sent here by mistake (not KEN).
    function rescueERC20Safe(address token, address to, uint256 amount) external onlyOwner {
        require(token != address(this), "Cannot rescue KEN");
        require(to != address(0), "to zero");
        IERC20(token).safeTransfer(to, amount);
        emit RescueERC20(token, to, amount);
    }

    /// @notice Recover native ETH sent here by mistake (e.g., via selfdestruct).
    function rescueETH(address to, uint256 amount) external onlyOwner {
        require(to != address(0), "to zero");
        (bool ok, ) = payable(to).call{value: amount}("");
        require(ok, "ETH transfer failed");
        emit RescueETH(to, amount);
    }

    // Reject accidental ETH
    receive() external payable { revert("No ETH accepted"); }
    fallback() external payable { revert("No ETH accepted"); }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;

import {Ownable} from "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This extension of the {Ownable} contract includes a two-step mechanism to transfer
 * ownership, where the new owner must call {acceptOwnership} in order to replace the
 * old one. This can help prevent common mistakes, such as transfers of ownership to
 * incorrect accounts, or to contracts that are unable to interact with the
 * permission system.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     *
     * Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.
     */
    function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {
        return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.
     */
    function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {
        return _callOptionalReturnBool(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both values are immutable: they can only be set once during construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner`'s tokens.
     *
     * This 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:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1363.sol)

pragma solidity >=0.6.2;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 11 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC165.sol)

pragma solidity >=0.4.16;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 12 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20.sol)

pragma solidity >=0.4.16;

import {IERC20} from "../token/ERC20/IERC20.sol";

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":"OwnershipTransferStarted","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":"token","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RescueERC20","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RescueETH","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"},{"anonymous":false,"inputs":[],"name":"WebsiteLockedForever","type":"event"},{"anonymous":false,"inputs":[],"name":"WebsiteUpdateCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newWebsite","type":"string"},{"indexed":false,"internalType":"uint256","name":"eta","type":"uint256"}],"name":"WebsiteUpdateScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"oldWebsite","type":"string"},{"indexed":false,"internalType":"string","name":"newWebsite","type":"string"}],"name":"WebsiteUpdated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"SAFE_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WEBSITE_DELAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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":"value","type":"uint256"}],"name":"approve","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":"cancelScheduledWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"executeScheduledWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockWebsiteForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20Safe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newWebsite","type":"string"}],"name":"scheduleWebsite","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"websiteLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280601981526020017f68747470733a2f2f7777772e6b6f68656e6f6f722e746563680000000000000081525060079081610048919061077f565b50348015610054575f5ffd5b507347865542d29d3a93fec6a55f145c89e6846bf1a06040518060400160405280600881526020017f4b6f68656e6f6f720000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b454e000000000000000000000000000000000000000000000000000000000081525081600390816100e5919061077f565b5080600490816100f5919061077f565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610168575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161015f919061088d565b60405180910390fd5b610177816101ab60201b60201c565b506101a67347865542d29d3a93fec6a55f145c89e6846bf1a06915979682f8fa787800006101e160201b60201c565b610963565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556101de8161026660201b60201c565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610251575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610248919061088d565b60405180910390fd5b6102625f838361032960201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610379578060025f82825461036d91906108d3565b92505081905550610447565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610402578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103f993929190610915565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361048e578060025f82825403925050819055506104d8565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610535919061094a565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105bd57607f821691505b6020821081036105d0576105cf610579565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105f7565b61063c86836105f7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61068061067b61067684610654565b61065d565b610654565b9050919050565b5f819050919050565b61069983610666565b6106ad6106a582610687565b848454610603565b825550505050565b5f5f905090565b6106c46106b5565b6106cf818484610690565b505050565b5b818110156106f2576106e75f826106bc565b6001810190506106d5565b5050565b601f82111561073757610708816105d6565b610711846105e8565b81016020851015610720578190505b61073461072c856105e8565b8301826106d4565b50505b505050565b5f82821c905092915050565b5f6107575f198460080261073c565b1980831691505092915050565b5f61076f8383610748565b9150826002028217905092915050565b61078882610542565b67ffffffffffffffff8111156107a1576107a061054c565b5b6107ab82546105a6565b6107b68282856106f6565b5f60209050601f8311600181146107e7575f84156107d5578287015190505b6107df8582610764565b865550610846565b601f1984166107f5866105d6565b5f5b8281101561081c578489015182556001820191506020850194506020810190506107f7565b868310156108395784890151610835601f891682610748565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108778261084e565b9050919050565b6108878161086d565b82525050565b5f6020820190506108a05f83018461087e565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108dd82610654565b91506108e883610654565b9250828201905080821115610900576108ff6108a6565b5b92915050565b61090f81610654565b82525050565b5f6060820190506109285f83018661087e565b6109356020830185610906565b6109426040830184610906565b949350505050565b5f60208201905061095d5f830184610906565b92915050565b6127d3806109705f395ff3fe608060405260043610610169575f3560e01c8063902d55a5116100d0578063bcf8ef7b11610089578063d8c9333a11610063578063d8c9333a14610548578063dd62ed3e1461055e578063e30c39781461059a578063f2fde38b146105c4576101a9565b8063bcf8ef7b146104cc578063beb0a416146104f6578063d2e702ba14610520576101a9565b8063902d55a5146103c05780639265e5c8146103ea57806395d89b4114610414578063a9059cbb1461043e578063abaca7f31461047a578063ba807243146104a4576101a9565b8063313ce56711610122578063313ce567146102ee5780636903ede21461031857806370a082311461032e578063715018a61461036a57806379ba5097146103805780638da5cb5b14610396576101a9565b806306fdde03146101e4578063095ea7b31461020e578063099a04e51461024a578063135eacb31461027257806318160ddd1461028857806323b872dd146102b2576101a9565b366101a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101a090611aa6565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101db90611aa6565b60405180910390fd5b3480156101ef575f5ffd5b506101f86105ec565b6040516102059190611b24565b60405180910390f35b348015610219575f5ffd5b50610234600480360381019061022f9190611bd9565b61067c565b6040516102419190611c31565b60405180910390f35b348015610255575f5ffd5b50610270600480360381019061026b9190611bd9565b61069e565b005b34801561027d575f5ffd5b5061028661080f565b005b348015610293575f5ffd5b5061029c6108f6565b6040516102a99190611c59565b60405180910390f35b3480156102bd575f5ffd5b506102d860048036038101906102d39190611c72565b6108ff565b6040516102e59190611c31565b60405180910390f35b3480156102f9575f5ffd5b5061030261092d565b60405161030f9190611cdd565b60405180910390f35b348015610323575f5ffd5b5061032c610935565b005b348015610339575f5ffd5b50610354600480360381019061034f9190611cf6565b6109c1565b6040516103619190611c59565b60405180910390f35b348015610375575f5ffd5b5061037e610a06565b005b34801561038b575f5ffd5b50610394610a49565b005b3480156103a1575f5ffd5b506103aa610ad7565b6040516103b79190611d30565b60405180910390f35b3480156103cb575f5ffd5b506103d4610aff565b6040516103e19190611c59565b60405180910390f35b3480156103f5575f5ffd5b506103fe610b0d565b60405161040b9190611c59565b60405180910390f35b34801561041f575f5ffd5b50610428610b14565b6040516104359190611b24565b60405180910390f35b348015610449575f5ffd5b50610464600480360381019061045f9190611bd9565b610ba4565b6040516104719190611c31565b60405180910390f35b348015610485575f5ffd5b5061048e610bc6565b60405161049b9190611c31565b60405180910390f35b3480156104af575f5ffd5b506104ca60048036038101906104c59190611c72565b610bd8565b005b3480156104d7575f5ffd5b506104e0610d51565b6040516104ed9190611d30565b60405180910390f35b348015610501575f5ffd5b5061050a610d69565b6040516105179190611b24565b60405180910390f35b34801561052b575f5ffd5b5061054660048036038101906105419190611daa565b610df5565b005b348015610553575f5ffd5b5061055c610eb7565b005b348015610569575f5ffd5b50610584600480360381019061057f9190611df5565b611086565b6040516105919190611c59565b60405180910390f35b3480156105a5575f5ffd5b506105ae611108565b6040516105bb9190611d30565b60405180910390f35b3480156105cf575f5ffd5b506105ea60048036038101906105e59190611cf6565b611130565b005b6060600380546105fb90611e60565b80601f016020809104026020016040519081016040528092919081815260200182805461062790611e60565b80156106725780601f1061064957610100808354040283529160200191610672565b820191905f5260205f20905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b5f5f6106866111dc565b90506106938185856111e3565b600191505092915050565b6106a66111f5565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070b90611eda565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161073990611f25565b5f6040518083038185875af1925050503d805f8114610773576040519150601f19603f3d011682016040523d82523d5f602084013e610778565b606091505b50509050806107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390611f83565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f77f67778e9529a2fd2147ffb2b10ca2e0d1efd8cb925e1f1d5702e39c5fa8da6836040516108029190611c59565b60405180910390a2505050565b6108176111f5565b600a5f9054906101000a900460ff1615610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611feb565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055505f600954146108c85760085f61089691906119f4565b60095f90557f427a3781f19372aa7016468efaa00fd29d6990596489f6a3ccebd8588b88618d60405160405180910390a15b7f5c869d6678067cbb2896548c41b23deef2719c9c0689c48598eb7758e2dc41e160405160405180910390a1565b5f600254905090565b5f5f6109096111dc565b905061091685828561127c565b61092185858561130f565b60019150509392505050565b5f6012905090565b61093d6111f5565b5f60095403610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612053565b60405180910390fd5b60085f61098e91906119f4565b60095f90557f427a3781f19372aa7016468efaa00fd29d6990596489f6a3ccebd8588b88618d60405160405180910390a1565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a0e6111f5565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a40906120bb565b60405180910390fd5b5f610a526111dc565b90508073ffffffffffffffffffffffffffffffffffffffff16610a73611108565b73ffffffffffffffffffffffffffffffffffffffff1614610acb57806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ac29190611d30565b60405180910390fd5b610ad4816113ff565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6915979682f8fa7878000081565b6201518081565b606060048054610b2390611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f90611e60565b8015610b9a5780601f10610b7157610100808354040283529160200191610b9a565b820191905f5260205f20905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b5f5f610bae6111dc565b9050610bbb81858561130f565b600191505092915050565b600a5f9054906101000a900460ff1681565b610be06111f5565b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611eda565b60405180910390fd5b610ce782828573ffffffffffffffffffffffffffffffffffffffff1661142f9092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f9b793652de97f04c5168920587bad4b1c6345295a8f5ad31c59ff946a26f91d283604051610d449190611c59565b60405180910390a3505050565b7347865542d29d3a93fec6a55f145c89e6846bf1a081565b60078054610d7690611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290611e60565b8015610ded5780601f10610dc457610100808354040283529160200191610ded565b820191905f5260205f20905b815481529060010190602001808311610dd057829003601f168201915b505050505081565b610dfd6111f5565b600a5f9054906101000a900460ff1615610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061218b565b60405180910390fd5b5f6201518042610e5c91906121d6565b9050828260089182610e6f9291906123e0565b50806009819055507f09deb78d91dc025fd7193e9fac5b3512d0d170157d09b7e52d6db3b9beb89933838383604051610eaa939291906124e7565b60405180910390a1505050565b610ebf6111f5565b600a5f9054906101000a900460ff1615610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061218b565b60405180910390fd5b5f60095490505f8103610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612053565b60405180910390fd5b80421015610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612561565b60405180910390fd5b5f60078054610fa790611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390611e60565b801561101e5780601f10610ff55761010080835404028352916020019161101e565b820191905f5260205f20905b81548152906001019060200180831161100157829003601f168201915b5050505050905060086007908161103591906125a6565b5060085f61104391906119f4565b60095f90557f0bf5bde8ebe1bc384ba7d7a261f322081071c3582484658221d8cf36265a3b5281600760405161107a92919061270c565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111386111f5565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611197610ad7565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f33905090565b6111f083838360016114ae565b505050565b6111fd6111dc565b73ffffffffffffffffffffffffffffffffffffffff1661121b610ad7565b73ffffffffffffffffffffffffffffffffffffffff161461127a5761123e6111dc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112719190611d30565b60405180910390fd5b565b5f6112878484611086565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561130957818110156112fa578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f193929190612741565b60405180910390fd5b61130884848484035f6114ae565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113769190611d30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ef575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113e69190611d30565b60405180910390fd5b6113fa83838361167d565b505050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561142c81611896565b50565b6114a9838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611462929190612776565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611959565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361151e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115159190611d30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361158e575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115859190611d30565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611677578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161166e9190611c59565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116cd578060025f8282546116c191906121d6565b9250508190555061179b565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611756578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161174d93929190612741565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e2578060025f828254039250508190555061182c565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118899190611c59565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f60205f8451602086015f885af180611978576040513d5f823e3d81fd5b3d92505f519150505f82146119915760018114156119ac565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b156119ee57836040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016119e59190611d30565b60405180910390fd5b50505050565b508054611a0090611e60565b5f825580601f10611a115750611a2e565b601f0160209004905f5260205f2090810190611a2d9190611a31565b5b50565b5b80821115611a48575f815f905550600101611a32565b5090565b5f82825260208201905092915050565b7f4e6f2045544820616363657074656400000000000000000000000000000000005f82015250565b5f611a90600f83611a4c565b9150611a9b82611a5c565b602082019050919050565b5f6020820190508181035f830152611abd81611a84565b9050919050565b5f81519050919050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611af682611ac4565b611b008185611a4c565b9350611b10818560208601611ace565b611b1981611adc565b840191505092915050565b5f6020820190508181035f830152611b3c8184611aec565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b7582611b4c565b9050919050565b611b8581611b6b565b8114611b8f575f5ffd5b50565b5f81359050611ba081611b7c565b92915050565b5f819050919050565b611bb881611ba6565b8114611bc2575f5ffd5b50565b5f81359050611bd381611baf565b92915050565b5f5f60408385031215611bef57611bee611b44565b5b5f611bfc85828601611b92565b9250506020611c0d85828601611bc5565b9150509250929050565b5f8115159050919050565b611c2b81611c17565b82525050565b5f602082019050611c445f830184611c22565b92915050565b611c5381611ba6565b82525050565b5f602082019050611c6c5f830184611c4a565b92915050565b5f5f5f60608486031215611c8957611c88611b44565b5b5f611c9686828701611b92565b9350506020611ca786828701611b92565b9250506040611cb886828701611bc5565b9150509250925092565b5f60ff82169050919050565b611cd781611cc2565b82525050565b5f602082019050611cf05f830184611cce565b92915050565b5f60208284031215611d0b57611d0a611b44565b5b5f611d1884828501611b92565b91505092915050565b611d2a81611b6b565b82525050565b5f602082019050611d435f830184611d21565b92915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f840112611d6a57611d69611d49565b5b8235905067ffffffffffffffff811115611d8757611d86611d4d565b5b602083019150836001820283011115611da357611da2611d51565b5b9250929050565b5f5f60208385031215611dc057611dbf611b44565b5b5f83013567ffffffffffffffff811115611ddd57611ddc611b48565b5b611de985828601611d55565b92509250509250929050565b5f5f60408385031215611e0b57611e0a611b44565b5b5f611e1885828601611b92565b9250506020611e2985828601611b92565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e7757607f821691505b602082108103611e8a57611e89611e33565b5b50919050565b7f746f207a65726f000000000000000000000000000000000000000000000000005f82015250565b5f611ec4600783611a4c565b9150611ecf82611e90565b602082019050919050565b5f6020820190508181035f830152611ef181611eb8565b9050919050565b5f81905092915050565b50565b5f611f105f83611ef8565b9150611f1b82611f02565b5f82019050919050565b5f611f2f82611f05565b9150819050919050565b7f455448207472616e73666572206661696c6564000000000000000000000000005f82015250565b5f611f6d601383611a4c565b9150611f7882611f39565b602082019050919050565b5f6020820190508181035f830152611f9a81611f61565b9050919050565b7f416c7265616479206c6f636b65640000000000000000000000000000000000005f82015250565b5f611fd5600e83611a4c565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b9050919050565b7f4e6f7468696e67207363686564756c65640000000000000000000000000000005f82015250565b5f61203d601183611a4c565b915061204882612009565b602082019050919050565b5f6020820190508181035f83015261206a81612031565b9050919050565b7f72656e6f756e63654f776e6572736869702064697361626c65640000000000005f82015250565b5f6120a5601a83611a4c565b91506120b082612071565b602082019050919050565b5f6020820190508181035f8301526120d281612099565b9050919050565b7f43616e6e6f7420726573637565204b454e0000000000000000000000000000005f82015250565b5f61210d601183611a4c565b9150612118826120d9565b602082019050919050565b5f6020820190508181035f83015261213a81612101565b9050919050565b7f57656273697465206c6f636b65640000000000000000000000000000000000005f82015250565b5f612175600e83611a4c565b915061218082612141565b602082019050919050565b5f6020820190508181035f8301526121a281612169565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121e082611ba6565b91506121eb83611ba6565b9250828201905080821115612203576122026121a9565b5b92915050565b5f82905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261229c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612261565b6122a68683612261565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122e16122dc6122d784611ba6565b6122be565b611ba6565b9050919050565b5f819050919050565b6122fa836122c7565b61230e612306826122e8565b84845461226d565b825550505050565b5f5f905090565b612325612316565b6123308184846122f1565b505050565b5b81811015612353576123485f8261231d565b600181019050612336565b5050565b601f8211156123985761236981612240565b61237284612252565b81016020851015612381578190505b61239561238d85612252565b830182612335565b50505b505050565b5f82821c905092915050565b5f6123b85f198460080261239d565b1980831691505092915050565b5f6123d083836123a9565b9150826002028217905092915050565b6123ea8383612209565b67ffffffffffffffff81111561240357612402612213565b5b61240d8254611e60565b612418828285612357565b5f601f831160018114612445575f8415612433578287013590505b61243d85826123c5565b8655506124a4565b601f19841661245386612240565b5f5b8281101561247a57848901358255600182019150602085019450602081019050612455565b868310156124975784890135612493601f8916826123a9565b8355505b6001600288020188555050505b50505050505050565b828183375f83830152505050565b5f6124c68385611a4c565b93506124d38385846124ad565b6124dc83611adc565b840190509392505050565b5f6040820190508181035f8301526125008185876124bb565b905061250f6020830184611c4a565b949350505050565b7f546f6f206561726c7900000000000000000000000000000000000000000000005f82015250565b5f61254b600983611a4c565b915061255682612517565b602082019050919050565b5f6020820190508181035f8301526125788161253f565b9050919050565b5f8154905061258d81611e60565b9050919050565b5f819050815f5260205f209050919050565b8181036125b4575050612689565b6125bd8261257f565b67ffffffffffffffff8111156125d6576125d5612213565b5b6125e08254611e60565b6125eb828285612357565b5f601f831160018114612618575f8415612606578287015490505b61261085826123c5565b865550612682565b601f19841661262687612594565b965061263186612240565b5f5b8281101561265857848901548255600182019150600185019450602081019050612633565b868310156126755784890154612671601f8916826123a9565b8355505b6001600288020188555050505b5050505050505b565b5f815461269781611e60565b6126a18186611a4c565b9450600182165f81146126bb57600181146126d157612703565b60ff198316865281151560200286019350612703565b6126da85612240565b5f5b838110156126fb578154818901526001820191506020810190506126dc565b808801955050505b50505092915050565b5f6040820190508181035f8301526127248185611aec565b90508181036020830152612738818461268b565b90509392505050565b5f6060820190506127545f830186611d21565b6127616020830185611c4a565b61276e6040830184611c4a565b949350505050565b5f6040820190506127895f830185611d21565b6127966020830184611c4a565b939250505056fea264697066735822122081e6f2573080fc6fc40997cb557c4974b39958b8973392e2f72feefdc80e867364736f6c634300081e0033

Deployed Bytecode

0x608060405260043610610169575f3560e01c8063902d55a5116100d0578063bcf8ef7b11610089578063d8c9333a11610063578063d8c9333a14610548578063dd62ed3e1461055e578063e30c39781461059a578063f2fde38b146105c4576101a9565b8063bcf8ef7b146104cc578063beb0a416146104f6578063d2e702ba14610520576101a9565b8063902d55a5146103c05780639265e5c8146103ea57806395d89b4114610414578063a9059cbb1461043e578063abaca7f31461047a578063ba807243146104a4576101a9565b8063313ce56711610122578063313ce567146102ee5780636903ede21461031857806370a082311461032e578063715018a61461036a57806379ba5097146103805780638da5cb5b14610396576101a9565b806306fdde03146101e4578063095ea7b31461020e578063099a04e51461024a578063135eacb31461027257806318160ddd1461028857806323b872dd146102b2576101a9565b366101a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101a090611aa6565b60405180910390fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101db90611aa6565b60405180910390fd5b3480156101ef575f5ffd5b506101f86105ec565b6040516102059190611b24565b60405180910390f35b348015610219575f5ffd5b50610234600480360381019061022f9190611bd9565b61067c565b6040516102419190611c31565b60405180910390f35b348015610255575f5ffd5b50610270600480360381019061026b9190611bd9565b61069e565b005b34801561027d575f5ffd5b5061028661080f565b005b348015610293575f5ffd5b5061029c6108f6565b6040516102a99190611c59565b60405180910390f35b3480156102bd575f5ffd5b506102d860048036038101906102d39190611c72565b6108ff565b6040516102e59190611c31565b60405180910390f35b3480156102f9575f5ffd5b5061030261092d565b60405161030f9190611cdd565b60405180910390f35b348015610323575f5ffd5b5061032c610935565b005b348015610339575f5ffd5b50610354600480360381019061034f9190611cf6565b6109c1565b6040516103619190611c59565b60405180910390f35b348015610375575f5ffd5b5061037e610a06565b005b34801561038b575f5ffd5b50610394610a49565b005b3480156103a1575f5ffd5b506103aa610ad7565b6040516103b79190611d30565b60405180910390f35b3480156103cb575f5ffd5b506103d4610aff565b6040516103e19190611c59565b60405180910390f35b3480156103f5575f5ffd5b506103fe610b0d565b60405161040b9190611c59565b60405180910390f35b34801561041f575f5ffd5b50610428610b14565b6040516104359190611b24565b60405180910390f35b348015610449575f5ffd5b50610464600480360381019061045f9190611bd9565b610ba4565b6040516104719190611c31565b60405180910390f35b348015610485575f5ffd5b5061048e610bc6565b60405161049b9190611c31565b60405180910390f35b3480156104af575f5ffd5b506104ca60048036038101906104c59190611c72565b610bd8565b005b3480156104d7575f5ffd5b506104e0610d51565b6040516104ed9190611d30565b60405180910390f35b348015610501575f5ffd5b5061050a610d69565b6040516105179190611b24565b60405180910390f35b34801561052b575f5ffd5b5061054660048036038101906105419190611daa565b610df5565b005b348015610553575f5ffd5b5061055c610eb7565b005b348015610569575f5ffd5b50610584600480360381019061057f9190611df5565b611086565b6040516105919190611c59565b60405180910390f35b3480156105a5575f5ffd5b506105ae611108565b6040516105bb9190611d30565b60405180910390f35b3480156105cf575f5ffd5b506105ea60048036038101906105e59190611cf6565b611130565b005b6060600380546105fb90611e60565b80601f016020809104026020016040519081016040528092919081815260200182805461062790611e60565b80156106725780601f1061064957610100808354040283529160200191610672565b820191905f5260205f20905b81548152906001019060200180831161065557829003601f168201915b5050505050905090565b5f5f6106866111dc565b90506106938185856111e3565b600191505092915050565b6106a66111f5565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070b90611eda565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161073990611f25565b5f6040518083038185875af1925050503d805f8114610773576040519150601f19603f3d011682016040523d82523d5f602084013e610778565b606091505b50509050806107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b390611f83565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff167f77f67778e9529a2fd2147ffb2b10ca2e0d1efd8cb925e1f1d5702e39c5fa8da6836040516108029190611c59565b60405180910390a2505050565b6108176111f5565b600a5f9054906101000a900460ff1615610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611feb565b60405180910390fd5b6001600a5f6101000a81548160ff0219169083151502179055505f600954146108c85760085f61089691906119f4565b60095f90557f427a3781f19372aa7016468efaa00fd29d6990596489f6a3ccebd8588b88618d60405160405180910390a15b7f5c869d6678067cbb2896548c41b23deef2719c9c0689c48598eb7758e2dc41e160405160405180910390a1565b5f600254905090565b5f5f6109096111dc565b905061091685828561127c565b61092185858561130f565b60019150509392505050565b5f6012905090565b61093d6111f5565b5f60095403610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612053565b60405180910390fd5b60085f61098e91906119f4565b60095f90557f427a3781f19372aa7016468efaa00fd29d6990596489f6a3ccebd8588b88618d60405160405180910390a1565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a0e6111f5565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a40906120bb565b60405180910390fd5b5f610a526111dc565b90508073ffffffffffffffffffffffffffffffffffffffff16610a73611108565b73ffffffffffffffffffffffffffffffffffffffff1614610acb57806040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ac29190611d30565b60405180910390fd5b610ad4816113ff565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6915979682f8fa7878000081565b6201518081565b606060048054610b2390611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f90611e60565b8015610b9a5780601f10610b7157610100808354040283529160200191610b9a565b820191905f5260205f20905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b5f5f610bae6111dc565b9050610bbb81858561130f565b600191505092915050565b600a5f9054906101000a900460ff1681565b610be06111f5565b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590612123565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611eda565b60405180910390fd5b610ce782828573ffffffffffffffffffffffffffffffffffffffff1661142f9092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f9b793652de97f04c5168920587bad4b1c6345295a8f5ad31c59ff946a26f91d283604051610d449190611c59565b60405180910390a3505050565b7347865542d29d3a93fec6a55f145c89e6846bf1a081565b60078054610d7690611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290611e60565b8015610ded5780601f10610dc457610100808354040283529160200191610ded565b820191905f5260205f20905b815481529060010190602001808311610dd057829003601f168201915b505050505081565b610dfd6111f5565b600a5f9054906101000a900460ff1615610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061218b565b60405180910390fd5b5f6201518042610e5c91906121d6565b9050828260089182610e6f9291906123e0565b50806009819055507f09deb78d91dc025fd7193e9fac5b3512d0d170157d09b7e52d6db3b9beb89933838383604051610eaa939291906124e7565b60405180910390a1505050565b610ebf6111f5565b600a5f9054906101000a900460ff1615610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f059061218b565b60405180910390fd5b5f60095490505f8103610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90612053565b60405180910390fd5b80421015610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612561565b60405180910390fd5b5f60078054610fa790611e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd390611e60565b801561101e5780601f10610ff55761010080835404028352916020019161101e565b820191905f5260205f20905b81548152906001019060200180831161100157829003601f168201915b5050505050905060086007908161103591906125a6565b5060085f61104391906119f4565b60095f90557f0bf5bde8ebe1bc384ba7d7a261f322081071c3582484658221d8cf36265a3b5281600760405161107a92919061270c565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111386111f5565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611197610ad7565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b5f33905090565b6111f083838360016114ae565b505050565b6111fd6111dc565b73ffffffffffffffffffffffffffffffffffffffff1661121b610ad7565b73ffffffffffffffffffffffffffffffffffffffff161461127a5761123e6111dc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112719190611d30565b60405180910390fd5b565b5f6112878484611086565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561130957818110156112fa578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016112f193929190612741565b60405180910390fd5b61130884848484035f6114ae565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113769190611d30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ef575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016113e69190611d30565b60405180910390fd5b6113fa83838361167d565b505050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561142c81611896565b50565b6114a9838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611462929190612776565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611959565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361151e575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115159190611d30565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361158e575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115859190611d30565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611677578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161166e9190611c59565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116cd578060025f8282546116c191906121d6565b9250508190555061179b565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611756578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161174d93929190612741565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e2578060025f828254039250508190555061182c565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118899190611c59565b60405180910390a3505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f60205f8451602086015f885af180611978576040513d5f823e3d81fd5b3d92505f519150505f82146119915760018114156119ac565b5f8473ffffffffffffffffffffffffffffffffffffffff163b145b156119ee57836040517f5274afe70000000000000000000000000000000000000000000000000000000081526004016119e59190611d30565b60405180910390fd5b50505050565b508054611a0090611e60565b5f825580601f10611a115750611a2e565b601f0160209004905f5260205f2090810190611a2d9190611a31565b5b50565b5b80821115611a48575f815f905550600101611a32565b5090565b5f82825260208201905092915050565b7f4e6f2045544820616363657074656400000000000000000000000000000000005f82015250565b5f611a90600f83611a4c565b9150611a9b82611a5c565b602082019050919050565b5f6020820190508181035f830152611abd81611a84565b9050919050565b5f81519050919050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611af682611ac4565b611b008185611a4c565b9350611b10818560208601611ace565b611b1981611adc565b840191505092915050565b5f6020820190508181035f830152611b3c8184611aec565b905092915050565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b7582611b4c565b9050919050565b611b8581611b6b565b8114611b8f575f5ffd5b50565b5f81359050611ba081611b7c565b92915050565b5f819050919050565b611bb881611ba6565b8114611bc2575f5ffd5b50565b5f81359050611bd381611baf565b92915050565b5f5f60408385031215611bef57611bee611b44565b5b5f611bfc85828601611b92565b9250506020611c0d85828601611bc5565b9150509250929050565b5f8115159050919050565b611c2b81611c17565b82525050565b5f602082019050611c445f830184611c22565b92915050565b611c5381611ba6565b82525050565b5f602082019050611c6c5f830184611c4a565b92915050565b5f5f5f60608486031215611c8957611c88611b44565b5b5f611c9686828701611b92565b9350506020611ca786828701611b92565b9250506040611cb886828701611bc5565b9150509250925092565b5f60ff82169050919050565b611cd781611cc2565b82525050565b5f602082019050611cf05f830184611cce565b92915050565b5f60208284031215611d0b57611d0a611b44565b5b5f611d1884828501611b92565b91505092915050565b611d2a81611b6b565b82525050565b5f602082019050611d435f830184611d21565b92915050565b5f5ffd5b5f5ffd5b5f5ffd5b5f5f83601f840112611d6a57611d69611d49565b5b8235905067ffffffffffffffff811115611d8757611d86611d4d565b5b602083019150836001820283011115611da357611da2611d51565b5b9250929050565b5f5f60208385031215611dc057611dbf611b44565b5b5f83013567ffffffffffffffff811115611ddd57611ddc611b48565b5b611de985828601611d55565b92509250509250929050565b5f5f60408385031215611e0b57611e0a611b44565b5b5f611e1885828601611b92565b9250506020611e2985828601611b92565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e7757607f821691505b602082108103611e8a57611e89611e33565b5b50919050565b7f746f207a65726f000000000000000000000000000000000000000000000000005f82015250565b5f611ec4600783611a4c565b9150611ecf82611e90565b602082019050919050565b5f6020820190508181035f830152611ef181611eb8565b9050919050565b5f81905092915050565b50565b5f611f105f83611ef8565b9150611f1b82611f02565b5f82019050919050565b5f611f2f82611f05565b9150819050919050565b7f455448207472616e73666572206661696c6564000000000000000000000000005f82015250565b5f611f6d601383611a4c565b9150611f7882611f39565b602082019050919050565b5f6020820190508181035f830152611f9a81611f61565b9050919050565b7f416c7265616479206c6f636b65640000000000000000000000000000000000005f82015250565b5f611fd5600e83611a4c565b9150611fe082611fa1565b602082019050919050565b5f6020820190508181035f83015261200281611fc9565b9050919050565b7f4e6f7468696e67207363686564756c65640000000000000000000000000000005f82015250565b5f61203d601183611a4c565b915061204882612009565b602082019050919050565b5f6020820190508181035f83015261206a81612031565b9050919050565b7f72656e6f756e63654f776e6572736869702064697361626c65640000000000005f82015250565b5f6120a5601a83611a4c565b91506120b082612071565b602082019050919050565b5f6020820190508181035f8301526120d281612099565b9050919050565b7f43616e6e6f7420726573637565204b454e0000000000000000000000000000005f82015250565b5f61210d601183611a4c565b9150612118826120d9565b602082019050919050565b5f6020820190508181035f83015261213a81612101565b9050919050565b7f57656273697465206c6f636b65640000000000000000000000000000000000005f82015250565b5f612175600e83611a4c565b915061218082612141565b602082019050919050565b5f6020820190508181035f8301526121a281612169565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6121e082611ba6565b91506121eb83611ba6565b9250828201905080821115612203576122026121a9565b5b92915050565b5f82905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261229c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612261565b6122a68683612261565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6122e16122dc6122d784611ba6565b6122be565b611ba6565b9050919050565b5f819050919050565b6122fa836122c7565b61230e612306826122e8565b84845461226d565b825550505050565b5f5f905090565b612325612316565b6123308184846122f1565b505050565b5b81811015612353576123485f8261231d565b600181019050612336565b5050565b601f8211156123985761236981612240565b61237284612252565b81016020851015612381578190505b61239561238d85612252565b830182612335565b50505b505050565b5f82821c905092915050565b5f6123b85f198460080261239d565b1980831691505092915050565b5f6123d083836123a9565b9150826002028217905092915050565b6123ea8383612209565b67ffffffffffffffff81111561240357612402612213565b5b61240d8254611e60565b612418828285612357565b5f601f831160018114612445575f8415612433578287013590505b61243d85826123c5565b8655506124a4565b601f19841661245386612240565b5f5b8281101561247a57848901358255600182019150602085019450602081019050612455565b868310156124975784890135612493601f8916826123a9565b8355505b6001600288020188555050505b50505050505050565b828183375f83830152505050565b5f6124c68385611a4c565b93506124d38385846124ad565b6124dc83611adc565b840190509392505050565b5f6040820190508181035f8301526125008185876124bb565b905061250f6020830184611c4a565b949350505050565b7f546f6f206561726c7900000000000000000000000000000000000000000000005f82015250565b5f61254b600983611a4c565b915061255682612517565b602082019050919050565b5f6020820190508181035f8301526125788161253f565b9050919050565b5f8154905061258d81611e60565b9050919050565b5f819050815f5260205f209050919050565b8181036125b4575050612689565b6125bd8261257f565b67ffffffffffffffff8111156125d6576125d5612213565b5b6125e08254611e60565b6125eb828285612357565b5f601f831160018114612618575f8415612606578287015490505b61261085826123c5565b865550612682565b601f19841661262687612594565b965061263186612240565b5f5b8281101561265857848901548255600182019150600185019450602081019050612633565b868310156126755784890154612671601f8916826123a9565b8355505b6001600288020188555050505b5050505050505b565b5f815461269781611e60565b6126a18186611a4c565b9450600182165f81146126bb57600181146126d157612703565b60ff198316865281151560200286019350612703565b6126da85612240565b5f5b838110156126fb578154818901526001820191506020810190506126dc565b808801955050505b50505092915050565b5f6040820190508181035f8301526127248185611aec565b90508181036020830152612738818461268b565b90509392505050565b5f6060820190506127545f830186611d21565b6127616020830185611c4a565b61276e6040830184611c4a565b949350505050565b5f6040820190506127895f830185611d21565b6127966020830184611c4a565b939250505056fea264697066735822122081e6f2573080fc6fc40997cb557c4974b39958b8973392e2f72feefdc80e867364736f6c634300081e0033

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.