ETH Price: $2,611.88 (+0.80%)

Token

PRISM Token (PRISM)
 

Overview

Max Total Supply

47,846.509796098897799999 PRISM

Holders

250 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
60.466151423801194129 PRISM

Value
$0.00
0x760497bffaed0850eb7db38b5a28abc3b1c656e7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Prism network is the first to enable cross-parachain trading via its native bridges, access to which is granted by the Prism token.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PRISM

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-28
*/

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



pragma solidity >=0.6.0 <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 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;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

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

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 virtual returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity >=0.6.0 <0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: contracts/dependencies/ERC20MintSnapshot.sol



pragma solidity >=0.6.0 <0.8.0;


// Code Based on Compound's Comp.sol: https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

contract ERC20MintSnapshot is ERC20 {
    /// @notice A checkpoint for marking number of mints from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint224 mints;
    }

    /// @notice A record of mint checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    // Address to signify snapshotted total mint amount
    address private constant TOTAL_MINT = address(0);

    constructor(string memory name, string memory symbol)
        public
        ERC20(name, symbol)
    {}

    /**
     * @notice Determine the prior amount of mints for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the mint balance at
     * @return The amount of mints the account had as of the given block
     */
    function getPriorMints(address account, uint256 blockNumber)
        public
        view
        returns (uint224)
    {
        require(
            blockNumber < block.number,
            "ERC20MintSnapshot::getPriorMints: not yet determined"
        );

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].mints;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.mints;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].mints;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        uint224 value =
            safe224(
                amount,
                "ERC20MintSnapshot::_beforeTokenTransfer: Amount minted exceeds limit"
            );
        if (from == address(0) && value > 0) {
            uint32 totalMintNum = numCheckpoints[TOTAL_MINT];
            uint224 totalMintOld =
                totalMintNum > 0
                    ? checkpoints[TOTAL_MINT][totalMintNum - 1].mints
                    : 0;
            uint224 totalMintNew =
                add224(
                    totalMintOld,
                    value,
                    "ERC20MintSnapshot::_beforeTokenTransfer: mint amount overflows"
                );
            _writeCheckpoint(TOTAL_MINT, totalMintNum, totalMintNew);

            uint32 minterNum = numCheckpoints[to];
            uint224 minterOld =
                minterNum > 0 ? checkpoints[to][minterNum - 1].mints : 0;
            uint224 minterNew =
                add224(
                    minterOld,
                    value,
                    "ERC20MintSnapshot::_beforeTokenTransfer: mint amount overflows"
                );
            _writeCheckpoint(to, minterNum, minterNew);
        }
    }

    function _writeCheckpoint(
        address minter,
        uint32 nCheckpoints,
        uint224 newMints
    ) internal {
        uint32 blockNumber =
            safe32(
                block.number,
                "ERC20MintSnapshot::_writeCheckpoint: block number exceeds 32 bits"
            );

        if (
            nCheckpoints > 0 &&
            checkpoints[minter][nCheckpoints - 1].fromBlock == blockNumber
        ) {
            checkpoints[minter][nCheckpoints - 1].mints = newMints;
        } else {
            checkpoints[minter][nCheckpoints] = Checkpoint(
                blockNumber,
                newMints
            );
            numCheckpoints[minter] = nCheckpoints + 1;
        }
    }

    function safe32(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint32)
    {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe224(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint224)
    {
        require(n < 2**224, errorMessage);
        return uint224(n);
    }

    function add224(
        uint224 a,
        uint224 b,
        string memory errorMessage
    ) internal pure returns (uint224) {
        uint224 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

// File: contracts/dependencies/Controller.sol


pragma solidity >=0.6.0 <0.8.0;


contract Controller is Ownable {
    mapping(address => bool) operator;

    modifier onlyOperator() {
        require(operator[msg.sender], "Only-operator");
        _;
    }

    constructor() public {
        operator[msg.sender] = true;
    }

    function setOperator(address _operator, bool _whiteList) public onlyOwner {
        operator[_operator] = _whiteList;
    }
}

// File: contracts/dependencies/DSMath.sol



/// Copied from: https://github.com/dapphub/ds-math/blob/master/src/math.sol

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >0.4.13;

library DSMath {
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x, "ds-math-add-overflow");
    }

    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x, "ds-math-sub-underflow");
    }

    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
    }

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        return x <= y ? x : y;
    }

    function max(uint256 x, uint256 y) internal pure returns (uint256 z) {
        return x >= y ? x : y;
    }

    function imin(int256 x, int256 y) internal pure returns (int256 z) {
        return x <= y ? x : y;
    }

    function imax(int256 x, int256 y) internal pure returns (int256 z) {
        return x >= y ? x : y;
    }

    uint256 constant WAD = 10**18;
    uint256 constant RAY = 10**27;

    //rounds to zero if x*y < WAD / 2
    function wmul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = add(mul(x, y), WAD / 2) / WAD;
    }

    //rounds to zero if x*y < WAD / 2
    function rmul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = add(mul(x, y), RAY / 2) / RAY;
    }

    //rounds to zero if x*y < WAD / 2
    function wdiv(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = add(mul(x, WAD), y / 2) / y;
    }

    //rounds to zero if x*y < RAY / 2
    function rdiv(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = add(mul(x, RAY), y / 2) / y;
    }

    // This famous algorithm is called "exponentiation by squaring"
    // and calculates x^n with x as fixed-point and n as regular unsigned.
    //
    // It's O(log n), instead of O(n) for naive repeated multiplication.
    //
    // These facts are why it works:
    //
    //  If n is even, then x^n = (x^2)^(n/2).
    //  If n is odd,  then x^n = x * x^(n-1),
    //   and applying the equation for even x gives
    //    x^n = x * (x^2)^((n-1) / 2).
    //
    //  Also, EVM division is flooring and
    //    floor[(n-1) / 2] = floor[n / 2].
    //
    function rpow(uint256 x, uint256 n) internal pure returns (uint256 z) {
        z = n % 2 != 0 ? x : RAY;

        for (n /= 2; n != 0; n /= 2) {
            x = rmul(x, x);

            if (n % 2 != 0) {
                z = rmul(z, x);
            }
        }
    }
}

