ETH Price: $2,638.60 (-3.03%)

Token

McBase (MCBASE)
 

Overview

Max Total Supply

20,000 MCBASE

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15.587549692101172219 MCBASE

Value
$0.00
0xc93820b0538887a5cbc47bf066ede2ca03bf7ba6
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:
MCBASE

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-11
*/

// SPDX-License-Identifier: MIT
//
//                         ..,,;<<>>;,.
//                       .;!!!!!!!!!!!!!!!;;!!!!!!!!>;;.
//                    .;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!>;
//                .;!!!!!!!!!!!MCBASE!!!!!!!!!!!!!!!!!!!!!!>
//               <!A Supersized Rebasing Cryptocurrency!!!!!!;
//             ;!!!!!!!!!!!!!!!!!!!!!!!!!!'!!!!!!!!!!!!!!!!!!!!.
//            <!!!!!!!!!!!!!!!!!!!!!!!!'`  `''!!!!!!!!!!!!!!!!!!!;
//           <!!!!!!!!!!!!!!!!!!!!!!!!'  uc.  `''!!!!!!!!!!!!!!!!!!
//           !!!!!!!!!!!!!!!!!!!!!''   z$$$$$beu  `'!!!!!!!!!!!!!!!!
//          :!!!!!!!!!!!!!!''`   .,=n$$$$$$$$$$$$P==._`'!!!!!!!!!!!!!
//          '!!!!!!!!!!!!`   zdP"      "$$$$$$$   ..  `. `!!!!!!!!!!!>
//          !!!!!!!!!!!!:  J$F  zd$$$bee$$$$$$  ,$$$$c  ;  !!!!!!!!!!>
//        ;!!!!!!!!!!!!!!  Jbu$$$$$$$$$$$$$$$$$$$$$$$$$$L :!!!!!!!!!!'
//      ;!!!!!!!!!!!!!!!!  d$$$$$$?????$$$$$$$$$???$$$$$$  !!!!!!!!!!
//     .!!!!!!!!!!!!!!!!!  $$$$$F  z+c.`?$$$$$$  ...`?$$$k `!!!!!!!!!
//     !!!!!!!!!!!!!!!!!!  d$$$$  `      3$$$$L.-     3$$$ '!!!!!!!!!>
//     `!!!!!!!!!!!!!!!!  d$$$$$bec   .ed$$$$$$bc.  .e$$$$ :!!!!!!!!!!
//     `!!!!!!!!!!!!!!'  z$$$$$$$$$be$$$$$P" `"?$$b,$$$$$F <!!!!!!!!!!
//      !!!!!!!!!!!!!!  J$$$$$$$$$$$$$$$F .e$$e. ?$$$$$$$$  !!!!!!!!!!
//      `!!!!!!!!!!!'   $$$$$$$$$$$$$$$$c  `     d$$$$$$$$  `!!!!!!!!!
//        `!!!!!!!!!   '$$$$$$$$"  `?$$$$$$$$$$$$$$$P"?$$$b  !!!!!!!'
//         `'!!!!!!!;   $$$$$$$"       """"""""""""    "$$P  !!!!!!
//           ```!!!!!>  $$$$$$$.      . . ......        $$P  !!!''
//             `'!!!!!  3$$$$$$$.       " """"""       d$$  ;!'
//                ``''   $$$$$$$$b        -===       .d$$$
//                       "$$$$$$$$c                  d$$$"
//                 ..zdc  $$$$$$$$$b.               d$$$
//              .d$$""?$  4$$$$$$$$$$c.           .d$$$"
//           .,d$$$$u     d$$$P"?$$$$$$$$buc,,,ce$$$$$   4.
//        .zd$$$$$$$$b.   `?$$$c,.`"?$$$$$$$$$$$$$$P"    `?b.
//    .,d$$$$$$$$$$$$$$bu  `?$$$$$bc,. `"????????"        J$$.
//.zd$$$$$$$$$$$$$$$$$$$$$b,. `?$$$$$$$$$eeccuzee$$$F   ,d$$$$u
// ?$$$$$$$$$$$$$$$$$$$$$$$$$bu. `?$$$$$$$$$$$$$P"  ,zd$$$$$$$$b.
//. ?$$$$$$$$$$$$$$$$$$$$$$$$$$$$b. `""??????"  .ed$$$$$$$$$$$$$$u ..
//:. ?$$$$$$$$$$$$$$$$$$$$$$$$$$$$$b.   ::   .d$$$$$$$$$$$$$$$$$$$b`:::...
//::.`$$$$$$$$$$$$$$$$$$$$$$$$$F "$$$b      d$$$$$$$$$$$$$$$$$$$$$$ :::::::
//:::.`$$$$$$$$$$$$$$$$$$$$$$$" ,  `"$$   :$PF"'"$$$$$$$$$$$$$$$$$E :::::::
//:::: `$$$$$$$$$$$$$$$$$$$$P" nM  h. $b.z  .nn. ?$$$$$$$$$$$$$$$$F :::::::
//::::: $$$$$$$$$$$$$$$$$$$'  dMMh '$$$$$$  MMMM  ?$$$$$$$$$$$$$$$F :::::::
//

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;
    }
}



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

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

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

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

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

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

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

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



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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

interface AggregatorV3Interface {

  function decimals() external view returns (uint8);
  function description() external view returns (string memory);
  function version() external view returns (uint256);

  // getRoundData and latestRoundData should both raise "No data present"
  // if they do not have data to report, instead of returning unset values
  // which could be misinterpreted as actual reported values.
  function getRoundData(uint80 _roundId)
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );
  function latestRoundData()
    external
    view
    returns (
      uint80 roundId,
      int256 answer,
      uint256 startedAt,
      uint256 updatedAt,
      uint80 answeredInRound
    );

}

