ETH Price: $1,669.98 (+1.11%)
Gas: 7 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
0x60806040119091002021-02-22 20:50:56949 days 6 hrs ago1614027056IN
 Create: Auction
0 ETH0.89385875250

Latest 1 internal transaction

Advanced mode:
Advanced Filter
Parent Txn Hash Block From To Value
126541272021-06-17 20:34:27834 days 7 hrs ago1623962067
0x8Cf5f5...a38bbD9D
2.3183 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Auction

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 0 runs

Other Settings:
default evmVersion
File 1 of 13 : Auction.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.4.25 <0.7.0;

/** OpenZeppelin Dependencies */
// import "@openzeppelin/contracts-upgradeable/contracts/proxy/Initializable.sol";
import '@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol';
/** Uniswap */
import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol';
/** Local Interfaces */
import './interfaces/IToken.sol';
import './interfaces/IAuction.sol';
import './interfaces/IStaking.sol';
import './interfaces/IAuctionV1.sol';

contract Auction is IAuction, Initializable, AccessControlUpgradeable {
    using SafeMathUpgradeable for uint256;

    event Bid(
        address indexed account,
        uint256 value,
        uint256 indexed auctionId,
        uint256 time
    );

    event VentureBid(
        address indexed account,
        uint256 ethBid,
        uint256 indexed auctionId,
        uint256 time,
        address[] coins,
        uint256[] amountBought
    );

    event Withdraval(
        address indexed account,
        uint256 value,
        uint256 indexed auctionId,
        uint256 time,
        uint256 stakeDays
    );

    event AuctionIsOver(uint256 eth, uint256 token, uint256 indexed auctionId);

    struct AuctionReserves {
        uint256 eth;
        uint256 token;
        uint256 uniswapLastPrice;
        uint256 uniswapMiddlePrice;
    }

    struct UserBid {
        uint256 eth;
        address ref;
        bool withdrawn;
    }

    struct Addresses {
        address mainToken;
        address staking;
        address payable uniswap;
        address payable recipient;
    }

    struct Options {
        uint256 autoStakeDays;
        uint256 referrerPercent;
        uint256 referredPercent;
        bool referralsOn;
        uint256 discountPercent;
        uint256 premiumPercent;
    }

    /** Roles */
    bytes32 public constant MIGRATOR_ROLE = keccak256('MIGRATOR_ROLE');
    bytes32 public constant MANAGER_ROLE = keccak256('MANAGER_ROLE');
    bytes32 public constant CALLER_ROLE = keccak256('CALLER_ROLE');

    /** Mapping */
    mapping(uint256 => AuctionReserves) public reservesOf;
    mapping(address => uint256[]) public auctionsOf;
    mapping(uint256 => mapping(address => UserBid)) public auctionBidOf;
    mapping(uint256 => mapping(address => bool)) public existAuctionsOf;

    /** Simple types */
    uint256 public lastAuctionEventId;
    uint256 public lastAuctionEventIdV1;
    uint256 public start;
    uint256 public stepTimestamp;

    Options public options;
    Addresses public addresses;
    IAuctionV1 public auctionV1;

    bool public init_;

    mapping(uint256 => mapping(address => uint256)) public autoStakeDaysOf; // NOT USED

    uint256 public middlePriceDays;

    struct VentureToken {
        // total bit 256
        address coin; // 160 bits
        uint96 percentage; // 96 bits
    }

    struct AuctionData {
        uint8 mode;
        VentureToken[] tokens;
    }

    AuctionData[7] internal auctions;
    uint8 internal ventureAutoStakeDays;

    /* New variables must go below here. */

    /** modifiers */
    modifier onlyCaller() {
        require(
            hasRole(CALLER_ROLE, _msgSender()),
            'Caller is not a caller role'
        );
        _;
    }

    modifier onlyManager() {
        require(
            hasRole(MANAGER_ROLE, _msgSender()),
            'Caller is not a manager role'
        );
        _;
    }

    modifier onlyMigrator() {
        require(
            hasRole(MIGRATOR_ROLE, _msgSender()),
            'Caller is not a migrator'
        );
        _;
    }

    function _updatePrice() internal {
        uint256 stepsFromStart = calculateStepsFromStart();

        reservesOf[stepsFromStart].uniswapLastPrice = getUniswapLastPrice();

        reservesOf[stepsFromStart]
            .uniswapMiddlePrice = getUniswapMiddlePriceForDays();
    }

    function _swapEthForToken(
        address tokenAddress,
        uint256 amountOutMin,
        uint256 amount,
        uint256 deadline
    ) private returns (uint256) {
        address[] memory path = new address[](2);

        path[0] = IUniswapV2Router02(addresses.uniswap).WETH();
        path[1] = tokenAddress;

        return
            IUniswapV2Router02(addresses.uniswap).swapExactETHForTokens{
                value: amount
            }(amountOutMin, path, addresses.staking, deadline)[1];
    }

    function bid(
        uint256[] calldata amountOutMin,
        uint256 deadline,
        address ref
    ) external payable {
        uint256 currentDay = getCurrentDay();
        uint8 auctionMode = auctions[currentDay].mode;

        if (auctionMode == 0) {
            bidInternal(amountOutMin[0], deadline, ref);
        } else if (auctionMode == 1) {
            ventureBid(amountOutMin, deadline, currentDay);
        }
    }

    function bidInternal(
        uint256 amountOutMin,
        uint256 deadline,
        address ref
    ) internal {
        _saveAuctionData();
        _updatePrice();

        require(_msgSender() != ref, 'msg.sender == ref');

        (uint256 toRecipient, uint256 toUniswap) =
            _calculateRecipientAndUniswapAmountsToSend();

        _swapEthForToken(
            addresses.mainToken,
            amountOutMin,
            toUniswap,
            deadline
        );

        uint256 stepsFromStart = calculateStepsFromStart();

        /** If referralsOn is true allow to set ref */
        if (options.referralsOn == true) {
            auctionBidOf[stepsFromStart][_msgSender()].ref = ref;
        }

        bidCommon(stepsFromStart);

        addresses.recipient.transfer(toRecipient);

        emit Bid(msg.sender, msg.value, stepsFromStart, now);
    }

    function ventureBid(
        uint256[] memory amountOutMin,
        uint256 deadline,
        uint256 currentDay
    ) internal {
        _saveAuctionData();
        _updatePrice();

        VentureToken[] storage tokens = auctions[currentDay].tokens;

        address[] memory coinsBought = new address[](tokens.length);
        uint256[] memory amountsBought = new uint256[](tokens.length);

        for (uint8 i = 0; i < tokens.length; i++) {
            uint256 amountBought;

            uint256 amountToBuy = msg.value.mul(tokens[i].percentage).div(100);

            if (
                tokens[i].coin !=
                address(0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF)
            ) {
                amountBought = _swapEthForToken(
                    tokens[i].coin,
                    amountOutMin[i],
                    amountToBuy,
                    deadline
                );

                IStaking(addresses.staking).updateTokenPricePerShare(
                    msg.sender,
                    addresses.recipient,
                    tokens[i].coin,
                    amountBought
                );
            } else {
                amountBought = amountToBuy;

                IStaking(addresses.staking).updateTokenPricePerShare{
                    value: amountToBuy
                }(msg.sender, addresses.recipient, tokens[i].coin, amountToBuy);
            }

            coinsBought[i] = tokens[i].coin;
            amountsBought[i] = amountBought;
        }

        uint256 stepsFromStart = calculateStepsFromStart();
        bidCommon(stepsFromStart);

        emit VentureBid(
            msg.sender,
            msg.value,
            stepsFromStart,
            now,
            coinsBought,
            amountsBought
        );
    }

    function bidCommon(uint256 stepsFromStart) internal {
        auctionBidOf[stepsFromStart][_msgSender()].eth = auctionBidOf[
            stepsFromStart
        ][_msgSender()]
            .eth
            .add(msg.value);

        if (!existAuctionsOf[stepsFromStart][_msgSender()]) {
            auctionsOf[_msgSender()].push(stepsFromStart);
            existAuctionsOf[stepsFromStart][_msgSender()] = true;
        }

        reservesOf[stepsFromStart].eth = reservesOf[stepsFromStart].eth.add(
            msg.value
        );
    }

    function getUniswapLastPrice() internal view returns (uint256) {
        address[] memory path = new address[](2);

        path[0] = IUniswapV2Router02(addresses.uniswap).WETH();
        path[1] = addresses.mainToken;

        uint256 price =
            IUniswapV2Router02(addresses.uniswap).getAmountsOut(1e18, path)[1];

        return price;
    }

    function getUniswapMiddlePriceForDays() internal view returns (uint256) {
        uint256 stepsFromStart = calculateStepsFromStart();

        uint256 index = stepsFromStart;
        uint256 sum;
        uint256 points;

        while (points != middlePriceDays) {
            if (reservesOf[index].uniswapLastPrice != 0) {
                sum = sum.add(reservesOf[index].uniswapLastPrice);
                points = points.add(1);
            }

            if (index == 0) break;

            index = index.sub(1);
        }

        if (sum == 0) return getUniswapLastPrice();
        else return sum.div(points);
    }

    function withdraw(uint256 auctionId, uint256 stakeDays) external {
        _saveAuctionData();
        _updatePrice();

        uint8 auctionMode = auctions[auctionId.mod(7)].mode;

        if (auctionMode == 0) {
            require(
                stakeDays >= options.autoStakeDays,
                'Auction: stakeDays < minimum days'
            );
        } else if (auctionMode == 1) {
            require(
                stakeDays >= ventureAutoStakeDays,
                'Auction: stakeDays < minimum days'
            );
        }

        require(stakeDays <= 5555, 'Auction: stakeDays > 5555');

        uint256 stepsFromStart = calculateStepsFromStart();

        UserBid storage userBid = auctionBidOf[auctionId][_msgSender()];

        require(stepsFromStart > auctionId, 'Auction: Auction is active');
        require(
            userBid.eth > 0 && userBid.withdrawn == false,
            'Auction: Zero bid or withdrawn'
        );

        userBid.withdrawn = true;

        withdrawInternal(
            userBid.ref,
            userBid.eth,
            auctionId,
            stepsFromStart,
            stakeDays
        );
    }

    function withdrawV1(uint256 auctionId, uint256 stakeDays) external {
        _saveAuctionData();
        _updatePrice();

        // CHECK LAST ID HERE
        require(
            auctionId <= lastAuctionEventIdV1,
            'Auction: Invalid auction id'
        );

        require(
            stakeDays >= options.autoStakeDays,
            'Auction: stakeDays < minimum days'
        );
        require(stakeDays <= 5555, 'Auction: stakeDays > 5555');

        uint256 stepsFromStart = calculateStepsFromStart();
        require(stepsFromStart > auctionId, 'Auction: Auction is active');

        /** This stops a user from using WithdrawV1 twice, since the bid is put into memory at the end */
        UserBid storage userBid = auctionBidOf[auctionId][_msgSender()];
        require(
            userBid.eth == 0 && userBid.withdrawn == false,
            'Auction: Invalid auction ID'
        );

        (uint256 eth, address ref) =
            auctionV1.auctionBetOf(auctionId, _msgSender());
        require(eth > 0, 'Auction: Zero balance in auction/invalid auction ID');

        withdrawInternal(ref, eth, auctionId, stepsFromStart, stakeDays);

        auctionBidOf[auctionId][_msgSender()] = UserBid({
            eth: eth,
            ref: ref,
            withdrawn: true
        });

        auctionsOf[_msgSender()].push(auctionId);
    }

    function withdrawInternal(
        address ref,
        uint256 eth,
        uint256 auctionId,
        uint256 stepsFromStart,
        uint256 stakeDays
    ) internal {
        uint256 payout = _calculatePayout(auctionId, eth);

        uint256 uniswapPayoutWithPercent =
            _calculatePayoutWithUniswap(auctionId, eth, payout);

        if (payout > uniswapPayoutWithPercent) {
            uint256 nextWeeklyAuction = calculateNearestWeeklyAuction();

            reservesOf[nextWeeklyAuction].token = reservesOf[nextWeeklyAuction]
                .token
                .add(payout.sub(uniswapPayoutWithPercent));

            payout = uniswapPayoutWithPercent;
        }

        if (address(ref) == address(0)) {
            IToken(addresses.mainToken).burn(address(this), payout);

            IStaking(addresses.staking).externalStake(
                payout,
                stakeDays,
                _msgSender()
            );

            emit Withdraval(msg.sender, payout, stepsFromStart, now, stakeDays);
        } else {
            IToken(addresses.mainToken).burn(address(this), payout);

            (uint256 toRefMintAmount, uint256 toUserMintAmount) =
                _calculateRefAndUserAmountsToMint(payout);

            payout = payout.add(toUserMintAmount);

            IStaking(addresses.staking).externalStake(
                payout,
                stakeDays,
                _msgSender()
            );

            emit Withdraval(msg.sender, payout, stepsFromStart, now, stakeDays);

            IStaking(addresses.staking).externalStake(toRefMintAmount, 14, ref);
        }
    }

    /** External Contract Caller functions */
    function callIncomeDailyTokensTrigger(uint256 amount)
        external
        override
        onlyCaller
    {
        // Adds a specified amount of axion to tomorrows auction
        uint256 stepsFromStart = calculateStepsFromStart();
        uint256 nextAuctionId = stepsFromStart + 1;

        reservesOf[nextAuctionId].token = reservesOf[nextAuctionId].token.add(
            amount
        );
    }

    function addReservesToAuction(uint256 daysInFuture, uint256 amount)
        external
        override
        onlyCaller
        returns (uint256)
    {
        // Adds a specified amount of axion to a future auction
        require(
            daysInFuture <= 365,
            'AUCTION: Days in future can not be greater then 365'
        );

        uint256 stepsFromStart = calculateStepsFromStart();
        uint256 auctionId = stepsFromStart + daysInFuture;

        reservesOf[auctionId].token = reservesOf[auctionId].token.add(amount);

        return auctionId;
    }

    function callIncomeWeeklyTokensTrigger(uint256 amount)
        external
        override
        onlyCaller
    {
        // Adds a specified amount of axion to the next nearest weekly auction
        uint256 nearestWeeklyAuction = calculateNearestWeeklyAuction();

        reservesOf[nearestWeeklyAuction].token = reservesOf[
            nearestWeeklyAuction
        ]
            .token
            .add(amount);
    }

    /** Calculate functions */
    function calculateNearestWeeklyAuction() public view returns (uint256) {
        uint256 stepsFromStart = calculateStepsFromStart();
        return stepsFromStart.add(uint256(7).sub(stepsFromStart.mod(7)));
    }

    /**
     * @dev
     * friday = 0, saturday = 1, sunday = 2 etc...
     */
    function getCurrentDay() internal view returns (uint256) {
        uint256 stepsFromStart = calculateStepsFromStart();
        return stepsFromStart.mod(7);
    }

    function calculateStepsFromStart() public view returns (uint256) {
        return now.sub(start).div(stepTimestamp);
    }

    function _calculatePayoutWithUniswap(
        uint256 auctionId,
        uint256 amount,
        uint256 payout
    ) internal view returns (uint256) {
        uint256 uniswapPayout =
            reservesOf[auctionId].uniswapMiddlePrice.mul(amount).div(1e18);

        uint256 uniswapPayoutWithPercent =
            uniswapPayout
                .add(uniswapPayout.mul(options.discountPercent).div(100))
                .sub(uniswapPayout.mul(options.premiumPercent).div(100));

        if (payout > uniswapPayoutWithPercent) {
            return uniswapPayoutWithPercent;
        } else {
            return payout;
        }
    }

    function _calculatePayout(uint256 auctionId, uint256 amount)
        internal
        view
        returns (uint256)
    {
        return
            amount.mul(reservesOf[auctionId].token).div(
                reservesOf[auctionId].eth
            );
    }

    function _calculateRecipientAndUniswapAmountsToSend()
        private
        returns (uint256, uint256)
    {
        uint256 toRecipient = msg.value.mul(20).div(100);
        uint256 toUniswap = msg.value.sub(toRecipient);

        return (toRecipient, toUniswap);
    }

    function _calculateRefAndUserAmountsToMint(uint256 amount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 toRefMintAmount = amount.mul(options.referrerPercent).div(100);
        uint256 toUserMintAmount = amount.mul(options.referredPercent).div(100);

        return (toRefMintAmount, toUserMintAmount);
    }

    /** Storage Functions */
    function _saveAuctionData() internal {
        uint256 stepsFromStart = calculateStepsFromStart();
        AuctionReserves memory reserves = reservesOf[lastAuctionEventId];

        if (lastAuctionEventId < stepsFromStart) {
            emit AuctionIsOver(
                reserves.eth,
                reserves.token,
                lastAuctionEventId
            );
            lastAuctionEventId = stepsFromStart;
        }
    }

    function initialize(address _manager, address _migrator)
        public
        initializer
    {
        _setupRole(MANAGER_ROLE, _manager);
        _setupRole(MIGRATOR_ROLE, _migrator);
        init_ = false;
    }

    /** Public Setter Functions */
    function setReferrerPercentage(uint256 percent) external onlyManager {
        options.referrerPercent = percent;
    }

    function setReferredPercentage(uint256 percent) external onlyManager {
        options.referredPercent = percent;
    }

    function setReferralsOn(bool _referralsOn) external onlyManager {
        options.referralsOn = _referralsOn;
    }

    function setAutoStakeDays(uint256 _autoStakeDays) external onlyManager {
        options.autoStakeDays = _autoStakeDays;
    }

    function setVentureAutoStakeDays(uint8 _autoStakeDays)
        external
        onlyManager
    {
        ventureAutoStakeDays = _autoStakeDays;
    }

    function setDiscountPercent(uint256 percent) external onlyManager {
        options.discountPercent = percent;
    }

    function setPremiumPercent(uint256 percent) external onlyManager {
        options.premiumPercent = percent;
    }

    function setMiddlePriceDays(uint256 _middleDays) external onlyManager {
        middlePriceDays = _middleDays;
    }

    /** Roles management - only for multi sig address */
    function setupRole(bytes32 role, address account) external onlyManager {
        _setupRole(role, account);
    }

    function setAuctionMode(uint8 _day, uint8 _mode) external onlyManager {
        auctions[_day].mode = _mode;
    }

    function setTokensOfDay(
        uint8 day,
        address[] calldata coins,
        uint8[] calldata percentages
    ) external onlyManager {
        AuctionData storage auction = auctions[day];

        auction.mode = 1;

        delete auction.tokens;

        uint8 percent = 0;
        for (uint8 i; i < coins.length; i++) {
            auction.tokens.push(VentureToken(coins[i], percentages[i]));

            percent = percentages[i] + percent;

            IStaking(addresses.staking).addDivToken(coins[i]);
        }

        require(
            percent == 100,
            'AUCTION: Percentage for venture day must equal 100'
        );
    }

    /** Getter functions */
    function auctionsOf_(address account)
        external
        view
        returns (uint256[] memory)
    {
        return auctionsOf[account];
    }

    function getAuctionModes() external view returns (uint8[7] memory) {
        uint8[7] memory auctionModes;

        for (uint8 i; i < auctions.length; i++) {
            auctionModes[i] = auctions[i].mode;
        }

        return auctionModes;
    }

    function getTokensOfDay(uint8 _day)
        external
        view
        returns (address[] memory, uint256[] memory)
    {
        VentureToken[] memory ventureTokens = auctions[_day].tokens;

        address[] memory tokens = new address[](ventureTokens.length);
        uint256[] memory percentages = new uint256[](ventureTokens.length);

        for (uint8 i; i < ventureTokens.length; i++) {
            tokens[i] = ventureTokens[i].coin;
            percentages[i] = ventureTokens[i].percentage;
        }

        return (tokens, percentages);
    }

    function getVentureAutoStakeDays() external view returns (uint8) {
        return ventureAutoStakeDays;
    }
}

