ETH Price: $2,877.05 (-5.71%)
Gas: 1 Gwei

Token

LBR (LBR)
 

Overview

Max Total Supply

38,629,699.458350972011857532 LBR

Holders

795

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
78.046470391609189021 LBR

Value
$0.00
0x61e663eab24b8338b68acb0bcbcd7f005a2b0b6b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LBR

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: LBR.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity 0.8.17;
/**
 * @title LBR is an ERC20-compliant token.
 * - LBR can only be exchanged to esLBR in the lybraFund contract.
 * - Apart from the initial production, LBR can only be produced by destroying esLBR in the fund contract.
 */
import "./ERC20.sol";

contract LBR is ERC20 {
    address public immutable lybraFund;
    uint256 maxSupply = 100_000_000 * 1e18;

    constructor(
        address _fund
    ) ERC20("LBR", "LBR") {
        lybraFund = _fund;
        _mint(msg.sender, 39_500_000 * 1e18);
    }

    function mint(address user, uint256 amount) external returns(bool) {
        require(msg.sender == lybraFund, "not authorized");
        require(totalSupply() + amount <= maxSupply, "exceeding the maximum supply quantity.");
        _mint(user, amount);
        return true;
    }

    function burn(address user, uint256 amount) external returns(bool) {
        require(msg.sender == lybraFund, "not authorized");
        _burn(user, amount);
        return true;
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

import "./Context.sol";

contract ERC20 is Context, IERC20 {
    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}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual 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 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_fund","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":"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":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"lybraFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040526a52b7d2dcc80cd2e40000006005553480156200002057600080fd5b5060405162000fc238038062000fc2833981016040819052620000439162000185565b60408051808201825260038082526226212960e91b602080840182905284518086019095528285528401529091906200007d83826200025b565b5060046200008c82826200025b565b5050506001600160a01b038116608052620000b3336a20ac734a689eaa57800000620000ba565b506200034f565b6001600160a01b038216620001155760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000129919062000327565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200019857600080fd5b81516001600160a01b0381168114620001b057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001e257607f821691505b6020821081036200020357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018057600081815260208120601f850160051c81016020861015620002325750805b601f850160051c820191505b8181101562000253578281556001016200023e565b505050505050565b81516001600160401b03811115620002775762000277620001b7565b6200028f81620002888454620001cd565b8462000209565b602080601f831160018114620002c75760008415620002ae5750858301515b600019600386901b1c1916600185901b17855562000253565b600085815260208120601f198616915b82811015620002f857888601518255948401946001909101908401620002d7565b5085821015620003175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200034957634e487b7160e01b600052601160045260246000fd5b92915050565b608051610c49620003796000396000818161017c01528181610345015261044b0152610c496000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101fa578063a457c2d71461020d578063a9059cbb14610220578063dd62ed3e1461023357600080fd5b806340c10f19146101b657806370a08231146101c957806395d89b41146101f257600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806339509351146101645780633ce6486e1461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610246565b6040516101049190610a93565b60405180910390f35b61012061011b366004610afd565b6102d8565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610b27565b6102f2565b60405160128152602001610104565b610120610172366004610afd565b610316565b61019e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610104565b6101206101c4366004610afd565b610338565b6101346101d7366004610b63565b6001600160a01b031660009081526020819052604090205490565b6100f761042f565b610120610208366004610afd565b61043e565b61012061021b366004610afd565b6104b3565b61012061022e366004610afd565b61052e565b610134610241366004610b85565b61053c565b60606003805461025590610bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461028190610bb8565b80156102ce5780601f106102a3576101008083540402835291602001916102ce565b820191906000526020600020905b8154815290600101906020018083116102b157829003601f168201915b5050505050905090565b6000336102e6818585610567565b60019150505b92915050565b60003361030085828561068c565b61030b858585610706565b506001949350505050565b6000336102e6818585610329838361053c565b6103339190610bf2565b610567565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103a85760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600554826103b560025490565b6103bf9190610bf2565b111561041c5760405162461bcd60e51b815260206004820152602660248201527f657863656564696e6720746865206d6178696d756d20737570706c7920717561604482015265373a34ba3c9760d11b606482015260840161039f565b61042683836108aa565b50600192915050565b60606004805461025590610bb8565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146104a95760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b604482015260640161039f565b6104268383610969565b600033816104c1828661053c565b9050838110156105215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039f565b61030b8286868403610567565b6000336102e6818585610706565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039f565b6001600160a01b03821661062a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161039f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610698848461053c565b9050600019811461070057818110156106f35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161039f565b6107008484848403610567565b50505050565b6001600160a01b03831661076a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161039f565b6001600160a01b0382166107cc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161039f565b6001600160a01b038316600090815260208190526040902054818110156108445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161039f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610700565b6001600160a01b0382166109005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039f565b80600260008282546109129190610bf2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109c95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161039f565b6001600160a01b03821660009081526020819052604090205481811015610a3d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161039f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161067f565b600060208083528351808285015260005b81811015610ac057858101830151858201604001528201610aa4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af857600080fd5b919050565b60008060408385031215610b1057600080fd5b610b1983610ae1565b946020939093013593505050565b600080600060608486031215610b3c57600080fd5b610b4584610ae1565b9250610b5360208501610ae1565b9150604084013590509250925092565b600060208284031215610b7557600080fd5b610b7e82610ae1565b9392505050565b60008060408385031215610b9857600080fd5b610ba183610ae1565b9150610baf60208401610ae1565b90509250929050565b600181811c90821680610bcc57607f821691505b602082108103610bec57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ec57634e487b7160e01b600052601160045260246000fdfea2646970667358221220391e47c880fd0bc86406abc5d00e646d2244173f411642a11406d6e81d389d0264736f6c63430008110033000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101fa578063a457c2d71461020d578063a9059cbb14610220578063dd62ed3e1461023357600080fd5b806340c10f19146101b657806370a08231146101c957806395d89b41146101f257600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806339509351146101645780633ce6486e1461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610246565b6040516101049190610a93565b60405180910390f35b61012061011b366004610afd565b6102d8565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610b27565b6102f2565b60405160128152602001610104565b610120610172366004610afd565b610316565b61019e7f000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b81565b6040516001600160a01b039091168152602001610104565b6101206101c4366004610afd565b610338565b6101346101d7366004610b63565b6001600160a01b031660009081526020819052604090205490565b6100f761042f565b610120610208366004610afd565b61043e565b61012061021b366004610afd565b6104b3565b61012061022e366004610afd565b61052e565b610134610241366004610b85565b61053c565b60606003805461025590610bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461028190610bb8565b80156102ce5780601f106102a3576101008083540402835291602001916102ce565b820191906000526020600020905b8154815290600101906020018083116102b157829003601f168201915b5050505050905090565b6000336102e6818585610567565b60019150505b92915050565b60003361030085828561068c565b61030b858585610706565b506001949350505050565b6000336102e6818585610329838361053c565b6103339190610bf2565b610567565b6000336001600160a01b037f000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b16146103a85760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b60448201526064015b60405180910390fd5b600554826103b560025490565b6103bf9190610bf2565b111561041c5760405162461bcd60e51b815260206004820152602660248201527f657863656564696e6720746865206d6178696d756d20737570706c7920717561604482015265373a34ba3c9760d11b606482015260840161039f565b61042683836108aa565b50600192915050565b60606004805461025590610bb8565b6000336001600160a01b037f000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b16146104a95760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd08185d5d1a1bdc9a5e995960921b604482015260640161039f565b6104268383610969565b600033816104c1828661053c565b9050838110156105215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161039f565b61030b8286868403610567565b6000336102e6818585610706565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161039f565b6001600160a01b03821661062a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161039f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610698848461053c565b9050600019811461070057818110156106f35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161039f565b6107008484848403610567565b50505050565b6001600160a01b03831661076a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161039f565b6001600160a01b0382166107cc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161039f565b6001600160a01b038316600090815260208190526040902054818110156108445760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161039f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610700565b6001600160a01b0382166109005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039f565b80600260008282546109129190610bf2565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166109c95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161039f565b6001600160a01b03821660009081526020819052604090205481811015610a3d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161039f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161067f565b600060208083528351808285015260005b81811015610ac057858101830151858201604001528201610aa4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610af857600080fd5b919050565b60008060408385031215610b1057600080fd5b610b1983610ae1565b946020939093013593505050565b600080600060608486031215610b3c57600080fd5b610b4584610ae1565b9250610b5360208501610ae1565b9150604084013590509250925092565b600060208284031215610b7557600080fd5b610b7e82610ae1565b9392505050565b60008060408385031215610b9857600080fd5b610ba183610ae1565b9150610baf60208401610ae1565b90509250929050565b600181811c90821680610bcc57607f821691505b602082108103610bec57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102ec57634e487b7160e01b600052601160045260246000fdfea2646970667358221220391e47c880fd0bc86406abc5d00e646d2244173f411642a11406d6e81d389d0264736f6c63430008110033

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

000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b

-----Decoded View---------------
Arg [0] : _fund (address): 0x868ca901ef1Ad587412EDA1c20837420f594887b

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000868ca901ef1ad587412eda1c20837420f594887b


Deployed Bytecode Sourcemap

319:755:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3155:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:4;;1162:22;1144:41;;1132:2;1117:18;3155:201:1;1004:187:4;1924:108:1;2012:12;;1924:108;;;1342:25:4;;;1330:2;1315:18;1924:108:1;1196:177:4;3936:261:1;;;;;;:::i;:::-;;:::i;1775:84::-;;;1849:2;1853:36:4;;1841:2;1826:18;1775:84:1;1711:184:4;4606:238:1;;;;;;:::i;:::-;;:::i;348:34:3:-;;;;;;;;-1:-1:-1;;;;;2064:32:4;;;2046:51;;2034:2;2019:18;348:34:3;1900:203:4;590:285:3;;;;;;:::i;:::-;;:::i;2095:127:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;2196:18:1;2169:7;2196:18;;;;;;;;;;;;2095:127;1032:95;;;:::i;883:188:3:-;;;;;;:::i;:::-;;:::i;5347:436:1:-;;;;;;:::i;:::-;;:::i;2428:193::-;;;;;;:::i;:::-;;:::i;2684:151::-;;;;;;:::i;:::-;;:::i;822:91::-;867:13;900:5;893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:91;:::o;3155:201::-;3238:4;736:10:0;3294:32:1;736:10:0;3310:7:1;3319:6;3294:8;:32::i;:::-;3344:4;3337:11;;;3155:201;;;;;:::o;3936:261::-;4033:4;736:10:0;4091:38:1;4107:4;736:10:0;4122:6:1;4091:15;:38::i;:::-;4140:27;4150:4;4156:2;4160:6;4140:9;:27::i;:::-;-1:-1:-1;4185:4:1;;3936:261;-1:-1:-1;;;;3936:261:1:o;4606:238::-;4694:4;736:10:0;4750:64:1;736:10:0;4766:7:1;4803:10;4775:25;736:10:0;4766:7:1;4775:9;:25::i;:::-;:38;;;;:::i;:::-;4750:8;:64::i;590:285:3:-;651:4;676:10;-1:-1:-1;;;;;690:9:3;676:23;;668:50;;;;-1:-1:-1;;;668:50:3;;3378:2:4;668:50:3;;;3360:21:4;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:4;;;3429:44;3490:18;;668:50:3;;;;;;;;;763:9;;753:6;737:13;2012:12:1;;;1924:108;737:13:3;:22;;;;:::i;:::-;:35;;729:86;;;;-1:-1:-1;;;729:86:3;;3721:2:4;729:86:3;;;3703:21:4;3760:2;3740:18;;;3733:30;3799:34;3779:18;;;3772:62;-1:-1:-1;;;3850:18:4;;;3843:36;3896:19;;729:86:3;3519:402:4;729:86:3;826:19;832:4;838:6;826:5;:19::i;:::-;-1:-1:-1;863:4:3;590:285;;;;:::o;1032:95:1:-;1079:13;1112:7;1105:14;;;;;:::i;883:188:3:-;944:4;969:10;-1:-1:-1;;;;;983:9:3;969:23;;961:50;;;;-1:-1:-1;;;961:50:3;;3378:2:4;961:50:3;;;3360:21:4;3417:2;3397:18;;;3390:30;-1:-1:-1;;;3436:18:4;;;3429:44;3490:18;;961:50:3;3176:338:4;961:50:3;1022:19;1028:4;1034:6;1022:5;:19::i;5347:436:1:-;5440:4;736:10:0;5440:4:1;5523:25;736:10:0;5540:7:1;5523:9;:25::i;:::-;5496:52;;5587:15;5567:16;:35;;5559:85;;;;-1:-1:-1;;;5559:85:1;;4128:2:4;5559:85:1;;;4110:21:4;4167:2;4147:18;;;4140:30;4206:34;4186:18;;;4179:62;-1:-1:-1;;;4257:18:4;;;4250:35;4302:19;;5559:85:1;3926:401:4;5559:85:1;5680:60;5689:5;5696:7;5724:15;5705:16;:34;5680:8;:60::i;2428:193::-;2507:4;736:10:0;2563:28:1;736:10:0;2580:2:1;2584:6;2563:9;:28::i;2684:151::-;-1:-1:-1;;;;;2800:18:1;;;2773:7;2800:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2684:151::o;9340:346::-;-1:-1:-1;;;;;9442:19:1;;9434:68;;;;-1:-1:-1;;;9434:68:1;;4534:2:4;9434:68:1;;;4516:21:4;4573:2;4553:18;;;4546:30;4612:34;4592:18;;;4585:62;-1:-1:-1;;;4663:18:4;;;4656:34;4707:19;;9434:68:1;4332:400:4;9434:68:1;-1:-1:-1;;;;;9521:21:1;;9513:68;;;;-1:-1:-1;;;9513:68:1;;4939:2:4;9513:68:1;;;4921:21:4;4978:2;4958:18;;;4951:30;5017:34;4997:18;;;4990:62;-1:-1:-1;;;5068:18:4;;;5061:32;5110:19;;9513:68:1;4737:398:4;9513:68:1;-1:-1:-1;;;;;9594:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9646:32;;1342:25:4;;;9646:32:1;;1315:18:4;9646:32:1;;;;;;;;9340:346;;;:::o;9977:419::-;10078:24;10105:25;10115:5;10122:7;10105:9;:25::i;:::-;10078:52;;-1:-1:-1;;10145:16:1;:37;10141:248;;10227:6;10207:16;:26;;10199:68;;;;-1:-1:-1;;;10199:68:1;;5342:2:4;10199:68:1;;;5324:21:4;5381:2;5361:18;;;5354:30;5420:31;5400:18;;;5393:59;5469:18;;10199:68:1;5140:353:4;10199:68:1;10311:51;10320:5;10327:7;10355:6;10336:16;:25;10311:8;:51::i;:::-;10067:329;9977:419;;;:::o;6253:806::-;-1:-1:-1;;;;;6350:18:1;;6342:68;;;;-1:-1:-1;;;6342:68:1;;5700:2:4;6342:68:1;;;5682:21:4;5739:2;5719:18;;;5712:30;5778:34;5758:18;;;5751:62;-1:-1:-1;;;5829:18:4;;;5822:35;5874:19;;6342:68:1;5498:401:4;6342:68:1;-1:-1:-1;;;;;6429:16:1;;6421:64;;;;-1:-1:-1;;;6421:64:1;;6106:2:4;6421:64:1;;;6088:21:4;6145:2;6125:18;;;6118:30;6184:34;6164:18;;;6157:62;-1:-1:-1;;;6235:18:4;;;6228:33;6278:19;;6421:64:1;5904:399:4;6421:64:1;-1:-1:-1;;;;;6571:15:1;;6549:19;6571:15;;;;;;;;;;;6605:21;;;;6597:72;;;;-1:-1:-1;;;6597:72:1;;6510:2:4;6597:72:1;;;6492:21:4;6549:2;6529:18;;;6522:30;6588:34;6568:18;;;6561:62;-1:-1:-1;;;6639:18:4;;;6632:36;6685:19;;6597:72:1;6308:402:4;6597:72:1;-1:-1:-1;;;;;6705:15:1;;;:9;:15;;;;;;;;;;;6723:20;;;6705:38;;6923:13;;;;;;;;;;:23;;;;;;6975:26;;1342:25:4;;;6923:13:1;;6975:26;;1315:18:4;6975:26:1;;;;;;;7014:37;8227:675;7346:548;-1:-1:-1;;;;;7430:21:1;;7422:65;;;;-1:-1:-1;;;7422:65:1;;6917:2:4;7422:65:1;;;6899:21:4;6956:2;6936:18;;;6929:30;6995:33;6975:18;;;6968:61;7046:18;;7422:65:1;6715:355:4;7422:65:1;7578:6;7562:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;7733:18:1;;:9;:18;;;;;;;;;;;:28;;;;;;7788:37;1342:25:4;;;7788:37:1;;1315:18:4;7788:37:1;;;;;;;7346:548;;:::o;8227:675::-;-1:-1:-1;;;;;8311:21:1;;8303:67;;;;-1:-1:-1;;;8303:67:1;;7277:2:4;8303:67:1;;;7259:21:4;7316:2;7296:18;;;7289:30;7355:34;7335:18;;;7328:62;-1:-1:-1;;;7406:18:4;;;7399:31;7447:19;;8303:67:1;7075:397:4;8303:67:1;-1:-1:-1;;;;;8470:18:1;;8445:22;8470:18;;;;;;;;;;;8507:24;;;;8499:71;;;;-1:-1:-1;;;8499:71:1;;7679:2:4;8499:71:1;;;7661:21:4;7718:2;7698:18;;;7691:30;7757:34;7737:18;;;7730:62;-1:-1:-1;;;7808:18:4;;;7801:32;7850:19;;8499:71:1;7477:398:4;8499:71:1;-1:-1:-1;;;;;8606:18:1;;:9;:18;;;;;;;;;;;8627:23;;;8606:44;;8745:12;:22;;;;;;;8796:37;1342:25:4;;;8606:9:1;;:18;8796:37;;1315:18:4;8796:37:1;1196:177:4;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:4;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:4:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:4:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15

Swarm Source

ipfs://391e47c880fd0bc86406abc5d00e646d2244173f411642a11406d6e81d389d02
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.