POL Price: $0.184031 (+4.52%)
Gas: 25.1 GWei
 

Overview

Max Total Supply

500,000,000 CBDN

Holders

8

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Skyplay: Deployer
Balance
0 CBDN

Value
$0.00
0x18817a4d5c25d3b43ee6eb1cd29304a7133fd877
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CyberdyneERC20

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 8 : CyberdyneERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CyberdyneERC20 is ERC20, ERC20Burnable, Ownable {
    struct LockupInfo {
        uint256 totalAmount;
        uint256 releasedAmount;
        uint256 startTime;
        uint256 releasePercentage;
    }

    mapping(address => LockupInfo) private _lockups;

    constructor(
        string memory name,
        string memory symbol,
        address initialOwner
    ) ERC20(name, symbol) Ownable(initialOwner) {
        uint256 initialSupply = 500000000 * (10 ** uint256(decimals()));
        _mint(msg.sender, initialSupply);

        transferOwnership(initialOwner);
    }

    function setLockup(
        address account,
        uint256 amount,
        uint256 startTime,
        uint256 releasePercentage
    ) public onlyOwner {
        require(
            releasePercentage <= 100,
            "Release percentage should be in basis points"
        );
        _lockups[account] = LockupInfo(amount, 0, startTime, releasePercentage);
        emit LockupSet(account, amount, startTime, releasePercentage);
    }

    function getLockupInfo(
        address account
    ) public view returns (LockupInfo memory) {
        return _lockups[account];
    }

    function calculateReleaseAmount(
        address account
    ) public view returns (uint256) {
        LockupInfo memory lockup = _lockups[account];
        if (block.timestamp < lockup.startTime) {
            return 0;
        }

        uint256 monthsElapsed = (block.timestamp - lockup.startTime) / 30 days;
        uint256 totalReleasable = (lockup.totalAmount *
            lockup.releasePercentage *
            monthsElapsed) / 100;
        return
            totalReleasable > lockup.totalAmount
                ? lockup.totalAmount
                : totalReleasable - lockup.releasedAmount;
    }

    function releaseLockup(address account) public {
        uint256 releasableAmount = calculateReleaseAmount(account);
        require(releasableAmount > 0, "No tokens to release");

        _lockups[account].releasedAmount += releasableAmount;

        // _transfer(address(this), account, releasableAmount);
        emit LockupReleased(account, releasableAmount);
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        require(
            _canTransfer(_msgSender(), amount),
            "Lockup: amount exceeds unlockable balance"
        );
        return super.transfer(recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        require(
            _canTransfer(sender, amount),
            "Lockup: amount exceeds unlockable balance"
        );
        return super.transferFrom(sender, recipient, amount);
    }

    function _canTransfer(
        address sender,
        uint256 amount
    ) internal view returns (bool) {
        uint256 unlockedBalance = balanceOf(sender) -
            (_lockups[sender].totalAmount - _lockups[sender].releasedAmount);
        return amount <= unlockedBalance;
    }

    event LockupSet(
        address indexed account,
        uint256 amount,
        uint256 startTime,
        uint256 releasePercentage
    );
    event LockupReleased(address indexed account, uint256 amount);
}

File 2 of 8 : Ownable.sol
// 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 3 of 8 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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);
}

