ETH Price: $2,975.04 (-3.87%)
Gas: 1 Gwei

Token

AngryHippoV2 (aHIPPOv2)
 

Overview

Max Total Supply

7,199,191,332,038,156.6620819788864587 aHIPPOv2

Holders

1,170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 aHIPPOv2

Value
$0.00
0x8be4db5926232bc5b02b841dbede8161924495c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AngryHippo

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-11
*/

/*
  ___ ___ ._______________________________                          
 /   |   \|   \______   \______   \_____  \                         
/    ~    \   ||     ___/|     ___//   |   \                        
\    Y    /   ||    |    |    |   /    |    \                       
 \___|_  /|___||____|    |____|   \_______  /                       
       \/                                 \/                        
___________.___ _______      _____    _______  _________ ___________
\_   _____/|   |\      \    /  _  \   \      \ \_   ___ \\_   _____/
 |    __)  |   |/   |   \  /  /_\  \  /   |   \/    \  \/ |    __)_ 
 |     \   |   /    |    \/    |    \/    |    \     \____|        \
 \___  /   |___\____|__  /\____|__  /\____|__  /\______  /_______  /
     \/                \/         \/         \/        \/        \/ 
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.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;

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

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

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



pragma solidity ^0.6.2;

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

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



pragma solidity ^0.6.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;
    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) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.6.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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.6.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.
 */
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 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/AngryHippo.sol

pragma solidity 0.6.12;





