ETH Price: $3,176.43 (+1.37%)
Gas: 6 Gwei

Token

Alien Life Form ($ALF)
 

Overview

Max Total Supply

7,882,420,333,666,999 $ALF

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,839,137,197,565.345482731325838764 $ALF

Value
$0.00
0x7c3c40dfa767f809f7f28aae087b2153e0769979
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TokenStandard

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-15
*/

/**
 *
*/
/*
 *  █████╗ ██╗     ██╗███████╗███╗   ██╗    
 * ██╔══██╗██║     ██║██╔════╝████╗  ██║    
 * ███████║██║     ██║█████╗  ██╔██╗ ██║    
 * ██╔══██║██║     ██║██╔══╝  ██║╚██╗██║    
 * ██║  ██║███████╗██║███████╗██║ ╚████║    
 * ╚═╝  ╚═╝╚══════╝╚═╝╚══════╝╚═╝  ╚═══╝    
 *                                        
 *                          ██╗     ██╗███████╗███████╗          
 *                          ██║     ██║██╔════╝██╔════╝          
 *                          ██║     ██║█████╗  █████╗            
 *                          ██║     ██║██╔══╝  ██╔══╝            
 *                          ███████╗██║██║     ███████╗          
 *                          ╚══════╝╚═╝╚═╝     ╚══════╝          
 *                                         
 *                                                ███████╗ ██████╗ ██████╗ ███╗   ███╗     
 *                                                ██╔════╝██╔═══██╗██╔══██╗████╗ ████║     
 *                                                █████╗  ██║   ██║██████╔╝██╔████╔██║     
 *                                                ██╔══╝  ██║   ██║██╔══██╗██║╚██╔╝██║     
 *                                                ██║     ╚██████╔╝██║  ██║██║ ╚═╝ ██║     
 *                                                ╚═╝      ╚═════╝ ╚═╝  ╚═╝╚═╝     ╚═╝
 * https://alfcoin.vip
 * https://t.me/alfcoin_official
 * https://twitter.com/alfcoinvip
 * 
 *
 * SPDX-License-Identifier: MIT
*/

pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/tokens/TokenStandard.sol

// pragma solidity ^0.8.14;

