ETH Price: $3,452.21 (+1.57%)

Contract

0x3f5294DF68F871241c4B18fcF78ebD8Ac18aB654
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

99Starz (STZ) (@$0.0087)
Transaction Hash
Method
Block
From
To
Approve214123242024-12-16 3:14:358 days ago1734318875IN
99Starz: STZ Token
0 ETH0.0002588110.25103408
Approve213813002024-12-11 19:18:1113 days ago1733944691IN
99Starz: STZ Token
0 ETH0.001833138.22879894
Approve213757282024-12-11 0:36:3513 days ago1733877395IN
99Starz: STZ Token
0 ETH0.0007552215.7658167
Approve213757182024-12-11 0:34:3513 days ago1733877275IN
99Starz: STZ Token
0 ETH0.0006666213.91260266
Approve213385122024-12-05 19:54:2319 days ago1733428463IN
99Starz: STZ Token
0 ETH0.001426729.75333749
Transfer212747322024-11-26 21:52:2327 days ago1732657943IN
99Starz: STZ Token
0 ETH0.000233498.44896233
Approve212196462024-11-19 5:20:2335 days ago1731993623IN
99Starz: STZ Token
0 ETH0.000419948.75551419
Approve211707322024-11-12 9:33:3542 days ago1731404015IN
99Starz: STZ Token
0 ETH0.0015006231.27934243
Approve211644602024-11-11 12:31:5943 days ago1731328319IN
99Starz: STZ Token
0 ETH0.0005352521.2
Transfer211393262024-11-08 0:23:4746 days ago1731025427IN
99Starz: STZ Token
0 ETH0.0008247617.33721693
Transfer210969152024-11-02 2:15:5952 days ago1730513759IN
99Starz: STZ Token
0 ETH0.00020784.36701922
Transfer210745892024-10-29 23:29:5955 days ago1730244599IN
99Starz: STZ Token
0 ETH0.000359147.54943688
Transfer210166432024-10-21 21:28:1163 days ago1729546091IN
99Starz: STZ Token
0 ETH0.000344927.25064977
Transfer209866092024-10-17 16:54:1168 days ago1729184051IN
99Starz: STZ Token
0 ETH0.0009555620.0917896
Approve209303572024-10-09 20:14:2376 days ago1728504863IN
99Starz: STZ Token
0 ETH0.001964377.80052397
Transfer207909962024-09-20 9:46:5995 days ago1726825619IN
99Starz: STZ Token
0 ETH0.0005948912.50828983
Transfer205622082024-08-19 10:54:23127 days ago1724064863IN
99Starz: STZ Token
0 ETH0.000109733.11210512
Approve205527492024-08-18 3:13:23128 days ago1723950803IN
99Starz: STZ Token
0 ETH0.000029761.17877506
Approve205216732024-08-13 19:03:59133 days ago1723575839IN
99Starz: STZ Token
0 ETH0.000072452.86972379
Transfer205193022024-08-13 11:07:59133 days ago1723547279IN
99Starz: STZ Token
0 ETH0.00004891.38691199
Approve203955842024-07-27 4:46:11150 days ago1722055571IN
99Starz: STZ Token
0 ETH0.000052011.08396267
Transfer202068482024-06-30 20:19:35177 days ago1719778775IN
99Starz: STZ Token
0 ETH0.000284635.98472902
Approve202068312024-06-30 20:16:11177 days ago1719778571IN
99Starz: STZ Token
0 ETH0.000258815.39477876
Transfer200815412024-06-13 7:53:59194 days ago1718265239IN
99Starz: STZ Token
0 ETH0.0003294210.80654053
Approve200221312024-06-05 0:46:35202 days ago1717548395IN
99Starz: STZ Token
0 ETH0.000166676.60135859
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ERC2099starz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-02
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}




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


/**
 * @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 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);
    }
}
/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * 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 override returns (uint8) {
        return 18;
    }

    /**
     * @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) {
         uint256 currentAllowance = _allowances[_msgSender()][spender];
         if(currentAllowance == amount){
            return true;
         }
         else if(amount > currentAllowance) {
            amount =  amount - currentAllowance ;
            increaseAllowance(spender, amount);
            return true;
         }
         else if(amount == 0) {
            _approve(_msgSender(),spender,amount);
            return true;
         }
         else{
             amount = currentAllowance - amount;
             decreaseAllowance(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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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.
     *
     * 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");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}



/**
 * @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 `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` 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
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}




/**
 * @dev {ERC20} token, including:
 *
 *  - Preminted initial supply
 *  - Ability for holders to burn (destroy) their tokens
 *  - No access control mechanism (for minting/pausing) and hence no governance
 *
 * This contract uses {ERC20Burnable} to include burn capabilities - head to
 * its documentation for details.
 *
 * _Available since v3.4._
 */
