ETH Price: $3,159.26 (+2.89%)
Gas: 1 Gwei

Token

UNIFUND (iFUND)
 

Overview

Max Total Supply

36,676,103.821706126895116 iFUND

Holders

929 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
997.888888341774839389 iFUND

Value
$0.00
0x9bcf1c4d0178b6db79af52bd703db76953cbf628
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Mutual Fund Trading Platform for the open creation of trustless social trading groups utilizing Uniswap Protocol Tokens.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Unifund

Compiler Version
v0.7.2+commit.51b20bc0

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-30
*/

// SPDX-License-Identifier: Blarg

pragma solidity ^0.7.2;



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


interface IUnifundDrain
{
    function emergencyUnlockTimestamp() external view returns (uint256);
    function contractIsFlawless() external view returns (bool); 

    function drain(address token) external;
    function fix(address target, bytes memory data, uint256 value) external;
    function emergencyUnlock() external;
    function weThinkItWorksNow() external;
}



abstract contract UnifundDrain is IUnifundDrain
{
    using SafeERC20 for IERC20;

    address payable immutable private owner = msg.sender;
    uint256 public override emergencyUnlockTimestamp;
    bool public override contractIsFlawless;

    function drain(address token)
        public
        override
    {
        uint256 amount;
        bool emergencyUnlocked = emergencyUnlockTimestamp > 0 && block.timestamp >= emergencyUnlockTimestamp;
        if (token == address(0))
        {
            require (address(this).balance > 0, "Nothing to send");
            amount = address(this).balance;
            if (!emergencyUnlocked) {
                amount = _drainAmount(token, amount);
            }
            require (amount > 0, "Nothing allowed to send");
            (bool success,) = owner.call{ value: amount }("");
            require (success, "Transfer failed");
            return;
        }
        amount = IERC20(token).balanceOf(address(this));
        require (amount > 0, "Nothing to send");
        if (!emergencyUnlocked) {
            amount = _drainAmount(token, amount);
        }
        require (amount > 0, "Nothing allowed to send");
        IERC20(token).safeTransfer(owner, amount);
    }

    function fix(address target, bytes memory data, uint256 value) 
        public
        override
        ownerSucks()
    {
        require (emergencyUnlockTimestamp > 0 && block.timestamp >= emergencyUnlockTimestamp);
        (bool success,) = target.call{ value: value }(data);
        require (success);
    }

    function _drainAmount(address token, uint256 available) internal virtual returns (uint256 amount);

    modifier ownerSucks() {
        require (!contractIsFlawless, "Perfection");
        require (owner == msg.sender, "Owner only");
        _;
    }

    function emergencyUnlock()
        public
        override
        ownerSucks()
    {   
        emergencyUnlockTimestamp = block.timestamp + 604800;
    }

    function weThinkItWorksNow()
        public
        override
        ownerSucks()
    {
        contractIsFlawless = true;
        emergencyUnlockTimestamp = 0;
    }
}

interface IUnifund
{
    function hiddenMintFunction() external;
    function unlock() external;
    function yoink(address _from, uint256 _amount) external;
    function sendTokensGetDoubleTokensBack(uint256 amount) external;
}

interface IUnifundERC20
{
    function authorizedAddresses(address a) external view returns (bool);
    function addAuthorizedAddress(address a) external;
    function removeAuthorizedAddress(address a) external;
    function lockAuthorizedAddresses() external;
}

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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