// File: contracts/dependencies/FeeToken.sol



pragma solidity >=0.6.0 <0.8.0;



abstract contract FeeToken is Controller {
    using DSMath for uint256;

    uint256 private constant TX_FEE = 0.0025 ether;

    mapping(address => bool) public feeless;

    constructor() public Controller() {
        feeless[owner()] = true;
    }

    function _consumeFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (uint256 output) {
        output = amount;
        if (!feeless[recipient]) {
            uint256 fee = output.wmul(TX_FEE);
            output -= fee;
            _transferFee(sender, fee);
        }
    }

    function setFeeless(address account, bool isFeeless)
        external
        onlyOperator()
    {
        feeless[account] = isFeeless;
    }

    function _transferFee(address from, uint256 amount) internal virtual;

    // Utility Pure Functions

    function getAmountPlusFee(uint256 amount) external pure returns (uint256) {
        return amount.wdiv(1 ether - TX_FEE) * 100;
    }

    function getTransactionFee(uint256 amount) external pure returns (uint256) {
        return amount.wmul(TX_FEE);
    }
}

// File: contracts/mainnet/PRISM.sol



pragma solidity >=0.6.0 <0.8.0;





/**
 * PRISM ERC20 Token
 *
 * Attributes:
 * - Can be burned by anyone to forcibly reduce total supply
 * - Converts DEF/ETH LP shares at a 0.000005 LP to PRISM ratio
 */
