S Price: $0.497392 (+10.27%)
    /

    Token

    HOG-OS Autocompounder (HOGOS_ac)

    Overview

    Max Total Supply

    0 HOGOS_ac

    Holders

    0

    Total Transfers

    -

    Market

    Price

    $0.00 @ 0.000000 S

    Onchain Market Cap

    $0.00

    Circulating Supply Market Cap

    -

    Other Info

    Token Contract (WITH 18 Decimals)

    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information

    Similar Match Source Code
    This contract matches the deployed Bytecode of the Source Code for Contract 0x604707be...6F9a23F21
    The constructor portion of the code might be different and could alter the actual behaviour of the contract

    Contract Name:
    HogVault

    Compiler Version
    v0.8.26+commit.8a97fa7a

    Optimization Enabled:
    Yes with 200 runs

    Other Settings:
    paris EvmVersion
    File 1 of 12 : HogVault.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    pragma solidity ^0.8.0;
    import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    import "@openzeppelin/contracts/utils/math/SafeMath.sol";
    import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
    import "@openzeppelin/contracts/access/Ownable.sol";
    import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
    import {IStrategy} from "../interfaces/IStrategy.sol";
    /**
    * @dev Implementation of a vault to deposit funds for yield optimizing.
    * This is the contract that receives funds and that users interface with.
    * The yield optimizing strategy itself is implemented in a separate 'Strategy.sol' contract.
    */
    contract HogVault is ERC20, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    struct StratCandidate {
    address implementation;
    uint proposedTime;
    }
    // The last proposed strategy to switch to.
    StratCandidate public stratCandidate;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 12 : Ownable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
    pragma solidity ^0.8.0;
    import "../utils/Context.sol";
    /**
    * @dev Contract module which provides a basic access control mechanism, where
    * there is an account (an owner) that can be granted exclusive access to
    * specific functions.
    *
    * By default, the owner account will be the one that deploys the contract. This
    * can later be changed with {transferOwnership}.
    *
    * This module is used through inheritance. It will make available the modifier
    * `onlyOwner`, which can be applied to your functions to restrict their use to
    * the owner.
    */
    abstract contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 12 : ReentrancyGuard.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Contract module that helps prevent reentrant calls to a function.
    *
    * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
    * available, which can be applied to functions to make sure there are no nested
    * (reentrant) calls to them.
    *
    * Note that because there is a single `nonReentrant` guard, functions marked as
    * `nonReentrant` may not call one another. This can be worked around by making
    * those functions `private`, and then adding `external` `nonReentrant` entry
    * points to them.
    *
    * TIP: If you would like to learn more about reentrancy and alternative ways
    * to protect against it, check out our blog post
    * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
    */
    abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 12 : ERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
    pragma solidity ^0.8.0;
    import "./IERC20.sol";
    import "./extensions/IERC20Metadata.sol";
    import "../../utils/Context.sol";
    /**
    * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
    * to implement supply mechanisms].
    *
    * The default value of {decimals} is 18. To change this, you should override
    * this function so it returns a different value.
    *
    * We have followed general OpenZeppelin Contracts guidelines: functions revert
    * instead returning `false` on failure. This behavior is nonetheless
    * conventional and does not conflict with the expectations of ERC20
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 12 : IERC20Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
    pragma solidity ^0.8.0;
    import "../IERC20.sol";
    /**
    * @dev Interface for the optional metadata functions from the ERC20 standard.
    *
    * _Available since v4.1._
    */
    interface IERC20Metadata is IERC20 {
    /**
    * @dev Returns the name of the token.
    */
    function name() external view returns (string memory);
    /**
    * @dev Returns the symbol of the token.
    */
    function symbol() external view returns (string memory);
    /**
    * @dev Returns the decimals places of the token.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 12 : IERC20Permit.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
    * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
    *
    * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
    * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
    * need to send a transaction, and thus is not required to hold Ether at all.
    *
    * ==== Security Considerations
    *
    * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
    * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
    * considered as an intention to spend the allowance in any specific way. The second is that because permits have
    * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
    * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
    * generally recommended is:
    *
    * ```solidity
    * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
    * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
    * doThing(..., value);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 12 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Interface of the ERC20 standard as defined in the EIP.
    */
    interface IERC20 {
    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
    * @dev Emitted when the allowance of a `spender` for an `owner` is set by
    * a call to {approve}. `value` is the new allowance.
    */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
    * @dev Returns the amount of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 12 : SafeERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)
    pragma solidity ^0.8.0;
    import "../IERC20.sol";
    import "../extensions/IERC20Permit.sol";
    import "../../../utils/Address.sol";
    /**
    * @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 Address for address;
    /**
    * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
    * non-reverting calls are assumed to be successful.
    */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 12 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
    pragma solidity ^0.8.1;
    /**
    * @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
    *
    * Furthermore, `isContract` will also return true if the target contract within
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 12 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Provides information about the current execution context, including the
    * sender of the transaction and its data. While these are generally available
    * via msg.sender and msg.data, they should not be accessed in such a direct
    * manner, since when dealing with meta-transactions the account sending and
    * paying for execution may not be the actual sender (as far as an application
    * is concerned).
    *
    * This contract is only required for intermediate, library-like contracts.
    */
    abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
    return msg.sender;
    }
    function _msgData() internal view virtual returns (bytes calldata) {
    return msg.data;
    }
    function _contextSuffixLength() internal view virtual returns (uint256) {
    return 0;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 12 : SafeMath.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
    pragma solidity ^0.8.0;
    // CAUTION
    // This version of SafeMath should only be used with Solidity 0.8 or later,
    // because it relies on the compiler's built in overflow checks.
    /**
    * @dev Wrappers over Solidity's arithmetic operations.
    *
    * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
    * now has built in overflow checking.
    */
    library SafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, with an overflow flag.
    *
    * _Available since v3.4._
    */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
    uint256 c = a + b;
    if (c < a) return (false, 0);
    return (true, c);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 12 : IStrategy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    pragma solidity ^0.8.0;
    interface IStrategy {
    //deposits all funds into the farm
    function deposit() external;
    //vault only - withdraws funds from the strategy
    function withdraw(uint256 _amount) external;
    //returns the balance of all tokens managed by the strategy
    function balanceOf() external view returns (uint256);
    //claims farmed tokens, distributes fees, and sells tokens to re-add to the LP & farm
    function harvest() external;
    //withdraws all tokens and sends them back to the vault
    function retireStrat() external;
    //pauses deposits, resets allowances, and withdraws all funds from farm
    function panic() external;
    //pauses deposits and resets allowances
    function pause() external;
    //unpauses deposits and maxes out allowances again
    function unpause() external;
    //updates Total Fee
    function updateTotalFee(uint _totalFee) external;
    //update Call Fee
    function updateCallFee(uint _callFee) external;
    //updates Treasury Fee
    function updateTreasuryFee(uint _treasuryFee) external;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    {
    "optimizer": {
    "enabled": true,
    "runs": 200
    },
    "evmVersion": "paris",
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "devdoc",
    "userdoc",
    "metadata",
    "abi"
    ]
    }
    },
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_approvalDelay","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"DepositsIncremented","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"implementation","type":"address"}],"name":"NewStratCandidate","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":false,"internalType":"address","name":"user","type":"address"}],"name":"TermsAccepted","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":false,"internalType":"address","name":"implementation","type":"address"}],"name":"UpgradeStrat","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"WithdrawalsIncremented","type":"event"},{"inputs":[],"name":"agreeToTerms","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"approvalDelay","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":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"constructionTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeWithdrawals","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasReadAndAcceptedTerms","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"inCaseTokensGetStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"initialize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","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":[{"internalType":"address","name":"_implementation","type":"address"}],"name":"proposeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stratCandidate","outputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"uint256","name":"proposedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradeStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

    60a06040526009805460ff60a01b1916905534801561001d57600080fd5b5060405161230138038061230183398101604081905261003c916101b3565b8282600361004a83826102cc565b50600461005782826102cc565b50505061007061006b6100a460201b60201c565b6100a8565b6001600655600b80546001600160a01b0319166001600160a01b039590951694909417909355505060805242600a5561038a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261012157600080fd5b81516001600160401b0381111561013a5761013a6100fa565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610168576101686100fa565b60405281815283820160200185101561018057600080fd5b60005b8281101561019f57602081860181015183830182015201610183565b506000918101602001919091529392505050565b600080600080608085870312156101c957600080fd5b84516001600160a01b03811681146101e057600080fd5b60208601519094506001600160401b038111156101fc57600080fd5b61020887828801610110565b604087015190945090506001600160401b0381111561022657600080fd5b61023287828801610110565b606096909601519497939650505050565b600181811c9082168061025757607f821691505b60208210810361027757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156102c757806000526020600020601f840160051c810160208510156102a45750805b601f840160051c820191505b818110156102c457600081556001016102b0565b50505b505050565b81516001600160401b038111156102e5576102e56100fa565b6102f9816102f38454610243565b8461027d565b6020601f82116001811461032d57600083156103155750848201515b600019600385901b1c1916600184901b1784556102c4565b600084815260208120601f198516915b8281101561035d578785015182556020948501946001909201910161033d565b508482101561037b5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b608051611f556103ac6000396000818161049e01526110cc0152611f556000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063a457c2d711610125578063d389800f116100ad578063e2d1e75c1161007c578063e2d1e75c14610499578063e6685244146104c0578063f06c5610146104c8578063f2fde38b146104d1578063fc0c546a146104e457600080fd5b8063d389800f14610463578063dd62ed3e1461046b578063de5f62681461047e578063def68a9c1461048657600080fd5b8063b3ca3188116100f4578063b3ca31881461040d578063b69ef8a81461042d578063b6b55f2514610435578063c4d66de814610448578063d17d35031461045b57600080fd5b8063a457c2d7146103b4578063a6c8220e146103c7578063a8c62e76146103e7578063a9059cbb146103fa57600080fd5b8063574445fb116101a857806376dfabb81161017757806376dfabb81461034157806377c7b8fc14610377578063853828b61461037f5780638da5cb5b1461038757806395d89b41146103ac57600080fd5b8063574445fb146102da5780635b12ff9b146102fd57806370a0823114610310578063715018a61461033957600080fd5b806323b872dd116101ef57806323b872dd146102885780632e1a7d4d1461029b578063313ce567146102b057806339509351146102bf57806348a0d754146102d257600080fd5b806306fdde0314610221578063095ea7b31461023f578063158ef93e1461026257806318160ddd14610276575b600080fd5b6102296104f7565b6040516102369190611d01565b60405180910390f35b61025261024d366004611d4b565b610589565b6040519015158152602001610236565b60095461025290600160a01b900460ff1681565b6002545b604051908152602001610236565b610252610296366004611d75565b6105a3565b6102ae6102a9366004611db2565b6105c7565b005b60405160128152602001610236565b6102526102cd366004611d4b565b6107f8565b61027a61081a565b6102526102e8366004611dcb565b600c6020526000908152604090205460ff1681565b6102ae61030b366004611dcb565b61088c565b61027a61031e366004611dcb565b6001600160a01b031660009081526020819052604090205490565b6102ae6108fb565b600754600854610358916001600160a01b03169082565b604080516001600160a01b039093168352602083019190915201610236565b61027a61090f565b6102ae61094c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b610229610965565b6102526103c2366004611d4b565b610974565b61027a6103d5366004611dcb565b600e6020526000908152604090205481565b600954610394906001600160a01b031681565b610252610408366004611d4b565b6109ef565b61027a61041b366004611dcb565b600d6020526000908152604090205481565b61027a6109fd565b6102ae610443366004611db2565b610aeb565b610252610456366004611dcb565b610caa565b610252610da7565b6102ae610e67565b61027a610479366004611de6565b610efc565b6102ae610f27565b6102ae610494366004611dcb565b610f95565b61027a7f000000000000000000000000000000000000000000000000000000000000000081565b6102ae611069565b61027a600a5481565b6102ae6104df366004611dcb565b611212565b600b54610394906001600160a01b031681565b60606003805461050690611e19565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611e19565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b600033610597818585611288565b60019150505b92915050565b6000336105b18582856113ad565b6105bc858585611427565b506001949350505050565b6105cf6115cb565b6000811161061c5760405162461bcd60e51b81526020600482015260156024820152741c1b19585cd9481c1c9bdd9a591948185b5bdd5b9d605a1b60448201526064015b60405180910390fd5b600061064261062a60025490565b61063c846106366109fd565b90611624565b90611637565b905061064e3383611643565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bb9190611e53565b9050818110156107c85760006106d18383611772565b600954604051632e1a7d4d60e01b8152600481018390529192506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561071857600080fd5b505af115801561072c573d6000803e3d6000fd5b5050600b546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f9190611e53565b905060006107ad8285611772565b9050828110156107c4576107c1848261177e565b94505b5050505b600b546107df906001600160a01b0316338461178a565b6107e8826117ed565b5050506107f56001600655565b50565b60003361059781858561080b8383610efc565b6108159190611e82565b611288565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610863573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108879190611e53565b905090565b610894611868565b6040805180820182526001600160a01b038316808252426020928301819052600780546001600160a01b0319168317905560085591519182527f1aae2ec5647db56da2d513de40528ba3565c6057525637050660c4323bbac7df910160405180910390a150565b610903611868565b61090d60006118c2565b565b600061091a60025490565b1561093f5761088761092b60025490565b61063c670de0b6b3a76400006106366109fd565b50670de0b6b3a764000090565b3360009081526020819052604090205461090d906105c7565b60606004805461050690611e19565b600033816109828286610efc565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610613565b6105bc8286868403611288565b600033610597818585611427565b6000610887600960009054906101000a90046001600160a01b03166001600160a01b031663722713f76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a799190611e53565b600b546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae59190611e53565b9061177e565b610af36115cb565b60008111610b3b5760405162461bcd60e51b81526020600482015260156024820152741c1b19585cd9481c1c9bdd9a591948185b5bdd5b9d605a1b6044820152606401610613565b6000610b456109fd565b600b546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb79190611e53565b600b54909150610bd2906001600160a01b0316333086611914565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3f9190611e53565b9050610c4b8183611772565b93506000610c5860025490565b600003610c66575083610c80565b610c7d8461063c610c7660025490565b8890611624565b90505b610c8a338261194c565b610c92610e67565b610c9b85611a0b565b50505050506107f56001600655565b6000610cb4611868565b600954600160a01b900460ff1615610d0e5760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320616c726561647920696e697469616c697a65642e6044820152606401610613565b600a54610d1d906104b0611e82565b421115610d7d5760405162461bcd60e51b815260206004820152602860248201527f696e697469616c697a6174696f6e20706572696f64206f7665722c207573652060448201526774696d656c6f636b60c01b6064820152608401610613565b50600980546001600160a81b0319166001600160a01b03831617600160a01b17905560015b919050565b336000908152600c602052604081205460ff1615610e135760405162461bcd60e51b815260206004820152602360248201527f796f75206861766520616c726561647920616363657074656420746865207465604482015262726d7360e81b6064820152608401610613565b336000818152600c6020908152604091829020805460ff1916600117905590519182527fac268f7e07e832bf2aedd9f3ffd031ceb7a2b2553a288d8f509a34ee51f6b01f910160405180910390a150600190565b6000610e7161081a565b600954600b54919250610e91916001600160a01b0390811691168361178a565b600960009054906101000a90046001600160a01b03166001600160a01b031663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b546040516370a0823160e01b815233600482015261090d916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f71573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104439190611e53565b610f9d611868565b600b546001600160a01b0390811690821603610fe45760405162461bcd60e51b815260206004820152600660248201526510ba37b5b2b760d11b6044820152606401610613565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190611e53565b90506110656001600160a01b038316338361178a565b5050565b611071611868565b6007546001600160a01b03166110c15760405162461bcd60e51b81526020600482015260156024820152745468657265206973206e6f2063616e64696461746560581b6044820152606401610613565b60085442906110f0907f000000000000000000000000000000000000000000000000000000000000000061177e565b106111345760405162461bcd60e51b815260206004820152601460248201527311195b185e481a185cc81b9bdd081c185cdcd95960621b6044820152606401610613565b6007546040516001600160a01b0390911681527f7f37d440e85aba7fbf641c4bda5ca4ef669a80bffaacde2aa8d9feb1b048c82c9060200160405180910390a1600960009054906101000a90046001600160a01b03166001600160a01b031663fb6177876040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111c457600080fd5b505af11580156111d8573d6000803e3d6000fd5b505060078054600980546001600160a01b03199081166001600160a01b03841617909155169055505064012a05f20060085561090d610e67565b61121a611868565b6001600160a01b03811661127f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610613565b6107f5816118c2565b6001600160a01b0383166112ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610613565b6001600160a01b03821661134b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610613565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006113b98484610efc565b9050600019811461142157818110156114145760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610613565b6114218484848403611288565b50505050565b6001600160a01b03831661148b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610613565b6001600160a01b0382166114ed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610613565b6001600160a01b038316600090815260208190526040902054818110156115655760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610613565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611421565b60026006540361161d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610613565b6002600655565b60006116308284611e95565b9392505050565b60006116308284611eac565b6001600160a01b0382166116a35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610613565b6001600160a01b038216600090815260208190526040902054818110156117175760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610613565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016113a0565b505050565b60006116308284611ece565b60006116308284611e82565b6040516001600160a01b03831660248201526044810182905261176d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611a78565b336000908152600e6020526040812054816118088483611e82565b336000818152600e60209081526040918290208490558151928352820187905281018290529091507f9141e77ca2893646d48087b1b095075541605e9b87ca091e2057b651b1e62af2906060015b60405180910390a15060019392505050565b6005546001600160a01b0316331461090d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610613565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526114219085906323b872dd60e01b906084016117b6565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610613565b80600260008282546119b49190611e82565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b336000908152600d602052604081205481611a268483611e82565b336000818152600d60209081526040918290208490558151928352820187905281018290529091507f06a0895c1a837cd12ac50bcba0b79f680b66b790598e25e296d9e998e1b7520990606001611856565b6000611acd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b4d9092919063ffffffff16565b9050805160001480611aee575080806020019051810190611aee9190611ee1565b61176d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610613565b6060611b5c8484600085611b64565b949350505050565b606082471015611bc55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610613565b600080866001600160a01b03168587604051611be19190611f03565b60006040518083038185875af1925050503d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b5091509150611c3487838387611c3f565b979650505050505050565b60608315611cae578251600003611ca7576001600160a01b0385163b611ca75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610613565b5081611b5c565b611b5c8383815115611cc35781518083602001fd5b8060405162461bcd60e51b81526004016106139190611d01565b60005b83811015611cf8578181015183820152602001611ce0565b50506000910152565b6020815260008251806020840152611d20816040850160208701611cdd565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610da257600080fd5b60008060408385031215611d5e57600080fd5b611d6783611d34565b946020939093013593505050565b600080600060608486031215611d8a57600080fd5b611d9384611d34565b9250611da160208501611d34565b929592945050506040919091013590565b600060208284031215611dc457600080fd5b5035919050565b600060208284031215611ddd57600080fd5b61163082611d34565b60008060408385031215611df957600080fd5b611e0283611d34565b9150611e1060208401611d34565b90509250929050565b600181811c90821680611e2d57607f821691505b602082108103611e4d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611e6557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561059d5761059d611e6c565b808202811582820484141761059d5761059d611e6c565b600082611ec957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561059d5761059d611e6c565b600060208284031215611ef357600080fd5b8151801515811461163057600080fd5b60008251611f15818460208701611cdd565b919091019291505056fea26469706673582212202a7f440095e93b05ceb4d7a2f977f6f777da008399a7271c75ebadf7670f823964736f6c634300081a0033000000000000000000000000784dd93f3c42dcbf88d45e6ad6d3cc20da169a60000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000015484f472d4f53204175746f636f6d706f756e64657200000000000000000000000000000000000000000000000000000000000000000000000000000000000008484f474f535f6163000000000000000000000000000000000000000000000000

    Deployed Bytecode

    0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063a457c2d711610125578063d389800f116100ad578063e2d1e75c1161007c578063e2d1e75c14610499578063e6685244146104c0578063f06c5610146104c8578063f2fde38b146104d1578063fc0c546a146104e457600080fd5b8063d389800f14610463578063dd62ed3e1461046b578063de5f62681461047e578063def68a9c1461048657600080fd5b8063b3ca3188116100f4578063b3ca31881461040d578063b69ef8a81461042d578063b6b55f2514610435578063c4d66de814610448578063d17d35031461045b57600080fd5b8063a457c2d7146103b4578063a6c8220e146103c7578063a8c62e76146103e7578063a9059cbb146103fa57600080fd5b8063574445fb116101a857806376dfabb81161017757806376dfabb81461034157806377c7b8fc14610377578063853828b61461037f5780638da5cb5b1461038757806395d89b41146103ac57600080fd5b8063574445fb146102da5780635b12ff9b146102fd57806370a0823114610310578063715018a61461033957600080fd5b806323b872dd116101ef57806323b872dd146102885780632e1a7d4d1461029b578063313ce567146102b057806339509351146102bf57806348a0d754146102d257600080fd5b806306fdde0314610221578063095ea7b31461023f578063158ef93e1461026257806318160ddd14610276575b600080fd5b6102296104f7565b6040516102369190611d01565b60405180910390f35b61025261024d366004611d4b565b610589565b6040519015158152602001610236565b60095461025290600160a01b900460ff1681565b6002545b604051908152602001610236565b610252610296366004611d75565b6105a3565b6102ae6102a9366004611db2565b6105c7565b005b60405160128152602001610236565b6102526102cd366004611d4b565b6107f8565b61027a61081a565b6102526102e8366004611dcb565b600c6020526000908152604090205460ff1681565b6102ae61030b366004611dcb565b61088c565b61027a61031e366004611dcb565b6001600160a01b031660009081526020819052604090205490565b6102ae6108fb565b600754600854610358916001600160a01b03169082565b604080516001600160a01b039093168352602083019190915201610236565b61027a61090f565b6102ae61094c565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b610229610965565b6102526103c2366004611d4b565b610974565b61027a6103d5366004611dcb565b600e6020526000908152604090205481565b600954610394906001600160a01b031681565b610252610408366004611d4b565b6109ef565b61027a61041b366004611dcb565b600d6020526000908152604090205481565b61027a6109fd565b6102ae610443366004611db2565b610aeb565b610252610456366004611dcb565b610caa565b610252610da7565b6102ae610e67565b61027a610479366004611de6565b610efc565b6102ae610f27565b6102ae610494366004611dcb565b610f95565b61027a7f000000000000000000000000000000000000000000000000000000000001518081565b6102ae611069565b61027a600a5481565b6102ae6104df366004611dcb565b611212565b600b54610394906001600160a01b031681565b60606003805461050690611e19565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611e19565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b600033610597818585611288565b60019150505b92915050565b6000336105b18582856113ad565b6105bc858585611427565b506001949350505050565b6105cf6115cb565b6000811161061c5760405162461bcd60e51b81526020600482015260156024820152741c1b19585cd9481c1c9bdd9a591948185b5bdd5b9d605a1b60448201526064015b60405180910390fd5b600061064261062a60025490565b61063c846106366109fd565b90611624565b90611637565b905061064e3383611643565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bb9190611e53565b9050818110156107c85760006106d18383611772565b600954604051632e1a7d4d60e01b8152600481018390529192506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561071857600080fd5b505af115801561072c573d6000803e3d6000fd5b5050600b546040516370a0823160e01b8152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561077b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079f9190611e53565b905060006107ad8285611772565b9050828110156107c4576107c1848261177e565b94505b5050505b600b546107df906001600160a01b0316338461178a565b6107e8826117ed565b5050506107f56001600655565b50565b60003361059781858561080b8383610efc565b6108159190611e82565b611288565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610863573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108879190611e53565b905090565b610894611868565b6040805180820182526001600160a01b038316808252426020928301819052600780546001600160a01b0319168317905560085591519182527f1aae2ec5647db56da2d513de40528ba3565c6057525637050660c4323bbac7df910160405180910390a150565b610903611868565b61090d60006118c2565b565b600061091a60025490565b1561093f5761088761092b60025490565b61063c670de0b6b3a76400006106366109fd565b50670de0b6b3a764000090565b3360009081526020819052604090205461090d906105c7565b60606004805461050690611e19565b600033816109828286610efc565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610613565b6105bc8286868403611288565b600033610597818585611427565b6000610887600960009054906101000a90046001600160a01b03166001600160a01b031663722713f76040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a799190611e53565b600b546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae59190611e53565b9061177e565b610af36115cb565b60008111610b3b5760405162461bcd60e51b81526020600482015260156024820152741c1b19585cd9481c1c9bdd9a591948185b5bdd5b9d605a1b6044820152606401610613565b6000610b456109fd565b600b546040516370a0823160e01b81523060048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610b93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb79190611e53565b600b54909150610bd2906001600160a01b0316333086611914565b600b546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3f9190611e53565b9050610c4b8183611772565b93506000610c5860025490565b600003610c66575083610c80565b610c7d8461063c610c7660025490565b8890611624565b90505b610c8a338261194c565b610c92610e67565b610c9b85611a0b565b50505050506107f56001600655565b6000610cb4611868565b600954600160a01b900460ff1615610d0e5760405162461bcd60e51b815260206004820181905260248201527f436f6e747261637420697320616c726561647920696e697469616c697a65642e6044820152606401610613565b600a54610d1d906104b0611e82565b421115610d7d5760405162461bcd60e51b815260206004820152602860248201527f696e697469616c697a6174696f6e20706572696f64206f7665722c207573652060448201526774696d656c6f636b60c01b6064820152608401610613565b50600980546001600160a81b0319166001600160a01b03831617600160a01b17905560015b919050565b336000908152600c602052604081205460ff1615610e135760405162461bcd60e51b815260206004820152602360248201527f796f75206861766520616c726561647920616363657074656420746865207465604482015262726d7360e81b6064820152608401610613565b336000818152600c6020908152604091829020805460ff1916600117905590519182527fac268f7e07e832bf2aedd9f3ffd031ceb7a2b2553a288d8f509a34ee51f6b01f910160405180910390a150600190565b6000610e7161081a565b600954600b54919250610e91916001600160a01b0390811691168361178a565b600960009054906101000a90046001600160a01b03166001600160a01b031663d0e30db06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610ee157600080fd5b505af1158015610ef5573d6000803e3d6000fd5b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b546040516370a0823160e01b815233600482015261090d916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f71573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104439190611e53565b610f9d611868565b600b546001600160a01b0390811690821603610fe45760405162461bcd60e51b815260206004820152600660248201526510ba37b5b2b760d11b6044820152606401610613565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561102b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104f9190611e53565b90506110656001600160a01b038316338361178a565b5050565b611071611868565b6007546001600160a01b03166110c15760405162461bcd60e51b81526020600482015260156024820152745468657265206973206e6f2063616e64696461746560581b6044820152606401610613565b60085442906110f0907f000000000000000000000000000000000000000000000000000000000001518061177e565b106111345760405162461bcd60e51b815260206004820152601460248201527311195b185e481a185cc81b9bdd081c185cdcd95960621b6044820152606401610613565b6007546040516001600160a01b0390911681527f7f37d440e85aba7fbf641c4bda5ca4ef669a80bffaacde2aa8d9feb1b048c82c9060200160405180910390a1600960009054906101000a90046001600160a01b03166001600160a01b031663fb6177876040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156111c457600080fd5b505af11580156111d8573d6000803e3d6000fd5b505060078054600980546001600160a01b03199081166001600160a01b03841617909155169055505064012a05f20060085561090d610e67565b61121a611868565b6001600160a01b03811661127f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610613565b6107f5816118c2565b6001600160a01b0383166112ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610613565b6001600160a01b03821661134b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610613565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006113b98484610efc565b9050600019811461142157818110156114145760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610613565b6114218484848403611288565b50505050565b6001600160a01b03831661148b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610613565b6001600160a01b0382166114ed5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610613565b6001600160a01b038316600090815260208190526040902054818110156115655760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610613565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611421565b60026006540361161d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610613565b6002600655565b60006116308284611e95565b9392505050565b60006116308284611eac565b6001600160a01b0382166116a35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610613565b6001600160a01b038216600090815260208190526040902054818110156117175760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610613565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016113a0565b505050565b60006116308284611ece565b60006116308284611e82565b6040516001600160a01b03831660248201526044810182905261176d90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611a78565b336000908152600e6020526040812054816118088483611e82565b336000818152600e60209081526040918290208490558151928352820187905281018290529091507f9141e77ca2893646d48087b1b095075541605e9b87ca091e2057b651b1e62af2906060015b60405180910390a15060019392505050565b6005546001600160a01b0316331461090d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610613565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526114219085906323b872dd60e01b906084016117b6565b6001600160a01b0382166119a25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610613565b80600260008282546119b49190611e82565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b336000908152600d602052604081205481611a268483611e82565b336000818152600d60209081526040918290208490558151928352820187905281018290529091507f06a0895c1a837cd12ac50bcba0b79f680b66b790598e25e296d9e998e1b7520990606001611856565b6000611acd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b4d9092919063ffffffff16565b9050805160001480611aee575080806020019051810190611aee9190611ee1565b61176d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610613565b6060611b5c8484600085611b64565b949350505050565b606082471015611bc55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610613565b600080866001600160a01b03168587604051611be19190611f03565b60006040518083038185875af1925050503d8060008114611c1e576040519150601f19603f3d011682016040523d82523d6000602084013e611c23565b606091505b5091509150611c3487838387611c3f565b979650505050505050565b60608315611cae578251600003611ca7576001600160a01b0385163b611ca75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610613565b5081611b5c565b611b5c8383815115611cc35781518083602001fd5b8060405162461bcd60e51b81526004016106139190611d01565b60005b83811015611cf8578181015183820152602001611ce0565b50506000910152565b6020815260008251806020840152611d20816040850160208701611cdd565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114610da257600080fd5b60008060408385031215611d5e57600080fd5b611d6783611d34565b946020939093013593505050565b600080600060608486031215611d8a57600080fd5b611d9384611d34565b9250611da160208501611d34565b929592945050506040919091013590565b600060208284031215611dc457600080fd5b5035919050565b600060208284031215611ddd57600080fd5b61163082611d34565b60008060408385031215611df957600080fd5b611e0283611d34565b9150611e1060208401611d34565b90509250929050565b600181811c90821680611e2d57607f821691505b602082108103611e4d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611e6557600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561059d5761059d611e6c565b808202811582820484141761059d5761059d611e6c565b600082611ec957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561059d5761059d611e6c565b600060208284031215611ef357600080fd5b8151801515811461163057600080fd5b60008251611f15818460208701611cdd565b919091019291505056fea26469706673582212202a7f440095e93b05ceb4d7a2f977f6f777da008399a7271c75ebadf7670f823964736f6c634300081a0033

    [ 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.