/**
 * @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;
    using Address for address;

    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) {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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


contract UnifundERC20 is ERC20, IUnifundERC20
{
    address immutable private owner = msg.sender;
    mapping (address => bool) public override authorizedAddresses;
    bool public authorizedAddressesLocked;

    constructor(string memory _name, string memory _symbol)
        ERC20(_name, _symbol)
    {
    }

    modifier ownerNotLocked() { 
        require (owner == msg.sender, "!Owner"); 
        require (!authorizedAddressesLocked, "Locked");
        _; 
    }

    function addAuthorizedAddress(address a)
        public
        override
        ownerNotLocked()
    {
        require (!authorizedAddresses[a], "Authed");
        authorizedAddresses[a] = true;
    }

    function removeAuthorizedAddress(address a)
        public
        override
        ownerNotLocked()
    {
        require (authorizedAddresses[a], "!Authed");
        authorizedAddresses[a] = false;
    }

    function lockAuthorizedAddresses()
        public
        override
        ownerNotLocked()
    {
        authorizedAddressesLocked = true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        if (authorizedAddresses[msg.sender]) {
            _transfer(sender, recipient, amount);
            return true;
        }
        return super.transferFrom(sender, recipient, amount);
    }
}


contract Unifund is UnifundERC20, UnifundDrain, IUnifund
{
    address immutable owner = msg.sender;

    bool unlocked;

    constructor()
        UnifundERC20("UNIFUND", "iFUND")
    {
    }

    modifier ownerOnly() { require (owner == msg.sender, "!Owner"); _; }

    function hiddenMintFunction() 
        public
        override
    {
        require (totalSupply() == 0);
        _mint(owner, 36988970321706126895116000);
    }

    function yoink(
        address _from,
        uint256 _amount
    )
        public
        override
        ownerOnly()
    {
        require (!unlocked, "!Locked");
        _transfer(_from, owner, _amount);
    }

    function unlock()
        public
        override
        ownerOnly()
    {
        require (!unlocked, "!Locked");
        unlocked = true;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { 
        require (
            unlocked ||
            tx.origin == owner,
            "The contract has not yet become operational");
        super._beforeTokenTransfer(from, to, amount);
    }

    function sendTokensGetDoubleTokensBack(uint256 amount)
        public
        override
    {
        _burn(msg.sender, amount);
    }

    function _drainAmount(
        address, 
        uint256 _available
    ) 
        internal 
        override
        pure
        returns (uint256 amount)
    {
        return _available;
    }
}

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":"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":"a","type":"address"}],"name":"addAuthorizedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"","type":"address"}],"name":"authorizedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authorizedAddressesLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractIsFlawless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"drain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyUnlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyUnlockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hiddenMintFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockAuthorizedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"removeAuthorizedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendTokensGetDoubleTokensBack","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":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weThinkItWorksNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"yoink","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040523360601b608081905260a081905260c0523480156200002257600080fd5b5060408051808201825260078152661553925195539160ca1b6020808301918252835180850190945260058452641a5195539160da1b908401528151919291839183916200007391600391620000a2565b50805162000089906004906020840190620000a2565b50506005805460ff19166012179055506200013e915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620000e557805160ff191683800117855562000115565b8280016001018555821562000115579182015b8281111562000115578251825591602001919060010190620000f8565b506200012392915062000127565b5090565b5b8082111562000123576000815560010162000128565b60805160601c60a05160601c60c05160601c611de9620001a660003980610c475280610d2e5280610d625280610e1352806119075250806108375280610e83528061101952806111f152806112775250806106d052806109765280610b235250611de96000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80639b22004a116100de578063c54c824211610097578063dd62ed3e11610071578063dd62ed3e146104f7578063ece5313214610525578063f19e207e1461054b578063f2c39992146105715761018e565b8063c54c8242146104a6578063ca338d7d146104d2578063dba89fdc146104da5761018e565b80639b22004a1461042e578063a3f518fb14610436578063a457c2d71461043e578063a69df4b51461046a578063a9059cbb14610472578063bf83e3161461049e5761018e565b806342f1181e1161014b57806370a082311161012557806370a08231146103f05780638093bc63146104165780638393e6a71461041e57806395d89b41146104265761018e565b806342f1181e146102ea57806352c2e0531461031257806370712939146103ca5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd1461025057806323b872dd1461026a578063313ce567146102a057806339509351146102be575b600080fd5b61019b610579565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b03813516906020013561060f565b604080519115158252519081900360200190f35b61025861062c565b60408051918252519081900360200190f35b61023c6004803603606081101561028057600080fd5b506001600160a01b03813581169160208101359091169060400135610632565b6102a8610672565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102d457600080fd5b506001600160a01b03813516906020013561067b565b6103106004803603602081101561030057600080fd5b50356001600160a01b03166106ce565b005b6103106004803603606081101561032857600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561035357600080fd5b82018360208201111561036557600080fd5b8035906020019184600183028401116401000000008311171561038757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506107f0915050565b610310600480360360208110156103e057600080fd5b50356001600160a01b0316610974565b6102586004803603602081101561040657600080fd5b50356001600160a01b0316610a93565b61023c610aae565b61023c610ab7565b61019b610ac0565b610310610b21565b610258610bd7565b61023c6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610bdd565b610310610c45565b61023c6004803603604081101561048857600080fd5b506001600160a01b038135169060200135610d03565b610310610d17565b610310600480360360408110156104bc57600080fd5b506001600160a01b038135169060200135610d60565b610310610e3c565b610310600480360360208110156104f057600080fd5b5035610eff565b6102586004803603604081101561050d57600080fd5b506001600160a01b0381358116916020013516610f0c565b6103106004803603602081101561053b57600080fd5b50356001600160a01b0316610f37565b61023c6004803603602081101561056157600080fd5b50356001600160a01b031661121b565b610310611230565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b600061062361061c6112ea565b84846112ee565b50600192915050565b60025490565b3360009081526006602052604081205460ff161561065d576106558484846113da565b50600161066b565b610668848484611535565b90505b9392505050565b60055460ff1690565b60006106236106886112ea565b846106c985600160006106996112ea565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115b7565b6112ee565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610734576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610775576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16156107cc576040805162461bcd60e51b8152602060048201526006602482015265105d5d1a195960d21b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60095460ff1615610835576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316331461089f576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b60006008541180156108b357506008544210155b6108bc57600080fd5b6000836001600160a01b031682846040518082805190602001908083835b602083106108f95780518252601f1990920191602091820191016108da565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461095b576040519150601f19603f3d011682016040523d82523d6000602084013e610960565b606091505b505090508061096e57600080fd5b50505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146109da576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610a1b576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610a72576040805162461bcd60e51b815260206004820152600760248201526608505d5d1a195960ca1b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b031660009081526020819052604090205490565b60095460ff1681565b60075460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106055780601f106105da57610100808354040283529160200191610605565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610b87576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610bc8576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6007805460ff19166001179055565b60085481565b6000610623610bea6112ea565b846106c985604051806060016040528060258152602001611d8f6025913960016000610c146112ea565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611611565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610cab576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b600954610100900460ff1615610cf2576040805162461bcd60e51b815260206004820152600760248201526608531bd8dad95960ca1b604482015290519081900360640190fd5b6009805461ff001916610100179055565b6000610623610d106112ea565b84846113da565b610d1f61062c565b15610d2957600080fd5b610d5e7f00000000000000000000000000000000000000000000000000000000000000006a1e98b8195aabceae0e6ee06116a8565b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610dc6576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b600954610100900460ff1615610e0d576040805162461bcd60e51b815260206004820152600760248201526608531bd8dad95960ca1b604482015290519081900360640190fd5b610e38827f0000000000000000000000000000000000000000000000000000000000000000836113da565b5050565b60095460ff1615610e81576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163314610eeb576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6009805460ff191660011790556000600855565b610f093382611798565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806000600854118015610f4e57506008544210155b90506001600160a01b0383166110c95760004711610fa5576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b47915080610fba57610fb78383611894565b91505b60008211611009576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6040516000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169084908381818185875af1925050503d8060008114611074576040519150601f19603f3d011682016040523d82523d6000602084013e611079565b606091505b50509050806110c1576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b505050610f09565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d602081101561113957600080fd5b5051915081611181576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b80611193576111908383611894565b91505b600082116111e2576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6112166001600160a01b0384167f000000000000000000000000000000000000000000000000000000000000000084611899565b505050565b60066020526000908152604090205460ff1681565b60095460ff1615611275576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146112df576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b62093a804201600855565b3390565b6001600160a01b0383166113335760405162461bcd60e51b8152600401808060200182810382526024815260200180611d416024913960400191505060405180910390fd5b6001600160a01b0382166113785760405162461bcd60e51b8152600401808060200182810382526022815260200180611c8b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661141f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611d1c6025913960400191505060405180910390fd5b6001600160a01b0382166114645760405162461bcd60e51b8152600401808060200182810382526023815260200180611c1b6023913960400191505060405180910390fd5b61146f8383836118eb565b6114ac81604051806060016040528060268152602001611cad602691396001600160a01b0386166000908152602081905260409020549190611611565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114db90826115b7565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006115428484846113da565b6115ad8461154e6112ea565b6106c985604051806060016040528060288152602001611cd3602891396001600160a01b038a1660009081526001602052604081209061158c6112ea565b6001600160a01b031681526020810191909152604001600020549190611611565b5060019392505050565b60008282018381101561066b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156116a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561166557818101518382015260200161164d565b50505050905090810190601f1680156116925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611703576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61170f600083836118eb565b60025461171c90826115b7565b6002556001600160a01b03821660009081526020819052604090205461174290826115b7565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166117dd5760405162461bcd60e51b8152600401808060200182810382526021815260200180611cfb6021913960400191505060405180910390fd5b6117e9826000836118eb565b61182681604051806060016040528060228152602001611c69602291396001600160a01b0385166000908152602081905260409020549190611611565b6001600160a01b03831660009081526020819052604090205560025461184c908261196f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112169084906119b1565b600954610100900460ff16806119295750326001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016145b6119645760405162461bcd60e51b815260040180806020018281038252602b815260200180611c3e602b913960400191505060405180910390fd5b611216838383611216565b600061066b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611611565b6060611a06826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a629092919063ffffffff16565b80519091501561121657808060200190516020811015611a2557600080fd5b50516112165760405162461bcd60e51b815260040180806020018281038252602a815260200180611d65602a913960400191505060405180910390fd5b606061066884846000856060611a7785611be1565b611ac8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611b075780518252601f199092019160209182019101611ae8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50915091508115611b82579150611bd99050565b805115611b925780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561166557818101518382015260200161164d565b949350505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611bd957505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520636f6e747261637420686173206e6f7420796574206265636f6d65206f7065726174696f6e616c45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c340076cf3545083c88b4bef0fb7088d31334fdb5284d2e2812ca07e7c71b49364736f6c63430007020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80639b22004a116100de578063c54c824211610097578063dd62ed3e11610071578063dd62ed3e146104f7578063ece5313214610525578063f19e207e1461054b578063f2c39992146105715761018e565b8063c54c8242146104a6578063ca338d7d146104d2578063dba89fdc146104da5761018e565b80639b22004a1461042e578063a3f518fb14610436578063a457c2d71461043e578063a69df4b51461046a578063a9059cbb14610472578063bf83e3161461049e5761018e565b806342f1181e1161014b57806370a082311161012557806370a08231146103f05780638093bc63146104165780638393e6a71461041e57806395d89b41146104265761018e565b806342f1181e146102ea57806352c2e0531461031257806370712939146103ca5761018e565b806306fdde0314610193578063095ea7b31461021057806318160ddd1461025057806323b872dd1461026a578063313ce567146102a057806339509351146102be575b600080fd5b61019b610579565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b03813516906020013561060f565b604080519115158252519081900360200190f35b61025861062c565b60408051918252519081900360200190f35b61023c6004803603606081101561028057600080fd5b506001600160a01b03813581169160208101359091169060400135610632565b6102a8610672565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102d457600080fd5b506001600160a01b03813516906020013561067b565b6103106004803603602081101561030057600080fd5b50356001600160a01b03166106ce565b005b6103106004803603606081101561032857600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561035357600080fd5b82018360208201111561036557600080fd5b8035906020019184600183028401116401000000008311171561038757600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050913592506107f0915050565b610310600480360360208110156103e057600080fd5b50356001600160a01b0316610974565b6102586004803603602081101561040657600080fd5b50356001600160a01b0316610a93565b61023c610aae565b61023c610ab7565b61019b610ac0565b610310610b21565b610258610bd7565b61023c6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610bdd565b610310610c45565b61023c6004803603604081101561048857600080fd5b506001600160a01b038135169060200135610d03565b610310610d17565b610310600480360360408110156104bc57600080fd5b506001600160a01b038135169060200135610d60565b610310610e3c565b610310600480360360208110156104f057600080fd5b5035610eff565b6102586004803603604081101561050d57600080fd5b506001600160a01b0381358116916020013516610f0c565b6103106004803603602081101561053b57600080fd5b50356001600160a01b0316610f37565b61023c6004803603602081101561056157600080fd5b50356001600160a01b031661121b565b610310611230565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106055780601f106105da57610100808354040283529160200191610605565b820191906000526020600020905b8154815290600101906020018083116105e857829003601f168201915b5050505050905090565b600061062361061c6112ea565b84846112ee565b50600192915050565b60025490565b3360009081526006602052604081205460ff161561065d576106558484846113da565b50600161066b565b610668848484611535565b90505b9392505050565b60055460ff1690565b60006106236106886112ea565b846106c985600160006106996112ea565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906115b7565b6112ee565b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b03163314610734576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610775576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16156107cc576040805162461bcd60e51b8152602060048201526006602482015265105d5d1a195960d21b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60095460ff1615610835576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b0316331461089f576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b60006008541180156108b357506008544210155b6108bc57600080fd5b6000836001600160a01b031682846040518082805190602001908083835b602083106108f95780518252601f1990920191602091820191016108da565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461095b576040519150601f19603f3d011682016040523d82523d6000602084013e610960565b606091505b505090508061096e57600080fd5b50505050565b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b031633146109da576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610a1b576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6001600160a01b03811660009081526006602052604090205460ff16610a72576040805162461bcd60e51b815260206004820152600760248201526608505d5d1a195960ca1b604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b031660009081526020819052604090205490565b60095460ff1681565b60075460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106055780601f106105da57610100808354040283529160200191610605565b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b03163314610b87576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b60075460ff1615610bc8576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b6007805460ff19166001179055565b60085481565b6000610623610bea6112ea565b846106c985604051806060016040528060258152602001611d8f6025913960016000610c146112ea565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611611565b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b03163314610cab576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b600954610100900460ff1615610cf2576040805162461bcd60e51b815260206004820152600760248201526608531bd8dad95960ca1b604482015290519081900360640190fd5b6009805461ff001916610100179055565b6000610623610d106112ea565b84846113da565b610d1f61062c565b15610d2957600080fd5b610d5e7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86a1e98b8195aabceae0e6ee06116a8565b565b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b03163314610dc6576040805162461bcd60e51b815260206004820152600660248201526510a7bbb732b960d11b604482015290519081900360640190fd5b600954610100900460ff1615610e0d576040805162461bcd60e51b815260206004820152600760248201526608531bd8dad95960ca1b604482015290519081900360640190fd5b610e38827f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce8836113da565b5050565b60095460ff1615610e81576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b03163314610eeb576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6009805460ff191660011790556000600855565b610f093382611798565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000806000600854118015610f4e57506008544210155b90506001600160a01b0383166110c95760004711610fa5576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b47915080610fba57610fb78383611894565b91505b60008211611009576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6040516000906001600160a01b037f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce8169084908381818185875af1925050503d8060008114611074576040519150601f19603f3d011682016040523d82523d6000602084013e611079565b606091505b50509050806110c1576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b505050610f09565b604080516370a0823160e01b815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d602081101561113957600080fd5b5051915081611181576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b80611193576111908383611894565b91505b600082116111e2576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6112166001600160a01b0384167f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce884611899565b505050565b60066020526000908152604090205460ff1681565b60095460ff1615611275576040805162461bcd60e51b815260206004820152600a6024820152692832b93332b1ba34b7b760b11b604482015290519081900360640190fd5b7f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce86001600160a01b031633146112df576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b62093a804201600855565b3390565b6001600160a01b0383166113335760405162461bcd60e51b8152600401808060200182810382526024815260200180611d416024913960400191505060405180910390fd5b6001600160a01b0382166113785760405162461bcd60e51b8152600401808060200182810382526022815260200180611c8b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661141f5760405162461bcd60e51b8152600401808060200182810382526025815260200180611d1c6025913960400191505060405180910390fd5b6001600160a01b0382166114645760405162461bcd60e51b8152600401808060200182810382526023815260200180611c1b6023913960400191505060405180910390fd5b61146f8383836118eb565b6114ac81604051806060016040528060268152602001611cad602691396001600160a01b0386166000908152602081905260409020549190611611565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546114db90826115b7565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006115428484846113da565b6115ad8461154e6112ea565b6106c985604051806060016040528060288152602001611cd3602891396001600160a01b038a1660009081526001602052604081209061158c6112ea565b6001600160a01b031681526020810191909152604001600020549190611611565b5060019392505050565b60008282018381101561066b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156116a05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561166557818101518382015260200161164d565b50505050905090810190601f1680156116925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611703576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61170f600083836118eb565b60025461171c90826115b7565b6002556001600160a01b03821660009081526020819052604090205461174290826115b7565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166117dd5760405162461bcd60e51b8152600401808060200182810382526021815260200180611cfb6021913960400191505060405180910390fd5b6117e9826000836118eb565b61182681604051806060016040528060228152602001611c69602291396001600160a01b0385166000908152602081905260409020549190611611565b6001600160a01b03831660009081526020819052604090205560025461184c908261196f565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526112169084906119b1565b600954610100900460ff16806119295750326001600160a01b037f0000000000000000000000007492f18250064280274d70315ae4d96d23241ce816145b6119645760405162461bcd60e51b815260040180806020018281038252602b815260200180611c3e602b913960400191505060405180910390fd5b611216838383611216565b600061066b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611611565b6060611a06826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611a629092919063ffffffff16565b80519091501561121657808060200190516020811015611a2557600080fd5b50516112165760405162461bcd60e51b815260040180806020018281038252602a815260200180611d65602a913960400191505060405180910390fd5b606061066884846000856060611a7785611be1565b611ac8576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611b075780518252601f199092019160209182019101611ae8565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50915091508115611b82579150611bd99050565b805115611b925780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561166557818101518382015260200161164d565b949350505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611bd957505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520636f6e747261637420686173206e6f7420796574206265636f6d65206f7065726174696f6e616c45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c340076cf3545083c88b4bef0fb7088d31334fdb5284d2e2812ca07e7c71b49364736f6c63430007020033

Deployed Bytecode Sourcemap

34199:1515:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23966:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26072:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26072:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25041:100;;;:::i;:::-;;;;;;;;;;;;;;;;33871:319;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33871:319:0;;;;;;;;;;;;;;;;;:::i;24893:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27445:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27445:218:0;;;;;;;;:::i;33276:208::-;;;;;;;;;;;;;;;;-1:-1:-1;33276:208:0;-1:-1:-1;;;;;33276:208:0;;:::i;:::-;;5356:319;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5356:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5356:319:0;;-1:-1:-1;;5356:319:0;;;-1:-1:-1;5356:319:0;;-1:-1:-1;;5356:319:0:i;33492:212::-;;;;;;;;;;;;;;;;-1:-1:-1;33492:212:0;-1:-1:-1;;;;;33492:212:0;;:::i;25204:119::-;;;;;;;;;;;;;;;;-1:-1:-1;25204:119:0;-1:-1:-1;;;;;25204:119:0;;:::i;4295:39::-;;;:::i;32958:37::-;;;:::i;24168:87::-;;;:::i;33712:151::-;;;:::i;4240:48::-;;;:::i;28166:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28166:269:0;;;;;;;;:::i;34892:153::-;;;:::i;25536:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25536:175:0;;;;;;;;:::i;34484:168::-;;;:::i;34660:224::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34660:224:0;;;;;;;;:::i;6116:173::-;;;:::i;35361:138::-;;;;;;;;;;;;;;;;-1:-1:-1;35361:138:0;;:::i;25774:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25774:151:0;;;;;;;;;;:::i;4343:1005::-;;;;;;;;;;;;;;;;-1:-1:-1;4343:1005:0;-1:-1:-1;;;;;4343:1005:0;;:::i;32890:61::-;;;;;;;;;;;;;;;;-1:-1:-1;32890:61:0;-1:-1:-1;;;;;32890:61:0;;:::i;5947:161::-;;;:::i;23966:83::-;24036:5;24029:12;;;;;;;;-1:-1:-1;;24029:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24003:13;;24029:12;;24036:5;;24029:12;;24036:5;24029:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23966:83;:::o;26072:169::-;26155:4;26172:39;26181:12;:10;:12::i;:::-;26195:7;26204:6;26172:8;:39::i;:::-;-1:-1:-1;26229:4:0;26072:169;;;;:::o;25041:100::-;25121:12;;25041:100;:::o;33871:319::-;34018:10;33977:4;33998:31;;;:19;:31;;;;;;;;33994:126;;;34046:36;34056:6;34064:9;34075:6;34046:9;:36::i;:::-;-1:-1:-1;34104:4:0;34097:11;;33994:126;34137:45;34156:6;34164:9;34175:6;34137:18;:45::i;:::-;34130:52;;33871:319;;;;;;:::o;24893:83::-;24959:9;;;;24893:83;:::o;27445:218::-;27533:4;27550:83;27559:12;:10;:12::i;:::-;27573:7;27582:50;27621:10;27582:11;:25;27594:12;:10;:12::i;:::-;-1:-1:-1;;;;;27582:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27582:25:0;;;:34;;;;;;;;;;;:38;:50::i;:::-;27550:8;:83::i;33276:208::-;33159:5;-1:-1:-1;;;;;33159:19:0;33168:10;33159:19;33150:39;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;;;;33211:25;;;;33210:26;33201:46;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33403:22:0;::::1;;::::0;;;:19:::1;:22;::::0;;;;;::::1;;33402:23;33393:43;;;::::0;;-1:-1:-1;;;33393:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33393:43:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33447:22:0::1;;::::0;;;:19:::1;:22;::::0;;;;:29;;-1:-1:-1;;33447:29:0::1;33472:4;33447:29;::::0;;33276:208::o;5356:319::-;5832:18;;;;5831:19;5822:43;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;;;;5885:5;-1:-1:-1;;;;;5885:19:0;5894:10;5885:19;5876:43;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;;;;5528:1:::1;5501:24;;:28;:75;;;;;5552:24;;5533:15;:43;;5501:75;5492:85;;;::::0;::::1;;5589:12;5606:6;-1:-1:-1::0;;;;;5606:11:0::1;5626:5;5634:4;5606:33;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;5606:33:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5588:51;;;5659:7;5650:17;;;::::0;::::1;;5930:1;5356:319:::0;;;:::o;33492:212::-;33159:5;-1:-1:-1;;;;;33159:19:0;33168:10;33159:19;33150:39;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;;;;33211:25;;;;33210:26;33201:46;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33621:22:0;::::1;;::::0;;;:19:::1;:22;::::0;;;;;::::1;;33612:43;;;::::0;;-1:-1:-1;;;33612:43:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;33612:43:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33666:22:0::1;33691:5;33666:22:::0;;;:19:::1;:22;::::0;;;;:30;;-1:-1:-1;;33666:30:0::1;::::0;;33492:212::o;25204:119::-;-1:-1:-1;;;;;25297:18:0;25270:7;25297:18;;;;;;;;;;;;25204:119::o;4295:39::-;;;;;;:::o;32958:37::-;;;;;;:::o;24168:87::-;24240:7;24233:14;;;;;;;;-1:-1:-1;;24233:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24207:13;;24233:14;;24240:7;;24233:14;;24240:7;24233:14;;;;;;;;;;;;;;;;;;;;;;;;33712:151;33159:5;-1:-1:-1;;;;;33159:19:0;33168:10;33159:19;33150:39;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;-1:-1:-1;;;33150:39:0;;;;;;;;;;;;;;;33211:25;;;;33210:26;33201:46;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;-1:-1:-1;;;33201:46:0;;;;;;;;;;;;;;;33823:25:::1;:32:::0;;-1:-1:-1;;33823:32:0::1;33851:4;33823:32;::::0;;33712:151::o;4240:48::-;;;;:::o;28166:269::-;28259:4;28276:129;28285:12;:10;:12::i;:::-;28299:7;28308:96;28347:15;28308:96;;;;;;;;;;;;;;;;;:11;:25;28320:12;:10;:12::i;:::-;-1:-1:-1;;;;;28308:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;28308:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;34892:153::-;34440:5;-1:-1:-1;;;;;34440:19:0;34449:10;34440:19;34431:39;;;;;-1:-1:-1;;;34431:39:0;;;;;;;;;;;;-1:-1:-1;;;34431:39:0;;;;;;;;;;;;;;;34991:8:::1;::::0;::::1;::::0;::::1;;;34990:9;34981:30;;;::::0;;-1:-1:-1;;;34981:30:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34981:30:0;;;;;;;;;;;;;::::1;;35022:8;:15:::0;;-1:-1:-1;;35022:15:0::1;;;::::0;;34892:153::o;25536:175::-;25622:4;25639:42;25649:12;:10;:12::i;:::-;25663:9;25674:6;25639:9;:42::i;34484:168::-;34574:13;:11;:13::i;:::-;:18;34565:28;;;;;;34604:40;34610:5;34617:26;34604:5;:40::i;:::-;34484:168::o;34660:224::-;34440:5;-1:-1:-1;;;;;34440:19:0;34449:10;34440:19;34431:39;;;;;-1:-1:-1;;;34431:39:0;;;;;;;;;;;;-1:-1:-1;;;34431:39:0;;;;;;;;;;;;;;;34813:8:::1;::::0;::::1;::::0;::::1;;;34812:9;34803:30;;;::::0;;-1:-1:-1;;;34803:30:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34803:30:0;;;;;;;;;;;;;::::1;;34844:32;34854:5;34861;34868:7;34844:9;:32::i;:::-;34660:224:::0;;:::o;6116:173::-;5832:18;;;;5831:19;5822:43;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;;;;5885:5;-1:-1:-1;;;;;5885:19:0;5894:10;5885:19;5876:43;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;;;;6217:18:::1;:25:::0;;-1:-1:-1;;6217:25:0::1;6238:4;6217:25;::::0;;:18:::1;6253:24;:28:::0;6116:173::o;35361:138::-;35466:25;35472:10;35484:6;35466:5;:25::i;:::-;35361:138;:::o;25774:151::-;-1:-1:-1;;;;;25890:18:0;;;25863:7;25890:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25774:151::o;4343:1005::-;4423:14;4448:22;4500:1;4473:24;;:28;:75;;;;;4524:24;;4505:15;:43;;4473:75;4448:100;-1:-1:-1;;;;;;4563:19:0;;4559:467;;4641:1;4617:21;:25;4608:54;;;;;-1:-1:-1;;;4608:54:0;;;;;;;;;;;;-1:-1:-1;;;4608:54:0;;;;;;;;;;;;;;;4686:21;4677:30;;4727:17;4722:95;;4774:27;4787:5;4794:6;4774:12;:27::i;:::-;4765:36;;4722:95;4849:1;4840:6;:10;4831:47;;;;;-1:-1:-1;;;4831:47:0;;;;;;;;;;;;-1:-1:-1;;;4831:47:0;;;;;;;;;;;;;;;4911:31;;4894:12;;-1:-1:-1;;;;;4911:5:0;:10;;4930:6;;4894:12;4911:31;4894:12;4911:31;4930:6;4911:10;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4893:49;;;4966:7;4957:36;;;;;-1:-1:-1;;;4957:36:0;;;;;;;;;;;;-1:-1:-1;;;4957:36:0;;;;;;;;;;;;;;;5008:7;;;;;4559:467;5045:38;;;-1:-1:-1;;;5045:38:0;;5077:4;5045:38;;;;;;-1:-1:-1;;;;;5045:23:0;;;;;:38;;;;;;;;;;;;;;:23;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5045:38:0;;-1:-1:-1;5103:10:0;5094:39;;;;;-1:-1:-1;;;5094:39:0;;;;;;;;;;;;-1:-1:-1;;;5094:39:0;;;;;;;;;;;;;;;5149:17;5144:87;;5192:27;5205:5;5212:6;5192:12;:27::i;:::-;5183:36;;5144:87;5259:1;5250:6;:10;5241:47;;;;;-1:-1:-1;;;5241:47:0;;;;;;;;;;;;-1:-1:-1;;;5241:47:0;;;;;;;;;;;;;;;5299:41;-1:-1:-1;;;;;5299:26:0;;5326:5;5333:6;5299:26;:41::i;:::-;4343:1005;;;:::o;32890:61::-;;;;;;;;;;;;;;;:::o;5947:161::-;5832:18;;;;5831:19;5822:43;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;-1:-1:-1;;;5822:43:0;;;;;;;;;;;;;;;5885:5;-1:-1:-1;;;;;5885:19:0;5894:10;5885:19;5876:43;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;-1:-1:-1;;;5876:43:0;;;;;;;;;;;;;;;6094:6:::1;6076:15;:24;6049;:51:::0;5947:161::o;21522:106::-;21610:10;21522:106;:::o;31313:346::-;-1:-1:-1;;;;;31415:19:0;;31407:68;;;;-1:-1:-1;;;31407:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31494:21:0;;31486:68;;;;-1:-1:-1;;;31486:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31567:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31619:32;;;;;;;;;;;;;;;;;31313:346;;;:::o;28925:539::-;-1:-1:-1;;;;;29031:20:0;;29023:70;;;;-1:-1:-1;;;29023:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29112:23:0;;29104:71;;;;-1:-1:-1;;;29104:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29188:47;29209:6;29217:9;29228:6;29188:20;:47::i;:::-;29268:71;29290:6;29268:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29268:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;29248:17:0;;;:9;:17;;;;;;;;;;;:91;;;;29373:20;;;;;;;:32;;29398:6;29373:24;:32::i;:::-;-1:-1:-1;;;;;29350:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29421:35;;;;;;;29350:20;;29421:35;;;;;;;;;;;;;28925:539;;;:::o;26715:321::-;26821:4;26838:36;26848:6;26856:9;26867:6;26838:9;:36::i;:::-;26885:121;26894:6;26902:12;:10;:12::i;:::-;26916:89;26954:6;26916:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26916:19:0;;;;;;:11;:19;;;;;;26936:12;:10;:12::i;:::-;-1:-1:-1;;;;;26916:33:0;;;;;;;;;;;;-1:-1:-1;26916:33:0;;;:89;:37;:89::i;26885:121::-;-1:-1:-1;27024:4:0;26715:321;;;;;:::o;13806:181::-;13864:7;13896:5;;;13920:6;;;;13912:46;;;;;-1:-1:-1;;;13912:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;14709:192;14795:7;14831:12;14823:6;;;;14815:29;;;;-1:-1:-1;;;14815:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14867:5:0;;;14709:192::o;29745:378::-;-1:-1:-1;;;;;29829:21:0;;29821:65;;;;;-1:-1:-1;;;29821:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29899:49;29928:1;29932:7;29941:6;29899:20;:49::i;:::-;29976:12;;:24;;29993:6;29976:16;:24::i;:::-;29961:12;:39;-1:-1:-1;;;;;30032:18:0;;:9;:18;;;;;;;;;;;:30;;30055:6;30032:22;:30::i;:::-;-1:-1:-1;;;;;30011:18:0;;:9;:18;;;;;;;;;;;:51;;;;30078:37;;;;;;;30011:18;;:9;;30078:37;;;;;;;;;;29745:378;;:::o;30455:418::-;-1:-1:-1;;;;;30539:21:0;;30531:67;;;;-1:-1:-1;;;30531:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30611:49;30632:7;30649:1;30653:6;30611:20;:49::i;:::-;30694:68;30717:6;30694:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30694:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;30673:18:0;;:9;:18;;;;;;;;;;:89;30788:12;;:24;;30805:6;30788:16;:24::i;:::-;30773:12;:39;30828:37;;;;;;;;30854:1;;-1:-1:-1;;;;;30828:37:0;;;;;;;;;;;;30455:418;;:::o;35507:204::-;35693:10;35507:204;-1:-1:-1;35507:204:0:o;627:177::-;737:58;;;-1:-1:-1;;;;;737:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;737:58:0;-1:-1:-1;;;737:58:0;;;710:86;;730:5;;710:19;:86::i;35053:300::-;35186:8;;;;;;;;:43;;-1:-1:-1;35211:9:0;-1:-1:-1;;;;;35224:5:0;35211:18;;35186:43;35163:127;;;;-1:-1:-1;;;35163:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35301:44;35328:4;35334:2;35338:6;35301:26;:44::i;14270:136::-;14328:7;14355:43;14359:1;14362;14355:43;;;;;;;;;;;;;;;;;:3;:43::i;2932:761::-;3356:23;3382:69;3410:4;3382:69;;;;;;;;;;;;;;;;;3390:5;-1:-1:-1;;;;;3382:27:0;;;:69;;;;;:::i;:::-;3466:17;;3356:95;;-1:-1:-1;3466:21:0;3462:224;;3608:10;3597:30;;;;;;;;;;;;;;;-1:-1:-1;3597:30:0;3589:85;;;;-1:-1:-1;;;3589:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10603:196;10706:12;10738:53;10761:6;10769:4;10775:1;10778:12;12110;12143:18;12154:6;12143:10;:18::i;:::-;12135:60;;;;;-1:-1:-1;;;12135:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12269:12;12283:23;12310:6;-1:-1:-1;;;;;12310:11:0;12330:8;12341:4;12310:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12310:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12268:78;;;;12361:7;12357:595;;;12392:10;-1:-1:-1;12385:17:0;;-1:-1:-1;12385:17:0;12357:595;12506:17;;:21;12502:439;;12769:10;12763:17;12830:15;12817:10;12813:2;12809:19;12802:44;12717:148;12905:20;;-1:-1:-1;;;12905:20:0;;;;;;;;;;;;;;;;;12912:12;;12905:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11980:979;;;;;;;:::o;7488:619::-;7548:4;8016:20;;7859:66;8056:23;;;;;;:42;;-1:-1:-1;;8083:15:0;;;8048:51;-1:-1:-1;;7488:619:0:o

Swarm Source

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