contract TokenStandard is Ownable, IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    constructor(string memory tokenName, string memory tokenSymbol, uint8 tokenDecimals, uint256 tokenTotalSupply, address newOwner) {
        _name = tokenName;
        _symbol = tokenSymbol;
        _decimals = tokenDecimals;

        uint256 newTotalSupply = tokenTotalSupply * 10 ** tokenDecimals;

        _totalSupply = newTotalSupply;
        _balances[newOwner] = newTotalSupply;

        emit Transfer(address(0), newOwner, newTotalSupply);
        transferOwnership(newOwner);
    }

    /**
     * @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 value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * 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 _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender, _msgSender(), _allowances[sender][_msgSender()] - amount
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(
            _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(
            _msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender] - amount;
        _balances[recipient] = _balances[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"tokenDecimals","type":"uint8"},{"internalType":"uint256","name":"tokenTotalSupply","type":"uint256"},{"internalType":"address","name":"newOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"amount","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"}]

60806040523480156200001157600080fd5b50604051620022e3380380620022e3833981810160405281019062000037919062000601565b620000576200004b6200018660201b60201c565b6200018e60201b60201c565b846001908162000068919062000908565b5083600290816200007a919062000908565b5082600360006101000a81548160ff021916908360ff160217905550600083600a620000a7919062000b72565b83620000b4919062000bc3565b90508060048190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000161919062000c1f565b60405180910390a36200017a826200025260201b60201c565b50505050505062000d57565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002626200018660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002886200036760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d89062000c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000353576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034a9062000d35565b60405180910390fd5b62000364816200018e60201b60201c565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f982620003ae565b810181811067ffffffffffffffff821117156200041b576200041a620003bf565b5b80604052505050565b60006200043062000390565b90506200043e8282620003ee565b919050565b600067ffffffffffffffff821115620004615762000460620003bf565b5b6200046c82620003ae565b9050602081019050919050565b60005b83811015620004995780820151818401526020810190506200047c565b60008484015250505050565b6000620004bc620004b68462000443565b62000424565b905082815260208101848484011115620004db57620004da620003a9565b5b620004e884828562000479565b509392505050565b600082601f830112620005085762000507620003a4565b5b81516200051a848260208601620004a5565b91505092915050565b600060ff82169050919050565b6200053b8162000523565b81146200054757600080fd5b50565b6000815190506200055b8162000530565b92915050565b6000819050919050565b620005768162000561565b81146200058257600080fd5b50565b60008151905062000596816200056b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005c9826200059c565b9050919050565b620005db81620005bc565b8114620005e757600080fd5b50565b600081519050620005fb81620005d0565b92915050565b600080600080600060a0868803121562000620576200061f6200039a565b5b600086015167ffffffffffffffff8111156200064157620006406200039f565b5b6200064f88828901620004f0565b955050602086015167ffffffffffffffff8111156200067357620006726200039f565b5b6200068188828901620004f0565b945050604062000694888289016200054a565b9350506060620006a78882890162000585565b9250506080620006ba88828901620005ea565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071a57607f821691505b60208210810362000730576200072f620006d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200079a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075b565b620007a686836200075b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007e9620007e3620007dd8462000561565b620007be565b62000561565b9050919050565b6000819050919050565b6200080583620007c8565b6200081d6200081482620007f0565b84845462000768565b825550505050565b600090565b6200083462000825565b62000841818484620007fa565b505050565b5b8181101562000869576200085d6000826200082a565b60018101905062000847565b5050565b601f821115620008b857620008828162000736565b6200088d846200074b565b810160208510156200089d578190505b620008b5620008ac856200074b565b83018262000846565b50505b505050565b600082821c905092915050565b6000620008dd60001984600802620008bd565b1980831691505092915050565b6000620008f88383620008ca565b9150826002028217905092915050565b6200091382620006c7565b67ffffffffffffffff8111156200092f576200092e620003bf565b5b6200093b825462000701565b620009488282856200086d565b600060209050601f8311600181146200098057600084156200096b578287015190505b620009778582620008ea565b865550620009e7565b601f198416620009908662000736565b60005b82811015620009ba5784890151825560018201915060208501945060208101905062000993565b86831015620009da5784890151620009d6601f891682620008ca565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a7d5780860481111562000a555762000a54620009ef565b5b600185161562000a655780820291505b808102905062000a758562000a1e565b945062000a35565b94509492505050565b60008262000a98576001905062000b6b565b8162000aa8576000905062000b6b565b816001811462000ac1576002811462000acc5762000b02565b600191505062000b6b565b60ff84111562000ae15762000ae0620009ef565b5b8360020a91508482111562000afb5762000afa620009ef565b5b5062000b6b565b5060208310610133831016604e8410600b841016171562000b3c5782820a90508381111562000b365762000b35620009ef565b5b62000b6b565b62000b4b848484600162000a2b565b9250905081840481111562000b655762000b64620009ef565b5b81810290505b9392505050565b600062000b7f8262000561565b915062000b8c8362000523565b925062000bbb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a86565b905092915050565b600062000bd08262000561565b915062000bdd8362000561565b925082820262000bed8162000561565b9150828204841483151762000c075762000c06620009ef565b5b5092915050565b62000c198162000561565b82525050565b600060208201905062000c36600083018462000c0e565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c8560208362000c3c565b915062000c928262000c4d565b602082019050919050565b6000602082019050818103600083015262000cb88162000c76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000d1d60268362000c3c565b915062000d2a8262000cbf565b604082019050919050565b6000602082019050818103600083015262000d508162000d0e565b9050919050565b61157c8062000d676000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e8d565b60405180910390f35b61012760048036038101906101229190610f48565b61038d565b6040516101349190610fa3565b60405180910390f35b6101456103ab565b6040516101529190610fcd565b60405180910390f35b61017560048036038101906101709190610fe8565b6103b5565b6040516101829190610fa3565b60405180910390f35b61019361046d565b6040516101a09190611057565b60405180910390f35b6101c360048036038101906101be9190610f48565b610484565b6040516101d09190610fa3565b60405180910390f35b6101f360048036038101906101ee9190611072565b610530565b6040516102009190610fcd565b60405180910390f35b610211610579565b005b61021b610601565b60405161022891906110ae565b60405180910390f35b61023961062a565b6040516102469190610e8d565b60405180910390f35b61026960048036038101906102649190610f48565b6106bc565b6040516102769190610fa3565b60405180910390f35b61029960048036038101906102949190610f48565b610768565b6040516102a69190610fa3565b60405180910390f35b6102c960048036038101906102c491906110c9565b610786565b6040516102d69190610fcd565b60405180910390f35b6102f960048036038101906102f49190611072565b61080d565b005b60606001805461030a90611138565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611138565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610904565b848461090c565b6001905092915050565b6000600454905090565b60006103c2848484610ad5565b610462846103ce610904565b84600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610418610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461045d9190611198565b61090c565b600190509392505050565b6000600360009054906101000a900460ff16905090565b6000610526610491610904565b84846006600061049f610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461052191906111cc565b61090c565b6001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610581610904565b73ffffffffffffffffffffffffffffffffffffffff1661059f610601565b73ffffffffffffffffffffffffffffffffffffffff16146105f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ec9061124c565b60405180910390fd5b6105ff6000610d39565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461063990611138565b80601f016020809104026020016040519081016040528092919081815260200182805461066590611138565b80156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b600061075e6106c9610904565b8484600660006106d7610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107599190611198565b61090c565b6001905092915050565b600061077c610775610904565b8484610ad5565b6001905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610815610904565b73ffffffffffffffffffffffffffffffffffffffff16610833610601565b73ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809061124c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef906112de565b60405180910390fd5b61090181610d39565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611370565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190611402565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac89190610fcd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90611494565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90611526565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bfe9190611198565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c8c91906111cc565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2c9190610fcd565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e37578082015181840152602081019050610e1c565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e5f82610dfd565b610e698185610e08565b9350610e79818560208601610e19565b610e8281610e43565b840191505092915050565b60006020820190508181036000830152610ea78184610e54565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610edf82610eb4565b9050919050565b610eef81610ed4565b8114610efa57600080fd5b50565b600081359050610f0c81610ee6565b92915050565b6000819050919050565b610f2581610f12565b8114610f3057600080fd5b50565b600081359050610f4281610f1c565b92915050565b60008060408385031215610f5f57610f5e610eaf565b5b6000610f6d85828601610efd565b9250506020610f7e85828601610f33565b9150509250929050565b60008115159050919050565b610f9d81610f88565b82525050565b6000602082019050610fb86000830184610f94565b92915050565b610fc781610f12565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b60008060006060848603121561100157611000610eaf565b5b600061100f86828701610efd565b935050602061102086828701610efd565b925050604061103186828701610f33565b9150509250925092565b600060ff82169050919050565b6110518161103b565b82525050565b600060208201905061106c6000830184611048565b92915050565b60006020828403121561108857611087610eaf565b5b600061109684828501610efd565b91505092915050565b6110a881610ed4565b82525050565b60006020820190506110c3600083018461109f565b92915050565b600080604083850312156110e0576110df610eaf565b5b60006110ee85828601610efd565b92505060206110ff85828601610efd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061115057607f821691505b60208210810361116357611162611109565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111a382610f12565b91506111ae83610f12565b92508282039050818111156111c6576111c5611169565b5b92915050565b60006111d782610f12565b91506111e283610f12565b92508282019050808211156111fa576111f9611169565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611236602083610e08565b915061124182611200565b602082019050919050565b6000602082019050818103600083015261126581611229565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112c8602683610e08565b91506112d38261126c565b604082019050919050565b600060208201905081810360008301526112f7816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061135a602483610e08565b9150611365826112fe565b604082019050919050565b600060208201905081810360008301526113898161134d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113ec602283610e08565b91506113f782611390565b604082019050919050565b6000602082019050818103600083015261141b816113df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061147e602583610e08565b915061148982611422565b604082019050919050565b600060208201905081810360008301526114ad81611471565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611510602383610e08565b915061151b826114b4565b604082019050919050565b6000602082019050818103600083015261153f81611503565b905091905056fea26469706673582212206a3556efa6fa2fecc3294939838f27e4515d4913084ef2636f13b25c8403b3e364736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000001c0104fff562b7000000000000000000000000149256c30cac6ff3c993e92a01d7101379a4fedf000000000000000000000000000000000000000000000000000000000000000f416c69656e204c69666520466f726d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000424414c4600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610e8d565b60405180910390f35b61012760048036038101906101229190610f48565b61038d565b6040516101349190610fa3565b60405180910390f35b6101456103ab565b6040516101529190610fcd565b60405180910390f35b61017560048036038101906101709190610fe8565b6103b5565b6040516101829190610fa3565b60405180910390f35b61019361046d565b6040516101a09190611057565b60405180910390f35b6101c360048036038101906101be9190610f48565b610484565b6040516101d09190610fa3565b60405180910390f35b6101f360048036038101906101ee9190611072565b610530565b6040516102009190610fcd565b60405180910390f35b610211610579565b005b61021b610601565b60405161022891906110ae565b60405180910390f35b61023961062a565b6040516102469190610e8d565b60405180910390f35b61026960048036038101906102649190610f48565b6106bc565b6040516102769190610fa3565b60405180910390f35b61029960048036038101906102949190610f48565b610768565b6040516102a69190610fa3565b60405180910390f35b6102c960048036038101906102c491906110c9565b610786565b6040516102d69190610fcd565b60405180910390f35b6102f960048036038101906102f49190611072565b61080d565b005b60606001805461030a90611138565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611138565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610904565b848461090c565b6001905092915050565b6000600454905090565b60006103c2848484610ad5565b610462846103ce610904565b84600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610418610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461045d9190611198565b61090c565b600190509392505050565b6000600360009054906101000a900460ff16905090565b6000610526610491610904565b84846006600061049f610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461052191906111cc565b61090c565b6001905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610581610904565b73ffffffffffffffffffffffffffffffffffffffff1661059f610601565b73ffffffffffffffffffffffffffffffffffffffff16146105f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ec9061124c565b60405180910390fd5b6105ff6000610d39565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461063990611138565b80601f016020809104026020016040519081016040528092919081815260200182805461066590611138565b80156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b600061075e6106c9610904565b8484600660006106d7610904565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107599190611198565b61090c565b6001905092915050565b600061077c610775610904565b8484610ad5565b6001905092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610815610904565b73ffffffffffffffffffffffffffffffffffffffff16610833610601565b73ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809061124c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef906112de565b60405180910390fd5b61090181610d39565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611370565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190611402565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac89190610fcd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90611494565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90611526565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bfe9190611198565b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c8c91906111cc565b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d2c9190610fcd565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e37578082015181840152602081019050610e1c565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e5f82610dfd565b610e698185610e08565b9350610e79818560208601610e19565b610e8281610e43565b840191505092915050565b60006020820190508181036000830152610ea78184610e54565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610edf82610eb4565b9050919050565b610eef81610ed4565b8114610efa57600080fd5b50565b600081359050610f0c81610ee6565b92915050565b6000819050919050565b610f2581610f12565b8114610f3057600080fd5b50565b600081359050610f4281610f1c565b92915050565b60008060408385031215610f5f57610f5e610eaf565b5b6000610f6d85828601610efd565b9250506020610f7e85828601610f33565b9150509250929050565b60008115159050919050565b610f9d81610f88565b82525050565b6000602082019050610fb86000830184610f94565b92915050565b610fc781610f12565b82525050565b6000602082019050610fe26000830184610fbe565b92915050565b60008060006060848603121561100157611000610eaf565b5b600061100f86828701610efd565b935050602061102086828701610efd565b925050604061103186828701610f33565b9150509250925092565b600060ff82169050919050565b6110518161103b565b82525050565b600060208201905061106c6000830184611048565b92915050565b60006020828403121561108857611087610eaf565b5b600061109684828501610efd565b91505092915050565b6110a881610ed4565b82525050565b60006020820190506110c3600083018461109f565b92915050565b600080604083850312156110e0576110df610eaf565b5b60006110ee85828601610efd565b92505060206110ff85828601610efd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061115057607f821691505b60208210810361116357611162611109565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111a382610f12565b91506111ae83610f12565b92508282039050818111156111c6576111c5611169565b5b92915050565b60006111d782610f12565b91506111e283610f12565b92508282019050808211156111fa576111f9611169565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611236602083610e08565b915061124182611200565b602082019050919050565b6000602082019050818103600083015261126581611229565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112c8602683610e08565b91506112d38261126c565b604082019050919050565b600060208201905081810360008301526112f7816112bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061135a602483610e08565b9150611365826112fe565b604082019050919050565b600060208201905081810360008301526113898161134d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113ec602283610e08565b91506113f782611390565b604082019050919050565b6000602082019050818103600083015261141b816113df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061147e602583610e08565b915061148982611422565b604082019050919050565b600060208201905081810360008301526114ad81611471565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611510602383610e08565b915061151b826114b4565b604082019050919050565b6000602082019050818103600083015261153f81611503565b905091905056fea26469706673582212206a3556efa6fa2fecc3294939838f27e4515d4913084ef2636f13b25c8403b3e364736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000001c0104fff562b7000000000000000000000000149256c30cac6ff3c993e92a01d7101379a4fedf000000000000000000000000000000000000000000000000000000000000000f416c69656e204c69666520466f726d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000424414c4600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenName (string): Alien Life Form
Arg [1] : tokenSymbol (string): $ALF
Arg [2] : tokenDecimals (uint8): 18
Arg [3] : tokenTotalSupply (uint256): 7882420333666999
Arg [4] : newOwner (address): 0x149256c30CaC6FF3C993e92A01D7101379A4fedF

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000001c0104fff562b7
Arg [4] : 000000000000000000000000149256c30cac6ff3c993e92a01d7101379a4fedf
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 416c69656e204c69666520466f726d0000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 24414c4600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8816:7073:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9686:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11832:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10785:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:298;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10629:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13190:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10956:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5043:103;;;:::i;:::-;;4392:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9896:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13932:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11296:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11534:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5301:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9686:91;9731:13;9764:5;9757:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9686:91;:::o;11832:169::-;11915:4;11932:39;11941:12;:10;:12::i;:::-;11955:7;11964:6;11932:8;:39::i;:::-;11989:4;11982:11;;11832:169;;;;:::o;10785:108::-;10846:7;10873:12;;10866:19;;10785:108;:::o;12483:298::-;12589:4;12606:36;12616:6;12624:9;12635:6;12606:9;:36::i;:::-;12653:98;12676:6;12684:12;:10;:12::i;:::-;12734:6;12698:11;:19;12710:6;12698:19;;;;;;;;;;;;;;;:33;12718:12;:10;:12::i;:::-;12698:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;12653:8;:98::i;:::-;12769:4;12762:11;;12483:298;;;;;:::o;10629:91::-;10678:5;10703:9;;;;;;;;;;;10696:16;;10629:91;:::o;13190:239::-;13278:4;13295:104;13318:12;:10;:12::i;:::-;13332:7;13378:10;13341:11;:25;13353:12;:10;:12::i;:::-;13341:25;;;;;;;;;;;;;;;:34;13367:7;13341:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13295:8;:104::i;:::-;13417:4;13410:11;;13190:239;;;;:::o;10956:127::-;11030:7;11057:9;:18;11067:7;11057:18;;;;;;;;;;;;;;;;11050:25;;10956:127;;;:::o;5043:103::-;4623:12;:10;:12::i;:::-;4612:23;;:7;:5;:7::i;:::-;:23;;;4604:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5108:30:::1;5135:1;5108:18;:30::i;:::-;5043:103::o:0;4392:87::-;4438:7;4465:6;;;;;;;;;;;4458:13;;4392:87;:::o;9896:95::-;9943:13;9976:7;9969:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9896:95;:::o;13932:249::-;14025:4;14042:109;14065:12;:10;:12::i;:::-;14079:7;14125:15;14088:11;:25;14100:12;:10;:12::i;:::-;14088:25;;;;;;;;;;;;;;;:34;14114:7;14088:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;14042:8;:109::i;:::-;14169:4;14162:11;;13932:249;;;;:::o;11296:175::-;11382:4;11399:42;11409:12;:10;:12::i;:::-;11423:9;11434:6;11399:9;:42::i;:::-;11459:4;11452:11;;11296:175;;;;:::o;11534:151::-;11623:7;11650:11;:18;11662:5;11650:18;;;;;;;;;;;;;;;:27;11669:7;11650:27;;;;;;;;;;;;;;;;11643:34;;11534:151;;;;:::o;5301:201::-;4623:12;:10;:12::i;:::-;4612:23;;:7;:5;:7::i;:::-;:23;;;4604:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5410:1:::1;5390:22;;:8;:22;;::::0;5382:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5466:28;5485:8;5466:18;:28::i;:::-;5301:201:::0;:::o;3119:98::-;3172:7;3199:10;3192:17;;3119:98;:::o;15540:346::-;15659:1;15642:19;;:5;:19;;;15634:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15740:1;15721:21;;:7;:21;;;15713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15824:6;15794:11;:18;15806:5;15794:18;;;;;;;;;;;;;;;:27;15813:7;15794:27;;;;;;;;;;;;;;;:36;;;;15862:7;15846:32;;15855:5;15846:32;;;15871:6;15846:32;;;;;;:::i;:::-;;;;;;;;15540:346;;;:::o;14671:431::-;14795:1;14777:20;;:6;:20;;;14769:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14879:1;14858:23;;:9;:23;;;14850:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14974:6;14954:9;:17;14964:6;14954:17;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;14934:9;:17;14944:6;14934:17;;;;;;;;;;;;;;;:46;;;;15037:6;15014:9;:20;15024:9;15014:20;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;14991:9;:20;15001:9;14991:20;;;;;;;;;;;;;;;:52;;;;15076:9;15059:35;;15068:6;15059:35;;;15087:6;15059:35;;;;;;:::i;:::-;;;;;;;;14671:431;;;:::o;5662:191::-;5736:16;5755:6;;;;;;;;;;;5736:25;;5781:8;5772:6;;:17;;;;;;;;;;;;;;;;;;5836:8;5805:40;;5826:8;5805:40;;;;;;;;;;;;5725:128;5662:191;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:194;6758:4;6778:20;6796:1;6778:20;:::i;:::-;6773:25;;6812:20;6830:1;6812:20;:::i;:::-;6807:25;;6856:1;6853;6849:9;6841:17;;6880:1;6874:4;6871:11;6868:37;;;6885:18;;:::i;:::-;6868:37;6718:194;;;;:::o;6918:191::-;6958:3;6977:20;6995:1;6977:20;:::i;:::-;6972:25;;7011:20;7029:1;7011:20;:::i;:::-;7006:25;;7054:1;7051;7047:9;7040:16;;7075:3;7072:1;7069:10;7066:36;;;7082:18;;:::i;:::-;7066:36;6918:191;;;;:::o;7115:182::-;7255:34;7251:1;7243:6;7239:14;7232:58;7115:182;:::o;7303:366::-;7445:3;7466:67;7530:2;7525:3;7466:67;:::i;:::-;7459:74;;7542:93;7631:3;7542:93;:::i;:::-;7660:2;7655:3;7651:12;7644:19;;7303:366;;;:::o;7675:419::-;7841:4;7879:2;7868:9;7864:18;7856:26;;7928:9;7922:4;7918:20;7914:1;7903:9;7899:17;7892:47;7956:131;8082:4;7956:131;:::i;:::-;7948:139;;7675:419;;;:::o;8100:225::-;8240:34;8236:1;8228:6;8224:14;8217:58;8309:8;8304:2;8296:6;8292:15;8285:33;8100:225;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:419::-;8869:4;8907:2;8896:9;8892:18;8884:26;;8956:9;8950:4;8946:20;8942:1;8931:9;8927:17;8920:47;8984:131;9110:4;8984:131;:::i;:::-;8976:139;;8703:419;;;:::o;9128:223::-;9268:34;9264:1;9256:6;9252:14;9245:58;9337:6;9332:2;9324:6;9320:15;9313:31;9128:223;:::o;9357:366::-;9499:3;9520:67;9584:2;9579:3;9520:67;:::i;:::-;9513:74;;9596:93;9685:3;9596:93;:::i;:::-;9714:2;9709:3;9705:12;9698:19;;9357:366;;;:::o;9729:419::-;9895:4;9933:2;9922:9;9918:18;9910:26;;9982:9;9976:4;9972:20;9968:1;9957:9;9953:17;9946:47;10010:131;10136:4;10010:131;:::i;:::-;10002:139;;9729:419;;;:::o;10154:221::-;10294:34;10290:1;10282:6;10278:14;10271:58;10363:4;10358:2;10350:6;10346:15;10339:29;10154:221;:::o;10381:366::-;10523:3;10544:67;10608:2;10603:3;10544:67;:::i;:::-;10537:74;;10620:93;10709:3;10620:93;:::i;:::-;10738:2;10733:3;10729:12;10722:19;;10381:366;;;:::o;10753:419::-;10919:4;10957:2;10946:9;10942:18;10934:26;;11006:9;11000:4;10996:20;10992:1;10981:9;10977:17;10970:47;11034:131;11160:4;11034:131;:::i;:::-;11026:139;;10753:419;;;:::o;11178:224::-;11318:34;11314:1;11306:6;11302:14;11295:58;11387:7;11382:2;11374:6;11370:15;11363:32;11178:224;:::o;11408:366::-;11550:3;11571:67;11635:2;11630:3;11571:67;:::i;:::-;11564:74;;11647:93;11736:3;11647:93;:::i;:::-;11765:2;11760:3;11756:12;11749:19;;11408:366;;;:::o;11780:419::-;11946:4;11984:2;11973:9;11969:18;11961:26;;12033:9;12027:4;12023:20;12019:1;12008:9;12004:17;11997:47;12061:131;12187:4;12061:131;:::i;:::-;12053:139;;11780:419;;;:::o;12205:222::-;12345:34;12341:1;12333:6;12329:14;12322:58;12414:5;12409:2;12401:6;12397:15;12390:30;12205:222;:::o;12433:366::-;12575:3;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12672:93;12761:3;12672:93;:::i;:::-;12790:2;12785:3;12781:12;12774:19;;12433:366;;;:::o;12805:419::-;12971:4;13009:2;12998:9;12994:18;12986:26;;13058:9;13052:4;13048:20;13044:1;13033:9;13029:17;13022:47;13086:131;13212:4;13086:131;:::i;:::-;13078:139;;12805:419;;;:::o

Swarm Source

ipfs://6a3556efa6fa2fecc3294939838f27e4515d4913084ef2636f13b25c8403b3e3
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.