false
true
0

Contract Address Details

0xE676a1E969Feaef164198496bd787e0269f7b237

Token
B9 (B9)
Creator
0xf30bf4–209a88 at 0xd4dc5d–b00254
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
1,602 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25909968
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
B9Token




Optimization enabled
false
Compiler version
v0.8.20+commit.a1b79de6




EVM Version
default




Verified at
2023-06-28T22:11:59.791664Z

Contract source code

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/B9Token.sol



pragma solidity ^0.8.20;



contract B9Token is ERC20, ERC20Burnable {

    constructor() ERC20("B9", "B9") {
        _owner = msg.sender;
        _launchTime = block.timestamp;

        _mint(MASTER_WALLET, INITIAL_SUPPLY * MASTER_ALLOC * PCT_DECIMALS);
        _mint(CONTRIB_WALLET, INITIAL_SUPPLY * CONTRIB_ALLOC * PCT_DECIMALS);
        _mint(DISC_WALLET, INITIAL_SUPPLY * DISC_ALLOC * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_1, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_2, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_3, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_4, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_5, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_6, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_7, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_8, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_9, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_10, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_11, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_12, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_13, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_14, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_15, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_16, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_17, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_18, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_19, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_20, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_21, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_22, INITIAL_SUPPLY/3  * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_23, INITIAL_SUPPLY/3 * PCT_DECIMALS);
        _mint(FOUNDER_WALLET_24, INITIAL_SUPPLY/3 * PCT_DECIMALS);        
    }

    /// ============== Constants ==============

    address internal constant MASTER_WALLET = 0xf30bF4a5877d0FdEf06F3460E143569E6c209a88;
    address internal constant CONTRIB_WALLET = 0x14F8167f462C36ef0947b537999738fB9203e975;
    address internal constant DISC_WALLET = 0x46BE4Dd8E219f59F302d2B5252d91fA7C7e15D8E;
    address internal constant FOUNDER_WALLET_1 = 0x1db391745253A371f7d939157c9d0E4964438Fbf;
    address internal constant FOUNDER_WALLET_2 = 0xF53389326a4B74b616b953C3651D718befB5870c;
    address internal constant FOUNDER_WALLET_3 = 0xd3c8992e220760157D911388cC33837e319D8800;
    address internal constant FOUNDER_WALLET_4 = 0x6f20128Cb527b76136d09efc6C813022314beeD5;
    address internal constant FOUNDER_WALLET_5 = 0x2f6F0e6954CD3748FFf2C54bCD5D56C108e97F41;
    address internal constant FOUNDER_WALLET_6 = 0x1a03aAfa6f3b8DE5202098596E26Ab163F5fcF10;
    address internal constant FOUNDER_WALLET_7 = 0xcAb6790CEca3026C19878BA098Ca0E1C93A517A5;
    address internal constant FOUNDER_WALLET_8 = 0xFbf69c0B022cDF56256F0533392Add5e8A9571e9;
    address internal constant FOUNDER_WALLET_9 = 0xfd636bd61cfE959E964F0e1a0816fE05E524B852;
    address internal constant FOUNDER_WALLET_10 = 0xD584903075357B6c1141348f87634c84450AF21E;
    address internal constant FOUNDER_WALLET_11 = 0xd06F46b26752581441A5f2aB67ccfAa43F47D4db;
    address internal constant FOUNDER_WALLET_12 = 0x2F4FC3D35B6f22C0e637C22382e0323E0412FFc9;
    address internal constant FOUNDER_WALLET_13 = 0xFB72A95350E1BaddE8baC8A6dd3cc4b7A054bDe7;
    address internal constant FOUNDER_WALLET_14 = 0xcf83127DC4b4E3E586a2Ce96fF637f7eEb77ae43;
    address internal constant FOUNDER_WALLET_15 = 0xefF9BD00537f88C982ae023f2a9A81f632604220;
    address internal constant FOUNDER_WALLET_16 = 0xC1e315A7DE31fdd3923cb0d4dd8f0cb46973d15e;
    address internal constant FOUNDER_WALLET_17 = 0xb3Ba6C65BE70702b9f20efD315AB870015b7E0B8;
    address internal constant FOUNDER_WALLET_18 = 0xDfB44E763234831ccb2522c691beBa7754a6ecf9;
    address internal constant FOUNDER_WALLET_19 = 0x82e17dDCf7bCa1957574dB6a0D9b065BA4486AA0;
    address internal constant FOUNDER_WALLET_20 = 0xd12B6F8E55221A507CdfCB5Dac97a2C90c1F5280;
    address internal constant FOUNDER_WALLET_21 = 0x38885dBd4fd046b56cD753EAFCD97fAdfd128991;
    address internal constant FOUNDER_WALLET_22 = 0x0754B3d29FacF99851f1080c27E64a6aE73e1B7D;
    address internal constant FOUNDER_WALLET_23 = 0x825131b3F74fEF35Cbc4BF255cAeF260b9c5F43C;
    address internal constant FOUNDER_WALLET_24 = 0x97dD84b62ACa735f0c7B901BdE455283284e0139;

    /* Smallest token amount = 1 STUB; 10^8 = BASE_TOKEN_DECIMALS */
    uint256 internal constant BASE_TOKEN_DECIMALS = 10**8;
    uint256 internal constant PCT_DECIMALS = 10**6;  // Divided by 100

    /* Initial supply */
    uint256 internal constant INITIAL_SUPPLY = 690000000000;

    /* Founders total allocation - 8% */
    uint8 internal constant FOUNDERS_ALLOC = 8;

    /* Contributors wallet allocation - 10% */
    uint8 internal constant CONTRIB_ALLOC = 10;

    /* Discretionary wallet allocation - 10% */
    uint8 internal constant DISC_ALLOC = 10;

    /* Master wallet allocation */
    uint8 internal constant MASTER_ALLOC = 100 - CONTRIB_ALLOC - DISC_ALLOC - FOUNDERS_ALLOC;

    /// ============== Contract Deploy ==============

    /* Contract owner */
    address private _owner;

    /* Time of contract launch, set in constructor */
    uint256 private _launchTime;

    /// ============== Functions ==============

    /*
     * @dev PUBLIC FUNCTION: Overridden decimals function
     * @return contract decimals
     */
    function decimals() 
        public 
        view 
        virtual 
        override 
        returns (uint8) {
        return 8;
    }

    /* 
     * @dev PUBLIC FUNCTION: External helper for returning the contract launch time 
     * @return The contract launch time in epoch time
     */
    function launchTime() 
        public 
        view 
        returns (uint256)
    {
        return _launchTime;
    }
}
        