File 2 of 13 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/EnumerableSetUpgradeable.sol";
import "../utils/AddressUpgradeable.sol";
import "../GSN/ContextUpgradeable.sol";
import "../proxy/Initializable.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable {
    function __AccessControl_init() internal initializer {
        __Context_init_unchained();
        __AccessControl_init_unchained();
    }

    function __AccessControl_init_unchained() internal initializer {
    }
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
    using AddressUpgradeable for address;

    struct RoleData {
        EnumerableSetUpgradeable.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
    uint256[49] private __gap;
}

File 3 of 13 : SafeMathUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 4 of 13 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

File 5 of 13 : IToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IToken {
    function mint(address to, uint256 amount) external;

    function burn(address from, uint256 amount) external;
}

File 6 of 13 : IAuction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IAuction {
    function callIncomeDailyTokensTrigger(uint256 amount) external;

    function callIncomeWeeklyTokensTrigger(uint256 amount) external;

    function addReservesToAuction(uint256 daysInFuture, uint256 amount) external returns(uint256);
}

File 7 of 13 : IStaking.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IStaking {
    function externalStake(
        uint256 amount,
        uint256 stakingDays,
        address staker
    ) external;

    function updateTokenPricePerShare(
        address payable bidderAddress,
        address payable originAddress,
        address tokenAddress,
        uint256 amountBought
    ) external payable;

    function addDivToken(address tokenAddress) external;
}