contract PriceConsumerV3 {

    AggregatorV3Interface internal priceFeed;

    /**
     * Network: Rinkeby
     * Aggregator: ETH/USD
     * Address: 0x9326BFA02ADD2366b30bacB125260Af641031331
     */
    constructor() public {
        priceFeed = AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419); //main net : 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419
    }

    /**
     * Returns the latest price
     */
    function getLatestPrice() public view returns (int) {
        (
            uint80 roundID, 
            int price,
            uint startedAt,
            uint timeStamp,
            uint80 answeredInRound
        ) = priceFeed.latestRoundData();
        return price;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Pair {
    function sync() external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract MCBASE is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniWethPool;
    address[] public uniswapPairPath;
    
    PriceConsumerV3 _priceContract;
    
    string private _name = 'McBase';
    string private _symbol = 'MCBASE';
    uint8 private _decimals = 18;
    
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_TOTAL_SUPPLY = 20000 * 1e18;
    uint256 private constant TOTAL_MUL = MAX_UINT256 - (MAX_UINT256 % INITIAL_TOTAL_SUPPLY);
    uint256 private constant MAX_SUPPLY = ~uint128(0);
    uint256 private constant PEGGED_PRICE = 580e6;                                                // $5.8

    uint256 private _totalSupply;
    uint256 private _rebaseRate;
    mapping (address => uint256) private _balance;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping(address => bool) public blacklist;
    
    uint256 private _supersize_caller_fee = 25e18;
    uint256 public _epochCycle = 12 hours;    //main net 12 hours;
    uint256 public _lastEpochTime;
    uint256 public _lastRebaseBlock;
    bool public _live;
    uint256 public _rebaseLag = 50;                         // lag 5
    
    uint256 private _lastPriceCheckTime;
    uint256 private _priceCumulative;
    uint256 private _priceCheckInterval = 30 seconds;
    
    
    constructor (IUniswapV2Router02 _uniswapV2Router) public {
        _priceContract = new PriceConsumerV3();
        
        _totalSupply = INITIAL_TOTAL_SUPPLY;
        _balance[_msgSender()] = TOTAL_MUL;
        _rebaseRate = TOTAL_MUL.div(INITIAL_TOTAL_SUPPLY);
        
        uniswapV2Router = _uniswapV2Router;
        
        uniWethPool = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
            
        uniswapPairPath = new address[](2);
        uniswapPairPath[0] = _uniswapV2Router.WETH();
        uniswapPairPath[1] = address(this);
        
        emit Transfer(address(0x0), _msgSender(), _totalSupply);
    }
    
    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balance[account].div(_rebaseRate);
    }

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

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    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;
    }
    
    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "ERC20: Transfer amount must be greater than zero");
        
        if(block.number == _lastRebaseBlock)
            require(sender == address(this), 'MCBASE: the transaction is not allowed at epoch block.');
            
        if(sender != uniWethPool)
            require(!blacklist[recipient] && !blacklist[sender], 'MCBASE: the transaction was blocked.');
        
        if(sender == uniWethPool && !_live)
            blacklist[recipient] = true;
            
        uint256 currentTime =  block.timestamp;
        if(_live && currentTime.sub(_lastPriceCheckTime) >= _priceCheckInterval) {
            uint256 tokenPriceInUSD = getTokenPriceInUSD();
            _priceCumulative = _priceCumulative.add(tokenPriceInUSD.mul(currentTime.sub(_lastPriceCheckTime)));
            _lastPriceCheckTime = currentTime;
        }
        
        uint256 rebaseValue = amount.mul(_rebaseRate);
        _balance[sender] = _balance[sender].sub(rebaseValue);
        _balance[recipient] = _balance[recipient].add(rebaseValue);
        emit Transfer(sender, recipient, amount);
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }
    
    function Supersize() public returns(uint256) {
        require(_live && block.timestamp >= _lastEpochTime + _epochCycle, 'MCBASE: early epoch.');

        uint256 currentTime =  block.timestamp;
        uint256 tokenPriceInUSD = getTokenPriceInUSD();
        uint256 peggedPriceInUSD = PEGGED_PRICE.mul(1e18);
        
        uint256 priceCumulative = _priceCumulative.add(tokenPriceInUSD.mul(currentTime.sub(_lastPriceCheckTime)));
        uint256 tokenAveragePriceInUSD = priceCumulative.div(currentTime.sub(_lastEpochTime));

        _lastEpochTime = currentTime;
        _lastPriceCheckTime = currentTime;
        _priceCumulative = 0;
        _lastRebaseBlock = block.number;
        
        uint256 newTotalSupply = _totalSupply.mul(tokenAveragePriceInUSD).div(peggedPriceInUSD);
        
        if(newTotalSupply > _totalSupply) {
            uint256 increaseAmount = (newTotalSupply.sub(_totalSupply)).mul(10).div(_rebaseLag);
            _totalSupply = _totalSupply.add(increaseAmount);
        }
        else if(newTotalSupply < _totalSupply) {
            uint256 decreaseAmount = (_totalSupply.sub(newTotalSupply)).mul(10).div(_rebaseLag);
            _totalSupply = _totalSupply.sub(decreaseAmount);
        }
        
        _rebaseRate = TOTAL_MUL.div(_totalSupply);
        IUniswapV2Pair(uniWethPool).sync();
        
        _transfer(address(this), _msgSender(), _supersize_caller_fee);
        return newTotalSupply;
    }
    
    function updateLive() public onlyOwner {
        if(!_live) {
            _lastEpochTime = block.timestamp;
            _lastPriceCheckTime = _lastEpochTime;
            _live = true;    
        }
    }
    
    function updateRebaseLag(uint256 rebaseLag) public onlyOwner {
        require(rebaseLag > 0, 'MCBASE: rebase lag is 0');
        _rebaseLag = rebaseLag;
    }
    
    function updateSuperizeCallerFee(uint256 supersize_caller_fee) public onlyOwner {
        _supersize_caller_fee = supersize_caller_fee;
    }
    
     function unblockWallet(address account) public onlyOwner {
        blacklist[account] = false;
    }
    
    function getTokenAveragePriceInUSD() public view returns(uint256) {
        uint256 currentTime =  block.timestamp;
        uint256 tokenPriceInUSD = getTokenPriceInUSD();
        uint256 priceCumulative = _priceCumulative.add(tokenPriceInUSD.mul(currentTime.sub(_lastPriceCheckTime)));
        return priceCumulative.div(currentTime.sub(_lastEpochTime));
    }
    
    function getTokenPriceInETH() public view returns(uint[] memory ) {
        return uniswapV2Router.getAmountsIn(1e18, uniswapPairPath);
    }
    
    function getETHPriceInUSD() public view returns(uint256) {
        return uint256(_priceContract.getLatestPrice());
    }
    
    function getTokenPriceInUSD() public view returns(uint256) {
        uint256 tokenPriceInEth = uniswapV2Router.getAmountsIn(1e18, uniswapPairPath)[0];
        uint256 ethPriceInUSD = uint256(_priceContract.getLatestPrice());
        return tokenPriceInEth.mul(ethPriceInUSD);
    }
    
    function getSupersizeRate() public view returns(uint256, bool) {
        uint256 currentTime =  block.timestamp;
        uint256 tokenPriceInUSD = getTokenPriceInUSD();
        uint256 peggedPriceInUSD = PEGGED_PRICE.mul(1e18);
        
        uint256 priceCumulative = _priceCumulative.add(tokenPriceInUSD.mul(currentTime.sub(_lastPriceCheckTime)));
        uint256 tokenAveragePriceInUSD = priceCumulative.div(currentTime.sub(_lastEpochTime));
        
        uint256 newTotalSupply = _totalSupply.mul(tokenAveragePriceInUSD).div(peggedPriceInUSD);
        
        if(newTotalSupply >= _totalSupply) {
            return ((newTotalSupply.sub(_totalSupply)).mul(10000).div(_totalSupply), true);
        } else if(newTotalSupply < _totalSupply) {
            return ((_totalSupply.sub(newTotalSupply)).mul(10000).div(_totalSupply), false);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapV2Router","type":"address"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Supersize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_epochCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastEpochTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lastRebaseBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rebaseLag","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getETHPriceInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupersizeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenAveragePriceInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPriceInETH","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPriceInUSD","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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblockWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniWethPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uniswapPairPath","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rebaseLag","type":"uint256"}],"name":"updateRebaseLag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supersize_caller_fee","type":"uint256"}],"name":"updateSuperizeCallerFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526040518060400160405280600681526020017f4d6342617365000000000000000000000000000000000000000000000000000081525060049080519060200190620000519291906200086b565b506040518060400160405280600681526020017f4d43424153450000000000000000000000000000000000000000000000000000815250600590805190602001906200009f9291906200086b565b506012600660006101000a81548160ff021916908360ff16021790555068015af1d78b58c40000600c5561a8c0600d556032601155601e601455348015620000e657600080fd5b5060405162003b2538038062003b25833981810160405260208110156200010c57600080fd5b810190808051906020019092919050505060006200012f6200074660201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350604051620001db90620008f2565b604051809103906000f080158015620001f8573d6000803e3d6000fd5b50600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069043c33c193756480000060078190555069043c33c1937564800000600019816200026057fe5b066000190360096000620002796200074660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002eb69043c33c19375648000008060001981620002d257fe5b06600019036200074e60201b620022011790919060201c565b6008819055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200036f57600080fd5b505afa15801562000384573d6000803e3d6000fd5b505050506040513d60208110156200039b57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040f57600080fd5b505afa15801562000424573d6000803e3d6000fd5b505050506040513d60208110156200043b57600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620004b657600080fd5b505af1158015620004cb573d6000803e3d6000fd5b505050506040513d6020811015620004e257600080fd5b8101908080519060200190929190505050600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600267ffffffffffffffff811180156200054c57600080fd5b506040519080825280602002602001820160405280156200057c5781602001602082028036833780820191505090505b50600290805190602001906200059492919062000900565b508073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620005dc57600080fd5b505afa158015620005f1573d6000803e3d6000fd5b505050506040513d60208110156200060857600080fd5b810190808051906020019092919050505060026000815481106200062857fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503060026001815481106200068057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006d86200074660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a350620009eb565b600033905090565b60006200079883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007a060201b60201c565b905092915050565b6000808311829062000850576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000814578082015181840152602081019050620007f7565b50505050905090810190601f168015620008425780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200085d57fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620008ae57805160ff1916838001178555620008df565b82800160010185558215620008df579182015b82811115620008de578251825591602001919060010190620008c1565b5b509050620008ee91906200098f565b5090565b6101df806200394683390190565b8280548282559060005260206000209081019282156200097c579160200282015b828111156200097b5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000921565b5b5090506200098b9190620009ae565b5090565b5b80821115620009aa57600081600090555060010162000990565b5090565b5b80821115620009e757600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550600101620009af565b5090565b60805160601c612f3362000a1360003980610acd5280610fc752806116665250612f336000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a9059cbb116100ad578063ea108c921161007c578063ea108c9214610911578063eda095c61461092f578063f2fde38b1461095d578063f9f92be4146109a1578063fd2dbb0e146109fb576101fb565b8063a9059cbb146107f9578063b62e3c5a1461085d578063dd62ed3e1461087b578063e8d35542146108f3576101fb565b806394661e68116100e957806394661e68146106d657806395d89b41146106f4578063a457c2d714610777578063a8766bc1146107db576101fb565b806370a0823114610622578063715018a61461067a5780638523dcac146106845780638da5cb5b146106a2576101fb565b806323b872dd11610192578063527a533511610161578063527a53351461055857806356e0ec7214610576578063609b9d341461059657806361d84478146105ca576101fb565b806323b872dd146103f05780632931889714610474578063313ce567146104d357806339509351146104f4576101fb565b806318160ddd116101ce57806318160ddd146103395780631c2263d6146103575780631c8e117914610385578063208bedf8146103c9576101fb565b806306fdde0314610200578063095ea7b31461028357806310583804146102e75780631694505e14610305575b600080fd5b610208610a05565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102cf6004803603604081101561029957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610aa7565b60405180821515815260200191505060405180910390f35b6102ef610ac5565b6040518082815260200191505060405180910390f35b61030d610acb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610341610aef565b6040518082815260200191505060405180910390f35b6103836004803603602081101561036d57600080fd5b8101908080359060200190929190505050610af9565b005b6103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c41565b005b6103d1610d64565b6040518083815260200182151581526020019250505060405180910390f35b61045c6004803603606081101561040657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eea565b60405180821515815260200191505060405180910390f35b61047c610fc3565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104bf5780820151818401526020810190506104a4565b505050509050019250505060405180910390f35b6104db611195565b604051808260ff16815260200191505060405180910390f35b6105406004803603604081101561050a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ac565b60405180821515815260200191505060405180910390f35b61056061125f565b6040518082815260200191505060405180910390f35b61057e611265565b60405180821515815260200191505060405180910390f35b61059e611278565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105f6600480360360208110156105e057600080fd5b810190808035906020019092919050505061129e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106646004803603602081101561063857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112da565b6040518082815260200191505060405180910390f35b610682611337565b005b61068c6114bd565b6040518082815260200191505060405180910390f35b6106aa6114c3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106de6114ec565b6040518082815260200191505060405180910390f35b6106fc6114f2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073c578082015181840152602081019050610721565b50505050905090810190601f1680156107695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107c36004803603604081101561078d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611594565b60405180821515815260200191505060405180910390f35b6107e3611661565b6040518082815260200191505060405180910390f35b6108456004803603604081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611906565b60405180821515815260200191505060405180910390f35b610865611924565b6040518082815260200191505060405180910390f35b6108dd6004803603604081101561089157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ce565b6040518082815260200191505060405180910390f35b6108fb611a55565b6040518082815260200191505060405180910390f35b610919611ad5565b6040518082815260200191505060405180910390f35b61095b6004803603602081101561094557600080fd5b8101908080359060200190929190505050611dfa565b005b61099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ecc565b005b6109e3600480360360208110156109b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120d7565b60405180821515815260200191505060405180910390f35b610a036120f7565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610abb610ab461224b565b8484612253565b6001905092915050565b60115481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600754905090565b610b0161224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008111610c37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4d43424153453a20726562617365206c6167206973203000000000000000000081525060200191505060405180910390fd5b8060118190555050565b610c4961224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060004290506000610d76611661565b90506000610d99670de0b6b3a7640000632292190061244a90919063ffffffff16565b90506000610dd8610dc7610db8601254876124d090919063ffffffff16565b8561244a90919063ffffffff16565b60135461251a90919063ffffffff16565b90506000610e03610df4600e54876124d090919063ffffffff16565b8361220190919063ffffffff16565b90506000610e2e84610e208460075461244a90919063ffffffff16565b61220190919063ffffffff16565b90506007548110610e8757610e76600754610e68612710610e5a600754866124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b600197509750505050505050610ee6565b600754811015610edf57610ece600754610ec0612710610eb2856007546124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b600097509750505050505050610ee6565b5050505050505b9091565b6000610ef78484846125a2565b610fb884610f0361224b565b610fb385604051806060016040528060288152602001612e4460289139600a60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f6961224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bee9092919063ffffffff16565b612253565b600190509392505050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631f00ca74670de0b6b3a764000060026040518363ffffffff1660e01b81526004018083815260200180602001828103825283818154815260200191508054801561109c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611052575b5050935050505060006040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525060208110156110f957600080fd5b810190808051604051939291908464010000000082111561111957600080fd5b8382019150602082018581111561112f57600080fd5b825186602082028301116401000000008211171561114c57600080fd5b8083526020830192505050908051906020019060200280838360005b83811015611183578082015181840152602081019050611168565b50505050905001604052505050905090565b6000600660009054906101000a900460ff16905090565b60006112556111b961224b565b8461125085600a60006111ca61224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251a90919063ffffffff16565b612253565b6001905092915050565b600e5481565b601060009054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281815481106112ab57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611330600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220190919063ffffffff16565b9050919050565b61133f61224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b60006116576115a161224b565b8461165285604051806060016040528060258152602001612ed960259139600a60006115cb61224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bee9092919063ffffffff16565b612253565b6001905092915050565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631f00ca74670de0b6b3a764000060026040518363ffffffff1660e01b81526004018083815260200180602001828103825283818154815260200191508054801561173b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116116f1575b5050935050505060006040518083038186803b15801561175a57600080fd5b505afa15801561176e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250602081101561179857600080fd5b81019080805160405193929190846401000000008211156117b857600080fd5b838201915060208201858111156117ce57600080fd5b82518660208202830111640100000000821117156117eb57600080fd5b8083526020830192505050908051906020019060200280838360005b83811015611822578082015181840152602081019050611807565b5050505090500160405250505060008151811061183b57fe5b602002602001015190506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b815260040160206040518083038186803b1580156118af57600080fd5b505afa1580156118c3573d6000803e3d6000fd5b505050506040513d60208110156118d957600080fd5b810190808051906020019092919050505090506118ff818361244a90919063ffffffff16565b9250505090565b600061191a61191361224b565b84846125a2565b6001905092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b815260040160206040518083038186803b15801561198e57600080fd5b505afa1580156119a2573d6000803e3d6000fd5b505050506040513d60208110156119b857600080fd5b8101908080519060200190929190505050905090565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000804290506000611a65611661565b90506000611aa4611a93611a84601254866124d090919063ffffffff16565b8461244a90919063ffffffff16565b60135461251a90919063ffffffff16565b9050611acd611abe600e54856124d090919063ffffffff16565b8261220190919063ffffffff16565b935050505090565b6000601060009054906101000a900460ff168015611af95750600d54600e54014210155b611b6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d43424153453a206561726c792065706f63682e00000000000000000000000081525060200191505060405180910390fd5b60004290506000611b7a611661565b90506000611b9d670de0b6b3a7640000632292190061244a90919063ffffffff16565b90506000611bdc611bcb611bbc601254876124d090919063ffffffff16565b8561244a90919063ffffffff16565b60135461251a90919063ffffffff16565b90506000611c07611bf8600e54876124d090919063ffffffff16565b8361220190919063ffffffff16565b905084600e8190555084601281905550600060138190555043600f819055506000611c4f84611c418460075461244a90919063ffffffff16565b61220190919063ffffffff16565b9050600754811115611cbc576000611c99601154611c8b600a611c7d600754876124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b9050611cb08160075461251a90919063ffffffff16565b60078190555050611d24565b600754811015611d23576000611d04601154611cf6600a611ce8866007546124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b9050611d1b816007546124d090919063ffffffff16565b600781905550505b5b611d5260075469043c33c193756480000060001981611d3f57fe5b066000190361220190919063ffffffff16565b600881905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dc257600080fd5b505af1158015611dd6573d6000803e3d6000fd5b50505050611dee30611de661224b565b600c546125a2565b80965050505050505090565b611e0261224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b611ed461224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612da56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6120ff61224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060009054906101000a900460ff166121ff5742600e81905550600e546012819055506001601060006101000a81548160ff0219169083151502179055505b565b600061224383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cae565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612eb56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561235f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612dcb6022913960400191505060405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008083141561245d57600090506124ca565b600082840290508284828161246e57fe5b04146124c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e236021913960400191505060405180910390fd5b809150505b92915050565b600061251283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612bee565b905092915050565b600080828401905083811015612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612628576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e906025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e906025913960400191505060405180910390fd5b60008111612707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612d756030913960400191505060405180910390fd5b600f54431415612796573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612795576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612ded6036913960400191505060405180910390fd5b5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128e557600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561288f5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6128e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e6c6024913960400191505060405180910390fd5b5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561294f5750601060009054906101000a900460ff16155b156129ad576001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000429050601060009054906101000a900460ff1680156129e457506014546129e1601254836124d090919063ffffffff16565b10155b15612a3f5760006129f3611661565b9050612a30612a1f612a10601254856124d090919063ffffffff16565b8361244a90919063ffffffff16565b60135461251a90919063ffffffff16565b60138190555081601281905550505b6000612a566008548461244a90919063ffffffff16565b9050612aaa81600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d090919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b3f81600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251a90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000838311158290612c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c60578082015181840152602081019050612c45565b50505050905090810190601f168015612c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612d5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d1f578082015181840152602081019050612d04565b50505050905090810190601f168015612d4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d6657fe5b04905080915050939250505056fe45524332303a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d43424153453a20746865207472616e73616374696f6e206973206e6f7420616c6c6f7765642061742065706f636820626c6f636b2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d43424153453a20746865207472616e73616374696f6e2077617320626c6f636b65642e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fe0694730b3cc228ee9f047a9abbc50db79249876e5b4d2520348afd54528ed664736f6c634300060c0033608060405234801561001057600080fd5b50735f4ec3df9cbd43714fe2740f5e3616155c5b84196000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061016b806100746000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c80638e15f47314610030575b600080fd5b61003861004e565b6040518082815260200191505060405180910390f35b60008060008060008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156100bd57600080fd5b505afa1580156100d1573d6000803e3d6000fd5b505050506040513d60a08110156100e757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050509450945094509450945083955050505050509056fea26469706673582212208a19ab86a20e214d6286c4a2ff99e0e968a34d408d01514dd70409942088ffb764736f6c634300060c00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806370a082311161011a578063a9059cbb116100ad578063ea108c921161007c578063ea108c9214610911578063eda095c61461092f578063f2fde38b1461095d578063f9f92be4146109a1578063fd2dbb0e146109fb576101fb565b8063a9059cbb146107f9578063b62e3c5a1461085d578063dd62ed3e1461087b578063e8d35542146108f3576101fb565b806394661e68116100e957806394661e68146106d657806395d89b41146106f4578063a457c2d714610777578063a8766bc1146107db576101fb565b806370a0823114610622578063715018a61461067a5780638523dcac146106845780638da5cb5b146106a2576101fb565b806323b872dd11610192578063527a533511610161578063527a53351461055857806356e0ec7214610576578063609b9d341461059657806361d84478146105ca576101fb565b806323b872dd146103f05780632931889714610474578063313ce567146104d357806339509351146104f4576101fb565b806318160ddd116101ce57806318160ddd146103395780631c2263d6146103575780631c8e117914610385578063208bedf8146103c9576101fb565b806306fdde0314610200578063095ea7b31461028357806310583804146102e75780631694505e14610305575b600080fd5b610208610a05565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102cf6004803603604081101561029957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610aa7565b60405180821515815260200191505060405180910390f35b6102ef610ac5565b6040518082815260200191505060405180910390f35b61030d610acb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610341610aef565b6040518082815260200191505060405180910390f35b6103836004803603602081101561036d57600080fd5b8101908080359060200190929190505050610af9565b005b6103c76004803603602081101561039b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c41565b005b6103d1610d64565b6040518083815260200182151581526020019250505060405180910390f35b61045c6004803603606081101561040657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610eea565b60405180821515815260200191505060405180910390f35b61047c610fc3565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156104bf5780820151818401526020810190506104a4565b505050509050019250505060405180910390f35b6104db611195565b604051808260ff16815260200191505060405180910390f35b6105406004803603604081101561050a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ac565b60405180821515815260200191505060405180910390f35b61056061125f565b6040518082815260200191505060405180910390f35b61057e611265565b60405180821515815260200191505060405180910390f35b61059e611278565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105f6600480360360208110156105e057600080fd5b810190808035906020019092919050505061129e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106646004803603602081101561063857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112da565b6040518082815260200191505060405180910390f35b610682611337565b005b61068c6114bd565b6040518082815260200191505060405180910390f35b6106aa6114c3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106de6114ec565b6040518082815260200191505060405180910390f35b6106fc6114f2565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561073c578082015181840152602081019050610721565b50505050905090810190601f1680156107695780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107c36004803603604081101561078d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611594565b60405180821515815260200191505060405180910390f35b6107e3611661565b6040518082815260200191505060405180910390f35b6108456004803603604081101561080f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611906565b60405180821515815260200191505060405180910390f35b610865611924565b6040518082815260200191505060405180910390f35b6108dd6004803603604081101561089157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119ce565b6040518082815260200191505060405180910390f35b6108fb611a55565b6040518082815260200191505060405180910390f35b610919611ad5565b6040518082815260200191505060405180910390f35b61095b6004803603602081101561094557600080fd5b8101908080359060200190929190505050611dfa565b005b61099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ecc565b005b6109e3600480360360208110156109b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120d7565b60405180821515815260200191505060405180910390f35b610a036120f7565b005b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610abb610ab461224b565b8484612253565b6001905092915050565b60115481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600754905090565b610b0161224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008111610c37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4d43424153453a20726562617365206c6167206973203000000000000000000081525060200191505060405180910390fd5b8060118190555050565b610c4961224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060004290506000610d76611661565b90506000610d99670de0b6b3a7640000632292190061244a90919063ffffffff16565b90506000610dd8610dc7610db8601254876124d090919063ffffffff16565b8561244a90919063ffffffff16565b60135461251a90919063ffffffff16565b90506000610e03610df4600e54876124d090919063ffffffff16565b8361220190919063ffffffff16565b90506000610e2e84610e208460075461244a90919063ffffffff16565b61220190919063ffffffff16565b90506007548110610e8757610e76600754610e68612710610e5a600754866124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b600197509750505050505050610ee6565b600754811015610edf57610ece600754610ec0612710610eb2856007546124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b600097509750505050505050610ee6565b5050505050505b9091565b6000610ef78484846125a2565b610fb884610f0361224b565b610fb385604051806060016040528060288152602001612e4460289139600a60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f6961224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bee9092919063ffffffff16565b612253565b600190509392505050565b60607f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16631f00ca74670de0b6b3a764000060026040518363ffffffff1660e01b81526004018083815260200180602001828103825283818154815260200191508054801561109c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611052575b5050935050505060006040518083038186803b1580156110bb57600080fd5b505afa1580156110cf573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525060208110156110f957600080fd5b810190808051604051939291908464010000000082111561111957600080fd5b8382019150602082018581111561112f57600080fd5b825186602082028301116401000000008211171561114c57600080fd5b8083526020830192505050908051906020019060200280838360005b83811015611183578082015181840152602081019050611168565b50505050905001604052505050905090565b6000600660009054906101000a900460ff16905090565b60006112556111b961224b565b8461125085600a60006111ca61224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251a90919063ffffffff16565b612253565b6001905092915050565b600e5481565b601060009054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281815481106112ab57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611330600854600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220190919063ffffffff16565b9050919050565b61133f61224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b60006116576115a161224b565b8461165285604051806060016040528060258152602001612ed960259139600a60006115cb61224b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bee9092919063ffffffff16565b612253565b6001905092915050565b6000807f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16631f00ca74670de0b6b3a764000060026040518363ffffffff1660e01b81526004018083815260200180602001828103825283818154815260200191508054801561173b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116116f1575b5050935050505060006040518083038186803b15801561175a57600080fd5b505afa15801561176e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250602081101561179857600080fd5b81019080805160405193929190846401000000008211156117b857600080fd5b838201915060208201858111156117ce57600080fd5b82518660208202830111640100000000821117156117eb57600080fd5b8083526020830192505050908051906020019060200280838360005b83811015611822578082015181840152602081019050611807565b5050505090500160405250505060008151811061183b57fe5b602002602001015190506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b815260040160206040518083038186803b1580156118af57600080fd5b505afa1580156118c3573d6000803e3d6000fd5b505050506040513d60208110156118d957600080fd5b810190808051906020019092919050505090506118ff818361244a90919063ffffffff16565b9250505090565b600061191a61191361224b565b84846125a2565b6001905092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e15f4736040518163ffffffff1660e01b815260040160206040518083038186803b15801561198e57600080fd5b505afa1580156119a2573d6000803e3d6000fd5b505050506040513d60208110156119b857600080fd5b8101908080519060200190929190505050905090565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000804290506000611a65611661565b90506000611aa4611a93611a84601254866124d090919063ffffffff16565b8461244a90919063ffffffff16565b60135461251a90919063ffffffff16565b9050611acd611abe600e54856124d090919063ffffffff16565b8261220190919063ffffffff16565b935050505090565b6000601060009054906101000a900460ff168015611af95750600d54600e54014210155b611b6b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d43424153453a206561726c792065706f63682e00000000000000000000000081525060200191505060405180910390fd5b60004290506000611b7a611661565b90506000611b9d670de0b6b3a7640000632292190061244a90919063ffffffff16565b90506000611bdc611bcb611bbc601254876124d090919063ffffffff16565b8561244a90919063ffffffff16565b60135461251a90919063ffffffff16565b90506000611c07611bf8600e54876124d090919063ffffffff16565b8361220190919063ffffffff16565b905084600e8190555084601281905550600060138190555043600f819055506000611c4f84611c418460075461244a90919063ffffffff16565b61220190919063ffffffff16565b9050600754811115611cbc576000611c99601154611c8b600a611c7d600754876124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b9050611cb08160075461251a90919063ffffffff16565b60078190555050611d24565b600754811015611d23576000611d04601154611cf6600a611ce8866007546124d090919063ffffffff16565b61244a90919063ffffffff16565b61220190919063ffffffff16565b9050611d1b816007546124d090919063ffffffff16565b600781905550505b5b611d5260075469043c33c193756480000060001981611d3f57fe5b066000190361220190919063ffffffff16565b600881905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611dc257600080fd5b505af1158015611dd6573d6000803e3d6000fd5b50505050611dee30611de661224b565b600c546125a2565b80965050505050505090565b611e0261224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b611ed461224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612da56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6120ff61224b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601060009054906101000a900460ff166121ff5742600e81905550600e546012819055506001601060006101000a81548160ff0219169083151502179055505b565b600061224383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612cae565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612eb56024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561235f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612dcb6022913960400191505060405180910390fd5b80600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008083141561245d57600090506124ca565b600082840290508284828161246e57fe5b04146124c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612e236021913960400191505060405180910390fd5b809150505b92915050565b600061251283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612bee565b905092915050565b600080828401905083811015612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612628576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e906025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612e906025913960400191505060405180910390fd5b60008111612707576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612d756030913960400191505060405180910390fd5b600f54431415612796573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612795576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180612ded6036913960400191505060405180910390fd5b5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128e557600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561288f5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6128e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612e6c6024913960400191505060405180910390fd5b5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561294f5750601060009054906101000a900460ff16155b156129ad576001600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000429050601060009054906101000a900460ff1680156129e457506014546129e1601254836124d090919063ffffffff16565b10155b15612a3f5760006129f3611661565b9050612a30612a1f612a10601254856124d090919063ffffffff16565b8361244a90919063ffffffff16565b60135461251a90919063ffffffff16565b60138190555081601281905550505b6000612a566008548461244a90919063ffffffff16565b9050612aaa81600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124d090919063ffffffff16565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b3f81600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461251a90919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000838311158290612c9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c60578082015181840152602081019050612c45565b50505050905090810190601f168015612c8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612d5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d1f578082015181840152602081019050612d04565b50505050905090810190601f168015612d4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612d6657fe5b04905080915050939250505056fe45524332303a205472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d43424153453a20746865207472616e73616374696f6e206973206e6f7420616c6c6f7765642061742065706f636820626c6f636b2e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d43424153453a20746865207472616e73616374696f6e2077617320626c6f636b65642e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fe0694730b3cc228ee9f047a9abbc50db79249876e5b4d2520348afd54528ed664736f6c634300060c0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _uniswapV2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