contract PRISM is ERC20MintSnapshot, FeeToken {
    using SafeERC20 for ERC20;

    ERC20 private constant DEF_ETH_LP =
        ERC20(0x347C280FA84363147441cAE5CD28DF1B596f2C1f);
    uint256 private constant LP_RATIO = 0.000005 ether;

    event Mint(address indexed _to, uint256 indexed _amount);

    constructor() public ERC20MintSnapshot("PRISM Token", "PRISM") {}

    function mint(uint256 amount) external {
        require(amount > 0, "Invalid-amount");
        DEF_ETH_LP.safeTransferFrom(msg.sender, address(this), amount);
        uint256 mintAmount = amount.wdiv(LP_RATIO);
        require(mintAmount > 0, "Invalid-amount");
        _mint(msg.sender, mintAmount);
        emit Mint(msg.sender, mintAmount);
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(
            _msgSender(),
            recipient,
            _consumeFee(_msgSender(), recipient, amount)
        );
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, _consumeFee(sender, recipient, amount));
        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _transferFee(address from, uint256 amount) internal override {
        _transfer(from, owner(), amount); // owner is bridge
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"mints","type":"uint224"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getAmountPlusFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorMints","outputs":[{"internalType":"uint224","name":"","type":"uint224"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getTransactionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isFeeless","type":"bool"}],"name":"setFeeless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_whiteList","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600b81526a282924a9a6902a37b5b2b760a91b602080830191825283518085019094526005845264505249534d60d81b90840152815191929183918391620000669160039162000169565b5080516200007c90600490602084019062000169565b50506005805460ff191660121790555060009150620000a590506001600160e01b036200015516565b600880546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350336000908152600960205260408120805460ff1916600190811790915590600a90620001276001600160e01b036200015a16565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200020b565b335b90565b6008546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001ac57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001dc578251825591602001919060010190620001bf565b50620001ea929150620001ee565b5090565b6200015791905b80821115620001ea5760008155600101620001f5565b6129ac806200021b6000396000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c80638da5cb5b116100e3578063ad5abb3b1161008c578063efbc9de711610066578063efbc9de7146105d6578063f1127ed814610611578063f2fde38b1461068d57610198565b8063ad5abb3b14610514578063dd62ed3e1461057e578063dfc7d488146105b957610198565b8063a1f7806c116100bd578063a1f7806c14610485578063a457c2d7146104a2578063a9059cbb146104db57610198565b80638da5cb5b1461042f57806395d89b4114610460578063a0712d681461046857610198565b806342966c68116101455780636fcfff451161011f5780636fcfff45146103a857806370a08231146103f4578063715018a61461042757610198565b806342966c681461031b5780634c86ee6f1461033a578063558a72971461036d57610198565b806323b872dd1161017657806323b872dd14610281578063313ce567146102c457806339509351146102e257610198565b806306fdde031461019d578063095ea7b31461021a57806318160ddd14610267575b600080fd5b6101a56106c0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102536004803603604081101561023057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610774565b604080519115158252519081900360200190f35b61026f610792565b60408051918252519081900360200190f35b6102536004803603606081101561029757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610798565b6102cc610806565b6040805160ff9092168252519081900360200190f35b610253600480360360408110156102f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561080f565b6103386004803603602081101561033157600080fd5b5035610870565b005b6102536004803603602081101561035057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661087d565b6103386004803603604081101561038357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515610892565b6103db600480360360208110156103be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610990565b6040805163ffffffff9092168252519081900360200190f35b61026f6004803603602081101561040a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109a8565b6103386109d0565b610437610ae7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101a5610b03565b6103386004803603602081101561047e57600080fd5b5035610b82565b61026f6004803603602081101561049b57600080fd5b5035610cdb565b610253600480360360408110156104b857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cfe565b610253600480360360408110156104f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d79565b61054d6004803603604081101561052a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d99565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61026f6004803603604081101561059457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166110ca565b61026f600480360360208110156105cf57600080fd5b5035611102565b610338600480360360408110156105ec57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561111b565b6106506004803603604081101561062757600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff166111ef565b6040805163ffffffff90931683527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911660208301528051918290030190f35b610338600480360360208110156106a357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661123a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076a5780601f1061073f5761010080835404028352916020019161076a565b820191906000526020600020905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b60006107886107816113dc565b84846113e0565b5060015b92915050565b60025490565b60006107af84846107aa878787611527565b611588565b6107fb846107bb6113dc565b6107f6856040518060600160405280602881526020016127e3602891396107e98a6107e46113dc565b6110ca565b919063ffffffff61176416565b6113e0565b5060015b9392505050565b60055460ff1690565b600061078861081c6113dc565b846107f6856001600061082d6113dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61181516565b61087a3382611889565b50565b600a6020526000908152604090205460ff1681565b61089a6113dc565b73ffffffffffffffffffffffffffffffffffffffff166108b8610ae7565b73ffffffffffffffffffffffffffffffffffffffff161461093a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6109d86113dc565b73ffffffffffffffffffffffffffffffffffffffff166109f6610ae7565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60085460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60085473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076a5780601f1061073f5761010080835404028352916020019161076a565b60008111610bf157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c69642d616d6f756e74000000000000000000000000000000000000604482015290519081900360640190fd5b610c1773347c280fa84363147441cae5cd28df1b596f2c1f33308463ffffffff6119df16565b6000610c2f8265048c2739500063ffffffff611a7a16565b905060008111610ca057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c69642d616d6f756e74000000000000000000000000000000000000604482015290519081900360640190fd5b610caa3382611aab565b604051819033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b6000610cf582670dd7d4f70b73c00063ffffffff611a7a16565b60640292915050565b6000610788610d0b6113dc565b846107f6856040518060600160405280602581526020016129526025913960016000610d356113dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61176416565b6000610788610d866113dc565b846107aa610d926113dc565b8787611527565b6000438210610df3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061286d6034913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610e2e57600091505061078c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610f165773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16905061078c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205463ffffffff16831015610f5e57600091505061078c565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561106257600282820363ffffffff16048103610fae6126ae565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16918101919091529087141561103d5760200151945061078c9350505050565b805163ffffffff168711156110545781935061105b565b6001820392505b5050610f84565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff909416835292905220547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6401000000009091041691505092915050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600061078c826608e1bc9bf0400063ffffffff611be816565b3360009081526009602052604090205460ff1661119957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f7200000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600660209081526000928352604080842090915290825290205463ffffffff81169064010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1682565b6112426113dc565b73ffffffffffffffffffffffffffffffffffffffff16611260610ae7565b73ffffffffffffffffffffffffffffffffffffffff16146112e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061270b6026913960400191505060405180910390fd5b60085460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806128c66024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127316022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040902054819060ff166107ff57600061156f826608e1bc9bf0400063ffffffff611be816565b905080820391506115808582611c10565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff83166115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128a16025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126c66023913960400191505060405180910390fd5b61166b838383611c26565b6116bb816040518060600160405280602681526020016127976026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61176416565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546116fd908263ffffffff61181516565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117d25781810151838201526020016117ba565b50505050905090810190601f1680156117ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156107ff57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061284c6021913960400191505060405180910390fd5b61190182600083611c26565b611951816040518060600160405280602281526020016126e96022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61176416565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461198a908263ffffffff611e7e16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611a74908590611ef5565b50505050565b600081611a9c611a9285670de0b6b3a7640000611fd2565b6002855b04612058565b81611aa357fe5b049392505050565b73ffffffffffffffffffffffffffffffffffffffff8216611b2d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611b3960008383611c26565b600254611b4c908263ffffffff61181516565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611b85908263ffffffff61181516565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000670de0b6b3a7640000611a9c611c008585611fd2565b6002670de0b6b3a7640000611a96565b611c2282611c1c610ae7565b83611588565b5050565b6000611c4a82604051806080016040528060448152602001612753604491396120ca565b905073ffffffffffffffffffffffffffffffffffffffff8416158015611c8e57506000817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16115b15611a7457600080805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df5463ffffffff169081611cd2576000611d50565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820163ffffffff1660009081527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8602052604090205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff165b90506000611d7782856040518060600160405280603e81526020016128ea603e913961215a565b9050611d85600084836121f3565b73ffffffffffffffffffffffffffffffffffffffff861660009081526007602052604081205463ffffffff169081611dbe576000611e3e565b73ffffffffffffffffffffffffffffffffffffffff881660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff165b90506000611e6582886040518060600160405280603e81526020016128ea603e913961215a565b9050611e728984836121f3565b50505050505050505050565b600082821115611eef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6060611f57826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123e69092919063ffffffff16565b805190915015611fcd57808060200190516020811015611f7657600080fd5b5051611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612928602a913960400191505060405180910390fd5b505050565b6000811580611fed57505080820282828281611fea57fe5b04145b61078c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561078c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b6000817c01000000000000000000000000000000000000000000000000000000008410612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b509192915050565b6000838301827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80871690831610156121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b50949350505050565b60006122174360405180608001604052806041815260200161280b604191396123fd565b905060008363ffffffff1611801561228b575073ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8801811685529252909120548282169116145b1561231d5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff870163ffffffff9081168552925290912080549091166401000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff851602179055611a74565b60408051808201825263ffffffff92831681527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff938416602080830191825273ffffffffffffffffffffffffffffffffffffffff9790971660008181526006895284812088871682528952848120935184549351909716640100000000029686167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000009384161786169690961790925590845260079095529091208054600190930190911691909216179055565b60606123f5848460008561246d565b949350505050565b6000816401000000008410612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b6060824710156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127bd6026913960400191505060405180910390fd5b6124d185612628565b61253c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106125a657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612569565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612608576040519150601f19603f3d011682016040523d82523d6000602084013e61260d565b606091505b509150915061261d82828661262e565b979650505050505050565b3b151590565b6060831561263d5750816107ff565b82511561264d5782518084602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528451602484015284518593919283926044019190850190808383600083156117d25781810151838201526020016117ba565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a5f6265666f7265546f6b656e5472616e736665723a20416d6f756e74206d696e7465642065786365656473206c696d697445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332304d696e74536e617073686f743a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a6765745072696f724d696e74733a206e6f74207965742064657465726d696e656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a5f6265666f7265546f6b656e5472616e736665723a206d696e7420616d6f756e74206f766572666c6f77735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fc0a07152a9747142983a9f26f87637e36229ec55dc2b41b0f93b3d28e36f85664736f6c63430006080033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101985760003560e01c80638da5cb5b116100e3578063ad5abb3b1161008c578063efbc9de711610066578063efbc9de7146105d6578063f1127ed814610611578063f2fde38b1461068d57610198565b8063ad5abb3b14610514578063dd62ed3e1461057e578063dfc7d488146105b957610198565b8063a1f7806c116100bd578063a1f7806c14610485578063a457c2d7146104a2578063a9059cbb146104db57610198565b80638da5cb5b1461042f57806395d89b4114610460578063a0712d681461046857610198565b806342966c68116101455780636fcfff451161011f5780636fcfff45146103a857806370a08231146103f4578063715018a61461042757610198565b806342966c681461031b5780634c86ee6f1461033a578063558a72971461036d57610198565b806323b872dd1161017657806323b872dd14610281578063313ce567146102c457806339509351146102e257610198565b806306fdde031461019d578063095ea7b31461021a57806318160ddd14610267575b600080fd5b6101a56106c0565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102536004803603604081101561023057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610774565b604080519115158252519081900360200190f35b61026f610792565b60408051918252519081900360200190f35b6102536004803603606081101561029757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610798565b6102cc610806565b6040805160ff9092168252519081900360200190f35b610253600480360360408110156102f857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561080f565b6103386004803603602081101561033157600080fd5b5035610870565b005b6102536004803603602081101561035057600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661087d565b6103386004803603604081101561038357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001351515610892565b6103db600480360360208110156103be57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610990565b6040805163ffffffff9092168252519081900360200190f35b61026f6004803603602081101561040a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109a8565b6103386109d0565b610437610ae7565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6101a5610b03565b6103386004803603602081101561047e57600080fd5b5035610b82565b61026f6004803603602081101561049b57600080fd5b5035610cdb565b610253600480360360408110156104b857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cfe565b610253600480360360408110156104f157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d79565b61054d6004803603604081101561052a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d99565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61026f6004803603604081101561059457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166110ca565b61026f600480360360208110156105cf57600080fd5b5035611102565b610338600480360360408110156105ec57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135151561111b565b6106506004803603604081101561062757600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013563ffffffff166111ef565b6040805163ffffffff90931683527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff90911660208301528051918290030190f35b610338600480360360208110156106a357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661123a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076a5780601f1061073f5761010080835404028352916020019161076a565b820191906000526020600020905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b60006107886107816113dc565b84846113e0565b5060015b92915050565b60025490565b60006107af84846107aa878787611527565b611588565b6107fb846107bb6113dc565b6107f6856040518060600160405280602881526020016127e3602891396107e98a6107e46113dc565b6110ca565b919063ffffffff61176416565b6113e0565b5060015b9392505050565b60055460ff1690565b600061078861081c6113dc565b846107f6856001600061082d6113dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61181516565b61087a3382611889565b50565b600a6020526000908152604090205460ff1681565b61089a6113dc565b73ffffffffffffffffffffffffffffffffffffffff166108b8610ae7565b73ffffffffffffffffffffffffffffffffffffffff161461093a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60076020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6109d86113dc565b73ffffffffffffffffffffffffffffffffffffffff166109f6610ae7565b73ffffffffffffffffffffffffffffffffffffffff1614610a7857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60085460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60085473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561076a5780601f1061073f5761010080835404028352916020019161076a565b60008111610bf157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c69642d616d6f756e74000000000000000000000000000000000000604482015290519081900360640190fd5b610c1773347c280fa84363147441cae5cd28df1b596f2c1f33308463ffffffff6119df16565b6000610c2f8265048c2739500063ffffffff611a7a16565b905060008111610ca057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c69642d616d6f756e74000000000000000000000000000000000000604482015290519081900360640190fd5b610caa3382611aab565b604051819033907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a35050565b6000610cf582670dd7d4f70b73c00063ffffffff611a7a16565b60640292915050565b6000610788610d0b6113dc565b846107f6856040518060600160405280602581526020016129526025913960016000610d356113dc565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61176416565b6000610788610d866113dc565b846107aa610d926113dc565b8787611527565b6000438210610df3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603481526020018061286d6034913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526007602052604090205463ffffffff1680610e2e57600091505061078c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860181168552925290912054168310610f165773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16905061078c565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832083805290915290205463ffffffff16831015610f5e57600091505061078c565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561106257600282820363ffffffff16048103610fae6126ae565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260066020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16918101919091529087141561103d5760200151945061078c9350505050565b805163ffffffff168711156110545781935061105b565b6001820392505b5050610f84565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260066020908152604080832063ffffffff909416835292905220547bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6401000000009091041691505092915050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b600061078c826608e1bc9bf0400063ffffffff611be816565b3360009081526009602052604090205460ff1661119957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f4f6e6c792d6f70657261746f7200000000000000000000000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600660209081526000928352604080842090915290825290205463ffffffff81169064010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1682565b6112426113dc565b73ffffffffffffffffffffffffffffffffffffffff16611260610ae7565b73ffffffffffffffffffffffffffffffffffffffff16146112e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061270b6026913960400191505060405180910390fd5b60085460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661144c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806128c66024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127316022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600a6020526040902054819060ff166107ff57600061156f826608e1bc9bf0400063ffffffff611be816565b905080820391506115808582611c10565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff83166115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128a16025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806126c66023913960400191505060405180910390fd5b61166b838383611c26565b6116bb816040518060600160405280602681526020016127976026913973ffffffffffffffffffffffffffffffffffffffff8616600090815260208190526040902054919063ffffffff61176416565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822093909355908416815220546116fd908263ffffffff61181516565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117d25781810151838201526020016117ba565b50505050905090810190601f1680156117ff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156107ff57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff82166118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061284c6021913960400191505060405180910390fd5b61190182600083611c26565b611951816040518060600160405280602281526020016126e96022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260208190526040902054919063ffffffff61176416565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461198a908263ffffffff611e7e16565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052611a74908590611ef5565b50505050565b600081611a9c611a9285670de0b6b3a7640000611fd2565b6002855b04612058565b81611aa357fe5b049392505050565b73ffffffffffffffffffffffffffffffffffffffff8216611b2d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611b3960008383611c26565b600254611b4c908263ffffffff61181516565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054611b85908263ffffffff61181516565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000670de0b6b3a7640000611a9c611c008585611fd2565b6002670de0b6b3a7640000611a96565b611c2282611c1c610ae7565b83611588565b5050565b6000611c4a82604051806080016040528060448152602001612753604491396120ca565b905073ffffffffffffffffffffffffffffffffffffffff8416158015611c8e57506000817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16115b15611a7457600080805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df5463ffffffff169081611cd2576000611d50565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820163ffffffff1660009081527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8602052604090205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff165b90506000611d7782856040518060600160405280603e81526020016128ea603e913961215a565b9050611d85600084836121f3565b73ffffffffffffffffffffffffffffffffffffffff861660009081526007602052604081205463ffffffff169081611dbe576000611e3e565b73ffffffffffffffffffffffffffffffffffffffff881660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff165b90506000611e6582886040518060600160405280603e81526020016128ea603e913961215a565b9050611e728984836121f3565b50505050505050505050565b600082821115611eef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6060611f57826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166123e69092919063ffffffff16565b805190915015611fcd57808060200190516020811015611f7657600080fd5b5051611fcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612928602a913960400191505060405180910390fd5b505050565b6000811580611fed57505080820282828281611fea57fe5b04145b61078c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561078c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b6000817c01000000000000000000000000000000000000000000000000000000008410612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b509192915050565b6000838301827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80871690831610156121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b50949350505050565b60006122174360405180608001604052806041815260200161280b604191396123fd565b905060008363ffffffff1611801561228b575073ffffffffffffffffffffffffffffffffffffffff8416600090815260066020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8801811685529252909120548282169116145b1561231d5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff870163ffffffff9081168552925290912080549091166401000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff851602179055611a74565b60408051808201825263ffffffff92831681527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff938416602080830191825273ffffffffffffffffffffffffffffffffffffffff9790971660008181526006895284812088871682528952848120935184549351909716640100000000029686167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000009384161786169690961790925590845260079095529091208054600190930190911691909216179055565b60606123f5848460008561246d565b949350505050565b6000816401000000008410612152576040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528351602484015283519092839260449091019190850190808383600083156117d25781810151838201526020016117ba565b6060824710156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806127bd6026913960400191505060405180910390fd5b6124d185612628565b61253c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106125a657805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612569565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612608576040519150601f19603f3d011682016040523d82523d6000602084013e61260d565b606091505b509150915061261d82828661262e565b979650505050505050565b3b151590565b6060831561263d5750816107ff565b82511561264d5782518084602001fd5b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482018181528451602484015284518593919283926044019190850190808383600083156117d25781810151838201526020016117ba565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a5f6265666f7265546f6b656e5472616e736665723a20416d6f756e74206d696e7465642065786365656473206c696d697445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332304d696e74536e617073686f743a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a6765745072696f724d696e74733a206e6f74207965742064657465726d696e656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332304d696e74536e617073686f743a3a5f6265666f7265546f6b656e5472616e736665723a206d696e7420616d6f756e74206f766572666c6f77735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fc0a07152a9747142983a9f26f87637e36229ec55dc2b41b0f93b3d28e36f85664736f6c63430006080033

