ETH Price: $3,457.73 (+1.74%)

Token

BIOP (BIOP)
 

Overview

Max Total Supply

176,512 BIOP

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
blockbird.eth
Balance
160 BIOP

Value
$0.00
0x6B67623ff56c10d9dcFc2152425f90285fC74DDD
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:
BIOPToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-15
*/

pragma solidity ^0.6.6;


/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// SPDX-License-Identifier: MIT

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}
contract BIOPToken is ERC20 {
    using SafeMath for uint256;
    address public binaryOptions = 0x0000000000000000000000000000000000000000;
    address public gov;
    address public owner;
    uint256 public earlyClaimsAvailable = 450000000000000000000000000000;
    uint256 public totalClaimsAvailable = 300000000000000000000000000000;
    bool public earlyClaims = true;
    bool public binaryOptionsSet = false;

    constructor(string memory name_, string memory symbol_) public ERC20(name_, symbol_) {
      owner = msg.sender;
    }
    
    modifier onlyBinaryOptions() {
        require(binaryOptions == msg.sender, "Ownable: caller is not the Binary Options Contract");
        _;
    }
    modifier onlyOwner() {
        require(binaryOptions == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function updateEarlyClaim(uint256 amount) external onlyBinaryOptions {
        require(totalClaimsAvailable.sub(amount) >= 0, "insufficent claims available");
        require (earlyClaims, "Launch has closed");
        
        earlyClaimsAvailable = earlyClaimsAvailable.sub(amount);
        _mint(tx.origin, amount);
        if (earlyClaimsAvailable <= 0) {
            earlyClaims = false;
        }
    }

     function updateClaim( uint256 amount) external onlyBinaryOptions {
        require(totalClaimsAvailable.sub(amount) >= 0, "insufficent claims available");
        totalClaimsAvailable.sub(amount);
        _mint(tx.origin, amount);
    }

    function setupBinaryOptions(address payable options_) external {
        require(binaryOptionsSet != true, "binary options is already set");
        binaryOptions = options_;
    }

    function setupGovernance(address payable gov_) external onlyOwner {
        _mint(owner, 100000000000000000000000000000);
        _mint(gov_, 450000000000000000000000000000);
        owner = 0x0000000000000000000000000000000000000000;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":[],"name":"binaryOptions","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"binaryOptionsSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earlyClaims","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlyClaimsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"options_","type":"address"}],"name":"setupBinaryOptions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"gov_","type":"address"}],"name":"setupGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateEarlyClaim","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260058054610100600160a81b03191690556c05ae074690ec816b0fd00000006008556c03c95a2f0b4856475fe0000000600955600a805460ff191660011761ff00191690553480156200005657600080fd5b506040516200138938038062001389833981810160405260408110156200007c57600080fd5b81019080805160405193929190846401000000008211156200009d57600080fd5b908301906020820185811115620000b357600080fd5b8251640100000000811182820188101715620000ce57600080fd5b82525081516020918201929091019080838360005b83811015620000fd578181015183820152602001620000e3565b50505050905090810190601f1680156200012b5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200014f57600080fd5b9083019060208201858111156200016557600080fd5b82516401000000008111828201881017156200018057600080fd5b82525081516020918201929091019080838360005b83811015620001af57818101518382015260200162000195565b50505050905090810190601f168015620001dd5780820380516001836020036101000a031916815260200191505b50604052505082518391508290620001fd9060039060208501906200023d565b508051620002139060049060208401906200023d565b50506005805460ff191660121790555050600780546001600160a01b0319163317905550620002e2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028057805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002b057825182559160200191906001019062000293565b50620002be929150620002c2565b5090565b620002df91905b80821115620002be5760008155600101620002c9565b90565b61109780620002f26000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80635e83612f116100b85780639901f1651161007c5780639901f16514610372578063a457c2d71461037a578063a9059cbb146103a6578063db943fa1146103d2578063dd62ed3e146103f8578063f331bff21461042657610142565b80635e83612f1461031757806370a082311461031f578063750a7ea3146103455780638da5cb5b1461036257806395d89b411461036a57610142565b806318160ddd1161010a57806318160ddd1461024f57806323b872dd146102695780633099152a1461029f578063313ce567146102a757806339509351146102c5578063499b7211146102f157610142565b806306fdde0314610147578063095ea7b3146101c45780631160f1d01461020457806312b3368d1461022857806312d43a5114610247575b600080fd5b61014f61042e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b0381351690602001356104c4565b604080519115158252519081900360200190f35b61020c6104e1565b604080516001600160a01b039092168252519081900360200190f35b6102456004803603602081101561023e57600080fd5b50356104f5565b005b61020c6105cd565b6102576105dc565b60408051918252519081900360200190f35b6101f06004803603606081101561027f57600080fd5b506001600160a01b038135811691602081013590911690604001356105e2565b61025761066f565b6102af610675565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102db57600080fd5b506001600160a01b03813516906020013561067e565b6102456004803603602081101561030757600080fd5b50356001600160a01b03166106d2565b6101f0610783565b6102576004803603602081101561033557600080fd5b50356001600160a01b0316610791565b6102456004803603602081101561035b57600080fd5b50356107ac565b61020c6108e5565b61014f6108f4565b6101f0610955565b6101f06004803603604081101561039057600080fd5b506001600160a01b03813516906020013561095e565b6101f0600480360360408110156103bc57600080fd5b506001600160a01b0381351690602001356109cc565b610245600480360360208110156103e857600080fd5b50356001600160a01b03166109e0565b6102576004803603604081101561040e57600080fd5b506001600160a01b0381358116916020013516610a6b565b610257610a96565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610a9c565b8484610aa0565b50600192915050565b60055461010090046001600160a01b031681565b60055461010090046001600160a01b031633146105435760405162461bcd60e51b8152600401808060200182810382526032815260200180610f9a6032913960400191505060405180910390fd5b600954600090610559908363ffffffff610b8c16565b10156105ac576040805162461bcd60e51b815260206004820152601c60248201527f696e737566666963656e7420636c61696d7320617661696c61626c6500000000604482015290519081900360640190fd5b6009546105bf908263ffffffff610b8c16565b506105ca3282610bd5565b50565b6006546001600160a01b031681565b60025490565b60006105ef848484610cd1565b610665846105fb610a9c565b61066085604051806060016040528060288152602001610fcc602891396001600160a01b038a16600090815260016020526040812090610639610a9c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e3816565b610aa0565b5060019392505050565b60085481565b60055460ff1690565b60006104d861068b610a9c565b84610660856001600061069c610a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ecf16565b60055461010090046001600160a01b03163314610736576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600754610759906001600160a01b03166c01431e0fae6d7217caa0000000610bd5565b610770816c05ae074690ec816b0fd0000000610bd5565b50600780546001600160a01b0319169055565b600a54610100900460ff1681565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b031633146107fa5760405162461bcd60e51b8152600401808060200182810382526032815260200180610f9a6032913960400191505060405180910390fd5b600954600090610810908363ffffffff610b8c16565b1015610863576040805162461bcd60e51b815260206004820152601c60248201527f696e737566666963656e7420636c61696d7320617661696c61626c6500000000604482015290519081900360640190fd5b600a5460ff166108ae576040805162461bcd60e51b815260206004820152601160248201527013185d5b98da081a185cc818db1bdcd959607a1b604482015290519081900360640190fd5b6008546108c1908263ffffffff610b8c16565b6008556108ce3282610bd5565b6000600854116105ca57600a805460ff1916905550565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b600a5460ff1681565b60006104d861096b610a9c565b846106608560405180606001604052806025815260200161103d6025913960016000610995610a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e3816565b60006104d86109d9610a9c565b8484610cd1565b600a5460ff61010090910416151560011415610a43576040805162461bcd60e51b815260206004820152601d60248201527f62696e617279206f7074696f6e7320697320616c726561647920736574000000604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b3390565b6001600160a01b038316610ae55760405162461bcd60e51b81526004018080602001828103825260248152602001806110196024913960400191505060405180910390fd5b6001600160a01b038216610b2a5760405162461bcd60e51b8152600401808060200182810382526022815260200180610f526022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610bce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e38565b9392505050565b6001600160a01b038216610c30576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3c60008383610f29565b600254610c4f908263ffffffff610ecf16565b6002556001600160a01b038216600090815260208190526040902054610c7b908263ffffffff610ecf16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316610d165760405162461bcd60e51b8152600401808060200182810382526025815260200180610ff46025913960400191505060405180910390fd5b6001600160a01b038216610d5b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f2f6023913960400191505060405180910390fd5b610d66838383610f29565b610da981604051806060016040528060268152602001610f74602691396001600160a01b038616600090815260208190526040902054919063ffffffff610e3816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dde908263ffffffff610ecf16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ec75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e8c578181015183820152602001610e74565b50505050905090810190601f168015610eb95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bce576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f74207468652042696e617279204f7074696f6e7320436f6e747261637445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e28b03d948e33bc58301b2d4ec685d3027a1a01cd9fc16f73799f74703ea1b0a64736f6c6343000606003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80635e83612f116100b85780639901f1651161007c5780639901f16514610372578063a457c2d71461037a578063a9059cbb146103a6578063db943fa1146103d2578063dd62ed3e146103f8578063f331bff21461042657610142565b80635e83612f1461031757806370a082311461031f578063750a7ea3146103455780638da5cb5b1461036257806395d89b411461036a57610142565b806318160ddd1161010a57806318160ddd1461024f57806323b872dd146102695780633099152a1461029f578063313ce567146102a757806339509351146102c5578063499b7211146102f157610142565b806306fdde0314610147578063095ea7b3146101c45780631160f1d01461020457806312b3368d1461022857806312d43a5114610247575b600080fd5b61014f61042e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b0381351690602001356104c4565b604080519115158252519081900360200190f35b61020c6104e1565b604080516001600160a01b039092168252519081900360200190f35b6102456004803603602081101561023e57600080fd5b50356104f5565b005b61020c6105cd565b6102576105dc565b60408051918252519081900360200190f35b6101f06004803603606081101561027f57600080fd5b506001600160a01b038135811691602081013590911690604001356105e2565b61025761066f565b6102af610675565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102db57600080fd5b506001600160a01b03813516906020013561067e565b6102456004803603602081101561030757600080fd5b50356001600160a01b03166106d2565b6101f0610783565b6102576004803603602081101561033557600080fd5b50356001600160a01b0316610791565b6102456004803603602081101561035b57600080fd5b50356107ac565b61020c6108e5565b61014f6108f4565b6101f0610955565b6101f06004803603604081101561039057600080fd5b506001600160a01b03813516906020013561095e565b6101f0600480360360408110156103bc57600080fd5b506001600160a01b0381351690602001356109cc565b610245600480360360208110156103e857600080fd5b50356001600160a01b03166109e0565b6102576004803603604081101561040e57600080fd5b506001600160a01b0381358116916020013516610a6b565b610257610a96565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610a9c565b8484610aa0565b50600192915050565b60055461010090046001600160a01b031681565b60055461010090046001600160a01b031633146105435760405162461bcd60e51b8152600401808060200182810382526032815260200180610f9a6032913960400191505060405180910390fd5b600954600090610559908363ffffffff610b8c16565b10156105ac576040805162461bcd60e51b815260206004820152601c60248201527f696e737566666963656e7420636c61696d7320617661696c61626c6500000000604482015290519081900360640190fd5b6009546105bf908263ffffffff610b8c16565b506105ca3282610bd5565b50565b6006546001600160a01b031681565b60025490565b60006105ef848484610cd1565b610665846105fb610a9c565b61066085604051806060016040528060288152602001610fcc602891396001600160a01b038a16600090815260016020526040812090610639610a9c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610e3816565b610aa0565b5060019392505050565b60085481565b60055460ff1690565b60006104d861068b610a9c565b84610660856001600061069c610a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ecf16565b60055461010090046001600160a01b03163314610736576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600754610759906001600160a01b03166c01431e0fae6d7217caa0000000610bd5565b610770816c05ae074690ec816b0fd0000000610bd5565b50600780546001600160a01b0319169055565b600a54610100900460ff1681565b6001600160a01b031660009081526020819052604090205490565b60055461010090046001600160a01b031633146107fa5760405162461bcd60e51b8152600401808060200182810382526032815260200180610f9a6032913960400191505060405180910390fd5b600954600090610810908363ffffffff610b8c16565b1015610863576040805162461bcd60e51b815260206004820152601c60248201527f696e737566666963656e7420636c61696d7320617661696c61626c6500000000604482015290519081900360640190fd5b600a5460ff166108ae576040805162461bcd60e51b815260206004820152601160248201527013185d5b98da081a185cc818db1bdcd959607a1b604482015290519081900360640190fd5b6008546108c1908263ffffffff610b8c16565b6008556108ce3282610bd5565b6000600854116105ca57600a805460ff1916905550565b6007546001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b600a5460ff1681565b60006104d861096b610a9c565b846106608560405180606001604052806025815260200161103d6025913960016000610995610a9c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610e3816565b60006104d86109d9610a9c565b8484610cd1565b600a5460ff61010090910416151560011415610a43576040805162461bcd60e51b815260206004820152601d60248201527f62696e617279206f7074696f6e7320697320616c726561647920736574000000604482015290519081900360640190fd5b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60095481565b3390565b6001600160a01b038316610ae55760405162461bcd60e51b81526004018080602001828103825260248152602001806110196024913960400191505060405180910390fd5b6001600160a01b038216610b2a5760405162461bcd60e51b8152600401808060200182810382526022815260200180610f526022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610bce83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e38565b9392505050565b6001600160a01b038216610c30576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3c60008383610f29565b600254610c4f908263ffffffff610ecf16565b6002556001600160a01b038216600090815260208190526040902054610c7b908263ffffffff610ecf16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316610d165760405162461bcd60e51b8152600401808060200182810382526025815260200180610ff46025913960400191505060405180910390fd5b6001600160a01b038216610d5b5760405162461bcd60e51b8152600401808060200182810382526023815260200180610f2f6023913960400191505060405180910390fd5b610d66838383610f29565b610da981604051806060016040528060268152602001610f74602691396001600160a01b038616600090815260208190526040902054919063ffffffff610e3816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dde908263ffffffff610ecf16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ec75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e8c578181015183820152602001610e74565b50505050905090810190601f168015610eb95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bce576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f74207468652042696e617279204f7074696f6e7320436f6e747261637445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e28b03d948e33bc58301b2d4ec685d3027a1a01cd9fc16f73799f74703ea1b0a64736f6c63430006060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442494f5000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): BIOP
Arg [1] : symbol_ (string): BIOP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 42494f5000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 42494f5000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19864:1964:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19864:1964:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;11041:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11041:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13147:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13147:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19932:73;;;:::i;:::-;;;;-1:-1:-1;;;;;19932:73:0;;;;;;;;;;;;;;21142:240;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21142:240:0;;:::i;:::-;;20012:18;;;:::i;12116:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;13798:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13798:321:0;;;;;;;;;;;;;;;;;:::i;20064:68::-;;;:::i;11968:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14528:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14528:218:0;;;;;;;;:::i;21581:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21581:244:0;-1:-1:-1;;;;;21581:244:0;;:::i;20251:36::-;;;:::i;12279:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12279:119:0;-1:-1:-1;;;;;12279:119:0;;:::i;20716:417::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20716:417:0;;:::i;20037:20::-;;;:::i;11243:87::-;;;:::i;20214:30::-;;;:::i;15249:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15249:269:0;;;;;;;;:::i;12611:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12611:175:0;;;;;;;;:::i;21390:183::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21390:183:0;-1:-1:-1;;;;;21390:183:0;;:::i;12849:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12849:151:0;;;;;;;;;;:::i;20139:68::-;;;:::i;11041:83::-;11111:5;11104:12;;;;;;;;-1:-1:-1;;11104:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11078:13;;11104:12;;11111:5;;11104:12;;11111:5;11104:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11041:83;:::o;13147:169::-;13230:4;13247:39;13256:12;:10;:12::i;:::-;13270:7;13279:6;13247:8;:39::i;:::-;-1:-1:-1;13304:4:0;13147:169;;;;:::o;19932:73::-;;;;;;-1:-1:-1;;;;;19932:73:0;;:::o;21142:240::-;20476:13;;;;;-1:-1:-1;;;;;20476:13:0;20493:10;20476:27;20468:90;;;;-1:-1:-1;;;20468:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21226:20:::1;::::0;21262:1:::1;::::0;21226:32:::1;::::0;21251:6;21226:32:::1;:24;:32;:::i;:::-;:37;;21218:78;;;::::0;;-1:-1:-1;;;21218:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21307:20;::::0;:32:::1;::::0;21332:6;21307:32:::1;:24;:32;:::i;:::-;;21350:24;21356:9;21367:6;21350:5;:24::i;:::-;21142:240:::0;:::o;20012:18::-;;;-1:-1:-1;;;;;20012:18:0;;:::o;12116:100::-;12196:12;;12116:100;:::o;13798:321::-;13904:4;13921:36;13931:6;13939:9;13950:6;13921:9;:36::i;:::-;13968:121;13977:6;13985:12;:10;:12::i;:::-;13999:89;14037:6;13999:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13999:19:0;;;;;;:11;:19;;;;;;14019:12;:10;:12::i;:::-;-1:-1:-1;;;;;13999:33:0;;;;;;;;;;;;-1:-1:-1;13999:33:0;;;:89;;:37;:89;:::i;:::-;13968:8;:121::i;:::-;-1:-1:-1;14107:4:0;13798:321;;;;;:::o;20064:68::-;;;;:::o;11968:83::-;12034:9;;;;11968:83;:::o;14528:218::-;14616:4;14633:83;14642:12;:10;:12::i;:::-;14656:7;14665:50;14704:10;14665:11;:25;14677:12;:10;:12::i;:::-;-1:-1:-1;;;;;14665:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14665:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;21581:244::-;20624:13;;;;;-1:-1:-1;;;;;20624:13:0;20641:10;20624:27;20616:72;;;;;-1:-1:-1;;;20616:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21664:5:::1;::::0;21658:44:::1;::::0;-1:-1:-1;;;;;21664:5:0::1;21671:30;21658:5;:44::i;:::-;21713:43;21719:4;21725:30;21713:5;:43::i;:::-;-1:-1:-1::0;21767:5:0::1;:50:::0;;-1:-1:-1;;;;;;21767:50:0::1;::::0;;21581:244::o;20251:36::-;;;;;;;;;:::o;12279:119::-;-1:-1:-1;;;;;12372:18:0;12345:7;12372:18;;;;;;;;;;;;12279:119::o;20716:417::-;20476:13;;;;;-1:-1:-1;;;;;20476:13:0;20493:10;20476:27;20468:90;;;;-1:-1:-1;;;20468:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20804:20:::1;::::0;20840:1:::1;::::0;20804:32:::1;::::0;20829:6;20804:32:::1;:24;:32;:::i;:::-;:37;;20796:78;;;::::0;;-1:-1:-1;;;20796:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20894:11;::::0;::::1;;20885:42;;;::::0;;-1:-1:-1;;;20885:42:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;20885:42:0;;;;;;;;;;;;;::::1;;20971:20;::::0;:32:::1;::::0;20996:6;20971:32:::1;:24;:32;:::i;:::-;20948:20;:55:::0;21014:24:::1;21020:9;21031:6:::0;21014:5:::1;:24::i;:::-;21077:1;21053:20;;:25;21049:77;;21095:11;:19:::0;;-1:-1:-1;;21095:19:0::1;::::0;;20716:417;:::o;20037:20::-;;;-1:-1:-1;;;;;20037:20:0;;:::o;11243:87::-;11315:7;11308:14;;;;;;;;-1:-1:-1;;11308:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11282:13;;11308:14;;11315:7;;11308:14;;11315:7;11308:14;;;;;;;;;;;;;;;;;;;;;;;;20214:30;;;;;;:::o;15249:269::-;15342:4;15359:129;15368:12;:10;:12::i;:::-;15382:7;15391:96;15430:15;15391:96;;;;;;;;;;;;;;;;;:11;:25;15403:12;:10;:12::i;:::-;-1:-1:-1;;;;;15391:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15391:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12611:175::-;12697:4;12714:42;12724:12;:10;:12::i;:::-;12738:9;12749:6;12714:9;:42::i;21390:183::-;21472:16;;;;;;;;:24;;:16;:24;;21464:66;;;;;-1:-1:-1;;;21464:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21541:13;:24;;-1:-1:-1;;;;;21541:24:0;;;;;-1:-1:-1;;;;;;21541:24:0;;;;;;;;;21390:183::o;12849:151::-;-1:-1:-1;;;;;12965:18:0;;;12938:7;12965:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12849:151::o;20139:68::-;;;;:::o;572:106::-;660:10;572:106;:::o;18396:346::-;-1:-1:-1;;;;;18498:19:0;;18490:68;;;;-1:-1:-1;;;18490:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18577:21:0;;18569:68;;;;-1:-1:-1;;;18569:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18650:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18702:32;;;;;;;;;;;;;;;;;18396:346;;;:::o;2265:136::-;2323:7;2350:43;2354:1;2357;2350:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2343:50;2265:136;-1:-1:-1;;;2265:136:0:o;16829:378::-;-1:-1:-1;;;;;16913:21:0;;16905:65;;;;;-1:-1:-1;;;16905:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16983:49;17012:1;17016:7;17025:6;16983:20;:49::i;:::-;17060:12;;:24;;17077:6;17060:24;:16;:24;:::i;:::-;17045:12;:39;-1:-1:-1;;;;;17116:18:0;;:9;:18;;;;;;;;;;;:30;;17139:6;17116:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17095:18:0;;:9;:18;;;;;;;;;;;:51;;;;17162:37;;;;;;;17095:18;;:9;;17162:37;;;;;;;;;;16829:378;;:::o;16008:539::-;-1:-1:-1;;;;;16114:20:0;;16106:70;;;;-1:-1:-1;;;16106:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16195:23:0;;16187:71;;;;-1:-1:-1;;;16187:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16271:47;16292:6;16300:9;16311:6;16271:20;:47::i;:::-;16351:71;16373:6;16351:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16351:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16331:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16456:20;;;;;;;:32;;16481:6;16456:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16433:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16504:35;;;;;;;16433:20;;16504:35;;;;;;;;;;;;;16008:539;;;:::o;2704:192::-;2790:7;2826:12;2818:6;;;;2810:29;;;;-1:-1:-1;;;2810:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2810:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2862:5:0;;;2704:192::o;1801:181::-;1859:7;1891:5;;;1915:6;;;;1907:46;;;;;-1:-1:-1;;;1907:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19767:92;;;;:::o

Swarm Source

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