26624:9805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28842:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30021:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27896:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26746:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29119:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34144:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34474:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35553:873;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;29549:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34966:143;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29028:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30190:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27798:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27872:17;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26804:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26837:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29227:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19428:148;;;:::i;:::-;;27730:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18786:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27834:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28933:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30416:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35256:285;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29370:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35121:123;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29870:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34588:366;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32434:1477;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34318:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19731:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27624:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33923:209;;;:::i;:::-;;28842:83;28879:13;28912:5;28905:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28842:83;:::o;30021:161::-;30096:4;30113:39;30122:12;:10;:12::i;:::-;30136:7;30145:6;30113:8;:39::i;:::-;30170:4;30163:11;;30021:161;;;;:::o;27896:30::-;;;;:::o;26746:51::-;;;:::o;29119:100::-;29172:7;29199:12;;29192:19;;29119:100;:::o;34144:162::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34236:1:::1;34224:9;:13;34216:49;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34289:9;34276:10;:22;;;;34144:162:::0;:::o;34474:102::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34563:5:::1;34542:9;:18;34552:7;34542:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;34474:102:::0;:::o;35553:873::-;35601:7;35610:4;35627:19;35650:15;35627:38;;35676:23;35702:20;:18;:20::i;:::-;35676:46;;35733:24;35760:22;35777:4;27358:5;35760:16;;:22;;;;:::i;:::-;35733:49;;35803:23;35829:79;35850:57;35870:36;35886:19;;35870:11;:15;;:36;;;;:::i;:::-;35850:15;:19;;:57;;;;:::i;:::-;35829:16;;:20;;:79;;;;:::i;:::-;35803:105;;35919:30;35952:52;35972:31;35988:14;;35972:11;:15;;:31;;;;:::i;:::-;35952:15;:19;;:52;;;;:::i;:::-;35919:85;;36025:22;36050:62;36095:16;36050:40;36067:22;36050:12;;:16;;:40;;;;:::i;:::-;:44;;:62;;;;:::i;:::-;36025:87;;36154:12;;36136:14;:30;36133:286;;36191:63;36241:12;;36191:45;36230:5;36192:32;36211:12;;36192:14;:18;;:32;;;;:::i;:::-;36191:38;;:45;;;;:::i;:::-;:49;;:63;;;;:::i;:::-;36256:4;36183:78;;;;;;;;;;;;36133:286;36299:12;;36282:14;:29;36279:140;;;36336:63;36386:12;;36336:45;36375:5;36337:32;36354:14;36337:12;;:16;;:32;;;;:::i;:::-;36336:38;;:45;;;;:::i;:::-;:49;;:63;;;;:::i;:::-;36401:5;36328:79;;;;;;;;;;;;36279:140;35553:873;;;;;;;;;:::o;29549:313::-;29647:4;29664:36;29674:6;29682:9;29693:6;29664:9;:36::i;:::-;29711:121;29720:6;29728:12;:10;:12::i;:::-;29742:89;29780:6;29742:89;;;;;;;;;;;;;;;;;:11;:19;29754:6;29742:19;;;;;;;;;;;;;;;:33;29762:12;:10;:12::i;:::-;29742:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;29711:8;:121::i;:::-;29850:4;29843:11;;29549:313;;;;;:::o;34966:143::-;35016:13;35050:15;:28;;;35079:4;35085:15;35050:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35043:58;;34966:143;:::o;29028:83::-;29069:5;29094:9;;;;;;;;;;;29087:16;;29028:83;:::o;30190:218::-;30278:4;30295:83;30304:12;:10;:12::i;:::-;30318:7;30327:50;30366:10;30327:11;:25;30339:12;:10;:12::i;:::-;30327:25;;;;;;;;;;;;;;;:34;30353:7;30327:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30295:8;:83::i;:::-;30396:4;30389:11;;30190:218;;;;:::o;27798:29::-;;;;:::o;27872:17::-;;;;;;;;;;;;;:::o;26804:26::-;;;;;;;;;;;;;:::o;26837:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29227:135::-;29293:7;29320:34;29342:11;;29320:8;:17;29329:7;29320:17;;;;;;;;;;;;;;;;:21;;:34;;;;:::i;:::-;29313:41;;29227:135;;;:::o;19428:148::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19535:1:::1;19498:40;;19519:6;::::0;::::1;;;;;;;;19498:40;;;;;;;;;;;;19566:1;19549:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19428:148::o:0;27730:37::-;;;;:::o;18786:79::-;18824:7;18851:6;;;;;;;;;;;18844:13;;18786:79;:::o;27834:31::-;;;;:::o;28933:87::-;28972:13;29005:7;28998:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28933:87;:::o;30416:269::-;30509:4;30526:129;30535:12;:10;:12::i;:::-;30549:7;30558:96;30597:15;30558:96;;;;;;;;;;;;;;;;;:11;:25;30570:12;:10;:12::i;:::-;30558:25;;;;;;;;;;;;;;;:34;30584:7;30558:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;30526:8;:129::i;:::-;30673:4;30666:11;;30416:269;;;;:::o;35256:285::-;35306:7;35326:23;35352:15;:28;;;35381:4;35387:15;35352:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35404:1;35352:54;;;;;;;;;;;;;;35326:80;;35417:21;35449:14;;;;;;;;;;;:29;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35417:64;;35499:34;35519:13;35499:15;:19;;:34;;;;:::i;:::-;35492:41;;;;35256:285;:::o;29370:167::-;29448:4;29465:42;29475:12;:10;:12::i;:::-;29489:9;29500:6;29465:9;:42::i;:::-;29525:4;29518:11;;29370:167;;;;:::o;35121:123::-;35169:7;35204:14;;;;;;;;;;;:29;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35189:47;;35121:123;:::o;29870:143::-;29951:7;29978:11;:18;29990:5;29978:18;;;;;;;;;;;;;;;:27;29997:7;29978:27;;;;;;;;;;;;;;;;29971:34;;29870:143;;;;:::o;34588:366::-;34645:7;34665:19;34688:15;34665:38;;34714:23;34740:20;:18;:20::i;:::-;34714:46;;34771:23;34797:79;34818:57;34838:36;34854:19;;34838:11;:15;;:36;;;;:::i;:::-;34818:15;:19;;:57;;;;:::i;:::-;34797:16;;:20;;:79;;;;:::i;:::-;34771:105;;34894:52;34914:31;34930:14;;34914:11;:15;;:31;;;;:::i;:::-;34894:15;:19;;:52;;;;:::i;:::-;34887:59;;;;;34588:366;:::o;32434:1477::-;32470:7;32498:5;;;;;;;;;;;:56;;;;;32543:11;;32526:14;;:28;32507:15;:47;;32498:56;32490:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32592:19;32615:15;32592:38;;32641:23;32667:20;:18;:20::i;:::-;32641:46;;32698:24;32725:22;32742:4;27358:5;32725:16;;:22;;;;:::i;:::-;32698:49;;32768:23;32794:79;32815:57;32835:36;32851:19;;32835:11;:15;;:36;;;;:::i;:::-;32815:15;:19;;:57;;;;:::i;:::-;32794:16;;:20;;:79;;;;:::i;:::-;32768:105;;32884:30;32917:52;32937:31;32953:14;;32937:11;:15;;:31;;;;:::i;:::-;32917:15;:19;;:52;;;;:::i;:::-;32884:85;;32999:11;32982:14;:28;;;;33043:11;33021:19;:33;;;;33084:1;33065:16;:20;;;;33115:12;33096:16;:31;;;;33148:22;33173:62;33218:16;33173:40;33190:22;33173:12;;:16;;:40;;;;:::i;:::-;:44;;:62;;;;:::i;:::-;33148:87;;33276:12;;33259:14;:29;33256:427;;;33305:22;33330:58;33377:10;;33330:42;33369:2;33331:32;33350:12;;33331:14;:18;;:32;;;;:::i;:::-;33330:38;;:42;;;;:::i;:::-;:46;;:58;;;;:::i;:::-;33305:83;;33418:32;33435:14;33418:12;;:16;;:32;;;;:::i;:::-;33403:12;:47;;;;33256:427;;;;33497:12;;33480:14;:29;33477:206;;;33526:22;33551:58;33598:10;;33551:42;33590:2;33552:32;33569:14;33552:12;;:16;;:32;;;;:::i;:::-;33551:38;;:42;;;;:::i;:::-;:46;;:58;;;;:::i;:::-;33526:83;;33639:32;33656:14;33639:12;;:16;;:32;;;;:::i;:::-;33624:12;:47;;;;33477:206;;33256:427;33717:27;33731:12;;27149;27092:1;27083:11;27220:34;;;;;;27092:1;27083:11;27205:50;33717:13;;:27;;;;:::i;:::-;33703:11;:41;;;;33770:11;;;;;;;;;;;33755:32;;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33810:61;33828:4;33835:12;:10;:12::i;:::-;33849:21;;33810:9;:61::i;:::-;33889:14;33882:21;;;;;;;;32434:1477;:::o;34318:143::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34433:20:::1;34409:21;:44;;;;34318:143:::0;:::o;19731:244::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19840:1:::1;19820:22;;:8;:22;;;;19812:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19930:8;19901:38;;19922:6;::::0;::::1;;;;;;;;19901:38;;;;;;;;;;;;19959:8;19950:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19731:244:::0;:::o;27624:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;33923:209::-;19008:12;:10;:12::i;:::-;18998:22;;:6;;;;;;;;;;:22;;;18990:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33977:5:::1;;;;;;;;;;;33973:152;;34016:15;33999:14;:32;;;;34068:14;;34046:19;:36;;;;34105:4;34097:5;;:12;;;;;;;;;;;;;;;;;;33973:152;33923:209::o:0;9460:132::-;9518:7;9545:39;9549:1;9552;9545:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;9538:46;;9460:132;;;;:::o;3244:106::-;3297:15;3332:10;3325:17;;3244:106;:::o;32085:337::-;32195:1;32178:19;;:5;:19;;;;32170:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32276:1;32257:21;;:7;:21;;;;32249:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32360:6;32330:11;:18;32342:5;32330:18;;;;;;;;;;;;;;;:27;32349:7;32330:27;;;;;;;;;;;;;;;:36;;;;32398:7;32382:32;;32391:5;32382:32;;;32407:6;32382:32;;;;;;;;;;;;;;;;;;32085:337;;;:::o;8513:471::-;8571:7;8821:1;8816;:6;8812:47;;;8846:1;8839:8;;;;8812:47;8871:9;8887:1;8883;:5;8871:17;;8916:1;8911;8907;:5;;;;;;:10;8899:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8975:1;8968:8;;;8513:471;;;;;:::o;7623:136::-;7681:7;7708:43;7712:1;7715;7708:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7701:50;;7623:136;;;;:::o;7159:181::-;7217:7;7237:9;7253:1;7249;:5;7237:17;;7278:1;7273;:6;;7265:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7331:1;7324:8;;;7159:181;;;;:::o;30697:1376::-;30812:1;30794:20;;:6;:20;;;;30786:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30896:1;30875:23;;:9;:23;;;;30867:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:1;30959:6;:10;30951:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31062:16;;31046:12;:32;31043:140;;;31119:4;31101:23;;:6;:23;;;31093:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31043:140;31221:11;;;;;;;;;;;31211:21;;:6;:21;;;31208:131;;31256:9;:20;31266:9;31256:20;;;;;;;;;;;;;;;;;;;;;;;;;31255:21;:43;;;;;31281:9;:17;31291:6;31281:17;;;;;;;;;;;;;;;;;;;;;;;;;31280:18;31255:43;31247:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31208:131;31373:11;;;;;;;;;;;31363:21;;:6;:21;;;:31;;;;;31389:5;;;;;;;;;;;31388:6;31363:31;31360:76;;;31432:4;31409:9;:20;31419:9;31409:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31360:76;31461:19;31484:15;31461:38;;31513:5;;;;;;;;;;;:68;;;;;31562:19;;31522:36;31538:19;;31522:11;:15;;:36;;;;:::i;:::-;:59;;31513:68;31510:307;;;31598:23;31624:20;:18;:20::i;:::-;31598:46;;31678:79;31699:57;31719:36;31735:19;;31719:11;:15;;:36;;;;:::i;:::-;31699:15;:19;;:57;;;;:::i;:::-;31678:16;;:20;;:79;;;;:::i;:::-;31659:16;:98;;;;31794:11;31772:19;:33;;;;31510:307;;31837:19;31859:23;31870:11;;31859:6;:10;;:23;;;;:::i;:::-;31837:45;;31912:33;31933:11;31912:8;:16;31921:6;31912:16;;;;;;;;;;;;;;;;:20;;:33;;;;:::i;:::-;31893:8;:16;31902:6;31893:16;;;;;;;;;;;;;;;:52;;;;31978:36;32002:11;31978:8;:19;31987:9;31978:19;;;;;;;;;;;;;;;;:23;;:36;;;;:::i;:::-;31956:8;:19;31965:9;31956:19;;;;;;;;;;;;;;;:58;;;;32047:9;32030:35;;32039:6;32030:35;;;32058:6;32030:35;;;;;;;;;;;;;;;;;;30697:1376;;;;;:::o;8062:192::-;8148:7;8181:1;8176;:6;;8184:12;8168:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8208:9;8224:1;8220;:5;8208:17;;8245:1;8238:8;;;8062:192;;;;;:::o;10088:278::-;10174:7;10206:1;10202;:5;10209:12;10194:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10233:9;10249:1;10245;:5;;;;;;10233:17;;10357:1;10350:8;;;10088:278;;;;;:::o

Swarm Source

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