contract ERC2099starz is ERC20Burnable,Ownable {
    /**
     * @dev Mints `initialSupply` amount of token and transfers them to `owner`.
     *
     * See {ERC20-constructor}.
     */
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address owner
    ) ERC20(name, symbol) {
        _mint(owner, initialSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"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"}]

60806040523480156200001157600080fd5b50604051620024e5380380620024e583398181016040528101906200003791906200044a565b8383816003908051906020019062000051929190620002fa565b5080600490805190602001906200006a929190620002fa565b5050506200008d62000081620000a960201b60201c565b620000b160201b60201c565b6200009f81836200017760201b60201c565b5050505062000807565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e19062000520565b60405180910390fd5b620001fe60008383620002f060201b60201c565b8060026000828254620002129190620005cf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002699190620005cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002d0919062000542565b60405180910390a3620002ec60008383620002f560201b60201c565b5050565b505050565b505050565b8280546200030890620006a0565b90600052602060002090601f0160209004810192826200032c576000855562000378565b82601f106200034757805160ff191683800117855562000378565b8280016001018555821562000378579182015b82811115620003775782518255916020019190600101906200035a565b5b5090506200038791906200038b565b5090565b5b80821115620003a65760008160009055506001016200038c565b5090565b6000620003c1620003bb8462000588565b6200055f565b905082815260208101848484011115620003da57600080fd5b620003e78482856200066a565b509392505050565b6000815190506200040081620007d3565b92915050565b600082601f8301126200041857600080fd5b81516200042a848260208601620003aa565b91505092915050565b6000815190506200044481620007ed565b92915050565b600080600080608085870312156200046157600080fd5b600085015167ffffffffffffffff8111156200047c57600080fd5b6200048a8782880162000406565b945050602085015167ffffffffffffffff811115620004a857600080fd5b620004b68782880162000406565b9350506040620004c98782880162000433565b9250506060620004dc87828801620003ef565b91505092959194509250565b6000620004f7601f83620005be565b91506200050482620007aa565b602082019050919050565b6200051a8162000660565b82525050565b600060208201905081810360008301526200053b81620004e8565b9050919050565b60006020820190506200055960008301846200050f565b92915050565b60006200056b6200057e565b9050620005798282620006d6565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a657620005a56200076a565b5b620005b18262000799565b9050602081019050919050565b600082825260208201905092915050565b6000620005dc8262000660565b9150620005e98362000660565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200062157620006206200070c565b5b828201905092915050565b6000620006398262000640565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200068a5780820151818401526020810190506200066d565b838111156200069a576000848401525b50505050565b60006002820490506001821680620006b957607f821691505b60208210811415620006d057620006cf6200073b565b5b50919050565b620006e18262000799565b810181811067ffffffffffffffff821117156200070357620007026200076a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620007de816200062c565b8114620007ea57600080fd5b50565b620007f88162000660565b81146200080457600080fd5b50565b611cce80620008176000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063dd62ed3e146102e8578063f2fde38b14610318576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611535565b60405180910390f35b610132600480360381019061012d9190611281565b6103c6565b60405161013f919061151a565b60405180910390f35b6101506104d6565b60405161015d91906116d7565b60405180910390f35b610180600480360381019061017b9190611232565b6104e0565b60405161018d919061151a565b60405180910390f35b61019e6105d8565b6040516101ab91906116f2565b60405180910390f35b6101ce60048036038101906101c99190611281565b6105e1565b6040516101db919061151a565b60405180910390f35b6101fe60048036038101906101f991906112bd565b61068d565b005b61021a600480360381019061021591906111cd565b6106a1565b60405161022791906116d7565b60405180910390f35b61024a60048036038101906102459190611281565b6106e9565b005b610254610764565b60405161026191906114ff565b60405180910390f35b61027261078e565b60405161027f9190611535565b60405180910390f35b6102a2600480360381019061029d9190611281565b610820565b6040516102af919061151a565b60405180910390f35b6102d260048036038101906102cd9190611281565b61090b565b6040516102df919061151a565b60405180910390f35b61030260048036038101906102fd91906111f6565b610929565b60405161030f91906116d7565b60405180910390f35b610332600480360381019061032d91906111cd565b6109b0565b005b6060600380546103439061183b565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061183b565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b600080600160006103d5610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828114156104615760019150506104d0565b8083111561048c578083610475919061177f565b925061048184846105e1565b5060019150506104d0565b60008314156104b1576104a76104a0610aa8565b8585610ab0565b60019150506104d0565b82816104bd919061177f565b92506104c98484610820565b5060019150505b92915050565b6000600254905090565b60006104ed848484610c7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610538610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af906115f7565b60405180910390fd5b6105cc856105c4610aa8565b858403610ab0565b60019150509392505050565b60006012905090565b60006106836105ee610aa8565b8484600160006105fc610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461067e9190611729565b610ab0565b6001905092915050565b61069e610698610aa8565b82610efc565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106fc836106f7610aa8565b610929565b905081811015610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890611637565b60405180910390fd5b6107558361074d610aa8565b848403610ab0565b61075f8383610efc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079d9061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546107c99061183b565b80156108165780601f106107eb57610100808354040283529160200191610816565b820191906000526020600020905b8154815290600101906020018083116107f957829003601f168201915b5050505050905090565b6000806001600061082f610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906116b7565b60405180910390fd5b6109006108f7610aa8565b85858403610ab0565b600191505092915050565b600061091f610918610aa8565b8484610c7b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109b8610aa8565b73ffffffffffffffffffffffffffffffffffffffff166109d6610764565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390611617565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611597565b60405180910390fd5b610aa5816110d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790611697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906115b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c6e91906116d7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611557565b60405180910390fd5b610d66838383611199565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906115d7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7f9190611729565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee391906116d7565b60405180910390a3610ef684848461119e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611657565b60405180910390fd5b610f7882600083611199565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590611577565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611055919061177f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ba91906116d7565b60405180910390a36110ce8360008461119e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506111b281611c6a565b92915050565b6000813590506111c781611c81565b92915050565b6000602082840312156111df57600080fd5b60006111ed848285016111a3565b91505092915050565b6000806040838503121561120957600080fd5b6000611217858286016111a3565b9250506020611228858286016111a3565b9150509250929050565b60008060006060848603121561124757600080fd5b6000611255868287016111a3565b9350506020611266868287016111a3565b9250506040611277868287016111b8565b9150509250925092565b6000806040838503121561129457600080fd5b60006112a2858286016111a3565b92505060206112b3858286016111b8565b9150509250929050565b6000602082840312156112cf57600080fd5b60006112dd848285016111b8565b91505092915050565b6112ef816117b3565b82525050565b6112fe816117c5565b82525050565b600061130f8261170d565b6113198185611718565b9350611329818560208601611808565b611332816118cb565b840191505092915050565b600061134a602383611718565b9150611355826118dc565b604082019050919050565b600061136d602283611718565b91506113788261192b565b604082019050919050565b6000611390602683611718565b915061139b8261197a565b604082019050919050565b60006113b3602283611718565b91506113be826119c9565b604082019050919050565b60006113d6602683611718565b91506113e182611a18565b604082019050919050565b60006113f9602883611718565b915061140482611a67565b604082019050919050565b600061141c602083611718565b915061142782611ab6565b602082019050919050565b600061143f602483611718565b915061144a82611adf565b604082019050919050565b6000611462602183611718565b915061146d82611b2e565b604082019050919050565b6000611485602583611718565b915061149082611b7d565b604082019050919050565b60006114a8602483611718565b91506114b382611bcc565b604082019050919050565b60006114cb602583611718565b91506114d682611c1b565b604082019050919050565b6114ea816117f1565b82525050565b6114f9816117fb565b82525050565b600060208201905061151460008301846112e6565b92915050565b600060208201905061152f60008301846112f5565b92915050565b6000602082019050818103600083015261154f8184611304565b905092915050565b600060208201905081810360008301526115708161133d565b9050919050565b6000602082019050818103600083015261159081611360565b9050919050565b600060208201905081810360008301526115b081611383565b9050919050565b600060208201905081810360008301526115d0816113a6565b9050919050565b600060208201905081810360008301526115f0816113c9565b9050919050565b60006020820190508181036000830152611610816113ec565b9050919050565b600060208201905081810360008301526116308161140f565b9050919050565b6000602082019050818103600083015261165081611432565b9050919050565b6000602082019050818103600083015261167081611455565b9050919050565b6000602082019050818103600083015261169081611478565b9050919050565b600060208201905081810360008301526116b08161149b565b9050919050565b600060208201905081810360008301526116d0816114be565b9050919050565b60006020820190506116ec60008301846114e1565b92915050565b600060208201905061170760008301846114f0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611734826117f1565b915061173f836117f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117745761177361186d565b5b828201905092915050565b600061178a826117f1565b9150611795836117f1565b9250828210156117a8576117a761186d565b5b828203905092915050565b60006117be826117d1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561182657808201518184015260208101905061180b565b83811115611835576000848401525b50505050565b6000600282049050600182168061185357607f821691505b602082108114156118675761186661189c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c73816117b3565b8114611c7e57600080fd5b50565b611c8a816117f1565b8114611c9557600080fd5b5056fea26469706673582212203fae146e48e8c03cf96616bf51b8c29d74e6f2abfba2b346944fb821c3af4f3064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000051e410c0f93fe543000000000000000000000000000000c2e67678364104bcdd40d1b60d9b3363bb36f77400000000000000000000000000000000000000000000000000000000000000073939537461727a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353545a0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063dd62ed3e146102e8578063f2fde38b14610318576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611535565b60405180910390f35b610132600480360381019061012d9190611281565b6103c6565b60405161013f919061151a565b60405180910390f35b6101506104d6565b60405161015d91906116d7565b60405180910390f35b610180600480360381019061017b9190611232565b6104e0565b60405161018d919061151a565b60405180910390f35b61019e6105d8565b6040516101ab91906116f2565b60405180910390f35b6101ce60048036038101906101c99190611281565b6105e1565b6040516101db919061151a565b60405180910390f35b6101fe60048036038101906101f991906112bd565b61068d565b005b61021a600480360381019061021591906111cd565b6106a1565b60405161022791906116d7565b60405180910390f35b61024a60048036038101906102459190611281565b6106e9565b005b610254610764565b60405161026191906114ff565b60405180910390f35b61027261078e565b60405161027f9190611535565b60405180910390f35b6102a2600480360381019061029d9190611281565b610820565b6040516102af919061151a565b60405180910390f35b6102d260048036038101906102cd9190611281565b61090b565b6040516102df919061151a565b60405180910390f35b61030260048036038101906102fd91906111f6565b610929565b60405161030f91906116d7565b60405180910390f35b610332600480360381019061032d91906111cd565b6109b0565b005b6060600380546103439061183b565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061183b565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b600080600160006103d5610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828114156104615760019150506104d0565b8083111561048c578083610475919061177f565b925061048184846105e1565b5060019150506104d0565b60008314156104b1576104a76104a0610aa8565b8585610ab0565b60019150506104d0565b82816104bd919061177f565b92506104c98484610820565b5060019150505b92915050565b6000600254905090565b60006104ed848484610c7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610538610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af906115f7565b60405180910390fd5b6105cc856105c4610aa8565b858403610ab0565b60019150509392505050565b60006012905090565b60006106836105ee610aa8565b8484600160006105fc610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461067e9190611729565b610ab0565b6001905092915050565b61069e610698610aa8565b82610efc565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106fc836106f7610aa8565b610929565b905081811015610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890611637565b60405180910390fd5b6107558361074d610aa8565b848403610ab0565b61075f8383610efc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461079d9061183b565b80601f01602080910402602001604051908101604052809291908181526020018280546107c99061183b565b80156108165780601f106107eb57610100808354040283529160200191610816565b820191906000526020600020905b8154815290600101906020018083116107f957829003601f168201915b5050505050905090565b6000806001600061082f610aa8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e3906116b7565b60405180910390fd5b6109006108f7610aa8565b85858403610ab0565b600191505092915050565b600061091f610918610aa8565b8484610c7b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109b8610aa8565b73ffffffffffffffffffffffffffffffffffffffff166109d6610764565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390611617565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9390611597565b60405180910390fd5b610aa5816110d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790611697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906115b7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c6e91906116d7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611677565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290611557565b60405180910390fd5b610d66838383611199565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de3906115d7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7f9190611729565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee391906116d7565b60405180910390a3610ef684848461119e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390611657565b60405180910390fd5b610f7882600083611199565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590611577565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611055919061177f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ba91906116d7565b60405180910390a36110ce8360008461119e565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506111b281611c6a565b92915050565b6000813590506111c781611c81565b92915050565b6000602082840312156111df57600080fd5b60006111ed848285016111a3565b91505092915050565b6000806040838503121561120957600080fd5b6000611217858286016111a3565b9250506020611228858286016111a3565b9150509250929050565b60008060006060848603121561124757600080fd5b6000611255868287016111a3565b9350506020611266868287016111a3565b9250506040611277868287016111b8565b9150509250925092565b6000806040838503121561129457600080fd5b60006112a2858286016111a3565b92505060206112b3858286016111b8565b9150509250929050565b6000602082840312156112cf57600080fd5b60006112dd848285016111b8565b91505092915050565b6112ef816117b3565b82525050565b6112fe816117c5565b82525050565b600061130f8261170d565b6113198185611718565b9350611329818560208601611808565b611332816118cb565b840191505092915050565b600061134a602383611718565b9150611355826118dc565b604082019050919050565b600061136d602283611718565b91506113788261192b565b604082019050919050565b6000611390602683611718565b915061139b8261197a565b604082019050919050565b60006113b3602283611718565b91506113be826119c9565b604082019050919050565b60006113d6602683611718565b91506113e182611a18565b604082019050919050565b60006113f9602883611718565b915061140482611a67565b604082019050919050565b600061141c602083611718565b915061142782611ab6565b602082019050919050565b600061143f602483611718565b915061144a82611adf565b604082019050919050565b6000611462602183611718565b915061146d82611b2e565b604082019050919050565b6000611485602583611718565b915061149082611b7d565b604082019050919050565b60006114a8602483611718565b91506114b382611bcc565b604082019050919050565b60006114cb602583611718565b91506114d682611c1b565b604082019050919050565b6114ea816117f1565b82525050565b6114f9816117fb565b82525050565b600060208201905061151460008301846112e6565b92915050565b600060208201905061152f60008301846112f5565b92915050565b6000602082019050818103600083015261154f8184611304565b905092915050565b600060208201905081810360008301526115708161133d565b9050919050565b6000602082019050818103600083015261159081611360565b9050919050565b600060208201905081810360008301526115b081611383565b9050919050565b600060208201905081810360008301526115d0816113a6565b9050919050565b600060208201905081810360008301526115f0816113c9565b9050919050565b60006020820190508181036000830152611610816113ec565b9050919050565b600060208201905081810360008301526116308161140f565b9050919050565b6000602082019050818103600083015261165081611432565b9050919050565b6000602082019050818103600083015261167081611455565b9050919050565b6000602082019050818103600083015261169081611478565b9050919050565b600060208201905081810360008301526116b08161149b565b9050919050565b600060208201905081810360008301526116d0816114be565b9050919050565b60006020820190506116ec60008301846114e1565b92915050565b600060208201905061170760008301846114f0565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611734826117f1565b915061173f836117f1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117745761177361186d565b5b828201905092915050565b600061178a826117f1565b9150611795836117f1565b9250828210156117a8576117a761186d565b5b828203905092915050565b60006117be826117d1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561182657808201518184015260208101905061180b565b83811115611835576000848401525b50505050565b6000600282049050600182168061185357607f821691505b602082108114156118675761186661189c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c73816117b3565b8114611c7e57600080fd5b50565b611c8a816117f1565b8114611c9557600080fd5b5056fea26469706673582212203fae146e48e8c03cf96616bf51b8c29d74e6f2abfba2b346944fb821c3af4f3064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000051e410c0f93fe543000000000000000000000000000000c2e67678364104bcdd40d1b60d9b3363bb36f77400000000000000000000000000000000000000000000000000000000000000073939537461727a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353545a0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): 99Starz
Arg [1] : symbol (string): STZ
Arg [2] : initialSupply (uint256): 99000000000000000000000000
Arg [3] : owner (address): 0xc2E67678364104bCdd40d1B60d9b3363Bb36F774

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000051e410c0f93fe543000000
Arg [3] : 000000000000000000000000c2e67678364104bcdd40d1b60d9b3363bb36f774
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 3939537461727a00000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 53545a0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20081:399:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8029:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10196:717;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9149:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8991:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12296:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18921:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9320:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19331:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5039:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8248:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13014:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9898:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5494:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8029:100;8083:13;8116:5;8109:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8029:100;:::o;10196:717::-;10279:4;10297:24;10324:11;:25;10336:12;:10;:12::i;:::-;10324:25;;;;;;;;;;;;;;;:34;10350:7;10324:34;;;;;;;;;;;;;;;;10297:61;;10393:6;10373:16;:26;10370:532;;;10422:4;10415:11;;;;;10370:532;10467:16;10458:6;:25;10455:447;;;10519:16;10510:6;:25;;;;:::i;:::-;10500:35;;10551:34;10569:7;10578:6;10551:17;:34::i;:::-;;10607:4;10600:11;;;;;10455:447;10653:1;10643:6;:11;10640:262;;;10671:37;10680:12;:10;:12::i;:::-;10693:7;10701:6;10671:8;:37::i;:::-;10730:4;10723:11;;;;;10640:262;10806:6;10787:16;:25;;;;:::i;:::-;10778:34;;10828;10846:7;10855:6;10828:17;:34::i;:::-;;10885:4;10878:11;;;10196:717;;;;;:::o;9149:108::-;9210:7;9237:12;;9230:19;;9149:108;:::o;11395:492::-;11535:4;11552:36;11562:6;11570:9;11581:6;11552:9;:36::i;:::-;11601:24;11628:11;:19;11640:6;11628:19;;;;;;;;;;;;;;;:33;11648:12;:10;:12::i;:::-;11628:33;;;;;;;;;;;;;;;;11601:60;;11700:6;11680:16;:26;;11672:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11787:57;11796:6;11804:12;:10;:12::i;:::-;11837:6;11818:16;:25;11787:8;:57::i;:::-;11875:4;11868:11;;;11395:492;;;;;:::o;8991:93::-;9049:5;9074:2;9067:9;;8991:93;:::o;12296:215::-;12384:4;12401:80;12410:12;:10;:12::i;:::-;12424:7;12470:10;12433:11;:25;12445:12;:10;:12::i;:::-;12433:25;;;;;;;;;;;;;;;:34;12459:7;12433:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12401:8;:80::i;:::-;12499:4;12492:11;;12296:215;;;;:::o;18921:91::-;18977:27;18983:12;:10;:12::i;:::-;18997:6;18977:5;:27::i;:::-;18921:91;:::o;9320:127::-;9394:7;9421:9;:18;9431:7;9421:18;;;;;;;;;;;;;;;;9414:25;;9320:127;;;:::o;19331:368::-;19408:24;19435:32;19445:7;19454:12;:10;:12::i;:::-;19435:9;:32::i;:::-;19408:59;;19506:6;19486:16;:26;;19478:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19589:58;19598:7;19607:12;:10;:12::i;:::-;19640:6;19621:16;:25;19589:8;:58::i;:::-;19669:22;19675:7;19684:6;19669:5;:22::i;:::-;19331:368;;;:::o;5039:87::-;5085:7;5112:6;;;;;;;;;;;5105:13;;5039:87;:::o;8248:104::-;8304:13;8337:7;8330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8248:104;:::o;13014:413::-;13107:4;13124:24;13151:11;:25;13163:12;:10;:12::i;:::-;13151:25;;;;;;;;;;;;;;;:34;13177:7;13151:34;;;;;;;;;;;;;;;;13124:61;;13224:15;13204:16;:35;;13196:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13317:67;13326:12;:10;:12::i;:::-;13340:7;13368:15;13349:16;:34;13317:8;:67::i;:::-;13415:4;13408:11;;;13014:413;;;;:::o;9660:175::-;9746:4;9763:42;9773:12;:10;:12::i;:::-;9787:9;9798:6;9763:9;:42::i;:::-;9823:4;9816:11;;9660:175;;;;:::o;9898:151::-;9987:7;10014:11;:18;10026:5;10014:18;;;;;;;;;;;;;;;:27;10033:7;10014:27;;;;;;;;;;;;;;;;10007:34;;9898:151;;;;:::o;5494:201::-;5270:12;:10;:12::i;:::-;5259:23;;:7;:5;:7::i;:::-;:23;;;5251:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5603:1:::1;5583:22;;:8;:22;;;;5575:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5659:28;5678:8;5659:18;:28::i;:::-;5494:201:::0;:::o;3904:98::-;3957:7;3984:10;3977:17;;3904:98;:::o;16698:380::-;16851:1;16834:19;;:5;:19;;;;16826:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16932:1;16913:21;;:7;:21;;;;16905:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17016:6;16986:11;:18;16998:5;16986:18;;;;;;;;;;;;;;;:27;17005:7;16986:27;;;;;;;;;;;;;;;:36;;;;17054:7;17038:32;;17047:5;17038:32;;;17063:6;17038:32;;;;;;:::i;:::-;;;;;;;;16698:380;;;:::o;13917:733::-;14075:1;14057:20;;:6;:20;;;;14049:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14159:1;14138:23;;:9;:23;;;;14130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14214:47;14235:6;14243:9;14254:6;14214:20;:47::i;:::-;14274:21;14298:9;:17;14308:6;14298:17;;;;;;;;;;;;;;;;14274:41;;14351:6;14334:13;:23;;14326:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14472:6;14456:13;:22;14436:9;:17;14446:6;14436:17;;;;;;;;;;;;;;;:42;;;;14524:6;14500:9;:20;14510:9;14500:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14565:9;14548:35;;14557:6;14548:35;;;14576:6;14548:35;;;;;;:::i;:::-;;;;;;;;14596:46;14616:6;14624:9;14635:6;14596:19;:46::i;:::-;13917:733;;;;:::o;15669:591::-;15772:1;15753:21;;:7;:21;;;;15745:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15825:49;15846:7;15863:1;15867:6;15825:20;:49::i;:::-;15887:22;15912:9;:18;15922:7;15912:18;;;;;;;;;;;;;;;;15887:43;;15967:6;15949:14;:24;;15941:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16086:6;16069:14;:23;16048:9;:18;16058:7;16048:18;;;;;;;;;;;;;;;:44;;;;16130:6;16114:12;;:22;;;;;;;:::i;:::-;;;;;;;;16180:1;16154:37;;16163:7;16154:37;;;16184:6;16154:37;;;;;;:::i;:::-;;;;;;;;16204:48;16224:7;16241:1;16245:6;16204:19;:48::i;:::-;15669:591;;;:::o;5855:191::-;5929:16;5948:6;;;;;;;;;;;5929:25;;5974:8;5965:6;;:17;;;;;;;;;;;;;;;;;;6029:8;5998:40;;6019:8;5998:40;;;;;;;;;;;;5855:191;;:::o;17678:125::-;;;;:::o;18407:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7355:53;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7475:51;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7630:124;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7852:118;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;8094:195;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8466:248;;;:::o;8720:419::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8891:248;;;:::o;9145:419::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9316:248;;;:::o;9570:419::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9741:248;;;:::o;9995:419::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;10166:248;;;:::o;10420:419::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10591:248;;;:::o;10845:419::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;11016:248;;;:::o;11270:419::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11441:248;;;:::o;11695:419::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11866:248;;;:::o;12120:419::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12291:248;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12716:248;;;:::o;12970:419::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;13141:248;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13493:124;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13717:120;;;;:::o;13843:99::-;13895:6;13929:5;13923:12;13913:22;;13902:40;;;:::o;13948:169::-;14032:11;14066:6;14061:3;14054:19;14106:4;14101:3;14097:14;14082:29;;14044:73;;;;:::o;14123:305::-;14163:3;14182:20;14200:1;14182:20;:::i;:::-;14177:25;;14216:20;14234:1;14216:20;:::i;:::-;14211:25;;14370:1;14302:66;14298:74;14295:1;14292:81;14289:2;;;14376:18;;:::i;:::-;14289:2;14420:1;14417;14413:9;14406:16;;14167:261;;;;:::o;14434:191::-;14474:4;14494:20;14512:1;14494:20;:::i;:::-;14489:25;;14528:20;14546:1;14528:20;:::i;:::-;14523:25;;14567:1;14564;14561:8;14558:2;;;14572:18;;:::i;:::-;14558:2;14617:1;14614;14610:9;14602:17;;14479:146;;;;:::o;14631:96::-;14668:7;14697:24;14715:5;14697:24;:::i;:::-;14686:35;;14676:51;;;:::o;14733:90::-;14767:7;14810:5;14803:13;14796:21;14785:32;;14775:48;;;:::o;14829:126::-;14866:7;14906:42;14899:5;14895:54;14884:65;;14874:81;;;:::o;14961:77::-;14998:7;15027:5;15016:16;;15006:32;;;:::o;15044:86::-;15079:7;15119:4;15112:5;15108:16;15097:27;;15087:43;;;:::o;15136:307::-;15204:1;15214:113;15228:6;15225:1;15222:13;15214:113;;;15313:1;15308:3;15304:11;15298:18;15294:1;15289:3;15285:11;15278:39;15250:2;15247:1;15243:10;15238:15;;15214:113;;;15345:6;15342:1;15339:13;15336:2;;;15425:1;15416:6;15411:3;15407:16;15400:27;15336:2;15185:258;;;;:::o;15449:320::-;15493:6;15530:1;15524:4;15520:12;15510:22;;15577:1;15571:4;15567:12;15598:18;15588:2;;15654:4;15646:6;15642:17;15632:27;;15588:2;15716;15708:6;15705:14;15685:18;15682:38;15679:2;;;15735:18;;:::i;:::-;15679:2;15500:269;;;;:::o;15775:180::-;15823:77;15820:1;15813:88;15920:4;15917:1;15910:15;15944:4;15941:1;15934:15;15961:180;16009:77;16006:1;15999:88;16106:4;16103:1;16096:15;16130:4;16127:1;16120:15;16147:102;16188:6;16239:2;16235:7;16230:2;16223:5;16219:14;16215:28;16205:38;;16195:54;;;:::o;16255:222::-;16395:34;16391:1;16383:6;16379:14;16372:58;16464:5;16459:2;16451:6;16447:15;16440:30;16361:116;:::o;16483:221::-;16623:34;16619:1;16611:6;16607:14;16600:58;16692:4;16687:2;16679:6;16675:15;16668:29;16589:115;:::o;16710:225::-;16850:34;16846:1;16838:6;16834:14;16827:58;16919:8;16914:2;16906:6;16902:15;16895:33;16816:119;:::o;16941:221::-;17081:34;17077:1;17069:6;17065:14;17058:58;17150:4;17145:2;17137:6;17133:15;17126:29;17047:115;:::o;17168:225::-;17308:34;17304:1;17296:6;17292:14;17285:58;17377:8;17372:2;17364:6;17360:15;17353:33;17274:119;:::o;17399:227::-;17539:34;17535:1;17527:6;17523:14;17516:58;17608:10;17603:2;17595:6;17591:15;17584:35;17505:121;:::o;17632:182::-;17772:34;17768:1;17760:6;17756:14;17749:58;17738:76;:::o;17820:223::-;17960:34;17956:1;17948:6;17944:14;17937:58;18029:6;18024:2;18016:6;18012:15;18005:31;17926:117;:::o;18049:220::-;18189:34;18185:1;18177:6;18173:14;18166:58;18258:3;18253:2;18245:6;18241:15;18234:28;18155:114;:::o;18275:224::-;18415:34;18411:1;18403:6;18399:14;18392:58;18484:7;18479:2;18471:6;18467:15;18460:32;18381:118;:::o;18505:223::-;18645:34;18641:1;18633:6;18629:14;18622:58;18714:6;18709:2;18701:6;18697:15;18690:31;18611:117;:::o;18734:224::-;18874:34;18870:1;18862:6;18858:14;18851:58;18943:7;18938:2;18930:6;18926:15;18919:32;18840:118;:::o;18964:122::-;19037:24;19055:5;19037:24;:::i;:::-;19030:5;19027:35;19017:2;;19076:1;19073;19066:12;19017:2;19007:79;:::o;19092:122::-;19165:24;19183:5;19165:24;:::i;:::-;19158:5;19155:35;19145:2;;19204:1;19201;19194:12;19145:2;19135:79;:::o

Swarm Source

ipfs://3fae146e48e8c03cf96616bf51b8c29d74e6f2abfba2b346944fb821c3af4f30

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

99Starz is bringing the play-to-earn game model to millions of gamers through NFT renting and guild formations.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.