File 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
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}.
     *
     * All two of these 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;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    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;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    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}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * 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:
     * ```
     * 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);
            }
        }
    }
}

File 5 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 6 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 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);
}

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the 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);
}

File 8 of 8 : Context.sol
// 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;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"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"},{"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LockupReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releasePercentage","type":"uint256"}],"name":"LockupSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"calculateReleaseAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockupInfo","outputs":[{"components":[{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"releasedAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"releasePercentage","type":"uint256"}],"internalType":"struct CyberdyneERC20.LockupInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releaseLockup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"releasePercentage","type":"uint256"}],"name":"setLockup","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002ac838038062002ac883398181016040528101906200003791906200083b565b80838381600390816200004b919062000b20565b5080600490816200005d919062000b20565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000d55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000cc919062000c18565b60405180910390fd5b620000e6816200014a60201b60201c565b506000620000f96200021060201b60201c565b60ff16600a6200010a919062000db8565b631dcd65006200011b919062000e09565b90506200012f33826200021960201b60201c565b6200014082620002a660201b60201c565b5050505062000efa565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028e5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000285919062000c18565b60405180910390fd5b620002a2600083836200033f60201b60201c565b5050565b620002b66200056f60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200032b5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000322919062000c18565b60405180910390fd5b6200033c816200014a60201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200039557806002600082825462000388919062000e54565b925050819055506200046b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000424578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200041b9392919062000ea0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004b6578060026000828254039250508190555062000503565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000562919062000edd565b60405180910390a3505050565b6200057f6200061160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005a56200061960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200060f57620005d16200061160201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000606919062000c18565b60405180910390fd5b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620006ac8262000661565b810181811067ffffffffffffffff82111715620006ce57620006cd62000672565b5b80604052505050565b6000620006e362000643565b9050620006f18282620006a1565b919050565b600067ffffffffffffffff82111562000714576200071362000672565b5b6200071f8262000661565b9050602081019050919050565b60005b838110156200074c5780820151818401526020810190506200072f565b60008484015250505050565b60006200076f6200076984620006f6565b620006d7565b9050828152602081018484840111156200078e576200078d6200065c565b5b6200079b8482856200072c565b509392505050565b600082601f830112620007bb57620007ba62000657565b5b8151620007cd84826020860162000758565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200080382620007d6565b9050919050565b6200081581620007f6565b81146200082157600080fd5b50565b60008151905062000835816200080a565b92915050565b6000806000606084860312156200085757620008566200064d565b5b600084015167ffffffffffffffff81111562000878576200087762000652565b5b6200088686828701620007a3565b935050602084015167ffffffffffffffff811115620008aa57620008a962000652565b5b620008b886828701620007a3565b9250506040620008cb8682870162000824565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092857607f821691505b6020821081036200093e576200093d620008e0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000969565b620009b4868362000969565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a01620009fb620009f584620009cc565b620009d6565b620009cc565b9050919050565b6000819050919050565b62000a1d83620009e0565b62000a3562000a2c8262000a08565b84845462000976565b825550505050565b600090565b62000a4c62000a3d565b62000a5981848462000a12565b505050565b5b8181101562000a815762000a7560008262000a42565b60018101905062000a5f565b5050565b601f82111562000ad05762000a9a8162000944565b62000aa58462000959565b8101602085101562000ab5578190505b62000acd62000ac48562000959565b83018262000a5e565b50505b505050565b600082821c905092915050565b600062000af56000198460080262000ad5565b1980831691505092915050565b600062000b10838362000ae2565b9150826002028217905092915050565b62000b2b82620008d5565b67ffffffffffffffff81111562000b475762000b4662000672565b5b62000b5382546200090f565b62000b6082828562000a85565b600060209050601f83116001811462000b98576000841562000b83578287015190505b62000b8f858262000b02565b86555062000bff565b601f19841662000ba88662000944565b60005b8281101562000bd25784890151825560018201915060208501945060208101905062000bab565b8683101562000bf2578489015162000bee601f89168262000ae2565b8355505b6001600288020188555050505b505050505050565b62000c1281620007f6565b82525050565b600060208201905062000c2f600083018462000c07565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cc35780860481111562000c9b5762000c9a62000c35565b5b600185161562000cab5780820291505b808102905062000cbb8562000c64565b945062000c7b565b94509492505050565b60008262000cde576001905062000db1565b8162000cee576000905062000db1565b816001811462000d07576002811462000d125762000d48565b600191505062000db1565b60ff84111562000d275762000d2662000c35565b5b8360020a91508482111562000d415762000d4062000c35565b5b5062000db1565b5060208310610133831016604e8410600b841016171562000d825782820a90508381111562000d7c5762000d7b62000c35565b5b62000db1565b62000d91848484600162000c71565b9250905081840481111562000dab5762000daa62000c35565b5b81810290505b9392505050565b600062000dc582620009cc565b915062000dd283620009cc565b925062000e017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ccc565b905092915050565b600062000e1682620009cc565b915062000e2383620009cc565b925082820262000e3381620009cc565b9150828204841483151762000e4d5762000e4c62000c35565b5b5092915050565b600062000e6182620009cc565b915062000e6e83620009cc565b925082820190508082111562000e895762000e8862000c35565b5b92915050565b62000e9a81620009cc565b82525050565b600060608201905062000eb7600083018662000c07565b62000ec6602083018562000e8f565b62000ed5604083018462000e8f565b949350505050565b600060208201905062000ef4600083018462000e8f565b92915050565b611bbe8062000f0a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e3578063ac625bb714610313578063dd62ed3e1461032f578063f2fde38b1461035f578063f5a952b91461037b57610116565b8063715018a61461028157806379cc67901461028b5780638da5cb5b146102a757806395d89b41146102c557610116565b806323b872dd116100e957806323b872dd146101b7578063313ce567146101e75780633cb50cb71461020557806342966c681461023557806370a082311461025157610116565b806306fdde031461011b578063095ea7b3146101395780631285e3121461016957806318160ddd14610199575b600080fd5b610123610397565b6040516101309190611462565b60405180910390f35b610153600480360381019061014e919061151d565b610429565b6040516101609190611578565b60405180910390f35b610183600480360381019061017e9190611593565b61044c565b60405161019091906115cf565b60405180910390f35b6101a161055b565b6040516101ae91906115cf565b60405180910390f35b6101d160048036038101906101cc91906115ea565b610565565b6040516101de9190611578565b60405180910390f35b6101ef6105c4565b6040516101fc9190611659565b60405180910390f35b61021f600480360381019061021a9190611593565b6105cd565b60405161022c91906116d8565b60405180910390f35b61024f600480360381019061024a91906116f3565b61064e565b005b61026b60048036038101906102669190611593565b610662565b60405161027891906115cf565b60405180910390f35b6102896106aa565b005b6102a560048036038101906102a0919061151d565b6106be565b005b6102af6106de565b6040516102bc919061172f565b60405180910390f35b6102cd610708565b6040516102da9190611462565b60405180910390f35b6102fd60048036038101906102f8919061151d565b61079a565b60405161030a9190611578565b60405180910390f35b61032d60048036038101906103289190611593565b6107fe565b005b6103496004803603810190610344919061174a565b6108f9565b60405161035691906115cf565b60405180910390f35b61037960048036038101906103749190611593565b610980565b005b6103956004803603810190610390919061178a565b610a06565b005b6060600380546103a690611820565b80601f01602080910402602001604051908101604052809291908181526020018280546103d290611820565b801561041f5780601f106103f45761010080835404028352916020019161041f565b820191906000526020600020905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b600080610434610b36565b9050610441818585610b3e565b600191505092915050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905080604001514210156104d9576000915050610556565b600062278d008260400151426104ef9190611880565b6104f991906118e3565b90506000606482846060015185600001516105149190611914565b61051e9190611914565b61052891906118e3565b90508260000151811161054a578260200151816105459190611880565b610550565b82600001515b93505050505b919050565b6000600254905090565b60006105718483610b50565b6105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a7906119c8565b60405180910390fd5b6105bb848484610c05565b90509392505050565b60006012905090565b6105d56113aa565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b61065f610659610b36565b82610c34565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2610cb6565b6106bc6000610d3d565b565b6106d0826106ca610b36565b83610e03565b6106da8282610c34565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071790611820565b80601f016020809104026020016040519081016040528092919081815260200182805461074390611820565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107ad6107a7610b36565b83610b50565b6107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e3906119c8565b60405180910390fd5b6107f68383610e97565b905092915050565b60006108098261044c565b90506000811161084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611a34565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546108a09190611a54565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fb0c715c0c11d60097909f29f581b2dd96b3797d6803e72dce93cb0784921a67f826040516108ed91906115cf565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610988610cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fa5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109f1919061172f565b60405180910390fd5b610a0381610d3d565b50565b610a0e610cb6565b6064811115610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990611afa565b60405180910390fd5b60405180608001604052808481526020016000815260200183815260200182815250600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301559050508373ffffffffffffffffffffffffffffffffffffffff167f6690e843680430986d757302aa0f5e18f3fe57a1c75d7e73cbe029c63ab644dc848484604051610b2893929190611b1a565b60405180910390a250505050565b600033905090565b610b4b8383836001610eba565b505050565b600080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154610be39190611880565b610bec85610662565b610bf69190611880565b90508083111591505092915050565b600080610c10610b36565b9050610c1d858285610e03565b610c28858585611091565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c9d919061172f565b60405180910390fd5b610cb282600083611185565b5050565b610cbe610b36565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6106de565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b57610cff610b36565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d32919061172f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610e0f84846108f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e915781811015610e81578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e7893929190611b51565b60405180910390fd5b610e9084848484036000610eba565b5b50505050565b600080610ea2610b36565b9050610eaf818585611091565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f2c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f23919061172f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9e5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f95919061172f565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561108b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161108291906115cf565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111035760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110fa919061172f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111755760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161116c919061172f565b60405180910390fd5b611180838383611185565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d75780600260008282546111cb9190611a54565b925050819055506112aa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611263578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161125a93929190611b51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f35780600260008282540392505081905550611340565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161139d91906115cf565b60405180910390a3505050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140c5780820151818401526020810190506113f1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611434826113d2565b61143e81856113dd565b935061144e8185602086016113ee565b61145781611418565b840191505092915050565b6000602082019050818103600083015261147c8184611429565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b482611489565b9050919050565b6114c4816114a9565b81146114cf57600080fd5b50565b6000813590506114e1816114bb565b92915050565b6000819050919050565b6114fa816114e7565b811461150557600080fd5b50565b600081359050611517816114f1565b92915050565b6000806040838503121561153457611533611484565b5b6000611542858286016114d2565b925050602061155385828601611508565b9150509250929050565b60008115159050919050565b6115728161155d565b82525050565b600060208201905061158d6000830184611569565b92915050565b6000602082840312156115a9576115a8611484565b5b60006115b7848285016114d2565b91505092915050565b6115c9816114e7565b82525050565b60006020820190506115e460008301846115c0565b92915050565b60008060006060848603121561160357611602611484565b5b6000611611868287016114d2565b9350506020611622868287016114d2565b925050604061163386828701611508565b9150509250925092565b600060ff82169050919050565b6116538161163d565b82525050565b600060208201905061166e600083018461164a565b92915050565b61167d816114e7565b82525050565b6080820160008201516116996000850182611674565b5060208201516116ac6020850182611674565b5060408201516116bf6040850182611674565b5060608201516116d26060850182611674565b50505050565b60006080820190506116ed6000830184611683565b92915050565b60006020828403121561170957611708611484565b5b600061171784828501611508565b91505092915050565b611729816114a9565b82525050565b60006020820190506117446000830184611720565b92915050565b6000806040838503121561176157611760611484565b5b600061176f858286016114d2565b9250506020611780858286016114d2565b9150509250929050565b600080600080608085870312156117a4576117a3611484565b5b60006117b2878288016114d2565b94505060206117c387828801611508565b93505060406117d487828801611508565b92505060606117e587828801611508565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061183857607f821691505b60208210810361184b5761184a6117f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061188b826114e7565b9150611896836114e7565b92508282039050818111156118ae576118ad611851565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118ee826114e7565b91506118f9836114e7565b925082611909576119086118b4565b5b828204905092915050565b600061191f826114e7565b915061192a836114e7565b9250828202611938816114e7565b9150828204841483151761194f5761194e611851565b5b5092915050565b7f4c6f636b75703a20616d6f756e74206578636565647320756e6c6f636b61626c60008201527f652062616c616e63650000000000000000000000000000000000000000000000602082015250565b60006119b26029836113dd565b91506119bd82611956565b604082019050919050565b600060208201905081810360008301526119e1816119a5565b9050919050565b7f4e6f20746f6b656e7320746f2072656c65617365000000000000000000000000600082015250565b6000611a1e6014836113dd565b9150611a29826119e8565b602082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b6000611a5f826114e7565b9150611a6a836114e7565b9250828201905080821115611a8257611a81611851565b5b92915050565b7f52656c656173652070657263656e746167652073686f756c6420626520696e2060008201527f626173697320706f696e74730000000000000000000000000000000000000000602082015250565b6000611ae4602c836113dd565b9150611aef82611a88565b604082019050919050565b60006020820190508181036000830152611b1381611ad7565b9050919050565b6000606082019050611b2f60008301866115c0565b611b3c60208301856115c0565b611b4960408301846115c0565b949350505050565b6000606082019050611b666000830186611720565b611b7360208301856115c0565b611b8060408301846115c0565b94935050505056fea26469706673582212206228cc91dd85cd892c8ab04ea33ee13a01f0153959b461cb1a2dc6f97cf1383064736f6c63430008170033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000018817a4d5c25d3b43ee6eb1cd29304a7133fd877000000000000000000000000000000000000000000000000000000000000000f437962657264796e6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044342444e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e3578063ac625bb714610313578063dd62ed3e1461032f578063f2fde38b1461035f578063f5a952b91461037b57610116565b8063715018a61461028157806379cc67901461028b5780638da5cb5b146102a757806395d89b41146102c557610116565b806323b872dd116100e957806323b872dd146101b7578063313ce567146101e75780633cb50cb71461020557806342966c681461023557806370a082311461025157610116565b806306fdde031461011b578063095ea7b3146101395780631285e3121461016957806318160ddd14610199575b600080fd5b610123610397565b6040516101309190611462565b60405180910390f35b610153600480360381019061014e919061151d565b610429565b6040516101609190611578565b60405180910390f35b610183600480360381019061017e9190611593565b61044c565b60405161019091906115cf565b60405180910390f35b6101a161055b565b6040516101ae91906115cf565b60405180910390f35b6101d160048036038101906101cc91906115ea565b610565565b6040516101de9190611578565b60405180910390f35b6101ef6105c4565b6040516101fc9190611659565b60405180910390f35b61021f600480360381019061021a9190611593565b6105cd565b60405161022c91906116d8565b60405180910390f35b61024f600480360381019061024a91906116f3565b61064e565b005b61026b60048036038101906102669190611593565b610662565b60405161027891906115cf565b60405180910390f35b6102896106aa565b005b6102a560048036038101906102a0919061151d565b6106be565b005b6102af6106de565b6040516102bc919061172f565b60405180910390f35b6102cd610708565b6040516102da9190611462565b60405180910390f35b6102fd60048036038101906102f8919061151d565b61079a565b60405161030a9190611578565b60405180910390f35b61032d60048036038101906103289190611593565b6107fe565b005b6103496004803603810190610344919061174a565b6108f9565b60405161035691906115cf565b60405180910390f35b61037960048036038101906103749190611593565b610980565b005b6103956004803603810190610390919061178a565b610a06565b005b6060600380546103a690611820565b80601f01602080910402602001604051908101604052809291908181526020018280546103d290611820565b801561041f5780601f106103f45761010080835404028352916020019161041f565b820191906000526020600020905b81548152906001019060200180831161040257829003601f168201915b5050505050905090565b600080610434610b36565b9050610441818585610b3e565b600191505092915050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905080604001514210156104d9576000915050610556565b600062278d008260400151426104ef9190611880565b6104f991906118e3565b90506000606482846060015185600001516105149190611914565b61051e9190611914565b61052891906118e3565b90508260000151811161054a578260200151816105459190611880565b610550565b82600001515b93505050505b919050565b6000600254905090565b60006105718483610b50565b6105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a7906119c8565b60405180910390fd5b6105bb848484610c05565b90509392505050565b60006012905090565b6105d56113aa565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820154815250509050919050565b61065f610659610b36565b82610c34565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2610cb6565b6106bc6000610d3d565b565b6106d0826106ca610b36565b83610e03565b6106da8282610c34565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071790611820565b80601f016020809104026020016040519081016040528092919081815260200182805461074390611820565b80156107905780601f1061076557610100808354040283529160200191610790565b820191906000526020600020905b81548152906001019060200180831161077357829003601f168201915b5050505050905090565b60006107ad6107a7610b36565b83610b50565b6107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e3906119c8565b60405180910390fd5b6107f68383610e97565b905092915050565b60006108098261044c565b90506000811161084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084590611a34565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546108a09190611a54565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167fb0c715c0c11d60097909f29f581b2dd96b3797d6803e72dce93cb0784921a67f826040516108ed91906115cf565b60405180910390a25050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610988610cb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109fa5760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109f1919061172f565b60405180910390fd5b610a0381610d3d565b50565b610a0e610cb6565b6064811115610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990611afa565b60405180910390fd5b60405180608001604052808481526020016000815260200183815260200182815250600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301559050508373ffffffffffffffffffffffffffffffffffffffff167f6690e843680430986d757302aa0f5e18f3fe57a1c75d7e73cbe029c63ab644dc848484604051610b2893929190611b1a565b60405180910390a250505050565b600033905090565b610b4b8383836001610eba565b505050565b600080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154610be39190611880565b610bec85610662565b610bf69190611880565b90508083111591505092915050565b600080610c10610b36565b9050610c1d858285610e03565b610c28858585611091565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ca65760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c9d919061172f565b60405180910390fd5b610cb282600083611185565b5050565b610cbe610b36565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6106de565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b57610cff610b36565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d32919061172f565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610e0f84846108f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e915781811015610e81578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e7893929190611b51565b60405180910390fd5b610e9084848484036000610eba565b5b50505050565b600080610ea2610b36565b9050610eaf818585611091565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610f2c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610f23919061172f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9e5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f95919061172f565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561108b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161108291906115cf565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111035760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110fa919061172f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111755760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161116c919061172f565b60405180910390fd5b611180838383611185565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111d75780600260008282546111cb9190611a54565b925050819055506112aa565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611263578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161125a93929190611b51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f35780600260008282540392505081905550611340565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161139d91906115cf565b60405180910390a3505050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140c5780820151818401526020810190506113f1565b60008484015250505050565b6000601f19601f8301169050919050565b6000611434826113d2565b61143e81856113dd565b935061144e8185602086016113ee565b61145781611418565b840191505092915050565b6000602082019050818103600083015261147c8184611429565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b482611489565b9050919050565b6114c4816114a9565b81146114cf57600080fd5b50565b6000813590506114e1816114bb565b92915050565b6000819050919050565b6114fa816114e7565b811461150557600080fd5b50565b600081359050611517816114f1565b92915050565b6000806040838503121561153457611533611484565b5b6000611542858286016114d2565b925050602061155385828601611508565b9150509250929050565b60008115159050919050565b6115728161155d565b82525050565b600060208201905061158d6000830184611569565b92915050565b6000602082840312156115a9576115a8611484565b5b60006115b7848285016114d2565b91505092915050565b6115c9816114e7565b82525050565b60006020820190506115e460008301846115c0565b92915050565b60008060006060848603121561160357611602611484565b5b6000611611868287016114d2565b9350506020611622868287016114d2565b925050604061163386828701611508565b9150509250925092565b600060ff82169050919050565b6116538161163d565b82525050565b600060208201905061166e600083018461164a565b92915050565b61167d816114e7565b82525050565b6080820160008201516116996000850182611674565b5060208201516116ac6020850182611674565b5060408201516116bf6040850182611674565b5060608201516116d26060850182611674565b50505050565b60006080820190506116ed6000830184611683565b92915050565b60006020828403121561170957611708611484565b5b600061171784828501611508565b91505092915050565b611729816114a9565b82525050565b60006020820190506117446000830184611720565b92915050565b6000806040838503121561176157611760611484565b5b600061176f858286016114d2565b9250506020611780858286016114d2565b9150509250929050565b600080600080608085870312156117a4576117a3611484565b5b60006117b2878288016114d2565b94505060206117c387828801611508565b93505060406117d487828801611508565b92505060606117e587828801611508565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061183857607f821691505b60208210810361184b5761184a6117f1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061188b826114e7565b9150611896836114e7565b92508282039050818111156118ae576118ad611851565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006118ee826114e7565b91506118f9836114e7565b925082611909576119086118b4565b5b828204905092915050565b600061191f826114e7565b915061192a836114e7565b9250828202611938816114e7565b9150828204841483151761194f5761194e611851565b5b5092915050565b7f4c6f636b75703a20616d6f756e74206578636565647320756e6c6f636b61626c60008201527f652062616c616e63650000000000000000000000000000000000000000000000602082015250565b60006119b26029836113dd565b91506119bd82611956565b604082019050919050565b600060208201905081810360008301526119e1816119a5565b9050919050565b7f4e6f20746f6b656e7320746f2072656c65617365000000000000000000000000600082015250565b6000611a1e6014836113dd565b9150611a29826119e8565b602082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b6000611a5f826114e7565b9150611a6a836114e7565b9250828201905080821115611a8257611a81611851565b5b92915050565b7f52656c656173652070657263656e746167652073686f756c6420626520696e2060008201527f626173697320706f696e74730000000000000000000000000000000000000000602082015250565b6000611ae4602c836113dd565b9150611aef82611a88565b604082019050919050565b60006020820190508181036000830152611b1381611ad7565b9050919050565b6000606082019050611b2f60008301866115c0565b611b3c60208301856115c0565b611b4960408301846115c0565b949350505050565b6000606082019050611b666000830186611720565b611b7360208301856115c0565b611b8060408301846115c0565b94935050505056fea26469706673582212206228cc91dd85cd892c8ab04ea33ee13a01f0153959b461cb1a2dc6f97cf1383064736f6c63430008170033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000018817a4d5c25d3b43ee6eb1cd29304a7133fd877000000000000000000000000000000000000000000000000000000000000000f437962657264796e6520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044342444e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cyberdyne Token
Arg [1] : symbol (string): CBDN
Arg [2] : initialOwner (address): 0x18817A4d5C25d3B43eE6EB1cD29304A7133fD877

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000018817a4d5c25d3b43ee6eb1cd29304a7133fd877
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 437962657264796e6520546f6b656e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4342444e00000000000000000000000000000000000000000000000000000000


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.