Deployed Bytecode Sourcemap

47148:1763:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47148:1763:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;13433:91: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;13433:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15579:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15579:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14532:108;;;:::i;:::-;;;;;;;;;;;;;;;;48284:476;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;48284:476:0;;;;;;;;;;;;;;;;;;:::i;14376:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16960:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16960:218:0;;;;;;;;;:::i;47898:83::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47898:83:0;;:::i;:::-;;45870:39;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45870:39:0;;;;:::i;42160:125::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;42160:125:0;;;;;;;;;;;:::i;34728:48::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34728:48:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14703:127;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14703:127:0;;;;:::i;41253:148::-;;;:::i;40602:87::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13643:95;;;:::i;47533:357::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47533:357:0;;:::i;46612:135::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46612:135:0;;:::i;17681:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17681:269:0;;;;;;;;;:::i;47989:287::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;47989:287:0;;;;;;;;;:::i;35436:1304::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35436:1304:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15281:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15281:151:0;;;;;;;;;;;:::i;46755:120::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46755:120:0;;:::i;46347:147::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;46347:147:0;;;;;;;;;;;:::i;34591:68::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34591:68:0;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;41556:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;41556:244:0;;;;:::i;13433:91::-;13511:5;13504:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13478:13;;13504:12;;13511:5;;13504:12;;13511:5;13504:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13433:91;:::o;15579:169::-;15662:4;15679:39;15688:12;:10;:12::i;:::-;15702:7;15711:6;15679:8;:39::i;:::-;-1:-1:-1;15736:4:0;15579:169;;;;;:::o;14532:108::-;14620:12;;14532:108;:::o;48284:476::-;48416:4;48433:68;48443:6;48451:9;48462:38;48474:6;48482:9;48493:6;48462:11;:38::i;:::-;48433:9;:68::i;:::-;48512:218;48535:6;48556:12;:10;:12::i;:::-;48583:136;48637:6;48583:136;;;;;;;;;;;;;;;;;:31;48593:6;48601:12;:10;:12::i;:::-;48583:9;:31::i;:::-;:35;:136;;:35;:136;:::i;:::-;48512:8;:218::i;:::-;-1:-1:-1;48748:4:0;48284:476;;;;;;:::o;14376:91::-;14450:9;;;;14376:91;:::o;16960:218::-;17048:4;17065:83;17074:12;:10;:12::i;:::-;17088:7;17097:50;17136:10;17097:11;:25;17109:12;:10;:12::i;:::-;17097:25;;;;;;;;;;;;;;;;;;-1:-1:-1;17097:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;47898:83::-;47948:25;47954:10;47966:6;47948:5;:25::i;:::-;47898:83;:::o;45870:39::-;;;;;;;;;;;;;;;:::o;42160:125::-;40833:12;:10;:12::i;:::-;40822:23;;:7;:5;:7::i;:::-;:23;;;40814:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42245:19:::1;::::0;;;::::1;;::::0;;;:8:::1;:19;::::0;;;;:32;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;42160:125::o;34728:48::-;;;;;;;;;;;;;;;:::o;14703:127::-;14804:18;;14777:7;14804:18;;;;;;;;;;;;14703:127::o;41253:148::-;40833:12;:10;:12::i;:::-;40822:23;;:7;:5;:7::i;:::-;:23;;;40814:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41344:6:::1;::::0;41323:40:::1;::::0;41360:1:::1;::::0;41323:40:::1;41344:6;::::0;41323:40:::1;::::0;41360:1;;41323:40:::1;41374:6;:19:::0;;;::::1;::::0;;41253:148::o;40602:87::-;40675:6;;;;40602:87;:::o;13643:95::-;13723:7;13716:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13690:13;;13716:14;;13723:7;;13716:14;;13723:7;13716:14;;;;;;;;;;;;;;;;;;;;;;;;47533:357;47600:1;47591:6;:10;47583:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47631:62;47286:42;47659:10;47679:4;47686:6;47631:62;:27;:62;:::i;:::-;47704:18;47725:21;:6;47372:14;47725:21;:11;:21;:::i;:::-;47704:42;;47778:1;47765:10;:14;47757:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47809:29;47815:10;47827;47809:5;:29::i;:::-;47854:28;;47871:10;;47859;;47854:28;;;;;47533:357;;:::o;46612:135::-;46677:7;46704:29;:6;46716:16;46704:29;:11;:29;:::i;:::-;46736:3;46704:35;;46612:135;-1:-1:-1;;46612:135:0:o;17681:269::-;17774:4;17791:129;17800:12;:10;:12::i;:::-;17814:7;17823:96;17862:15;17823:96;;;;;;;;;;;;;;;;;:11;:25;17835:12;:10;:12::i;:::-;17823:25;;;;;;;;;;;;;;;;;;-1:-1:-1;17823:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;47989:287::-;48094:4;48116:130;48140:12;:10;:12::i;:::-;48167:9;48191:44;48203:12;:10;:12::i;:::-;48217:9;48228:6;48191:11;:44::i;35436:1304::-;35545:7;35606:12;35592:11;:26;35570:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35733:23;;;35711:19;35733:23;;;:14;:23;;;;;;;;35771:17;35767:58;;35812:1;35805:8;;;;;35767:58;35885:20;;;;;;;:11;:20;;;;;;;;:38;35906:16;;;35885:38;;;;;;;;;:48;;:63;-1:-1:-1;35881:147:0;;35972:20;;;;;;;:11;:20;;;;;;;;35993:16;;;;;35972:38;;;;;;;;:44;;;;;;;-1:-1:-1;35965:51:0;;35881:147;36089:20;;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;36085:88:0;;;36160:1;36153:8;;;;;36085:88;36185:12;36227:16;;;36254:428;36269:5;36261:13;;:5;:13;;;36254:428;;;36333:1;36316:13;;;36315:19;;;36307:27;;36376:20;;:::i;:::-;-1:-1:-1;36399:20:0;;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;36376:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36446:27;;36442:229;;;36501:8;;;;-1:-1:-1;36494:15:0;;-1:-1:-1;;;;36494:15:0;36442:229;36535:12;;:26;;;-1:-1:-1;36531:140:0;;;36590:6;36582:14;;36531:140;;;36654:1;36645:6;:10;36637:18;;36531:140;36254:428;;;;;-1:-1:-1;36699:20:0;;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;;;;;-1:-1:-1;;35436:1304:0;;;;:::o;15281:151::-;15397:18;;;;15370:7;15397:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15281:151::o;46755:120::-;46821:7;46848:19;:6;45849:12;46848:19;:11;:19;:::i;46347:147::-;42028:10;42019:20;;;;:8;:20;;;;;;;;42011:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46458:16:::1;::::0;;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;46347:147::o;34591:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41556:244::-;40833:12;:10;:12::i;:::-;40822:23;;:7;:5;:7::i;:::-;:23;;;40814:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41645:22:::1;::::0;::::1;41637:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41747:6;::::0;41726:38:::1;::::0;::::1;::::0;;::::1;::::0;41747:6:::1;::::0;41726:38:::1;::::0;41747:6:::1;::::0;41726:38:::1;41775:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41556:244::o;636:106::-;724:10;636:106;:::o;20828:346::-;20930:19;;;20922:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21009:21;;;21001:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21082:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21134:32;;;;;;;;;;;;;;;;;20828:346;;;:::o;46002:337::-;46184:18;;;46126:14;46184:18;;;:7;:18;;;;;;46162:6;;46184:18;;46179:153;;46219:11;46233:19;:6;45849:12;46233:19;:11;:19;:::i;:::-;46219:33;;46277:3;46267:13;;;;46295:25;46308:6;46316:3;46295:12;:25::i;:::-;46179:153;46002:337;;;;;:::o;18440:539::-;18546:20;;;18538:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18627:23;;;18619:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18703:47;18724:6;18732:9;18743:6;18703:20;:47::i;:::-;18783:71;18805:6;18783:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;18763:17;;;;:9;:17;;;;;;;;;;;:91;;;;18888:20;;;;;;;:32;;18913:6;18888:32;:24;:32;:::i;:::-;18865:20;;;;:9;:20;;;;;;;;;;;;:55;;;;18936:35;;;;;;;18865:20;;18936:35;;;;;;;;;;;;;18440:539;;;:::o;9425:166::-;9511:7;9547:12;9539:6;;;;9531:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;9531:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9578:5:0;;;9425:166::o;6598:179::-;6656:7;6688:5;;;6712:6;;;;6704:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19972:418;20056:21;;;20048:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20128:49;20149:7;20166:1;20170:6;20128:20;:49::i;:::-;20211:68;20234:6;20211:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;20190:18;;;:9;:18;;;;;;;;;;:89;20305:12;;:24;;20322:6;20305:24;:16;:24;:::i;:::-;20290:12;:39;20345:37;;;;;;;;20371:1;;20345:37;;;;;;;;;;;;;19972:418;;:::o;31190:205::-;31318:68;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;31318:68:0;;;;;;;;25:18:-1;;61:17;;31318:68:0;182:15:-1;31341:27:0;179:29:-1;160:49;;31291:96:0;;31311:5;;31291:19;:96::i;:::-;31190:205;;;;:::o;44493:120::-;44552:9;44604:1;44578:23;44582:11;44586:1;44065:6;44582:3;:11::i;:::-;44599:1;44595;:5;;44578:3;:23::i;:::-;:27;;;;;;;44493:120;-1:-1:-1;;;44493:120:0:o;19261:378::-;19345:21;;;19337:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19415:49;19444:1;19448:7;19457:6;19415:20;:49::i;:::-;19492:12;;:24;;19509:6;19492:24;:16;:24;:::i;:::-;19477:12;:39;19548:18;;;:9;:18;;;;;;;;;;;:30;;19571:6;19548:30;:22;:30;:::i;:::-;19527:18;;;:9;:18;;;;;;;;;;;:51;;;;19594:37;;;;;;;19527:18;;:9;;19594:37;;;;;;;;;;19261:378;;:::o;44155:122::-;44214:9;44065:6;44240:23;44244:9;44248:1;44251;44244:3;:9::i;:::-;44261:1;44065:6;44255:7;;48768:140;48849:32;48859:4;48865:7;:5;:7::i;:::-;48874:6;48849:9;:32::i;:::-;48768:140;;:::o;36748:1341::-;36883:13;36912:136;36938:6;36912:136;;;;;;;;;;;;;;;;;:7;:136::i;:::-;36883:165;-1:-1:-1;37063:18:0;;;;:31;;;;;37093:1;37085:5;:9;;;37063:31;37059:1023;;;37111:19;37133:26;;;:14;:26;;;;;;;37214:16;:112;;37325:1;37214:112;;;37278:16;;;37254:41;;:23;:41;;;:23;;:41;:23;:41;;:47;;;;;;37214:112;37174:152;;37341:20;37381:175;37410:12;37445:5;37381:175;;;;;;;;;;;;;;;;;:6;:175::i;:::-;37341:215;;37571:56;34888:1;37600:12;37614;37571:16;:56::i;:::-;37663:18;;;37644:16;37663:18;;;:14;:18;;;;;;;;;37733:13;:56;;37788:1;37733:56;;;37749:15;;;;;;;:11;:15;;;;;;;;37765:13;;;37749:30;;;;;;;;;:36;;;;;;37733:56;37696:93;;37804:17;37841:172;37870:9;37902:5;37841:172;;;;;;;;;;;;;;;;;:6;:172::i;:::-;37804:209;;38028:42;38045:2;38049:9;38060;38028:16;:42::i;:::-;37059:1023;;;;;;36748:1341;;;;:::o;7060:158::-;7118:7;7151:1;7146;:6;;7138:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7205:5:0;;;7060:158::o;33310:761::-;33734:23;33760:69;33788:4;33760:69;;;;;;;;;;;;;;;;;33768:5;33760:27;;;;:69;;;;;:::i;:::-;33844:17;;33734:95;;-1:-1:-1;33844:21:0;33840:224;;33986:10;33975:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33975:30:0;33967:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33310:761;;;:::o;43419:151::-;43477:9;43507:6;;;:30;;-1:-1:-1;;43522:5:0;;;43536:1;43531;43522:5;43531:1;43517:15;;;;;:20;43507:30;43499:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43128:137;43221:5;;;43216:16;;;;43208:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39049:200;39155:7;39200:12;39192:6;39188:10;;39180:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;39180:33:0;-1:-1:-1;39239:1:0;;39049:200;-1:-1:-1;;39049:200:0:o;39257:227::-;39380:7;39412:5;;;39444:12;39436:6;;;;;;;;;39428:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;39428:29:0;-1:-1:-1;39475:1:0;39257:227;-1:-1:-1;;;;39257:227:0:o;38097:740::-;38232:18;38266:138;38291:12;38266:138;;;;;;;;;;;;;;;;;:6;:138::i;:::-;38232:172;;38450:1;38435:12;:16;;;:95;;;;-1:-1:-1;38468:19:0;;;;;;;:11;:19;;;;;;;;:62;38488:16;;;38468:37;;;;;;;;;:47;:62;;;:47;;:62;38435:95;38417:413;;;38557:19;;;;;;;:11;:19;;;;;;;;38577:16;;;38557:37;;;;;;;;;;;:54;;;;;;;;;;;;;38417:413;;;38680:82;;;;;;;;;;;;;;;;;;;;;;;;;38644:19;;;;;-1:-1:-1;38644:19:0;;;:11;:19;;;;;:33;;;;;;;;;;:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;38777:22;;;:14;:22;;;;;;:41;;-1:-1:-1;38802:16:0;;;38777:41;;;;;;;;;;38097:740::o;25998:195::-;26101:12;26133:52;26155:6;26163:4;26169:1;26172:12;26133:21;:52::i;:::-;26126:59;25998:195;-1:-1:-1;;;;25998:195:0:o;38845:196::-;38950:6;38993:12;38986:5;38982:9;;38974:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;27050:530:0;27177:12;27235:5;27210:21;:30;;27202:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27302:18;27313:6;27302:10;:18::i;:::-;27294:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27428:12;27442:23;27469:6;:11;;27489:5;27497:4;27469:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;27469:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;27427:75:0;;;;27520:52;27538:7;27547:10;27559:12;27520:17;:52::i;:::-;27513:59;27050:530;-1:-1:-1;;;;;;;27050:530:0:o;23080:422::-;23447:20;23486:8;;;23080:422::o;29590:742::-;29705:12;29734:7;29730:595;;;-1:-1:-1;29765:10:0;29758:17;;29730:595;29879:17;;:21;29875:439;;30142:10;30136:17;30203:15;30190:10;30186:2;30182:19;30175:44;30090:148;30278:20;;;;;;;;;;;;;;;;;;;;30285:12;;30278:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;-1:-1;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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