Contract ABI

[{"type":"constructor","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"launchTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false}]
              

Contract Creation Code

0x608060405234801562000010575f80fd5b506040518060400160405280600281526020017f42390000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f423900000000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000ca8565b508060049081620000a0919062000ca8565b5050503360055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006819055506200015f73f30bf4a5877d0fdef06f3460e143569e6c209a88620f42406008600a8060646200011a919062000dc5565b62000126919062000dc5565b62000132919062000dc5565b60ff1664a0a734740062000147919062000e00565b62000153919062000e00565b620008d560201b60201c565b620001ab7314f8167f462c36ef0947b537999738fb9203e975620f4240600a60ff1664a0a734740062000193919062000e00565b6200019f919062000e00565b620008d560201b60201c565b620001f77346be4dd8e219f59f302d2b5252d91fa7c7e15d8e620f4240600a60ff1664a0a7347400620001df919062000e00565b620001eb919062000e00565b620008d560201b60201c565b62000240731db391745253a371f7d939157c9d0e4964438fbf620f4240600364a0a734740062000228919062000e77565b62000234919062000e00565b620008d560201b60201c565b6200028973f53389326a4b74b616b953c3651d718befb5870c620f4240600364a0a734740062000271919062000e77565b6200027d919062000e00565b620008d560201b60201c565b620002d273d3c8992e220760157d911388cc33837e319d8800620f4240600364a0a7347400620002ba919062000e77565b620002c6919062000e00565b620008d560201b60201c565b6200031b736f20128cb527b76136d09efc6c813022314beed5620f4240600364a0a734740062000303919062000e77565b6200030f919062000e00565b620008d560201b60201c565b62000364732f6f0e6954cd3748fff2c54bcd5d56c108e97f41620f4240600364a0a73474006200034c919062000e77565b62000358919062000e00565b620008d560201b60201c565b620003ad731a03aafa6f3b8de5202098596e26ab163f5fcf10620f4240600364a0a734740062000395919062000e77565b620003a1919062000e00565b620008d560201b60201c565b620003f673cab6790ceca3026c19878ba098ca0e1c93a517a5620f4240600364a0a7347400620003de919062000e77565b620003ea919062000e00565b620008d560201b60201c565b6200043f73fbf69c0b022cdf56256f0533392add5e8a9571e9620f4240600364a0a734740062000427919062000e77565b62000433919062000e00565b620008d560201b60201c565b6200048873fd636bd61cfe959e964f0e1a0816fe05e524b852620f4240600364a0a734740062000470919062000e77565b6200047c919062000e00565b620008d560201b60201c565b620004d173d584903075357b6c1141348f87634c84450af21e620f4240600364a0a7347400620004b9919062000e77565b620004c5919062000e00565b620008d560201b60201c565b6200051a73d06f46b26752581441a5f2ab67ccfaa43f47d4db620f4240600364a0a734740062000502919062000e77565b6200050e919062000e00565b620008d560201b60201c565b62000563732f4fc3d35b6f22c0e637c22382e0323e0412ffc9620f4240600364a0a73474006200054b919062000e77565b62000557919062000e00565b620008d560201b60201c565b620005ac73fb72a95350e1badde8bac8a6dd3cc4b7a054bde7620f4240600364a0a734740062000594919062000e77565b620005a0919062000e00565b620008d560201b60201c565b620005f573cf83127dc4b4e3e586a2ce96ff637f7eeb77ae43620f4240600364a0a7347400620005dd919062000e77565b620005e9919062000e00565b620008d560201b60201c565b6200063e73eff9bd00537f88c982ae023f2a9a81f632604220620f4240600364a0a734740062000626919062000e77565b62000632919062000e00565b620008d560201b60201c565b6200068773c1e315a7de31fdd3923cb0d4dd8f0cb46973d15e620f4240600364a0a73474006200066f919062000e77565b6200067b919062000e00565b620008d560201b60201c565b620006d073b3ba6c65be70702b9f20efd315ab870015b7e0b8620f4240600364a0a7347400620006b8919062000e77565b620006c4919062000e00565b620008d560201b60201c565b6200071973dfb44e763234831ccb2522c691beba7754a6ecf9620f4240600364a0a734740062000701919062000e77565b6200070d919062000e00565b620008d560201b60201c565b620007627382e17ddcf7bca1957574db6a0d9b065ba4486aa0620f4240600364a0a73474006200074a919062000e77565b62000756919062000e00565b620008d560201b60201c565b620007ab73d12b6f8e55221a507cdfcb5dac97a2c90c1f5280620f4240600364a0a734740062000793919062000e77565b6200079f919062000e00565b620008d560201b60201c565b620007f47338885dbd4fd046b56cd753eafcd97fadfd128991620f4240600364a0a7347400620007dc919062000e77565b620007e8919062000e00565b620008d560201b60201c565b6200083d730754b3d29facf99851f1080c27e64a6ae73e1b7d620f4240600364a0a734740062000825919062000e77565b62000831919062000e00565b620008d560201b60201c565b6200088673825131b3f74fef35cbc4bf255caef260b9c5f43c620f4240600364a0a73474006200086e919062000e77565b6200087a919062000e00565b620008d560201b60201c565b620008cf7397dd84b62aca735f0c7b901bde455283284e0139620f4240600364a0a7347400620008b7919062000e77565b620008c3919062000e00565b620008d560201b60201c565b62000f92565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000946576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093d9062000f0c565b60405180910390fd5b620009595f838362000a3a60201b60201c565b8060025f8282546200096c919062000f2c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a1b919062000f77565b60405180910390a362000a365f838362000a3f60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000ac057607f821691505b60208210810362000ad65762000ad562000a7b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000afd565b62000b46868362000afd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b9062000b8a62000b848462000b5e565b62000b67565b62000b5e565b9050919050565b5f819050919050565b62000bab8362000b70565b62000bc362000bba8262000b97565b84845462000b09565b825550505050565b5f90565b62000bd962000bcb565b62000be681848462000ba0565b505050565b5b8181101562000c0d5762000c015f8262000bcf565b60018101905062000bec565b5050565b601f82111562000c5c5762000c268162000adc565b62000c318462000aee565b8101602085101562000c41578190505b62000c5962000c508562000aee565b83018262000beb565b50505b505050565b5f82821c905092915050565b5f62000c7e5f198460080262000c61565b1980831691505092915050565b5f62000c98838362000c6d565b9150826002028217905092915050565b62000cb38262000a44565b67ffffffffffffffff81111562000ccf5762000cce62000a4e565b5b62000cdb825462000aa8565b62000ce882828562000c11565b5f60209050601f83116001811462000d1e575f841562000d09578287015190505b62000d15858262000c8b565b86555062000d84565b601f19841662000d2e8662000adc565b5f5b8281101562000d575784890151825560018201915060208501945060208101905062000d30565b8683101562000d77578489015162000d73601f89168262000c6d565b8355505b6001600288020188555050505b505050505050565b5f60ff82169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000dd18262000d8c565b915062000dde8362000d8c565b9250828203905060ff81111562000dfa5762000df962000d98565b5b92915050565b5f62000e0c8262000b5e565b915062000e198362000b5e565b925082820262000e298162000b5e565b9150828204841483151762000e435762000e4262000d98565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e838262000b5e565b915062000e908362000b5e565b92508262000ea35762000ea262000e4a565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ef4601f8362000eae565b915062000f018262000ebe565b602082019050919050565b5f6020820190508181035f83015262000f258162000ee6565b9050919050565b5f62000f388262000b5e565b915062000f458362000b5e565b925082820190508082111562000f605762000f5f62000d98565b5b92915050565b62000f718162000b5e565b82525050565b5f60208201905062000f8c5f83018462000f66565b92915050565b6115a18062000fa05f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461025c578063a457c2d71461027a578063a9059cbb146102aa578063dd62ed3e146102da576100e8565b806370a08231146101f2578063790ca4131461022257806379cc679014610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f461030a565b6040516101019190610d74565b60405180910390f35b610124600480360381019061011f9190610e25565b61039a565b6040516101319190610e7d565b60405180910390f35b6101426103bc565b60405161014f9190610ea5565b60405180910390f35b610172600480360381019061016d9190610ebe565b6103c5565b60405161017f9190610e7d565b60405180910390f35b6101906103f3565b60405161019d9190610f29565b60405180910390f35b6101c060048036038101906101bb9190610e25565b6103fb565b6040516101cd9190610e7d565b60405180910390f35b6101f060048036038101906101eb9190610f42565b610431565b005b61020c60048036038101906102079190610f6d565b610445565b6040516102199190610ea5565b60405180910390f35b61022a61048a565b6040516102379190610ea5565b60405180910390f35b61025a60048036038101906102559190610e25565b610493565b005b6102646104b3565b6040516102719190610d74565b60405180910390f35b610294600480360381019061028f9190610e25565b610543565b6040516102a19190610e7d565b60405180910390f35b6102c460048036038101906102bf9190610e25565b6105b8565b6040516102d19190610e7d565b60405180910390f35b6102f460048036038101906102ef9190610f98565b6105da565b6040516103019190610ea5565b60405180910390f35b60606003805461031990611003565b80601f016020809104026020016040519081016040528092919081815260200182805461034590611003565b80156103905780601f1061036757610100808354040283529160200191610390565b820191905f5260205f20905b81548152906001019060200180831161037357829003601f168201915b5050505050905090565b5f806103a461065c565b90506103b1818585610663565b600191505092915050565b5f600254905090565b5f806103cf61065c565b90506103dc858285610826565b6103e78585856108b1565b60019150509392505050565b5f6008905090565b5f8061040561065c565b905061042681858561041785896105da565b6104219190611060565b610663565b600191505092915050565b61044261043c61065c565b82610b1d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600654905090565b6104a58261049f61065c565b83610826565b6104af8282610b1d565b5050565b6060600480546104c290611003565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611003565b80156105395780601f1061051057610100808354040283529160200191610539565b820191905f5260205f20905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b5f8061054d61065c565b90505f61055a82866105da565b90508381101561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611103565b60405180910390fd5b6105ac8286868403610663565b60019250505092915050565b5f806105c261065c565b90506105cf8185856108b1565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361073f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107369061121f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108199190610ea5565b60405180910390a3505050565b5f61083184846105da565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108ab578181101561089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490611287565b60405180910390fd5b6108aa8484848403610663565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091690611315565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906113a3565b60405180910390fd5b610998838383610ce0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290611431565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b049190610ea5565b60405180910390a3610b17848484610ce5565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906114bf565b60405180910390fd5b610b96825f83610ce0565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c109061154d565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc89190610ea5565b60405180910390a3610cdb835f84610ce5565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d21578082015181840152602081019050610d06565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d4682610cea565b610d508185610cf4565b9350610d60818560208601610d04565b610d6981610d2c565b840191505092915050565b5f6020820190508181035f830152610d8c8184610d3c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc182610d98565b9050919050565b610dd181610db7565b8114610ddb575f80fd5b50565b5f81359050610dec81610dc8565b92915050565b5f819050919050565b610e0481610df2565b8114610e0e575f80fd5b50565b5f81359050610e1f81610dfb565b92915050565b5f8060408385031215610e3b57610e3a610d94565b5b5f610e4885828601610dde565b9250506020610e5985828601610e11565b9150509250929050565b5f8115159050919050565b610e7781610e63565b82525050565b5f602082019050610e905f830184610e6e565b92915050565b610e9f81610df2565b82525050565b5f602082019050610eb85f830184610e96565b92915050565b5f805f60608486031215610ed557610ed4610d94565b5b5f610ee286828701610dde565b9350506020610ef386828701610dde565b9250506040610f0486828701610e11565b9150509250925092565b5f60ff82169050919050565b610f2381610f0e565b82525050565b5f602082019050610f3c5f830184610f1a565b92915050565b5f60208284031215610f5757610f56610d94565b5b5f610f6484828501610e11565b91505092915050565b5f60208284031215610f8257610f81610d94565b5b5f610f8f84828501610dde565b91505092915050565b5f8060408385031215610fae57610fad610d94565b5b5f610fbb85828601610dde565b9250506020610fcc85828601610dde565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101a57607f821691505b60208210810361102d5761102c610fd6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61106a82610df2565b915061107583610df2565b925082820190508082111561108d5761108c611033565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6110ed602583610cf4565b91506110f882611093565b604082019050919050565b5f6020820190508181035f83015261111a816110e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61117b602483610cf4565b915061118682611121565b604082019050919050565b5f6020820190508181035f8301526111a88161116f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611209602283610cf4565b9150611214826111af565b604082019050919050565b5f6020820190508181035f830152611236816111fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611271601d83610cf4565b915061127c8261123d565b602082019050919050565b5f6020820190508181035f83015261129e81611265565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6112ff602583610cf4565b915061130a826112a5565b604082019050919050565b5f6020820190508181035f83015261132c816112f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61138d602383610cf4565b915061139882611333565b604082019050919050565b5f6020820190508181035f8301526113ba81611381565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61141b602683610cf4565b9150611426826113c1565b604082019050919050565b5f6020820190508181035f8301526114488161140f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114a9602183610cf4565b91506114b48261144f565b604082019050919050565b5f6020820190508181035f8301526114d68161149d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611537602283610cf4565b9150611542826114dd565b604082019050919050565b5f6020820190508181035f8301526115648161152b565b905091905056fea2646970667358221220fedf1d1235900f74676e5fa314a559a2311e2de96b24dfaf82da3de6710210e864736f6c63430008140033

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461025c578063a457c2d71461027a578063a9059cbb146102aa578063dd62ed3e146102da576100e8565b806370a08231146101f2578063790ca4131461022257806379cc679014610240576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806339509351146101a657806342966c68146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f461030a565b6040516101019190610d74565b60405180910390f35b610124600480360381019061011f9190610e25565b61039a565b6040516101319190610e7d565b60405180910390f35b6101426103bc565b60405161014f9190610ea5565b60405180910390f35b610172600480360381019061016d9190610ebe565b6103c5565b60405161017f9190610e7d565b60405180910390f35b6101906103f3565b60405161019d9190610f29565b60405180910390f35b6101c060048036038101906101bb9190610e25565b6103fb565b6040516101cd9190610e7d565b60405180910390f35b6101f060048036038101906101eb9190610f42565b610431565b005b61020c60048036038101906102079190610f6d565b610445565b6040516102199190610ea5565b60405180910390f35b61022a61048a565b6040516102379190610ea5565b60405180910390f35b61025a60048036038101906102559190610e25565b610493565b005b6102646104b3565b6040516102719190610d74565b60405180910390f35b610294600480360381019061028f9190610e25565b610543565b6040516102a19190610e7d565b60405180910390f35b6102c460048036038101906102bf9190610e25565b6105b8565b6040516102d19190610e7d565b60405180910390f35b6102f460048036038101906102ef9190610f98565b6105da565b6040516103019190610ea5565b60405180910390f35b60606003805461031990611003565b80601f016020809104026020016040519081016040528092919081815260200182805461034590611003565b80156103905780601f1061036757610100808354040283529160200191610390565b820191905f5260205f20905b81548152906001019060200180831161037357829003601f168201915b5050505050905090565b5f806103a461065c565b90506103b1818585610663565b600191505092915050565b5f600254905090565b5f806103cf61065c565b90506103dc858285610826565b6103e78585856108b1565b60019150509392505050565b5f6008905090565b5f8061040561065c565b905061042681858561041785896105da565b6104219190611060565b610663565b600191505092915050565b61044261043c61065c565b82610b1d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600654905090565b6104a58261049f61065c565b83610826565b6104af8282610b1d565b5050565b6060600480546104c290611003565b80601f01602080910402602001604051908101604052809291908181526020018280546104ee90611003565b80156105395780601f1061051057610100808354040283529160200191610539565b820191905f5260205f20905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b5f8061054d61065c565b90505f61055a82866105da565b90508381101561059f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059690611103565b60405180910390fd5b6105ac8286868403610663565b60019250505092915050565b5f806105c261065c565b90506105cf8185856108b1565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c890611191565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361073f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107369061121f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108199190610ea5565b60405180910390a3505050565b5f61083184846105da565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108ab578181101561089d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089490611287565b60405180910390fd5b6108aa8484848403610663565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091690611315565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610984906113a3565b60405180910390fd5b610998838383610ce0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290611431565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b049190610ea5565b60405180910390a3610b17848484610ce5565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906114bf565b60405180910390fd5b610b96825f83610ce0565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c109061154d565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cc89190610ea5565b60405180910390a3610cdb835f84610ce5565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d21578082015181840152602081019050610d06565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d4682610cea565b610d508185610cf4565b9350610d60818560208601610d04565b610d6981610d2c565b840191505092915050565b5f6020820190508181035f830152610d8c8184610d3c565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dc182610d98565b9050919050565b610dd181610db7565b8114610ddb575f80fd5b50565b5f81359050610dec81610dc8565b92915050565b5f819050919050565b610e0481610df2565b8114610e0e575f80fd5b50565b5f81359050610e1f81610dfb565b92915050565b5f8060408385031215610e3b57610e3a610d94565b5b5f610e4885828601610dde565b9250506020610e5985828601610e11565b9150509250929050565b5f8115159050919050565b610e7781610e63565b82525050565b5f602082019050610e905f830184610e6e565b92915050565b610e9f81610df2565b82525050565b5f602082019050610eb85f830184610e96565b92915050565b5f805f60608486031215610ed557610ed4610d94565b5b5f610ee286828701610dde565b9350506020610ef386828701610dde565b9250506040610f0486828701610e11565b9150509250925092565b5f60ff82169050919050565b610f2381610f0e565b82525050565b5f602082019050610f3c5f830184610f1a565b92915050565b5f60208284031215610f5757610f56610d94565b5b5f610f6484828501610e11565b91505092915050565b5f60208284031215610f8257610f81610d94565b5b5f610f8f84828501610dde565b91505092915050565b5f8060408385031215610fae57610fad610d94565b5b5f610fbb85828601610dde565b9250506020610fcc85828601610dde565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101a57607f821691505b60208210810361102d5761102c610fd6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61106a82610df2565b915061107583610df2565b925082820190508082111561108d5761108c611033565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6110ed602583610cf4565b91506110f882611093565b604082019050919050565b5f6020820190508181035f83015261111a816110e1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61117b602483610cf4565b915061118682611121565b604082019050919050565b5f6020820190508181035f8301526111a88161116f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611209602283610cf4565b9150611214826111af565b604082019050919050565b5f6020820190508181035f830152611236816111fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611271601d83610cf4565b915061127c8261123d565b602082019050919050565b5f6020820190508181035f83015261129e81611265565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6112ff602583610cf4565b915061130a826112a5565b604082019050919050565b5f6020820190508181035f83015261132c816112f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61138d602383610cf4565b915061139882611333565b604082019050919050565b5f6020820190508181035f8301526113ba81611381565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61141b602683610cf4565b9150611426826113c1565b604082019050919050565b5f6020820190508181035f8301526114488161140f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114a9602183610cf4565b91506114b48261144f565b604082019050919050565b5f6020820190508181035f8301526114d68161149d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611537602283610cf4565b9150611542826114dd565b604082019050919050565b5f6020820190508181035f8301526115648161152b565b905091905056fea2646970667358221220fedf1d1235900f74676e5fa314a559a2311e2de96b24dfaf82da3de6710210e864736f6c63430008140033