contract AngryHippo is ERC20("AngryHippoV2", "aHIPPOv2"), Ownable {
    using SafeMath for uint256;

    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    // Addresses
    address public devAddress;
    address public fundAddress;

    // Reward
    uint256 public rewardPerBlock;
    uint256 public rewardPerBlockLP;

    // Rate of Reward
    uint256 public rateDevFee = 5;
    uint256 public rateReward = 75;
    uint256 public rateFund = 20;
    uint256 public start_block = 0;

    // Addresses for stake
    IERC20 public HippoToken;
    IERC20 public HippoLPToken;

    // Start?
    bool public isStart;


    // Stakeaddress
    struct stakeTracker {
        uint256 lastBlock;
        uint256 lastBlockLP;
        uint256 rewards;
        uint256 rewardsLP;
        uint256 stakedHIPPO;
        uint256 stakedHippoLP;
    }
    mapping(address => stakeTracker) public staked;

    // Amount
    uint256 private totalStakedAmount = 0; // for HIPPO
    uint256 private totalStakedAmountLP = 0; // for HIPPO/ETH


    constructor(
        address hippoToken,
        address _devAddress,
        address _fundAddress,
        uint256 _start_block
    ) public {
        _mint(msg.sender, 50000 * 1000000000000000000);
        devAddress = _devAddress;
        fundAddress = _fundAddress;
        rewardPerBlock = 2 * 1000000000000000000;
        rewardPerBlockLP = 3 * 1000000000000000000;
        start_block = _start_block;
        HippoToken = IERC20(address(hippoToken));
        isStart = false;
    }


    // Events
    event Staked(address indexed user, uint256 amount, uint256 total);
    event Unstaked(address indexed user, uint256 amount, uint256 total);
    event StakedLP(address indexed user, uint256 amount, uint256 total);
    event UnstakedLP(address indexed user, uint256 amount, uint256 total);
    event Rewards(address indexed user, uint256 amount);


    // Reward Updater
    modifier updateStakingReward(address account) {

        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlock;
        if(block.number > staked[account].lastBlock && totalStakedAmount != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlock);
            h = hippoReward.mul(staked[account].stakedHIPPO).div(totalStakedAmount);
            staked[account].rewards = staked[account].rewards.add(h);
            staked[account].lastBlock = block.number;
        }

        _;
    }


    // Reward Updater LP
    modifier updateStakingRewardLP(address account) {

        uint256 h = 0;
        uint256 lastBlockLP = staked[account].lastBlockLP;
        if(block.number > staked[account].lastBlockLP && totalStakedAmountLP != 0) {
            uint256 multiplier = block.number.sub(lastBlockLP);
            uint256 hippoReward = multiplier.mul(rewardPerBlockLP);
            h = hippoReward.mul(staked[account].stakedHippoLP).div(totalStakedAmountLP);
            staked[account].rewardsLP = staked[account].rewardsLP.add(h);
            staked[account].lastBlockLP = block.number;
        }

        _;
    }



    function setHippoToken(address _addr) public onlyOwner {
        HippoToken = IERC20(address(_addr));
    }

    function setHippoLPToken(address _addr) public onlyOwner {
        HippoLPToken = IERC20(address(_addr));
    }


    // Set Rewards both
    function setRewardPerBlockBoth(uint256 _hippo, uint256 _lp) public onlyOwner {
        rewardPerBlock = _hippo;
        rewardPerBlockLP = _lp;
    }

    // Set Reward Per Block
    function setRewardPerBlock(uint256 _amount) public onlyOwner {
        rewardPerBlock = _amount;
    }

    // Set Reward Per Block - LP
    function setRewardPerBlockLP(uint256 _amount) public onlyOwner {
        rewardPerBlockLP = _amount;
    }

    // Set Reward
    function setDevAddress(address addr) public onlyOwner {
        devAddress = addr;
    }

    // Set Funding Contract
    function setFundAddress(address addr) public onlyOwner {
        fundAddress = addr;
    }


    // Stake $HIPPO
    function stake(uint256 amount) public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(0 < amount, ":stake: Fund Error");
        totalStakedAmount = totalStakedAmount.add(amount);
        staked[msg.sender].stakedHIPPO = staked[msg.sender].stakedHIPPO.add(amount);
        HippoToken.safeTransferFrom(msg.sender, address(this), amount);
        staked[msg.sender].lastBlock = block.number;
        emit Staked(msg.sender, amount, totalStakedAmount);
    }

    // Unstake $HIPPO
    function unstake(uint256 amount) public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(amount <= staked[msg.sender].stakedHIPPO, ":unstake: Fund ERROR");
        require(0 < amount, ":unstake: Fund Error 2");
        totalStakedAmount = totalStakedAmount.sub(amount);
        staked[msg.sender].stakedHIPPO = staked[msg.sender].stakedHIPPO.sub(amount);
        HippoToken.safeTransfer(msg.sender, amount);
        staked[msg.sender].lastBlock = block.number;
        emit Unstaked(msg.sender, amount, totalStakedAmount);
    }

    // Claim
    function sendReward() public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(0 < staked[msg.sender].rewards, "More than 0");
        uint256 reward = staked[msg.sender].rewards;
        staked[msg.sender].rewards = 0;
        uint256 totalWeight = rateReward.add(rateDevFee).add(rateFund);
        // 75% to User
        _mint(msg.sender, reward.div(totalWeight).mul(rateReward));
        // 20% to Funding event
        _mint(fundAddress, reward.div(totalWeight).mul(rateFund));
        // 5% to DevFee
        _mint(devAddress, reward.div(totalWeight).mul(rateDevFee));
        emit Rewards(msg.sender, reward);
    }

    // Stake $HIPPO/ETH
    function stakeLP(uint256 amount) public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(0 < amount, ":stakeLP: Fund Error");
        totalStakedAmountLP = totalStakedAmountLP.add(amount);
        staked[msg.sender].stakedHippoLP = staked[msg.sender].stakedHippoLP.add(amount);
        HippoLPToken.safeTransferFrom(msg.sender, address(this), amount);
        staked[msg.sender].lastBlockLP = block.number;
        emit StakedLP(msg.sender, amount, totalStakedAmount);
    }

    // Unstake $HIPPO/ETH
    function unstakeLP(uint256 amount) public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(amount <= staked[msg.sender].stakedHippoLP, ":unstakeLP: Fund ERROR, amount <= stakedHippo");
        require(0 < amount, ":unstakeLP: Fund Error 2");
        totalStakedAmountLP = totalStakedAmountLP.sub(amount);
        staked[msg.sender].stakedHippoLP = staked[msg.sender].stakedHippoLP.sub(amount);
        HippoLPToken.safeTransfer(msg.sender, amount);
        staked[msg.sender].lastBlockLP = block.number;
        emit UnstakedLP(msg.sender, amount, totalStakedAmountLP);
    }    

    // Claim LP
    function sendRewardLP() public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(0 < staked[msg.sender].rewardsLP, "More than 0");
        uint256 reward = staked[msg.sender].rewardsLP;
        staked[msg.sender].rewardsLP = 0;
        uint256 totalWeight = rateReward.add(rateDevFee).add(rateFund);
        // 75% to User
        _mint(msg.sender, reward.div(totalWeight).mul(rateReward));
        // 20% to Funding event
        _mint(fundAddress, reward.div(totalWeight).mul(rateFund));
        // 5% to DevFee
        _mint(devAddress, reward.div(totalWeight).mul(rateDevFee));
        emit Rewards(msg.sender, reward);
    }

    function setStart() public onlyOwner {
        isStart = true;
    }

    // Get my reward
    function getHippoReward(address account) public view returns (uint256) {
        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlock;
        if(block.number > staked[account].lastBlock && totalStakedAmount != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlock);
            h = hippoReward.mul(staked[account].stakedHIPPO).div(totalStakedAmount);
        }
        return staked[account].rewards.add(h);
    }

    function getHippoLPReward(address account) public view returns (uint256) {
        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlockLP;
        if(block.number > staked[account].lastBlockLP && totalStakedAmountLP != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlockLP);
            h = hippoReward.mul(staked[account].stakedHippoLP).div(totalStakedAmountLP);
        }
        return staked[account].rewardsLP.add(h);
    }

    // Get staked amount of angry hippo
    function getStakedAmount(address _account) public view returns (uint256) {
        return staked[_account].stakedHIPPO;
    }
    
    // Get staked amount of angry hippo / eth
    function getStakedAmountOfLP(address _account) public view returns (uint256) {
        return staked[_account].stakedHippoLP;
    }

    // Get total staked aHIPPO
    function getTotalStakedAmount() public view returns (uint256) {
        return totalStakedAmount;
    }

    // Get total staked aHIPPO/ETH
    function getTotalStakedAmountLP() public view returns (uint256) {
        return totalStakedAmountLP;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"hippoToken","type":"address"},{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_fundAddress","type":"address"},{"internalType":"uint256","name":"_start_block","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Rewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"StakedLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"UnstakedLP","type":"event"},{"inputs":[],"name":"HippoLPToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HippoToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHippoLPReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHippoReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getStakedAmountOfLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalStakedAmountLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateFund","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerBlockLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendRewardLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHippoLPToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHippoToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hippo","type":"uint256"},{"internalType":"uint256","name":"_lp","type":"uint256"}],"name":"setRewardPerBlockBoth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardPerBlockLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"lastBlock","type":"uint256"},{"internalType":"uint256","name":"lastBlockLP","type":"uint256"},{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"rewardsLP","type":"uint256"},{"internalType":"uint256","name":"stakedHIPPO","type":"uint256"},{"internalType":"uint256","name":"stakedHippoLP","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstakeLP","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600a55604b600b556014600c556000600d55600060115560006012553480156200002f57600080fd5b50604051620039cf380380620039cf833981810160405260808110156200005557600080fd5b50805160208083015160408085015160609095015181518083018352600c81526b20b733b93ca434b83837ab1960a11b8186019081528351808501909452600884526730a424a82827bb1960c11b9584019590955280519596939593949193909291620000c691600391906200034c565b508051620000dc9060049060208401906200034c565b50506005805460ff19166012179055506000620000f8620001d2565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200016433690a968163f0a57b400000620001d6565b600680546001600160a01b039485166001600160a01b0319918216179091556007805493851693821693909317909255671bc16d674ec800006008556729a2241af62c0000600955600d55600e8054939092169216919091179055600f805460ff60a01b19169055620003e8565b3390565b6001600160a01b03821662000232576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200024060008383620002e5565b6200025c81600254620002ea60201b620029331790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200028f91839062002933620002ea821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000345576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200038f57805160ff1916838001178555620003bf565b82800160010185558215620003bf579182015b82811115620003bf578251825591602001919060010190620003a2565b50620003cd929150620003d1565b5090565b5b80821115620003cd5760008155600101620003d2565b6135d780620003f86000396000f3fe608060405234801561001057600080fd5b506004361061030a5760003560e01c80638da5cb5b1161019c578063b87fb3db116100ee578063d890da1511610097578063e5da2cb211610071578063e5da2cb2146108da578063e82bef29146108f7578063f2fde38b146108ff5761030a565b8063d890da1514610864578063dd62ed3e1461086c578063e3cd8b9d146108a75761030a565b8063c94fdb79116100c8578063c94fdb7914610821578063d0d41fe114610829578063d150d3201461085c5761030a565b8063b87fb3db146107df578063bb872b4a146107e7578063c4778998146108045761030a565b8063a442ecee11610150578063a694fc3a1161012a578063a694fc3a14610781578063a9059cbb1461079e578063adc2347b146107d75761030a565b8063a442ecee1461070d578063a457c2d714610715578063a677cd3d1461074e5761030a565b806398807d841161018157806398807d84146106975780639fd98de1146106fd578063a14c41b8146107055761030a565b80638da5cb5b1461068757806395d89b411461068f5761030a565b80633ad10ef61161026057806370a082311161020957806385dc3004116101e357806385dc3004146106445780638a55d36e146106775780638ae39cac1461067f5761030a565b806370a08231146105ec578063715018a61461061f5780637d43c50e146106275761030a565b80634da6a5561161023a5780634da6a5561461056357806351648b06146105965780636ed5d52c146105c95761030a565b80633ad10ef6146104f55780633f55b41d146104fd5780634ad2e517146105305761030a565b806323b872dd116102c257806335975a371161029c57806335975a37146104ac57806338adb6f0146104b457806339509351146104bc5761030a565b806323b872dd1461042e5780632e17de7814610471578063313ce5671461048e5761030a565b80631149a81a116102f35780631149a81a146103d957806318160ddd146103e35780632238b5c9146103fd5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610932565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109e6565b604080519115158252519081900360200190f35b6103e1610a04565b005b6103eb610d00565b60408051918252519081900360200190f35b610405610d06565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103c56004803603606081101561044457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610d22565b6103e16004803603602081101561048757600080fd5b5035610dc3565b6104966110eb565b6040805160ff9092168252519081900360200190f35b6103e16110f4565b6103eb6111cb565b6103c5600480360360408110156104d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111d1565b61040561122c565b6103e16004803603602081101561051357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611248565b6103e16004803603602081101561054657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611325565b6103eb6004803603602081101561057957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611402565b6103eb600480360360208110156105ac57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661142d565b6103e1600480360360408110156105df57600080fd5b5080359060200135611458565b6103eb6004803603602081101561060257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114f9565b6103e1611521565b6103e16004803603602081101561063d57600080fd5b503561162b565b6103e16004803603602081101561065a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116c6565b6103c56117a3565b6103eb6117c4565b6104056117ca565b6103176117eb565b6106ca600480360360208110156106ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186a565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103eb61189f565b6103eb6118a5565b6104056118ab565b6103c56004803603604081101561072b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118c7565b6103eb6004803603602081101561076457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193c565b6103e16004803603602081101561079757600080fd5b5035611a1f565b6103c5600480360360408110156107b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611cc7565b6103eb611cdb565b6103eb611ce1565b6103e1600480360360208110156107fd57600080fd5b5035611ce7565b6103e16004803603602081101561081a57600080fd5b5035611d82565b6103e161209f565b6103e16004803603602081101561083f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166122d1565b6103eb6123ae565b6103eb6123b4565b6103eb6004803603604081101561088257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166123ba565b6103eb600480360360208110156108bd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166123f2565b6103e1600480360360208110156108f057600080fd5b50356124ca565b61040561277d565b6103e16004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612799565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b60006109fa6109f36129ae565b84846129b2565b5060015b92915050565b336000818152601060205260408120544381108015610a24575060115415155b15610afb576000610a354383612af9565b90506000610a4e60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610a9291610a8c908490612b3b565b90612bae565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610ac89085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610b8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060020154610c0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600201805490829055600c54600a54600b54929392610c3b9291610c359190612933565b90612933565b9050610c6533610c60600b54610c5a8587612bae90919063ffffffff16565b90612b3b565b612bf0565b600754600c54610c949173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b600654600a54610cc39173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b60408051838152905133917fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a919081900360200190a25050505050565b60025490565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d2f848484612d21565b610db984610d3b6129ae565b610db4856040518060600160405280602881526020016134b56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610d866129ae565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612ef1565b6129b2565b5060019392505050565b336000818152601060205260408120544381108015610de3575060115415155b15610eb4576000610df44383612af9565b90506000610e0d60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610e4b91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610e819085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610f3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060040154841115610fbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a756e7374616b653a2046756e64204552524f52000000000000000000000000604482015290519081900360640190fd5b8360001061102d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f3a756e7374616b653a2046756e64204572726f72203200000000000000000000604482015290519081900360640190fd5b60115461103a9085612af9565b6011553360009081526010602052604090206004015461105a9085612af9565b33600081815260106020526040902060040191909155600e546110969173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b3360008181526010602090815260409182902043905560115482518881529182015281517f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e929181900390910190a250505050565b60055460ff1690565b6110fc6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461118a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60115490565b60006109fa6111de6129ae565b84610db485600160006111ef6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612933565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6112506129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146112de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61132d6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146113bb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206004015490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206005015490565b6114606129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146114ee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600891909155600955565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6115296129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146115b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6116336129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146116c157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6116ce6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461175c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b601060205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b600b5481565b600c5481565b600f5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109fa6118d46129ae565b84610db48560405180606001604052806025815260200161357d60259139600160006118fe6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff811660009081526010602052604081206001015481904381108015611977575060125415155b156119e45760006119884383612af9565b905060006119a160095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff88166000908152601060205260409020600501549192506119df91610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060030154611a179083612933565b949350505050565b336000818152601060205260408120544381108015611a3f575060115415155b15611b10576000611a504383612af9565b90506000611a6960085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250611aa791610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450611add9085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16611b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b83600010611c0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f3a7374616b653a2046756e64204572726f720000000000000000000000000000604482015290519081900360640190fd5b601154611c159085612933565b60115533600090815260106020526040902060040154611c359085612933565b33600081815260106020526040902060040191909155600e54611c729173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b3360008181526010602090815260409182902043905560115482518881529182015281517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee90929181900390910190a250505050565b60006109fa611cd46129ae565b8484612d21565b60095481565b600d5481565b611cef6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff908116911614611d7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b336000818152601060205260408120600101544381108015611da5575060125415155b15611e7a576000611db64383612af9565b90506000611dcf60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060050154919250611e0d91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060030154909450611e439085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff16611f0357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060050154841115611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613526602d913960400191505060405180910390fd5b83600010611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f3a756e7374616b654c503a2046756e64204572726f7220320000000000000000604482015290519081900360640190fd5b601254611fea9085612af9565b6012553360009081526010602052604090206005015461200a9085612af9565b33600081815260106020526040902060050191909155600f546120469173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b336000818152601060209081526040918290204360019091015560125482518881529182015281517f0a0035bf4ccb68b30fd60b18335e5f1de41ba7f32ec99133192c40b2af5ddf2a929181900390910190a250505050565b3360008181526010602052604081206001015443811080156120c2575060125415155b156121975760006120d34383612af9565b905060006120ec60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061212a91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600301549094506121609085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661222057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b3360009081526010602052604090206003015461229e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600301805490829055600c54600a54600b54929392610c3b9291610c359190612933565b6122d96129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461236757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5481565b60125490565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601060205260408120548190438110801561242a575060115415155b1561249757600061243b4383612af9565b9050600061245460085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff881660009081526010602052604090206004015491925061249291610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060020154611a179083612933565b3360008181526010602052604081206001015443811080156124ed575060125415155b156125c25760006124fe4383612af9565b9050600061251760095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061255591610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526010602052604090206003015490945061258b9085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661264b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b836000106126ba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a7374616b654c503a2046756e64204572726f72000000000000000000000000604482015290519081900360640190fd5b6012546126c79085612933565b601255336000908152601060205260409020600501546126e79085612933565b33600081815260106020526040902060050191909155600f546127249173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b336000818152601060209081526040918290204360019091015560115482518881529182015281517fb7b233b6521c7f0372a87c02ad816107c5cbe56f7a82c3607d13bb14579fa05d929181900390910190a250505050565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b6127a16129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461282f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000828201838110156129a757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612a1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806135026024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061344c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006129a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ef1565b600082612b4a575060006109fe565b82820282848281612b5757fe5b04146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134946021913960400191505060405180910390fd5b60006129a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130cf565b73ffffffffffffffffffffffffffffffffffffffff8216612c7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612c7e6000838361302f565b600254612c8b9082612933565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612cbe9082612933565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316612d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134dd6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134036023913960400191505060405180910390fd5b612e0483838361302f565b612e4e8160405180606001604052806026815260200161346e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612e8a9082612933565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f5f578181015183820152602001612f47565b50505050905090810190601f168015612f8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261302f90849061314e565b505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526130c990859061314e565b50505050565b60008183613138576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612f5f578181015183820152602001612f47565b50600083858161314457fe5b0495945050505050565b60606131b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132269092919063ffffffff16565b80519091501561302f578080602001905160208110156131cf57600080fd5b505161302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613553602a913960400191505060405180910390fd5b6060611a178484600085606061323b856133fc565b6132a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061331057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016132d3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b5091509150811561338b579150611a179050565b80511561339b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315612f5f578181015183820152602001612f47565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573733a756e7374616b654c503a2046756e64204552524f522c20616d6f756e74203c3d207374616b6564486970706f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220164853b4a5cb8448bdbd12336bfb9c59f2b1bce232b82531e611404fc08c798264736f6c634300060c003300000000000000000000000081313f7c5c9c824236c9e4cba3ac4b049986e756000000000000000000000000811940e927d30129929014715f56833d9c2a406e000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c000000000000000000000000000000000000000000000000000000000002a300

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030a5760003560e01c80638da5cb5b1161019c578063b87fb3db116100ee578063d890da1511610097578063e5da2cb211610071578063e5da2cb2146108da578063e82bef29146108f7578063f2fde38b146108ff5761030a565b8063d890da1514610864578063dd62ed3e1461086c578063e3cd8b9d146108a75761030a565b8063c94fdb79116100c8578063c94fdb7914610821578063d0d41fe114610829578063d150d3201461085c5761030a565b8063b87fb3db146107df578063bb872b4a146107e7578063c4778998146108045761030a565b8063a442ecee11610150578063a694fc3a1161012a578063a694fc3a14610781578063a9059cbb1461079e578063adc2347b146107d75761030a565b8063a442ecee1461070d578063a457c2d714610715578063a677cd3d1461074e5761030a565b806398807d841161018157806398807d84146106975780639fd98de1146106fd578063a14c41b8146107055761030a565b80638da5cb5b1461068757806395d89b411461068f5761030a565b80633ad10ef61161026057806370a082311161020957806385dc3004116101e357806385dc3004146106445780638a55d36e146106775780638ae39cac1461067f5761030a565b806370a08231146105ec578063715018a61461061f5780637d43c50e146106275761030a565b80634da6a5561161023a5780634da6a5561461056357806351648b06146105965780636ed5d52c146105c95761030a565b80633ad10ef6146104f55780633f55b41d146104fd5780634ad2e517146105305761030a565b806323b872dd116102c257806335975a371161029c57806335975a37146104ac57806338adb6f0146104b457806339509351146104bc5761030a565b806323b872dd1461042e5780632e17de7814610471578063313ce5671461048e5761030a565b80631149a81a116102f35780631149a81a146103d957806318160ddd146103e35780632238b5c9146103fd5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610932565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109e6565b604080519115158252519081900360200190f35b6103e1610a04565b005b6103eb610d00565b60408051918252519081900360200190f35b610405610d06565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103c56004803603606081101561044457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610d22565b6103e16004803603602081101561048757600080fd5b5035610dc3565b6104966110eb565b6040805160ff9092168252519081900360200190f35b6103e16110f4565b6103eb6111cb565b6103c5600480360360408110156104d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111d1565b61040561122c565b6103e16004803603602081101561051357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611248565b6103e16004803603602081101561054657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611325565b6103eb6004803603602081101561057957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611402565b6103eb600480360360208110156105ac57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661142d565b6103e1600480360360408110156105df57600080fd5b5080359060200135611458565b6103eb6004803603602081101561060257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114f9565b6103e1611521565b6103e16004803603602081101561063d57600080fd5b503561162b565b6103e16004803603602081101561065a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116c6565b6103c56117a3565b6103eb6117c4565b6104056117ca565b6103176117eb565b6106ca600480360360208110156106ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186a565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103eb61189f565b6103eb6118a5565b6104056118ab565b6103c56004803603604081101561072b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118c7565b6103eb6004803603602081101561076457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193c565b6103e16004803603602081101561079757600080fd5b5035611a1f565b6103c5600480360360408110156107b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611cc7565b6103eb611cdb565b6103eb611ce1565b6103e1600480360360208110156107fd57600080fd5b5035611ce7565b6103e16004803603602081101561081a57600080fd5b5035611d82565b6103e161209f565b6103e16004803603602081101561083f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166122d1565b6103eb6123ae565b6103eb6123b4565b6103eb6004803603604081101561088257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166123ba565b6103eb600480360360208110156108bd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166123f2565b6103e1600480360360208110156108f057600080fd5b50356124ca565b61040561277d565b6103e16004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612799565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b60006109fa6109f36129ae565b84846129b2565b5060015b92915050565b336000818152601060205260408120544381108015610a24575060115415155b15610afb576000610a354383612af9565b90506000610a4e60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610a9291610a8c908490612b3b565b90612bae565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610ac89085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610b8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060020154610c0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600201805490829055600c54600a54600b54929392610c3b9291610c359190612933565b90612933565b9050610c6533610c60600b54610c5a8587612bae90919063ffffffff16565b90612b3b565b612bf0565b600754600c54610c949173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b600654600a54610cc39173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b60408051838152905133917fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a919081900360200190a25050505050565b60025490565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d2f848484612d21565b610db984610d3b6129ae565b610db4856040518060600160405280602881526020016134b56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610d866129ae565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612ef1565b6129b2565b5060019392505050565b336000818152601060205260408120544381108015610de3575060115415155b15610eb4576000610df44383612af9565b90506000610e0d60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610e4b91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610e819085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610f3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060040154841115610fbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a756e7374616b653a2046756e64204552524f52000000000000000000000000604482015290519081900360640190fd5b8360001061102d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f3a756e7374616b653a2046756e64204572726f72203200000000000000000000604482015290519081900360640190fd5b60115461103a9085612af9565b6011553360009081526010602052604090206004015461105a9085612af9565b33600081815260106020526040902060040191909155600e546110969173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b3360008181526010602090815260409182902043905560115482518881529182015281517f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e929181900390910190a250505050565b60055460ff1690565b6110fc6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461118a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60115490565b60006109fa6111de6129ae565b84610db485600160006111ef6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612933565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6112506129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146112de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61132d6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146113bb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206004015490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206005015490565b6114606129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146114ee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600891909155600955565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6115296129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146115b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6116336129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146116c157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6116ce6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461175c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b601060205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b600b5481565b600c5481565b600f5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109fa6118d46129ae565b84610db48560405180606001604052806025815260200161357d60259139600160006118fe6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff811660009081526010602052604081206001015481904381108015611977575060125415155b156119e45760006119884383612af9565b905060006119a160095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff88166000908152601060205260409020600501549192506119df91610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060030154611a179083612933565b949350505050565b336000818152601060205260408120544381108015611a3f575060115415155b15611b10576000611a504383612af9565b90506000611a6960085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250611aa791610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450611add9085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16611b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b83600010611c0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f3a7374616b653a2046756e64204572726f720000000000000000000000000000604482015290519081900360640190fd5b601154611c159085612933565b60115533600090815260106020526040902060040154611c359085612933565b33600081815260106020526040902060040191909155600e54611c729173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b3360008181526010602090815260409182902043905560115482518881529182015281517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee90929181900390910190a250505050565b60006109fa611cd46129ae565b8484612d21565b60095481565b600d5481565b611cef6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff908116911614611d7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b336000818152601060205260408120600101544381108015611da5575060125415155b15611e7a576000611db64383612af9565b90506000611dcf60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060050154919250611e0d91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060030154909450611e439085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff16611f0357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060050154841115611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613526602d913960400191505060405180910390fd5b83600010611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f3a756e7374616b654c503a2046756e64204572726f7220320000000000000000604482015290519081900360640190fd5b601254611fea9085612af9565b6012553360009081526010602052604090206005015461200a9085612af9565b33600081815260106020526040902060050191909155600f546120469173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b336000818152601060209081526040918290204360019091015560125482518881529182015281517f0a0035bf4ccb68b30fd60b18335e5f1de41ba7f32ec99133192c40b2af5ddf2a929181900390910190a250505050565b3360008181526010602052604081206001015443811080156120c2575060125415155b156121975760006120d34383612af9565b905060006120ec60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061212a91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600301549094506121609085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661222057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b3360009081526010602052604090206003015461229e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600301805490829055600c54600a54600b54929392610c3b9291610c359190612933565b6122d96129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461236757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5481565b60125490565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601060205260408120548190438110801561242a575060115415155b1561249757600061243b4383612af9565b9050600061245460085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff881660009081526010602052604090206004015491925061249291610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060020154611a179083612933565b3360008181526010602052604081206001015443811080156124ed575060125415155b156125c25760006124fe4383612af9565b9050600061251760095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061255591610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526010602052604090206003015490945061258b9085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661264b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b836000106126ba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a7374616b654c503a2046756e64204572726f72000000000000000000000000604482015290519081900360640190fd5b6012546126c79085612933565b601255336000908152601060205260409020600501546126e79085612933565b33600081815260106020526040902060050191909155600f546127249173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b336000818152601060209081526040918290204360019091015560115482518881529182015281517fb7b233b6521c7f0372a87c02ad816107c5cbe56f7a82c3607d13bb14579fa05d929181900390910190a250505050565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b6127a16129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461282f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000828201838110156129a757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612a1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806135026024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061344c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006129a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ef1565b600082612b4a575060006109fe565b82820282848281612b5757fe5b04146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134946021913960400191505060405180910390fd5b60006129a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130cf565b73ffffffffffffffffffffffffffffffffffffffff8216612c7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612c7e6000838361302f565b600254612c8b9082612933565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612cbe9082612933565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316612d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134dd6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134036023913960400191505060405180910390fd5b612e0483838361302f565b612e4e8160405180606001604052806026815260200161346e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612e8a9082612933565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f5f578181015183820152602001612f47565b50505050905090810190601f168015612f8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261302f90849061314e565b505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526130c990859061314e565b50505050565b60008183613138576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612f5f578181015183820152602001612f47565b50600083858161314457fe5b0495945050505050565b60606131b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132269092919063ffffffff16565b80519091501561302f578080602001905160208110156131cf57600080fd5b505161302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613553602a913960400191505060405180910390fd5b6060611a178484600085606061323b856133fc565b6132a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061331057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016132d3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b5091509150811561338b579150611a179050565b80511561339b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315612f5f578181015183820152602001612f47565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573733a756e7374616b654c503a2046756e64204552524f522c20616d6f756e74203c3d207374616b6564486970706f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220164853b4a5cb8448bdbd12336bfb9c59f2b1bce232b82531e611404fc08c798264736f6c634300060c0033

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

00000000000000000000000081313f7c5c9c824236c9e4cba3ac4b049986e756000000000000000000000000811940e927d30129929014715f56833d9c2a406e000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c000000000000000000000000000000000000000000000000000000000002a300

-----Decoded View---------------
Arg [0] : hippoToken (address): 0x81313f7c5c9C824236c9E4cba3AC4B049986E756
Arg [1] : _devAddress (address): 0x811940E927D30129929014715f56833D9C2a406e
Arg [2] : _fundAddress (address): 0xd6Bd6Feaeb82a53C473Ca5206Ba4a990Cc5a632c
Arg [3] : _start_block (uint256): 172800

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000081313f7c5c9c824236c9e4cba3ac4b049986e756
Arg [1] : 000000000000000000000000811940e927d30129929014715f56833d9c2a406e
Arg [2] : 000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c
Arg [3] : 000000000000000000000000000000000000000000000000000000000002a300


Deployed Bytecode Sourcemap

33194:9801:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18286:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20392:169;;;;;;;;;;;;;;;;-1:-1:-1;20392:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38551:675;;;:::i;:::-;;19361:100;;;:::i;:::-;;;;;;;;;;;;;;;;33744:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21035:321;;;;;;;;;;;;;;;;-1:-1:-1;21035:321:0;;;;;;;;;;;;;;;;;;:::i;37950:579::-;;;;;;;;;;;;;;;;-1:-1:-1;37950:579:0;;:::i;19213:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41170:70;;;:::i;42734:105::-;;;:::i;21765:218::-;;;;;;;;;;;;;;;;-1:-1:-1;21765:218:0;;;;;;;;;:::i;33388:25::-;;;:::i;36428:109::-;;;;;;;;;;;;;;;;-1:-1:-1;36428:109:0;;;;:::i;36545:113::-;;;;;;;;;;;;;;;;-1:-1:-1;36545:113:0;;;;:::i;42375:127::-;;;;;;;;;;;;;;;;-1:-1:-1;42375:127:0;;;;:::i;42561:133::-;;;;;;;;;;;;;;;;-1:-1:-1;42561:133:0;;;;:::i;36693:152::-;;;;;;;;;;;;;;;;-1:-1:-1;36693:152:0;;;;;;;:::i;19524:119::-;;;;;;;;;;;;;;;;-1:-1:-1;19524:119:0;;;;:::i;32568:148::-;;;:::i;37028:108::-;;;;;;;;;;;;;;;;-1:-1:-1;37028:108:0;;:::i;37290:92::-;;;;;;;;;;;;;;;;-1:-1:-1;37290:92:0;;;;:::i;33825:19::-;;;:::i;33470:29::-;;;:::i;31926:79::-;;;:::i;18488:87::-;;;:::i;34084:46::-;;;;;;;;;;;;;;;;-1:-1:-1;34084:46:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33605:30;;;:::i;33642:28::-;;;:::i;33775:26::-;;;:::i;22486:269::-;;;;;;;;;;;;;;;;-1:-1:-1;22486:269:0;;;;;;;;;:::i;41794:532::-;;;;;;;;;;;;;;;;-1:-1:-1;41794:532:0;;;;:::i;37413:506::-;;;;;;;;;;;;;;;;-1:-1:-1;37413:506:0;;:::i;19856:175::-;;;;;;;;;;;;;;;;-1:-1:-1;19856:175:0;;;;;;;;;:::i;33506:31::-;;;:::i;33677:30::-;;;:::i;36882:104::-;;;;;;;;;;;;;;;;-1:-1:-1;36882:104:0;;:::i;39820:628::-;;;;;;;;;;;;;;;;-1:-1:-1;39820:628:0;;:::i;40477:685::-;;;:::i;37163:90::-;;;;;;;;;;;;;;;;-1:-1:-1;37163:90:0;;;;:::i;33569:29::-;;;:::i;42883:109::-;;;:::i;20094:151::-;;;;;;;;;;;;;;;;-1:-1:-1;20094:151:0;;;;;;;;;;;:::i;41270:516::-;;;;;;;;;;;;;;;;-1:-1:-1;41270:516:0;;;;:::i;39259:526::-;;;;;;;;;;;;;;;;-1:-1:-1;39259:526:0;;:::i;33420:26::-;;;:::i;32871:244::-;;;;;;;;;;;;;;;;-1:-1:-1;32871:244:0;;;;:::i;18286:83::-;18356:5;18349:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18323:13;;18349:12;;18356:5;;18349:12;;18356:5;18349:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18286:83;:::o;20392:169::-;20475:4;20492:39;20501:12;:10;:12::i;:::-;20515:7;20524:6;20492:8;:39::i;:::-;-1:-1:-1;20549:4:0;20392:169;;;;;:::o;38551:675::-;38600:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:::-;:48;;:67::i;:::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;38631:7:::1;::::0;;;::::1;;;38623:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38684:10;38677:18;::::0;;;:6:::1;:18;::::0;;;;:26:::1;;::::0;38665:54:::1;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38754:10;38730:14;38747:18:::0;;;:6:::1;:18;::::0;;;;:26:::1;;::::0;;38784:30;;;;38878:8:::1;::::0;38862:10:::1;::::0;38847::::1;::::0;38747:26;;38730:14;38847:40:::1;::::0;38878:8;38847:26:::1;::::0;:10;:14:::1;:26::i;:::-;:30:::0;::::1;:40::i;:::-;38825:62;;38922:58;38928:10;38940:39;38968:10;;38940:23;38951:11;38940:6;:10;;:23;;;;:::i;:::-;:27:::0;::::1;:39::i;:::-;38922:5;:58::i;:::-;39030:11;::::0;39071:8:::1;::::0;39024:57:::1;::::0;39030:11:::1;;::::0;39043:37:::1;::::0;:23:::1;:6:::0;39054:11;39043:10:::1;:23::i;39024:57::-;39123:10;::::0;39163::::1;::::0;39117:58:::1;::::0;39123:10:::1;;::::0;39135:39:::1;::::0;:23:::1;:6:::0;39146:11;39135:10:::1;:23::i;39117:58::-;39191:27;::::0;;;;;;;39199:10:::1;::::0;39191:27:::1;::::0;;;;;::::1;::::0;;::::1;35762:1;;38551:675:::0;;;:::o;19361:100::-;19441:12;;19361:100;:::o;33744:24::-;;;;;;:::o;21035:321::-;21141:4;21158:36;21168:6;21176:9;21187:6;21158:9;:36::i;:::-;21205:121;21214:6;21222:12;:10;:12::i;:::-;21236:89;21274:6;21236:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;21256:12;:10;:12::i;:::-;21236:33;;;;;;;;;;;;;-1:-1:-1;21236:33:0;;;:89;:37;:89::i;:::-;21205:8;:121::i;:::-;-1:-1:-1;21344:4:0;21035:321;;;;;:::o;37950:579::-;38010:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:67::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;38041:7:::1;::::0;;;::::1;;;38033:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38100:10;38093:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;38083:40;::::1;;38075:73;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38171:6;38167:1;:10;38159:45;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38235:17;::::0;:29:::1;::::0;38257:6;38235:21:::1;:29::i;:::-;38215:17;:49:::0;38315:10:::1;38308:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;:42:::1;::::0;38343:6;38308:34:::1;:42::i;:::-;38282:10;38275:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;:75:::0;;;;38361:10:::1;::::0;:43:::1;::::0;38275:18:::1;38361:10:::0;;::::1;::::0;38397:6;38361:23:::1;:43::i;:::-;38422:10;38415:18;::::0;;;:6:::1;:18;::::0;;;;;;;;38446:12:::1;38415:43:::0;;38503:17:::1;::::0;38474:47;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;37950:579:::0;;;;:::o;19213:83::-;19279:9;;;;19213:83;:::o;41170:70::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41218:7:::1;:14:::0;;;::::1;::::0;::::1;::::0;;41170:70::o;42734:105::-;42814:17;;42734:105;:::o;21765:218::-;21853:4;21870:83;21879:12;:10;:12::i;:::-;21893:7;21902:50;21941:10;21902:11;:25;21914:12;:10;:12::i;:::-;21902:25;;;;;;;;;;;;;;;;;;-1:-1:-1;21902:25:0;;;:34;;;;;;;;;;;:38;:50::i;33388:25::-;;;;;;:::o;36428:109::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36494:10:::1;:35:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;36428:109::o;36545:113::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36613:12:::1;:37:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;36545:113::o;42375:127::-;42466:16;;42439:7;42466:16;;;:6;:16;;;;;:28;;;;42375:127::o;42561:133::-;42656:16;;42629:7;42656:16;;;:6;:16;;;;;:30;;;;42561:133::o;36693:152::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36781:14:::1;:23:::0;;;;36815:16:::1;:22:::0;36693:152::o;19524:119::-;19617:18;;19590:7;19617:18;;;;;;;;;;;;19524:119::o;32568:148::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32659:6:::1;::::0;32638:40:::1;::::0;32675:1:::1;::::0;32659:6:::1;::::0;::::1;32638:40;32659:6;::::0;32638:40:::1;::::0;32675:1;;32638:40:::1;32689:6;:19:::0;;;::::1;::::0;;32568:148::o;37028:108::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37102:16:::1;:26:::0;37028:108::o;37290:92::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37356:11:::1;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37290:92::o;33825:19::-;;;;;;;;;:::o;33470:29::-;;;;:::o;31926:79::-;31991:6;;;;;;;;31926:79::o;18488:87::-;18560:7;18553:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18527:13;;18553:14;;18560:7;;18553:14;;18560:7;18553:14;;;;;;;;;;;;;;;;;;;;;;;;34084:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33605:30::-;;;;:::o;33642:28::-;;;;:::o;33775:26::-;;;;;;:::o;22486:269::-;22579:4;22596:129;22605:12;:10;:12::i;:::-;22619:7;22628:96;22667:15;22628:96;;;;;;;;;;;;;;;;;:11;:25;22640:12;:10;:12::i;:::-;22628:25;;;;;;;;;;;;;;;;;;-1:-1:-1;22628:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;41794:532::-;41922:15;;;41858:7;41922:15;;;:6;:15;;;;;:27;;;41858:7;;41963:12;:42;-1:-1:-1;41963:70:0;;;;-1:-1:-1;42009:19:0;;:24;;41963:70;41960:309;;;42050:18;42071:27;:12;42088:9;42071:16;:27::i;:::-;42050:48;;42113:19;42135:32;42150:16;;42135:10;:14;;:32;;;;:::i;:::-;42237:19;;42202:15;;;;;;;:6;:15;;;;;:29;;;42113:54;;-1:-1:-1;42186:71:0;;:46;;42113:54;;42186:15;:46::i;:71::-;42182:75;;41960:309;;;42286:15;;;;;;;:6;:15;;;;;:25;;;:32;;42316:1;42286:29;:32::i;:::-;42279:39;41794:532;-1:-1:-1;;;;41794:532:0:o;37413:506::-;37471:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:67::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;37502:7:::1;::::0;;;::::1;;;37494:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37548:6;37544:1;:10;37536:41;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37608:17;::::0;:29:::1;::::0;37630:6;37608:21:::1;:29::i;:::-;37588:17;:49:::0;37688:10:::1;37681:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;:42:::1;::::0;37716:6;37681:34:::1;:42::i;:::-;37655:10;37648:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;:75:::0;;;;37734:10:::1;::::0;:62:::1;::::0;37648:18:::1;37734:10:::0;;::::1;::::0;37782:4:::1;37789:6:::0;37734:27:::1;:62::i;:::-;37814:10;37807:18;::::0;;;:6:::1;:18;::::0;;;;;;;;37838:12:::1;37807:43:::0;;37893:17:::1;::::0;37866:45;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;37413:506:::0;;;;:::o;19856:175::-;19942:4;19959:42;19969:12;:10;:12::i;:::-;19983:9;19994:6;19959:9;:42::i;33506:31::-;;;;:::o;33677:30::-;;;;:::o;36882:104::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36954:14:::1;:24:::0;36882:104::o;39820:628::-;39884:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;39915:7:::1;::::0;;;::::1;;;39907:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39974:10;39967:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;39957:42;::::1;;39949:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40072:6;40068:1;:10;40060:47;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40140:19;::::0;:31:::1;::::0;40164:6;40140:23:::1;:31::i;:::-;40118:19;:53:::0;40224:10:::1;40217:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;:44:::1;::::0;40254:6;40217:36:::1;:44::i;:::-;40189:10;40182:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;:79:::0;;;;40272:12:::1;::::0;:45:::1;::::0;40182:18:::1;40272:12:::0;;::::1;::::0;40310:6;40272:25:::1;:45::i;:::-;40335:10;40328:18;::::0;;;:6:::1;:18;::::0;;;;;;;;40361:12:::1;40328:30;::::0;;::::1;:45:::0;40420:19:::1;::::0;40389:51;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;39820:628:::0;;;;:::o;40477:685::-;40530:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;40561:7:::1;::::0;;;::::1;;;40553:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40614:10;40607:18;::::0;;;:6:::1;:18;::::0;;;;:28:::1;;::::0;40595:56:::1;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40686:10;40662:14;40679:18:::0;;;:6:::1;:18;::::0;;;;:28:::1;;::::0;;40718:32;;;;40814:8:::1;::::0;40798:10:::1;::::0;40783::::1;::::0;40679:28;;40662:14;40783:40:::1;::::0;40814:8;40783:26:::1;::::0;:10;:14:::1;:26::i;37163:90::-:0;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37228:10:::1;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37163:90::o;33569:29::-;;;;:::o;42883:109::-;42965:19;;42883:109;:::o;20094:151::-;20210:18;;;;20183:7;20210:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20094:151::o;41270:516::-;41396:15;;;41332:7;41396:15;;;:6;:15;;;;;:25;41332:7;;41435:12;:40;-1:-1:-1;41435:66:0;;;;-1:-1:-1;41479:17:0;;:22;;41435:66;41432:299;;;41518:18;41539:27;:12;41556:9;41539:16;:27::i;:::-;41518:48;;41581:19;41603:30;41618:14;;41603:10;:14;;:30;;;;:::i;:::-;41701:17;;41668:15;;;;;;;:6;:15;;;;;:27;;;41581:52;;-1:-1:-1;41652:67:0;;:44;;41581:52;;41652:15;:44::i;:67::-;41648:71;;41432:299;;;41748:15;;;;;;;:6;:15;;;;;:23;;;:30;;41776:1;41748:27;:30::i;39259:526::-;39321:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;39352:7:::1;::::0;;;::::1;;;39344:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39398:6;39394:1;:10;39386:43;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39462:19;::::0;:31:::1;::::0;39486:6;39462:23:::1;:31::i;:::-;39440:19;:53:::0;39546:10:::1;39539:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;:44:::1;::::0;39576:6;39539:36:::1;:44::i;:::-;39511:10;39504:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;:79:::0;;;;39594:12:::1;::::0;:64:::1;::::0;39504:18:::1;39594:12:::0;;::::1;::::0;39644:4:::1;39651:6:::0;39594:29:::1;:64::i;:::-;39676:10;39669:18;::::0;;;:6:::1;:18;::::0;;;;;;;;39702:12:::1;39669:30;::::0;;::::1;:45:::0;39759:17:::1;::::0;39730:47;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;39259:526:::0;;;;:::o;33420:26::-;;;;;;:::o;32871:244::-;32148:12;:10;:12::i;:::-;32138:6;;;;;:22;:6;;;:22;;;32130:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32960:22:::1;::::0;::::1;32952:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33062:6;::::0;33041:38:::1;::::0;::::1;::::0;;::::1;::::0;33062:6:::1;::::0;::::1;;::::0;33041:38:::1;::::0;;;::::1;33090:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;32871:244::o;5589:181::-;5647:7;5679:5;;;5703:6;;;;5695:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5761:1;5589:181;-1:-1:-1;;;5589:181:0:o;1507:106::-;1595:10;1507:106;:::o;25631:346::-;25733:19;;;25725:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25812:21;;;25804:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25885:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25937:32;;;;;;;;;;;;;;;;;25631:346;;;:::o;6053:136::-;6111:7;6138:43;6142:1;6145;6138:43;;;;;;;;;;;;;;;;;:3;:43::i;6943:471::-;7001:7;7246:6;7242:47;;-1:-1:-1;7276:1:0;7269:8;;7242:47;7313:5;;;7317:1;7313;:5;:1;7337:5;;;;;:10;7329:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7890:132;7948:7;7975:39;7979:1;7982;7975:39;;;;;;;;;;;;;;;;;:3;:39::i;24065:378::-;24149:21;;;24141:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24219:49;24248:1;24252:7;24261:6;24219:20;:49::i;:::-;24296:12;;:24;;24313:6;24296:16;:24::i;:::-;24281:12;:39;24352:18;;;:9;:18;;;;;;;;;;;:30;;24375:6;24352:22;:30::i;:::-;24331:18;;;:9;:18;;;;;;;;;;;:51;;;;24398:37;;;;;;;24331:18;;:9;;24398:37;;;;;;;;;;24065:378;;:::o;23245:539::-;23351:20;;;23343:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23432:23;;;23424:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23508:47;23529:6;23537:9;23548:6;23508:20;:47::i;:::-;23588:71;23610:6;23588:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;23568:17;;;;:9;:17;;;;;;;;;;;:91;;;;23693:20;;;;;;;:32;;23718:6;23693:24;:32::i;:::-;23670:20;;;;:9;:20;;;;;;;;;;;;:55;;;;23741:35;;;;;;;23670:20;;23741:35;;;;;;;;;;;;;23245:539;;;:::o;6492:192::-;6578:7;6614:12;6606:6;;;;6598:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6650:5:0;;;6492:192::o;27759:177::-;27869:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27892:23;27869:58;;;27842:86;;27862:5;;27842:19;:86::i;:::-;27759:177;;;:::o;27944:205::-;28072:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28095:27;28072:68;;;28045:96;;28065:5;;28045:19;:96::i;:::-;27944:205;;;;:::o;8518:278::-;8604:7;8639:12;8632:5;8624:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8663:9;8679:1;8675;:5;;;;;;;8518:278;-1:-1:-1;;;;;8518:278:0:o;30064:761::-;30488:23;30514:69;30542:4;30514:69;;;;;;;;;;;;;;;;;30522:5;30514:27;;;;:69;;;;;:::i;:::-;30598:17;;30488:95;;-1:-1:-1;30598:21:0;30594:224;;30740:10;30729:30;;;;;;;;;;;;;;;-1:-1:-1;30729:30:0;30721:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13733:196;13836:12;13868:53;13891:6;13899:4;13905:1;13908:12;15240;15273:18;15284:6;15273:10;:18::i;:::-;15265:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15399:12;15413:23;15440:6;:11;;15460:8;15471:4;15440:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15398:78;;;;15491:7;15487:595;;;15522:10;-1:-1:-1;15515:17:0;;-1:-1:-1;15515:17:0;15487:595;15636:17;;:21;15632:439;;15899:10;15893:17;15960:15;15947:10;15943:2;15939:19;15932:44;15847:148;16035:20;;;;;;;;;;;;;;;;;;;;16042:12;;16035:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10815:422;11182:20;11221:8;;;10815:422::o

Swarm Source

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