File 8 of 13 : IAuctionV1.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IAuctionV1 {
    function auctionBetOf(uint256, address) 
        external returns (uint256, address);
}

File 9 of 13 : EnumerableSetUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 10 of 13 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";

/*
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    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;
    }
    uint256[50] private __gap;
}

File 12 of 13 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 * 
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 * 
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        // extcodesize checks the size of the code stored in an address, and
        // address returns the current address. Since the code is still not
        // deployed when running a constructor, any checks on its code size will
        // yield zero, making it an effective way to detect if a contract is
        // under construction or not.
        address self = address(this);
        uint256 cs;
        // solhint-disable-next-line no-inline-assembly
        assembly { cs := extcodesize(self) }
        return cs == 0;
    }
}

File 13 of 13 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 0
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"token","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"}],"name":"AuctionIsOver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethBid","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"coins","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"amountBought","type":"uint256[]"}],"name":"VentureBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"auctionId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"Withdraval","type":"event"},{"inputs":[],"name":"CALLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIGRATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"daysInFuture","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addReservesToAuction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addresses","outputs":[{"internalType":"address","name":"mainToken","type":"address"},{"internalType":"address","name":"staking","type":"address"},{"internalType":"address payable","name":"uniswap","type":"address"},{"internalType":"address payable","name":"recipient","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"auctionBidOf","outputs":[{"internalType":"uint256","name":"eth","type":"uint256"},{"internalType":"address","name":"ref","type":"address"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionV1","outputs":[{"internalType":"contract IAuctionV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"auctionsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"auctionsOf_","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"autoStakeDaysOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"amountOutMin","type":"uint256[]"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"ref","type":"address"}],"name":"bid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"calculateNearestWeeklyAuction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calculateStepsFromStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"callIncomeDailyTokensTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"callIncomeWeeklyTokensTrigger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"existAuctionsOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionModes","outputs":[{"internalType":"uint8[7]","name":"","type":"uint8[7]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_day","type":"uint8"}],"name":"getTokensOfDay","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getVentureAutoStakeDays","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"init_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"address","name":"_migrator","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastAuctionEventId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastAuctionEventIdV1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"middlePriceDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"options","outputs":[{"internalType":"uint256","name":"autoStakeDays","type":"uint256"},{"internalType":"uint256","name":"referrerPercent","type":"uint256"},{"internalType":"uint256","name":"referredPercent","type":"uint256"},{"internalType":"bool","name":"referralsOn","type":"bool"},{"internalType":"uint256","name":"discountPercent","type":"uint256"},{"internalType":"uint256","name":"premiumPercent","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservesOf","outputs":[{"internalType":"uint256","name":"eth","type":"uint256"},{"internalType":"uint256","name":"token","type":"uint256"},{"internalType":"uint256","name":"uniswapLastPrice","type":"uint256"},{"internalType":"uint256","name":"uniswapMiddlePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_day","type":"uint8"},{"internalType":"uint8","name":"_mode","type":"uint8"}],"name":"setAuctionMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_autoStakeDays","type":"uint256"}],"name":"setAutoStakeDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_middleDays","type":"uint256"}],"name":"setMiddlePriceDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_referralsOn","type":"bool"}],"name":"setReferralsOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setReferredPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setReferrerPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"day","type":"uint8"},{"internalType":"address[]","name":"coins","type":"address[]"},{"internalType":"uint8[]","name":"percentages","type":"uint8[]"}],"name":"setTokensOfDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_autoStakeDays","type":"uint8"}],"name":"setVentureAutoStakeDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"setupRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stepTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionId","type":"uint256"},{"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"auctionId","type":"uint256"},{"internalType":"uint256","name":"stakeDays","type":"uint256"}],"name":"withdrawV1","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50613fb6806100206000396000f3fe60806040526004361061022e5760003560e01c80631069143a14610233578063124341891461027b578063154ec2db146103525780631bc699e51461037c57806320650746146103c9578063248a9ca3146103f65780632b7d2559146104325780632bbecc071461045c5780632f2ff15d1461048757806336568abe146104c057806340af7ba5146104f9578063441a3e7014610523578063485cc955146105535780634b15bee61461058e5780634bc2e48d146105b8578063586f7c3a146105cd5780635ae6ea70146105e25780636fae2e15146106655780637492ec691461067a578063774237fc146106ca5780637a4317dd146106df5780637a89fa701461070b5780637bd94dd2146107405780637ed386d8146107705780638501313f1461079a5780639010d07c146107d357806390a590871461081f57806391d1485414610858578063982e52fb146108a55780639d8cd337146108ba5780639e697991146108cf578063a122dfc5146108e4578063a217fddf14610945578063a2e6f9bf1461095a578063a2f96a081461096f578063b15c480414610999578063b3a6807c146109c9578063be9a6555146109de578063c22fd76f146109f3578063c9690f7a14610a1d578063ca15c87314610a9a578063ccbbc9b314610ac4578063cd7c141c14610afd578063d547741f14610b27578063d82117a614610b60578063da0321cd14610b75578063ebf5b06214610bbe578063ec87621c14610c84578063fa82ac7614610c99575b600080fd5b34801561023f57600080fd5b50610248610cd2565b604080519687526020870195909552858501939093529015156060850152608084015260a0830152519081900360c00190f35b34801561028757600080fd5b506103506004803603606081101561029e57600080fd5b60ff8235169190810190604081016020820135600160201b8111156102c257600080fd5b8201836020820111156102d457600080fd5b803590602001918460208302840111600160201b831117156102f557600080fd5b919390929091602081019035600160201b81111561031257600080fd5b82018360208201111561032457600080fd5b803590602001918460208302840111600160201b8311171561034557600080fd5b509092509050610ced565b005b34801561035e57600080fd5b506103506004803603602081101561037557600080fd5b5035610f68565b34801561038857600080fd5b50610391610fd9565b604051808260e080838360005b838110156103b657818101518382015260200161039e565b5050505090500191505060405180910390f35b3480156103d557600080fd5b50610350600480360360208110156103ec57600080fd5b503560ff1661103d565b34801561040257600080fd5b506104206004803603602081101561041957600080fd5b50356110bf565b60408051918252519081900360200190f35b34801561043e57600080fd5b506103506004803603602081101561045557600080fd5b50356110d4565b34801561046857600080fd5b50610471611145565b6040805160ff9092168252519081900360200190f35b34801561049357600080fd5b50610350600480360360408110156104aa57600080fd5b50803590602001356001600160a01b031661114e565b3480156104cc57600080fd5b50610350600480360360408110156104e357600080fd5b50803590602001356001600160a01b03166111b5565b34801561050557600080fd5b506103506004803603602081101561051c57600080fd5b5035611216565b34801561052f57600080fd5b506103506004803603604081101561054657600080fd5b5080359060200135611287565b34801561055f57600080fd5b506103506004803603604081101561057657600080fd5b506001600160a01b03813581169160200135166114e9565b34801561059a57600080fd5b50610350600480360360208110156105b157600080fd5b50356115f1565b3480156105c457600080fd5b50610420611662565b3480156105d957600080fd5b50610420611690565b3480156105ee57600080fd5b506106156004803603602081101561060557600080fd5b50356001600160a01b03166116d5565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610651578181015183820152602001610639565b505050509050019250505060405180910390f35b34801561067157600080fd5b50610420611741565b34801561068657600080fd5b506106a46004803603602081101561069d57600080fd5b5035611766565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156106d657600080fd5b5061042061178d565b3480156106eb57600080fd5b506103506004803603602081101561070257600080fd5b503515156117b0565b34801561071757600080fd5b506103506004803603604081101561072e57600080fd5b5060ff8135811691602001351661182f565b34801561074c57600080fd5b506103506004803603604081101561076357600080fd5b50803590602001356118c6565b34801561077c57600080fd5b506103506004803603602081101561079357600080fd5b5035611c85565b3480156107a657600080fd5b50610420600480360360408110156107bd57600080fd5b506001600160a01b038135169060200135611cf6565b3480156107df57600080fd5b50610803600480360360408110156107f657600080fd5b5080359060200135611d24565b604080516001600160a01b039092168252519081900360200190f35b34801561082b57600080fd5b506104206004803603604081101561084257600080fd5b50803590602001356001600160a01b0316611d4b565b34801561086457600080fd5b506108916004803603604081101561087b57600080fd5b50803590602001356001600160a01b0316611d68565b604080519115158252519081900360200190f35b3480156108b157600080fd5b50610891611d86565b3480156108c657600080fd5b50610420611d96565b3480156108db57600080fd5b50610420611d9c565b3480156108f057600080fd5b5061091d6004803603604081101561090757600080fd5b50803590602001356001600160a01b0316611da2565b604080519384526001600160a01b039092166020840152151582820152519081900360600190f35b34801561095157600080fd5b50610420611ddb565b34801561096657600080fd5b50610420611de0565b34801561097b57600080fd5b506103506004803603602081101561099257600080fd5b5035611de6565b3480156109a557600080fd5b50610420600480360360408110156109bc57600080fd5b5080359060200135611e57565b3480156109d557600080fd5b50610803611f53565b3480156109ea57600080fd5b50610420611f62565b3480156109ff57600080fd5b5061035060048036036020811015610a1657600080fd5b5035611f68565b61035060048036036060811015610a3357600080fd5b810190602081018135600160201b811115610a4d57600080fd5b820183602082011115610a5f57600080fd5b803590602001918460208302840111600160201b83111715610a8057600080fd5b9193509150803590602001356001600160a01b031661201f565b348015610aa657600080fd5b5061042060048036036020811015610abd57600080fd5b50356120c0565b348015610ad057600080fd5b5061089160048036036040811015610ae757600080fd5b50803590602001356001600160a01b03166120d7565b348015610b0957600080fd5b5061035060048036036020811015610b2057600080fd5b50356120f7565b348015610b3357600080fd5b5061035060048036036040811015610b4a57600080fd5b50803590602001356001600160a01b03166121a7565b348015610b6c57600080fd5b50610420612200565b348015610b8157600080fd5b50610b8a612206565b604080516001600160a01b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b348015610bca57600080fd5b50610beb60048036036020811015610be157600080fd5b503560ff1661222a565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610c2f578181015183820152602001610c17565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610c6e578181015183820152602001610c56565b5050505090500194505050505060405180910390f35b348015610c9057600080fd5b506104206123f2565b348015610ca557600080fd5b5061035060048036036040811015610cbc57600080fd5b50803590602001356001600160a01b0316612416565b606d54606e54606f5460705460715460725460ff9092169186565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610d1f90610d1a61248c565b611d68565b610d5e576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6000607a8660ff1660078110610d7057fe5b60020201805460ff191660019081178255909150610d919082016000613ce3565b6000805b60ff8116861115610f1c5782600101604051806040016040528089898560ff16818110610dbe57fe5b905060200201356001600160a01b03166001600160a01b0316815260200187878560ff16818110610deb57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290869086908416818110610e5d57fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c88888460ff16818110610ea057fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610ef857600080fd5b505af1158015610f0c573d6000803e3d6000fd5b505060019092019150610d959050565b508060ff16606414610f5f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613ecd6032913960400191505060405180910390fd5b50505050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610f9590610d1a61248c565b610fd4576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607155565b610fe1613d04565b610fe9613d04565b60005b60078160ff16101561103657607a8160ff166007811061100857fe5b600202015460ff90811690839083166007811061102157fe5b60ff9092166020929092020152600101610fec565b5090505b90565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061106a90610d1a61248c565b6110a9576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6088805460ff191660ff92909216919091179055565b60009081526033602052604090206002015490565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061110190610d1a61248c565b611140576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606e55565b60885460ff1690565b60008281526033602052604090206002015461116c90610d1a61248c565b6111a75760405162461bcd60e51b815260040180806020018281038252602f815260200180613d8b602f913960400191505060405180910390fd5b6111b18282612490565b5050565b6111bd61248c565b6001600160a01b0316816001600160a01b03161461120c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f32602f913960400191505060405180910390fd5b6111b182826124ff565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061124390610d1a61248c565b611282576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607255565b61128f61256e565b61129761261e565b6000607a6112ac84600763ffffffff61266116565b600781106112b657fe5b600202015460ff1690508061130b57606d548210156113065760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b61135b565b8060ff166001141561135b5760885460ff1682101561135b5760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b6115b38211156113ae576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b60006113b8611662565b600085815260676020526040812091925090816113d361248c565b6001600160a01b03166001600160a01b031681526020019081526020016000209050848211611446576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b80541580159061146257506001810154600160a01b900460ff16155b6114b3576040805162461bcd60e51b815260206004820152601e60248201527f41756374696f6e3a205a65726f20626964206f722077697468647261776e0000604482015290519081900360640190fd5b60018101805460ff60a01b1916600160a01b179081905581546114e2916001600160a01b03169087858861269e565b5050505050565b600054610100900460ff16806115025750611502612a19565b80611510575060005460ff16155b61154b5760405162461bcd60e51b815260040180806020018281038252602e815260200180613e7e602e913960400191505060405180910390fd5b600054610100900460ff16158015611576576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206115a190846111a7565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d0190206115cd90836111a7565b6077805460ff60a01b1916905580156115ec576000805461ff00191690555b505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061161e90610d1a61248c565b61165d576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607955565b600061168b606c5461167f606b5442612a1f90919063ffffffff16565b9063ffffffff612a6116565b905090565b60008061169b611662565b90506116cf6116c26116b483600763ffffffff61266116565b60079063ffffffff612a1f16565b829063ffffffff612aa016565b91505090565b6001600160a01b03811660009081526066602090815260409182902080548351818402810184019094528084526060939283018282801561173557602002820191906000526020600020905b815481526020019060010190808311611721575b50505050509050919050565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b60656020526000908152604090208054600182015460028301546003909301549192909184565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206117dd90610d1a61248c565b61181c576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6070805460ff1916911515919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061185c90610d1a61248c565b61189b576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b80607a8360ff16600781106118ac57fe5b60020201805460ff191660ff929092169190911790555050565b6118ce61256e565b6118d661261e565b606a5482111561192b576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881a59602a1b604482015290519081900360640190fd5b606d5481101561196c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b6115b38111156119bf576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b60006119c9611662565b9050828111611a1c576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b600083815260676020526040812081611a3361248c565b6001600160a01b0316815260208101919091526040016000208054909150158015611a6a57506001810154600160a01b900460ff16155b611ab9576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881251602a1b604482015290519081900360640190fd5b60775460009081906001600160a01b0316635f9406b487611ad861248c565b6040518363ffffffff1660e01b815260040180838152602001826001600160a01b03166001600160a01b03168152602001925050506040805180830381600087803b158015611b2657600080fd5b505af1158015611b3a573d6000803e3d6000fd5b505050506040513d6040811015611b5057600080fd5b508051602090910151909250905081611b9a5760405162461bcd60e51b8152600401808060200182810382526033815260200180613dba6033913960400191505060405180910390fd5b611ba7818388878961269e565b604080516060810182528381526001600160a01b038316602080830191909152600182840152600089815260679091529182209091611be461248c565b6001600160a01b0390811682526020808301939093526040918201600090812085518155938501516001909401805495909301511515600160a01b0260ff60a01b19949092166001600160a01b03199095169490941792909216919091179055606690611c4f61248c565b6001600160a01b031681526020808201929092526040016000908120805460018101825590825291902001959095555050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611cb290610d1a61248c565b611cf1576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606f55565b60666020528160005260406000208181548110611d0f57fe5b90600052602060002001600091509150505481565b6000828152603360205260408120611d42908363ffffffff612af816565b90505b92915050565b607860209081526000928352604080842090915290825290205481565b6000828152603360205260408120611d42908363ffffffff612b0416565b607754600160a01b900460ff1681565b60695481565b606a5481565b6067602090815260009283526040808420909152908252902080546001909101546001600160a01b03811690600160a01b900460ff1683565b600081565b606c5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611e1390610d1a61248c565b611e52576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606d55565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b019020600090611e8690610d1a61248c565b611ec5576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b61016d831115611f065760405162461bcd60e51b8152600401808060200182810382526033815260200180613eff6033913960400191505060405180910390fd5b6000611f10611662565b84810160008181526065602052604090206001015491925090611f39908563ffffffff612aa016565b600082815260656020526040902060010155949350505050565b6077546001600160a01b031681565b606b5481565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b019020611f9490610d1a61248c565b611fd3576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b6000611fdd611662565b600180820160008181526065602052604090209091015491925090612008908463ffffffff612aa016565b600091825260656020526040909120600101555050565b6000612029612b19565b90506000607a826007811061203a57fe5b600202015460ff1690508061206c576120678686600081811061205957fe5b905060200201358585612b37565b6120b8565b8060ff16600114156120b8576120b8868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250869150612cc69050565b505050505050565b6000818152603360205260408120611d4590613121565b606860209081526000928352604080842090915290825290205460ff1681565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061212390610d1a61248c565b612162576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b600061216c611690565b600081815260656020526040902060010154909150612191908363ffffffff612aa016565b6000918252606560205260409091206001015550565b6000828152603360205260409020600201546121c590610d1a61248c565b61120c5760405162461bcd60e51b8152600401808060200182810382526030815260200180613e2d6030913960400191505060405180910390fd5b60795481565b6073546074546075546076546001600160a01b039384169392831692918216911684565b6060806060607a8460ff166007811061223f57fe5b60020201600101805480602002602001604051908101604052809291908181526020016000905b828210156122b557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101612266565b505050509050606081516001600160401b03811180156122d457600080fd5b506040519080825280602002602001820160405280156122fe578160200160208202803683370190505b509050606082516001600160401b038111801561231a57600080fd5b50604051908082528060200260200182016040528015612344578160200160208202803683370190505b50905060005b83518160ff1610156123e657838160ff168151811061236557fe5b602002602001015160000151838260ff168151811061238057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050838160ff16815181106123af57fe5b6020026020010151602001516001600160601b0316828260ff16815181106123d357fe5b602090810291909101015260010161234a565b50909350915050915091565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061244390610d1a61248c565b612482576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6111b182826111a7565b3390565b60008281526033602052604090206124ae908263ffffffff61312c16565b156111b1576124bb61248c565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260336020526040902061251d908263ffffffff61314116565b156111b15761252a61248c565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000612578611662565b9050612582613d22565b60656000606954815260200190815260200160002060405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505090508160695410156111b1576069548151602080840151604080519384529183015280517fffb09ad5e94e90b2d6b7665b8971615b9cc37b1aa053b4e6d3bf02ffcda1449d9281900390910190a250606955565b6000612628611662565b9050612632613156565b60008281526065602052604090206002015561264c6133b4565b60009182526065602052604090912060030155565b6000611d42838360405180604001604052806018815260200177536166654d6174683a206d6f64756c6f206279207a65726f60401b815250613469565b60006126aa848661350a565b905060006126b9858784613536565b9050808211156127175760006126cd611690565b90506127006126e2848463ffffffff612a1f16565b6000838152606560205260409020600101549063ffffffff612aa016565b600091825260656020526040909120600101559050805b6001600160a01b0387166128515760735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561277857600080fd5b505af115801561278c573d6000803e3d6000fd5b50506074546001600160a01b03169150631f5a56a8905083856127ad61248c565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b15801561280357600080fd5b505af1158015612817573d6000803e3d6000fd5b5050604080518581524260208201528082018790529051879350339250600080516020613ded8339815191529181900360600190a3610f5f565b60735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156128a457600080fd5b505af11580156128b8573d6000803e3d6000fd5b505050506000806128c8846135e2565b90925090506128dd848263ffffffff612aa016565b6074549094506001600160a01b0316631f5a56a885876128fb61248c565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b15801561295157600080fd5b505af1158015612965573d6000803e3d6000fd5b5050604080518781524260208201528082018990529051899350339250600080516020613ded8339815191529181900360600190a3607454604080516303eb4ad560e31b815260048101859052600e60248201526001600160a01b038c8116604483015291519190921691631f5a56a891606480830192600092919082900301818387803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050505050505050505050565b303b1590565b6000611d4283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613631565b6000611d4283836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b81525061368b565b600082820183811015611d42576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000611d4283836136f0565b6000611d42836001600160a01b038416613754565b600080612b24611662565b90506116cf81600763ffffffff61266116565b612b3f61256e565b612b4761261e565b806001600160a01b0316612b5961248c565b6001600160a01b03161415612ba9576040805162461bcd60e51b815260206004820152601160248201527036b9b39739b2b73232b9101e9e903932b360791b604482015290519081900360640190fd5b600080612bb461376c565b6073549193509150612bd1906001600160a01b03168683876137a5565b506000612bdc611662565b60705490915060ff16151560011415612c3c5760008181526067602052604081208591612c0761248c565b6001600160a01b039081168252602082019290925260400160002060010180546001600160a01b031916929091169190911790555b612c4581613a1b565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612c7f573d6000803e3d6000fd5b50604080513481524260208201528151839233927f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b305929081900390910190a3505050505050565b612cce61256e565b612cd661261e565b6000607a8260078110612ce557fe5b600202016001019050606081805490506001600160401b0381118015612d0a57600080fd5b50604051908082528060200260200182016040528015612d34578160200160208202803683370190505b5082549091506060906001600160401b0381118015612d5257600080fd5b50604051908082528060200260200182016040528015612d7c578160200160208202803683370190505b50905060005b835460ff8216101561302c57600080612dcb606461167f888660ff1681548110612da857fe5b6000918252602090912001543490600160a01b90046001600160601b0316613b76565b90506001600160a01b038016868460ff1681548110612de657fe5b6000918252602090912001546001600160a01b031614612efb57612e4a868460ff1681548110612e1257fe5b6000918252602090912001548a516001600160a01b03909116908b9060ff8716908110612e3b57fe5b6020026020010151838b6137a5565b60745460765488549294506001600160a01b0391821692632de73a6c92339216908a9060ff8916908110612e7a57fe5b6000918252602082200154604080516001600160e01b031960e088901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818387803b158015612ede57600080fd5b505af1158015612ef2573d6000803e3d6000fd5b50505050612faf565b607454607654875492935083926001600160a01b0392831692632de73a6c9285923392909116908b9060ff8a16908110612f3157fe5b6000918252602082200154604080516001600160e01b031960e089901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818588803b158015612f9557600080fd5b505af1158015612fa9573d6000803e3d6000fd5b50505050505b858360ff1681548110612fbe57fe5b60009182526020909120015485516001600160a01b0390911690869060ff8616908110612fe757fe5b60200260200101906001600160a01b031690816001600160a01b03168152505081848460ff168151811061301757fe5b60209081029190910101525050600101612d82565b506000613037611662565b905061304281613a1b565b80336001600160a01b03167f61d9930fc02b9896dcb23a5292a08b6a2253708d670c77b334c2a63e9319d2ca34428787604051808581526020018481526020018060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156130c25781810151838201526020016130aa565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156131015781810151838201526020016130e9565b50505050905001965050505050505060405180910390a350505050505050565b6000611d4582613bcf565b6000611d42836001600160a01b038416613bd3565b6000611d42836001600160a01b038416613c1d565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b1580156131c057600080fd5b505afa1580156131d4573d6000803e3d6000fd5b505050506040513d60208110156131ea57600080fd5b5051815182906000906131f957fe5b6001600160a01b03928316602091820292909201015260735482519116908290600190811061322457fe5b6001600160a01b039283166020918202929092018101919091526075546040805163d06ca61f60e01b8152670de0b6b3a76400006004820181815260248301938452875160448401528751600097959095169563d06ca61f9592948994929390926064019185810191028083838c5b838110156132ab578181015183820152602001613293565b50505050905001935050505060006040518083038186803b1580156132cf57600080fd5b505afa1580156132e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561330c57600080fd5b8101908080516040519392919084600160201b82111561332b57600080fd5b90830190602082018581111561334057600080fd5b82518660208202830111600160201b8211171561335c57600080fd5b82525081516020918201928201910280838360005b83811015613389578181015183820152602001613371565b505050509050016040525050506001815181106133a257fe5b60200260200101519050809250505090565b6000806133bf611662565b9050806000805b6079548114613441576000838152606560205260409020600201541561341f5760008381526065602052604090206002015461340990839063ffffffff612aa016565b915061341c81600163ffffffff612aa016565b90505b8261342957613441565b61343a83600163ffffffff612a1f16565b92506133c6565b816134595761344e613156565b94505050505061103a565b61344e828263ffffffff612a6116565b600081836134f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134ba5781810151838201526020016134a2565b50505050905090810190601f1680156134e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508284816134ff57fe5b0690505b9392505050565b60008281526065602052604081208054600190910154611d42919061167f90859063ffffffff613b7616565b600083815260656020526040812060030154819061356890670de0b6b3a76400009061167f908763ffffffff613b7616565b905060006135c561358c606461167f606d6005015486613b7690919063ffffffff16565b6135b96135ac606461167f606d6004015488613b7690919063ffffffff16565b859063ffffffff612aa016565b9063ffffffff612a1f16565b9050808411156135d85791506135039050565b8392505050613503565b6000806000613604606461167f606d6001015487613b7690919063ffffffff16565b90506000613625606461167f606d6002015488613b7690919063ffffffff16565b91935090915050915091565b600081848411156136835760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156134ba5781810151838201526020016134a2565b505050900390565b600081836136da5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156134ba5781810151838201526020016134a2565b5060008385816136e657fe5b0495945050505050565b815460009082106137325760405162461bcd60e51b8152600401808060200182810382526022815260200180613d696022913960400191505060405180910390fd5b82600001828154811061374157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008080613786606461167f34601463ffffffff613b7616565b9050600061379a348363ffffffff612a1f16565b919350909150509091565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561380f57600080fd5b505afa158015613823573d6000803e3d6000fd5b505050506040513d602081101561383957600080fd5b50518151829060009061384857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050858160018151811061387657fe5b6001600160a01b03928316602091820292909201810191909152607554607454604051637ff36ab560e01b8152600481018a815291851660448201819052606482018990526080602483019081528751608484015287519490961695637ff36ab5958b958d958a958d949193919260a490910191878101910280838360005b8381101561390d5781810151838201526020016138f5565b50505050905001955050505050506000604051808303818588803b15801561393457600080fd5b505af1158015613948573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052602081101561397257600080fd5b8101908080516040519392919084600160201b82111561399157600080fd5b9083019060208201858111156139a657600080fd5b82518660208202830111600160201b821117156139c257600080fd5b82525081516020918201928201910280838360005b838110156139ef5781810151838201526020016139d7565b50505050905001604052505050600181518110613a0857fe5b6020026020010151915050949350505050565b6000818152606760205260408120613a5e91349190613a3861248c565b6001600160a01b031681526020810191909152604001600020549063ffffffff612aa016565b600082815260676020526040812090613a7561248c565b6001600160a01b0316815260208082019290925260409081016000908120939093558383526068909152812090613aaa61248c565b6001600160a01b0316815260208101919091526040016000205460ff16613b455760666000613ad761248c565b6001600160a01b031681526020808201929092526040908101600090812080546001818101835591835284832001859055848252606890935290812090613b1c61248c565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b600081815260656020526040902054613b64903463ffffffff612aa016565b60009182526065602052604090912055565b600082613b8557506000611d45565b82820282848281613b9257fe5b0414611d425760405162461bcd60e51b8152600401808060200182810382526021815260200180613eac6021913960400191505060405180910390fd5b5490565b6000613bdf8383613754565b613c1557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611d45565b506000611d45565b60008181526001830160205260408120548015613cd95783546000198083019190810190600090879083908110613c5057fe5b9060005260206000200154905080876000018481548110613c6d57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611d45565b6000915050611d45565b5080546000825590600052602060002090810190613d019190613d4a565b50565b6040518060e001604052806007906020820280368337509192915050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b61103a91905b80821115613d645760008155600101613d50565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7441756374696f6e3a205a65726f2062616c616e636520696e2061756374696f6e2f696e76616c69642061756374696f6e20494432951f3c79f640ca000d6b542b604bff927f40f08ad9a226a81a68e7281b391443616c6c6572206973206e6f7420612063616c6c657220726f6c650000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6541756374696f6e3a207374616b6544617973203c206d696e696d756d2064617973496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7741554354494f4e3a2050657263656e7461676520666f722076656e7475726520646179206d75737420657175616c2031303041554354494f4e3a204461797320696e206675747572652063616e206e6f742062652067726561746572207468656e20333635416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6643616c6c6572206973206e6f742061206d616e6167657220726f6c6500000000a2646970667358221220c09edc132d3df4751ddbb3ee543cf70dac13d2565e01b5adc4e67c8edc371f7964736f6c63430006080033

Deployed Bytecode

0x60806040526004361061022e5760003560e01c80631069143a14610233578063124341891461027b578063154ec2db146103525780631bc699e51461037c57806320650746146103c9578063248a9ca3146103f65780632b7d2559146104325780632bbecc071461045c5780632f2ff15d1461048757806336568abe146104c057806340af7ba5146104f9578063441a3e7014610523578063485cc955146105535780634b15bee61461058e5780634bc2e48d146105b8578063586f7c3a146105cd5780635ae6ea70146105e25780636fae2e15146106655780637492ec691461067a578063774237fc146106ca5780637a4317dd146106df5780637a89fa701461070b5780637bd94dd2146107405780637ed386d8146107705780638501313f1461079a5780639010d07c146107d357806390a590871461081f57806391d1485414610858578063982e52fb146108a55780639d8cd337146108ba5780639e697991146108cf578063a122dfc5146108e4578063a217fddf14610945578063a2e6f9bf1461095a578063a2f96a081461096f578063b15c480414610999578063b3a6807c146109c9578063be9a6555146109de578063c22fd76f146109f3578063c9690f7a14610a1d578063ca15c87314610a9a578063ccbbc9b314610ac4578063cd7c141c14610afd578063d547741f14610b27578063d82117a614610b60578063da0321cd14610b75578063ebf5b06214610bbe578063ec87621c14610c84578063fa82ac7614610c99575b600080fd5b34801561023f57600080fd5b50610248610cd2565b604080519687526020870195909552858501939093529015156060850152608084015260a0830152519081900360c00190f35b34801561028757600080fd5b506103506004803603606081101561029e57600080fd5b60ff8235169190810190604081016020820135600160201b8111156102c257600080fd5b8201836020820111156102d457600080fd5b803590602001918460208302840111600160201b831117156102f557600080fd5b919390929091602081019035600160201b81111561031257600080fd5b82018360208201111561032457600080fd5b803590602001918460208302840111600160201b8311171561034557600080fd5b509092509050610ced565b005b34801561035e57600080fd5b506103506004803603602081101561037557600080fd5b5035610f68565b34801561038857600080fd5b50610391610fd9565b604051808260e080838360005b838110156103b657818101518382015260200161039e565b5050505090500191505060405180910390f35b3480156103d557600080fd5b50610350600480360360208110156103ec57600080fd5b503560ff1661103d565b34801561040257600080fd5b506104206004803603602081101561041957600080fd5b50356110bf565b60408051918252519081900360200190f35b34801561043e57600080fd5b506103506004803603602081101561045557600080fd5b50356110d4565b34801561046857600080fd5b50610471611145565b6040805160ff9092168252519081900360200190f35b34801561049357600080fd5b50610350600480360360408110156104aa57600080fd5b50803590602001356001600160a01b031661114e565b3480156104cc57600080fd5b50610350600480360360408110156104e357600080fd5b50803590602001356001600160a01b03166111b5565b34801561050557600080fd5b506103506004803603602081101561051c57600080fd5b5035611216565b34801561052f57600080fd5b506103506004803603604081101561054657600080fd5b5080359060200135611287565b34801561055f57600080fd5b506103506004803603604081101561057657600080fd5b506001600160a01b03813581169160200135166114e9565b34801561059a57600080fd5b50610350600480360360208110156105b157600080fd5b50356115f1565b3480156105c457600080fd5b50610420611662565b3480156105d957600080fd5b50610420611690565b3480156105ee57600080fd5b506106156004803603602081101561060557600080fd5b50356001600160a01b03166116d5565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610651578181015183820152602001610639565b505050509050019250505060405180910390f35b34801561067157600080fd5b50610420611741565b34801561068657600080fd5b506106a46004803603602081101561069d57600080fd5b5035611766565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156106d657600080fd5b5061042061178d565b3480156106eb57600080fd5b506103506004803603602081101561070257600080fd5b503515156117b0565b34801561071757600080fd5b506103506004803603604081101561072e57600080fd5b5060ff8135811691602001351661182f565b34801561074c57600080fd5b506103506004803603604081101561076357600080fd5b50803590602001356118c6565b34801561077c57600080fd5b506103506004803603602081101561079357600080fd5b5035611c85565b3480156107a657600080fd5b50610420600480360360408110156107bd57600080fd5b506001600160a01b038135169060200135611cf6565b3480156107df57600080fd5b50610803600480360360408110156107f657600080fd5b5080359060200135611d24565b604080516001600160a01b039092168252519081900360200190f35b34801561082b57600080fd5b506104206004803603604081101561084257600080fd5b50803590602001356001600160a01b0316611d4b565b34801561086457600080fd5b506108916004803603604081101561087b57600080fd5b50803590602001356001600160a01b0316611d68565b604080519115158252519081900360200190f35b3480156108b157600080fd5b50610891611d86565b3480156108c657600080fd5b50610420611d96565b3480156108db57600080fd5b50610420611d9c565b3480156108f057600080fd5b5061091d6004803603604081101561090757600080fd5b50803590602001356001600160a01b0316611da2565b604080519384526001600160a01b039092166020840152151582820152519081900360600190f35b34801561095157600080fd5b50610420611ddb565b34801561096657600080fd5b50610420611de0565b34801561097b57600080fd5b506103506004803603602081101561099257600080fd5b5035611de6565b3480156109a557600080fd5b50610420600480360360408110156109bc57600080fd5b5080359060200135611e57565b3480156109d557600080fd5b50610803611f53565b3480156109ea57600080fd5b50610420611f62565b3480156109ff57600080fd5b5061035060048036036020811015610a1657600080fd5b5035611f68565b61035060048036036060811015610a3357600080fd5b810190602081018135600160201b811115610a4d57600080fd5b820183602082011115610a5f57600080fd5b803590602001918460208302840111600160201b83111715610a8057600080fd5b9193509150803590602001356001600160a01b031661201f565b348015610aa657600080fd5b5061042060048036036020811015610abd57600080fd5b50356120c0565b348015610ad057600080fd5b5061089160048036036040811015610ae757600080fd5b50803590602001356001600160a01b03166120d7565b348015610b0957600080fd5b5061035060048036036020811015610b2057600080fd5b50356120f7565b348015610b3357600080fd5b5061035060048036036040811015610b4a57600080fd5b50803590602001356001600160a01b03166121a7565b348015610b6c57600080fd5b50610420612200565b348015610b8157600080fd5b50610b8a612206565b604080516001600160a01b039586168152938516602085015291841683830152909216606082015290519081900360800190f35b348015610bca57600080fd5b50610beb60048036036020811015610be157600080fd5b503560ff1661222a565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015610c2f578181015183820152602001610c17565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610c6e578181015183820152602001610c56565b5050505090500194505050505060405180910390f35b348015610c9057600080fd5b506104206123f2565b348015610ca557600080fd5b5061035060048036036040811015610cbc57600080fd5b50803590602001356001600160a01b0316612416565b606d54606e54606f5460705460715460725460ff9092169186565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610d1f90610d1a61248c565b611d68565b610d5e576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6000607a8660ff1660078110610d7057fe5b60020201805460ff191660019081178255909150610d919082016000613ce3565b6000805b60ff8116861115610f1c5782600101604051806040016040528089898560ff16818110610dbe57fe5b905060200201356001600160a01b03166001600160a01b0316815260200187878560ff16818110610deb57fe5b60ff60209182029390930135831690935250835460018101855560009485529382902083519401805493909201516001600160601b0316600160a01b026001600160a01b039485166001600160a01b0319909416939093179093169190911790558290869086908416818110610e5d57fe5b9050602002013560ff16019150607360010160009054906101000a90046001600160a01b03166001600160a01b0316630fe82a9c88888460ff16818110610ea057fe5b905060200201356001600160a01b03166040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610ef857600080fd5b505af1158015610f0c573d6000803e3d6000fd5b505060019092019150610d959050565b508060ff16606414610f5f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613ecd6032913960400191505060405180910390fd5b50505050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020610f9590610d1a61248c565b610fd4576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607155565b610fe1613d04565b610fe9613d04565b60005b60078160ff16101561103657607a8160ff166007811061100857fe5b600202015460ff90811690839083166007811061102157fe5b60ff9092166020929092020152600101610fec565b5090505b90565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061106a90610d1a61248c565b6110a9576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6088805460ff191660ff92909216919091179055565b60009081526033602052604090206002015490565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061110190610d1a61248c565b611140576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606e55565b60885460ff1690565b60008281526033602052604090206002015461116c90610d1a61248c565b6111a75760405162461bcd60e51b815260040180806020018281038252602f815260200180613d8b602f913960400191505060405180910390fd5b6111b18282612490565b5050565b6111bd61248c565b6001600160a01b0316816001600160a01b03161461120c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613f32602f913960400191505060405180910390fd5b6111b182826124ff565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061124390610d1a61248c565b611282576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607255565b61128f61256e565b61129761261e565b6000607a6112ac84600763ffffffff61266116565b600781106112b657fe5b600202015460ff1690508061130b57606d548210156113065760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b61135b565b8060ff166001141561135b5760885460ff1682101561135b5760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b6115b38211156113ae576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b60006113b8611662565b600085815260676020526040812091925090816113d361248c565b6001600160a01b03166001600160a01b031681526020019081526020016000209050848211611446576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b80541580159061146257506001810154600160a01b900460ff16155b6114b3576040805162461bcd60e51b815260206004820152601e60248201527f41756374696f6e3a205a65726f20626964206f722077697468647261776e0000604482015290519081900360640190fd5b60018101805460ff60a01b1916600160a01b179081905581546114e2916001600160a01b03169087858861269e565b5050505050565b600054610100900460ff16806115025750611502612a19565b80611510575060005460ff16155b61154b5760405162461bcd60e51b815260040180806020018281038252602e815260200180613e7e602e913960400191505060405180910390fd5b600054610100900460ff16158015611576576000805460ff1961ff0019909116610100171660011790555b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206115a190846111a7565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d0190206115cd90836111a7565b6077805460ff60a01b1916905580156115ec576000805461ff00191690555b505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061161e90610d1a61248c565b61165d576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b607955565b600061168b606c5461167f606b5442612a1f90919063ffffffff16565b9063ffffffff612a6116565b905090565b60008061169b611662565b90506116cf6116c26116b483600763ffffffff61266116565b60079063ffffffff612a1f16565b829063ffffffff612aa016565b91505090565b6001600160a01b03811660009081526066602090815260409182902080548351818402810184019094528084526060939283018282801561173557602002820191906000526020600020905b815481526020019060010190808311611721575b50505050509050919050565b604080516c4d49475241544f525f524f4c4560981b8152905190819003600d01902081565b60656020526000908152604090208054600182015460028301546003909301549192909184565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c0190206117dd90610d1a61248c565b61181c576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6070805460ff1916911515919091179055565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061185c90610d1a61248c565b61189b576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b80607a8360ff16600781106118ac57fe5b60020201805460ff191660ff929092169190911790555050565b6118ce61256e565b6118d661261e565b606a5482111561192b576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881a59602a1b604482015290519081900360640190fd5b606d5481101561196c5760405162461bcd60e51b8152600401808060200182810382526021815260200180613e5d6021913960400191505060405180910390fd5b6115b38111156119bf576040805162461bcd60e51b815260206004820152601960248201527841756374696f6e3a207374616b6544617973203e203535353560381b604482015290519081900360640190fd5b60006119c9611662565b9050828111611a1c576040805162461bcd60e51b815260206004820152601a60248201527941756374696f6e3a2041756374696f6e2069732061637469766560301b604482015290519081900360640190fd5b600083815260676020526040812081611a3361248c565b6001600160a01b0316815260208101919091526040016000208054909150158015611a6a57506001810154600160a01b900460ff16155b611ab9576040805162461bcd60e51b815260206004820152601b60248201527a105d58dd1a5bdb8e88125b9d985b1a5908185d58dd1a5bdb881251602a1b604482015290519081900360640190fd5b60775460009081906001600160a01b0316635f9406b487611ad861248c565b6040518363ffffffff1660e01b815260040180838152602001826001600160a01b03166001600160a01b03168152602001925050506040805180830381600087803b158015611b2657600080fd5b505af1158015611b3a573d6000803e3d6000fd5b505050506040513d6040811015611b5057600080fd5b508051602090910151909250905081611b9a5760405162461bcd60e51b8152600401808060200182810382526033815260200180613dba6033913960400191505060405180910390fd5b611ba7818388878961269e565b604080516060810182528381526001600160a01b038316602080830191909152600182840152600089815260679091529182209091611be461248c565b6001600160a01b0390811682526020808301939093526040918201600090812085518155938501516001909401805495909301511515600160a01b0260ff60a01b19949092166001600160a01b03199095169490941792909216919091179055606690611c4f61248c565b6001600160a01b031681526020808201929092526040016000908120805460018101825590825291902001959095555050505050565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611cb290610d1a61248c565b611cf1576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606f55565b60666020528160005260406000208181548110611d0f57fe5b90600052602060002001600091509150505481565b6000828152603360205260408120611d42908363ffffffff612af816565b90505b92915050565b607860209081526000928352604080842090915290825290205481565b6000828152603360205260408120611d42908363ffffffff612b0416565b607754600160a01b900460ff1681565b60695481565b606a5481565b6067602090815260009283526040808420909152908252902080546001909101546001600160a01b03811690600160a01b900460ff1683565b600081565b606c5481565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c019020611e1390610d1a61248c565b611e52576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b606d55565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b019020600090611e8690610d1a61248c565b611ec5576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b61016d831115611f065760405162461bcd60e51b8152600401808060200182810382526033815260200180613eff6033913960400191505060405180910390fd5b6000611f10611662565b84810160008181526065602052604090206001015491925090611f39908563ffffffff612aa016565b600082815260656020526040902060010155949350505050565b6077546001600160a01b031681565b606b5481565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b019020611f9490610d1a61248c565b611fd3576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b6000611fdd611662565b600180820160008181526065602052604090209091015491925090612008908463ffffffff612aa016565b600091825260656020526040909120600101555050565b6000612029612b19565b90506000607a826007811061203a57fe5b600202015460ff1690508061206c576120678686600081811061205957fe5b905060200201358585612b37565b6120b8565b8060ff16600114156120b8576120b8868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250889250869150612cc69050565b505050505050565b6000818152603360205260408120611d4590613121565b606860209081526000928352604080842090915290825290205460ff1681565b604080516a43414c4c45525f524f4c4560a81b8152905190819003600b01902061212390610d1a61248c565b612162576040805162461bcd60e51b815260206004820152601b6024820152600080516020613e0d833981519152604482015290519081900360640190fd5b600061216c611690565b600081815260656020526040902060010154909150612191908363ffffffff612aa016565b6000918252606560205260409091206001015550565b6000828152603360205260409020600201546121c590610d1a61248c565b61120c5760405162461bcd60e51b8152600401808060200182810382526030815260200180613e2d6030913960400191505060405180910390fd5b60795481565b6073546074546075546076546001600160a01b039384169392831692918216911684565b6060806060607a8460ff166007811061223f57fe5b60020201600101805480602002602001604051908101604052809291908181526020016000905b828210156122b557600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101612266565b505050509050606081516001600160401b03811180156122d457600080fd5b506040519080825280602002602001820160405280156122fe578160200160208202803683370190505b509050606082516001600160401b038111801561231a57600080fd5b50604051908082528060200260200182016040528015612344578160200160208202803683370190505b50905060005b83518160ff1610156123e657838160ff168151811061236557fe5b602002602001015160000151838260ff168151811061238057fe5b60200260200101906001600160a01b031690816001600160a01b031681525050838160ff16815181106123af57fe5b6020026020010151602001516001600160601b0316828260ff16815181106123d357fe5b602090810291909101015260010161234a565b50909350915050915091565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902081565b604080516b4d414e414745525f524f4c4560a01b8152905190819003600c01902061244390610d1a61248c565b612482576040805162461bcd60e51b815260206004820152601c6024820152600080516020613f61833981519152604482015290519081900360640190fd5b6111b182826111a7565b3390565b60008281526033602052604090206124ae908263ffffffff61312c16565b156111b1576124bb61248c565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260336020526040902061251d908263ffffffff61314116565b156111b15761252a61248c565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000612578611662565b9050612582613d22565b60656000606954815260200190815260200160002060405180608001604052908160008201548152602001600182015481526020016002820154815260200160038201548152505090508160695410156111b1576069548151602080840151604080519384529183015280517fffb09ad5e94e90b2d6b7665b8971615b9cc37b1aa053b4e6d3bf02ffcda1449d9281900390910190a250606955565b6000612628611662565b9050612632613156565b60008281526065602052604090206002015561264c6133b4565b60009182526065602052604090912060030155565b6000611d42838360405180604001604052806018815260200177536166654d6174683a206d6f64756c6f206279207a65726f60401b815250613469565b60006126aa848661350a565b905060006126b9858784613536565b9050808211156127175760006126cd611690565b90506127006126e2848463ffffffff612a1f16565b6000838152606560205260409020600101549063ffffffff612aa016565b600091825260656020526040909120600101559050805b6001600160a01b0387166128515760735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561277857600080fd5b505af115801561278c573d6000803e3d6000fd5b50506074546001600160a01b03169150631f5a56a8905083856127ad61248c565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b15801561280357600080fd5b505af1158015612817573d6000803e3d6000fd5b5050604080518581524260208201528082018790529051879350339250600080516020613ded8339815191529181900360600190a3610f5f565b60735460408051632770a7eb60e21b81523060048201526024810185905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156128a457600080fd5b505af11580156128b8573d6000803e3d6000fd5b505050506000806128c8846135e2565b90925090506128dd848263ffffffff612aa016565b6074549094506001600160a01b0316631f5a56a885876128fb61248c565b6040518463ffffffff1660e01b815260040180848152602001838152602001826001600160a01b03166001600160a01b031681526020019350505050600060405180830381600087803b15801561295157600080fd5b505af1158015612965573d6000803e3d6000fd5b5050604080518781524260208201528082018990529051899350339250600080516020613ded8339815191529181900360600190a3607454604080516303eb4ad560e31b815260048101859052600e60248201526001600160a01b038c8116604483015291519190921691631f5a56a891606480830192600092919082900301818387803b1580156129f657600080fd5b505af1158015612a0a573d6000803e3d6000fd5b50505050505050505050505050565b303b1590565b6000611d4283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613631565b6000611d4283836040518060400160405280601a815260200179536166654d6174683a206469766973696f6e206279207a65726f60301b81525061368b565b600082820183811015611d42576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000611d4283836136f0565b6000611d42836001600160a01b038416613754565b600080612b24611662565b90506116cf81600763ffffffff61266116565b612b3f61256e565b612b4761261e565b806001600160a01b0316612b5961248c565b6001600160a01b03161415612ba9576040805162461bcd60e51b815260206004820152601160248201527036b9b39739b2b73232b9101e9e903932b360791b604482015290519081900360640190fd5b600080612bb461376c565b6073549193509150612bd1906001600160a01b03168683876137a5565b506000612bdc611662565b60705490915060ff16151560011415612c3c5760008181526067602052604081208591612c0761248c565b6001600160a01b039081168252602082019290925260400160002060010180546001600160a01b031916929091169190911790555b612c4581613a1b565b6076546040516001600160a01b039091169084156108fc029085906000818181858888f19350505050158015612c7f573d6000803e3d6000fd5b50604080513481524260208201528151839233927f4dcc013473324698bfbe263facec4ea4b1bc43624236542deabec62c2122b305929081900390910190a3505050505050565b612cce61256e565b612cd661261e565b6000607a8260078110612ce557fe5b600202016001019050606081805490506001600160401b0381118015612d0a57600080fd5b50604051908082528060200260200182016040528015612d34578160200160208202803683370190505b5082549091506060906001600160401b0381118015612d5257600080fd5b50604051908082528060200260200182016040528015612d7c578160200160208202803683370190505b50905060005b835460ff8216101561302c57600080612dcb606461167f888660ff1681548110612da857fe5b6000918252602090912001543490600160a01b90046001600160601b0316613b76565b90506001600160a01b038016868460ff1681548110612de657fe5b6000918252602090912001546001600160a01b031614612efb57612e4a868460ff1681548110612e1257fe5b6000918252602090912001548a516001600160a01b03909116908b9060ff8716908110612e3b57fe5b6020026020010151838b6137a5565b60745460765488549294506001600160a01b0391821692632de73a6c92339216908a9060ff8916908110612e7a57fe5b6000918252602082200154604080516001600160e01b031960e088901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818387803b158015612ede57600080fd5b505af1158015612ef2573d6000803e3d6000fd5b50505050612faf565b607454607654875492935083926001600160a01b0392831692632de73a6c9285923392909116908b9060ff8a16908110612f3157fe5b6000918252602082200154604080516001600160e01b031960e089901b1681526001600160a01b0395861660048201529385166024850152931660448301526064820187905291516084808301939282900301818588803b158015612f9557600080fd5b505af1158015612fa9573d6000803e3d6000fd5b50505050505b858360ff1681548110612fbe57fe5b60009182526020909120015485516001600160a01b0390911690869060ff8616908110612fe757fe5b60200260200101906001600160a01b031690816001600160a01b03168152505081848460ff168151811061301757fe5b60209081029190910101525050600101612d82565b506000613037611662565b905061304281613a1b565b80336001600160a01b03167f61d9930fc02b9896dcb23a5292a08b6a2253708d670c77b334c2a63e9319d2ca34428787604051808581526020018481526020018060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156130c25781810151838201526020016130aa565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156131015781810151838201526020016130e9565b50505050905001965050505050505060405180910390a350505050505050565b6000611d4582613bcf565b6000611d42836001600160a01b038416613bd3565b6000611d42836001600160a01b038416613c1d565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b1580156131c057600080fd5b505afa1580156131d4573d6000803e3d6000fd5b505050506040513d60208110156131ea57600080fd5b5051815182906000906131f957fe5b6001600160a01b03928316602091820292909201015260735482519116908290600190811061322457fe5b6001600160a01b039283166020918202929092018101919091526075546040805163d06ca61f60e01b8152670de0b6b3a76400006004820181815260248301938452875160448401528751600097959095169563d06ca61f9592948994929390926064019185810191028083838c5b838110156132ab578181015183820152602001613293565b50505050905001935050505060006040518083038186803b1580156132cf57600080fd5b505afa1580156132e3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561330c57600080fd5b8101908080516040519392919084600160201b82111561332b57600080fd5b90830190602082018581111561334057600080fd5b82518660208202830111600160201b8211171561335c57600080fd5b82525081516020918201928201910280838360005b83811015613389578181015183820152602001613371565b505050509050016040525050506001815181106133a257fe5b60200260200101519050809250505090565b6000806133bf611662565b9050806000805b6079548114613441576000838152606560205260409020600201541561341f5760008381526065602052604090206002015461340990839063ffffffff612aa016565b915061341c81600163ffffffff612aa016565b90505b8261342957613441565b61343a83600163ffffffff612a1f16565b92506133c6565b816134595761344e613156565b94505050505061103a565b61344e828263ffffffff612a6116565b600081836134f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134ba5781810151838201526020016134a2565b50505050905090810190601f1680156134e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508284816134ff57fe5b0690505b9392505050565b60008281526065602052604081208054600190910154611d42919061167f90859063ffffffff613b7616565b600083815260656020526040812060030154819061356890670de0b6b3a76400009061167f908763ffffffff613b7616565b905060006135c561358c606461167f606d6005015486613b7690919063ffffffff16565b6135b96135ac606461167f606d6004015488613b7690919063ffffffff16565b859063ffffffff612aa016565b9063ffffffff612a1f16565b9050808411156135d85791506135039050565b8392505050613503565b6000806000613604606461167f606d6001015487613b7690919063ffffffff16565b90506000613625606461167f606d6002015488613b7690919063ffffffff16565b91935090915050915091565b600081848411156136835760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156134ba5781810151838201526020016134a2565b505050900390565b600081836136da5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156134ba5781810151838201526020016134a2565b5060008385816136e657fe5b0495945050505050565b815460009082106137325760405162461bcd60e51b8152600401808060200182810382526022815260200180613d696022913960400191505060405180910390fd5b82600001828154811061374157fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60008080613786606461167f34601463ffffffff613b7616565b9050600061379a348363ffffffff612a1f16565b919350909150509091565b60408051600280825260608083018452600093909291906020830190803683375050607554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b15801561380f57600080fd5b505afa158015613823573d6000803e3d6000fd5b505050506040513d602081101561383957600080fd5b50518151829060009061384857fe5b60200260200101906001600160a01b031690816001600160a01b031681525050858160018151811061387657fe5b6001600160a01b03928316602091820292909201810191909152607554607454604051637ff36ab560e01b8152600481018a815291851660448201819052606482018990526080602483019081528751608484015287519490961695637ff36ab5958b958d958a958d949193919260a490910191878101910280838360005b8381101561390d5781810151838201526020016138f5565b50505050905001955050505050506000604051808303818588803b15801561393457600080fd5b505af1158015613948573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052602081101561397257600080fd5b8101908080516040519392919084600160201b82111561399157600080fd5b9083019060208201858111156139a657600080fd5b82518660208202830111600160201b821117156139c257600080fd5b82525081516020918201928201910280838360005b838110156139ef5781810151838201526020016139d7565b50505050905001604052505050600181518110613a0857fe5b6020026020010151915050949350505050565b6000818152606760205260408120613a5e91349190613a3861248c565b6001600160a01b031681526020810191909152604001600020549063ffffffff612aa016565b600082815260676020526040812090613a7561248c565b6001600160a01b0316815260208082019290925260409081016000908120939093558383526068909152812090613aaa61248c565b6001600160a01b0316815260208101919091526040016000205460ff16613b455760666000613ad761248c565b6001600160a01b031681526020808201929092526040908101600090812080546001818101835591835284832001859055848252606890935290812090613b1c61248c565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b600081815260656020526040902054613b64903463ffffffff612aa016565b60009182526065602052604090912055565b600082613b8557506000611d45565b82820282848281613b9257fe5b0414611d425760405162461bcd60e51b8152600401808060200182810382526021815260200180613eac6021913960400191505060405180910390fd5b5490565b6000613bdf8383613754565b613c1557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155611d45565b506000611d45565b60008181526001830160205260408120548015613cd95783546000198083019190810190600090879083908110613c5057fe5b9060005260206000200154905080876000018481548110613c6d57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613c9d57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050611d45565b6000915050611d45565b5080546000825590600052602060002090810190613d019190613d4a565b50565b6040518060e001604052806007906020820280368337509192915050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b61103a91905b80821115613d645760008155600101613d50565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7441756374696f6e3a205a65726f2062616c616e636520696e2061756374696f6e2f696e76616c69642061756374696f6e20494432951f3c79f640ca000d6b542b604bff927f40f08ad9a226a81a68e7281b391443616c6c6572206973206e6f7420612063616c6c657220726f6c650000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6541756374696f6e3a207374616b6544617973203c206d696e696d756d2064617973496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7741554354494f4e3a2050657263656e7461676520666f722076656e7475726520646179206d75737420657175616c2031303041554354494f4e3a204461797320696e206675747572652063616e206e6f742062652067726561746572207468656e20333635416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6643616c6c6572206973206e6f742061206d616e6167657220726f6c6500000000a2646970667358221220c09edc132d3df4751ddbb3ee543cf70dac13d2565e01b5adc4e67c8edc371f7964736f6c63430006080033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.