ETH Price: $2,565.59 (-1.53%)
Gas: 5 Gwei

Token

Staked UMAD (sUMAD)
 

Overview

Max Total Supply

0.000001917157419218 sUMAD

Holders

137

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000067940119553 sUMAD

Value
$0.00
0x92c44b9545bbb2d27d18f14d50182821d56323d2
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
StakingPool

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
constantinople EvmVersion, None license
File 1 of 11 : StakingPool.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "openzeppelin-solidity/contracts/math/Math.sol";
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol";
import "openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol";
import "solowei/contracts/AttoDecimal.sol";
import "solowei/contracts/TwoStageOwnable.sol";

contract StakingPool is ERC20, ReentrancyGuard, TwoStageOwnable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    using AttoDecimal for AttoDecimal.Instance;

    struct Strategy {
        uint256 endsAt;
        uint256 perSecondReward;
        uint256 startsAt;
    }

    struct Unstake {
        uint256 amount;
        uint256 applicableAt;
    }

    uint256 public constant MIN_STAKE_BALANCE = 10**8;

    uint256 public claimingFeePercent;
    uint256 public lastUpdatedAt;

    uint256 private _feePool;
    uint256 private _lockedRewards;
    uint256 private _totalStaked;
    uint256 private _totalUnstaked;
    uint256 private _unstakingTime;
    IERC20 private _stakingToken;

    AttoDecimal.Instance private _defaultPrice;
    AttoDecimal.Instance private _price;
    Strategy private _currentStrategy;
    Strategy private _nextStrategy;

    mapping(address => Unstake) private _unstakes;

    function getTimestamp() internal view virtual returns (uint256) {
        return block.timestamp;
    }

    function feePool() public view returns (uint256) {
        return _feePool;
    }

    function lockedRewards() public view returns (uint256) {
        return _lockedRewards;
    }

    function totalStaked() public view returns (uint256) {
        return _totalStaked;
    }

    function totalUnstaked() public view returns (uint256) {
        return _totalUnstaked;
    }

    function stakingToken() public view returns (IERC20) {
        return _stakingToken;
    }

    function unstakingTime() public view returns (uint256) {
        return _unstakingTime;
    }

    function currentStrategy() public view returns (Strategy memory) {
        return _currentStrategy;
    }

    function nextStrategy() public view returns (Strategy memory) {
        return _nextStrategy;
    }

    function getUnstake(address account) public view returns (Unstake memory result) {
        result = _unstakes[account];
    }

    function defaultPrice()
        external
        view
        returns (
            uint256 mantissa,
            uint256 base,
            uint256 exponentiation
        )
    {
        return _defaultPrice.toTuple();
    }

    function getCurrentStrategyUnlockedRewards() public view returns (uint256 unlocked) {
        unlocked = _getStrategyUnlockedRewards(_currentStrategy);
    }

    function getUnlockedRewards() public view returns (uint256 unlocked, bool currentStrategyEnded) {
        unlocked = _getStrategyUnlockedRewards(_currentStrategy);
        if (getTimestamp() >= _currentStrategy.endsAt) {
            currentStrategyEnded = true;
            if (_nextStrategy.endsAt != 0) unlocked = unlocked.add(_getStrategyUnlockedRewards(_nextStrategy));
        }
    }

    /// @notice Calculates price of synthetic token for current block
    function price()
        public
        view
        returns (
            uint256 mantissa,
            uint256 base,
            uint256 exponentiation
        )
    {
        (uint256 unlocked, ) = getUnlockedRewards();
        uint256 totalStaked_ = _totalStaked;
        uint256 totalSupply_ = totalSupply();
        AttoDecimal.Instance memory result = _defaultPrice;
        if (totalSupply_ > 0) result = AttoDecimal.div(totalStaked_.add(unlocked), totalSupply_);
        return result.toTuple();
    }

    /// @notice Returns last updated price of synthetic token
    function priceStored()
        public
        view
        returns (
            uint256 mantissa,
            uint256 base,
            uint256 exponentiation
        )
    {
        return _price.toTuple();
    }

    /// @notice Calculates expected result of swapping synthetic tokens for staking tokens
    /// @param account Account that wants to swap
    /// @param amount Minimum amount of staking tokens that should be received at swapping process
    /// @return unstakedAmount Amount of staking tokens that should be received at swapping process
    /// @return burnedAmount Amount of synthetic tokens that should be burned at swapping process
    function calculateUnstake(address account, uint256 amount)
        public
        view
        returns (uint256 unstakedAmount, uint256 burnedAmount)
    {
        (uint256 mantissa_, , ) = price();
        return _calculateUnstake(account, amount, AttoDecimal.Instance(mantissa_));
    }

    event Claimed(
        address indexed account,
        uint256 requestedAmount,
        uint256 claimedAmount,
        uint256 feeAmount,
        uint256 burnedAmount
    );

    event ClaimingFeePercentUpdated(uint256 feePercent);
    event CurrentStrategyUpdated(uint256 perSecondReward, uint256 startsAt, uint256 endsAt);
    event FeeClaimed(address indexed receiver, uint256 amount);
    event NextStrategyUpdated(uint256 perSecondReward, uint256 startsAt, uint256 endsAt);
    event UnstakingTimeUpdated(uint256 unstakingTime);
    event NextStrategyRemoved();
    event PoolDecreased(uint256 amount);
    event PoolIncreased(address indexed payer, uint256 amount);
    event PriceUpdated(uint256 mantissa, uint256 base, uint256 exponentiation);
    event RewardsUnlocked(uint256 amount);
    event Staked(address indexed account, address indexed payer, uint256 stakedAmount, uint256 mintedAmount);
    event Unstaked(address indexed account, uint256 requestedAmount, uint256 unstakedAmount, uint256 burnedAmount);
    event UnstakingCanceled(address indexed account, uint256 amount);
    event Withdrawed(address indexed account, uint256 amount);

    constructor(
        string memory syntheticTokenName,
        string memory syntheticTokenSymbol,
        IERC20 stakingToken_,
        address owner_,
        uint256 claimingFeePercent_,
        uint256 perSecondReward_,
        uint256 startsAt_,
        uint256 duration_,
        uint256 unstakingTime_,
        uint256 defaultPriceMantissa
    ) public TwoStageOwnable(owner_) ERC20(syntheticTokenName, syntheticTokenSymbol) {
        _defaultPrice = AttoDecimal.Instance(defaultPriceMantissa);
        _stakingToken = stakingToken_;
        _setClaimingFeePercent(claimingFeePercent_);
        _validateStrategyParameters(perSecondReward_, startsAt_, duration_);
        _setUnstakingTime(unstakingTime_);
        _setCurrentStrategy(perSecondReward_, startsAt_, startsAt_.add(duration_));
        lastUpdatedAt = getTimestamp();
        _price = _defaultPrice;
    }

    /// @notice Cancels unstaking by staking locked for withdrawals tokens
    /// @param amount Amount of locked for withdrawals tokens
    function cancelUnstaking(uint256 amount) external onlyPositiveAmount(amount) returns (bool success) {
        _update();
        address caller = msg.sender;
        Unstake storage unstake_ = _unstakes[caller];
        uint256 unstakingAmount = unstake_.amount;
        require(unstakingAmount >= amount, "Not enough unstaked balance");
        uint256 stakedAmount = _price.mul(balanceOf(caller)).floor();
        require(stakedAmount.add(amount) >= MIN_STAKE_BALANCE, "Stake balance lt min stake");
        uint256 synthAmount = AttoDecimal.div(amount, _price).floor();
        _mint(caller, synthAmount);
        _totalStaked = _totalStaked.add(amount);
        _totalUnstaked = _totalUnstaked.sub(amount);
        unstake_.amount = unstakingAmount.sub(amount);
        emit Staked(caller, address(0), amount, synthAmount);
        emit UnstakingCanceled(caller, amount);
        return true;
    }

    /// @notice Swaps synthetic tokens for staking tokens and immediately sends them to the caller but takes some fee
    /// @param amount Staking tokens amount to swap for. Fee will be taked from this amount
    /// @return claimedAmount Amount of staking tokens that was been sended to caller
    /// @return burnedAmount Amount of synthetic tokens that was burned while swapping
    function claim(uint256 amount)
        external
        onlyPositiveAmount(amount)
        returns (uint256 claimedAmount, uint256 burnedAmount)
    {
        _update();
        address caller = msg.sender;
        (claimedAmount, burnedAmount) = _calculateUnstake(caller, amount, _price);
        uint256 fee = claimedAmount.mul(claimingFeePercent).div(100);
        _burn(caller, burnedAmount);
        _totalStaked = _totalStaked.sub(claimedAmount);
        claimedAmount = claimedAmount.sub(fee);
        _feePool = _feePool.add(fee);
        emit Claimed(caller, amount, claimedAmount, fee, burnedAmount);
        _stakingToken.safeTransfer(caller, claimedAmount);
    }

    /// @notice Withdraws all staking tokens, that have been accumulated in imidiatly claiming process.
    ///     Allowed to be called only by the owner
    /// @return amount Amount of accumulated and withdrawed tokens
    function claimFees() external onlyOwner returns (uint256 amount) {
        require(_feePool > 0, "No fees");
        amount = _feePool;
        _feePool = 0;
        emit FeeClaimed(owner(), amount);
        _stakingToken.safeTransfer(owner(), amount);
    }

    /// @notice Creates new strategy. Allowed to be called only by the owner
    /// @param perSecondReward_ Reward that should be added to common staking tokens pool every second
    /// @param startsAt_ Timestamp from which strategy should starts
    /// @param duration_ Seconds count for which new strategy should be applied
    function createNewStrategy(
        uint256 perSecondReward_,
        uint256 startsAt_,
        uint256 duration_
    ) public onlyOwner returns (bool success) {
        _update();
        _validateStrategyParameters(perSecondReward_, startsAt_, duration_);
        uint256 endsAt = startsAt_.add(duration_);
        Strategy memory strategy = Strategy({perSecondReward: perSecondReward_, startsAt: startsAt_, endsAt: endsAt});
        if (_currentStrategy.startsAt > getTimestamp()) {
            delete _nextStrategy;
            emit NextStrategyRemoved();
            _currentStrategy = strategy;
            emit CurrentStrategyUpdated(perSecondReward_, startsAt_, endsAt);
        } else {
            emit NextStrategyUpdated(perSecondReward_, startsAt_, endsAt);
            _nextStrategy = strategy;
            if (_currentStrategy.endsAt > startsAt_) {
                _currentStrategy.endsAt = startsAt_;
                emit CurrentStrategyUpdated(_currentStrategy.perSecondReward, _currentStrategy.startsAt, startsAt_);
            }
        }
        return true;
    }

    function decreasePool(uint256 amount) external onlyPositiveAmount(amount) onlyOwner returns (bool success) {
        _update();
        _lockedRewards = _lockedRewards.sub(amount, "Not enough locked rewards");
        emit PoolDecreased(amount);
        _stakingToken.safeTransfer(owner(), amount);
        return true;
    }

    /// @notice Increases pool of rewards
    /// @param amount Amount of staking tokens (in wei) that should be added to rewards pool
    function increasePool(uint256 amount) external onlyPositiveAmount(amount) returns (bool success) {
        _update();
        address payer = msg.sender;
        _lockedRewards = _lockedRewards.add(amount);
        emit PoolIncreased(payer, amount);
        _stakingToken.safeTransferFrom(payer, address(this), amount);
        return true;
    }

    /// @notice Change claiming fee percent. Can be called only by the owner
    /// @param feePercent New claiming fee percent
    function setClaimingFeePercent(uint256 feePercent) external onlyOwner returns (bool success) {
        _setClaimingFeePercent(feePercent);
        return true;
    }

    /// @notice Converts staking tokens to synthetic tokens
    /// @param amount Amount of staking tokens to be swapped
    /// @return mintedAmount Amount of synthetic tokens that was received at swapping process
    function stake(uint256 amount) external onlyPositiveAmount(amount) returns (uint256 mintedAmount) {
        address staker = msg.sender;
        return _stake(staker, staker, amount);
    }

    /// @notice Converts staking tokens to synthetic tokens and sends them to specific account
    /// @param account Receiver of synthetic tokens
    /// @param amount Amount of staking tokens to be swapped
    /// @return mintedAmount Amount of synthetic tokens that was received by specified account at swapping process
    function stakeForUser(address account, uint256 amount)
        external
        onlyPositiveAmount(amount)
        returns (uint256 mintedAmount)
    {
        return _stake(account, msg.sender, amount);
    }

    /// @notice Swapes synthetic tokens for staking tokens and locks them for some period
    /// @param amount Minimum amount of staking tokens that should be locked after swapping process
    /// @return unstakedAmount Amount of staking tokens that was locked
    /// @return burnedAmount Amount of synthetic tokens that was burned
    function unstake(uint256 amount)
        external
        onlyPositiveAmount(amount)
        returns (uint256 unstakedAmount, uint256 burnedAmount)
    {
        _update();
        address caller = msg.sender;
        (unstakedAmount, burnedAmount) = _calculateUnstake(caller, amount, _price);
        _burn(caller, burnedAmount);
        _totalStaked = _totalStaked.sub(unstakedAmount);
        _totalUnstaked = _totalUnstaked.add(unstakedAmount);
        Unstake storage unstake_ = _unstakes[caller];
        unstake_.amount = unstake_.amount.add(unstakedAmount);
        unstake_.applicableAt = getTimestamp().add(_unstakingTime);
        emit Unstaked(caller, amount, unstakedAmount, burnedAmount);
    }

    /// @notice Updates price of synthetic token
    /// @dev Automatically has been called on every contract action, that uses or can affect price
    function update() external returns (bool success) {
        _update();
        return true;
    }

    /// @notice Withdraws unstaked staking tokens
    function withdraw() external returns (bool success) {
        address caller = msg.sender;
        Unstake storage unstake_ = _unstakes[caller];
        uint256 amount = unstake_.amount;
        require(amount > 0, "Not unstaked");
        require(unstake_.applicableAt <= getTimestamp(), "Not released at");
        delete _unstakes[caller];
        _totalUnstaked = _totalUnstaked.sub(amount);
        emit Withdrawed(caller, amount);
        _stakingToken.safeTransfer(caller, amount);
        return true;
    }

    /// @notice Change unstaking time. Can be called only by the owner
    /// @param unstakingTime_ New unstaking process duration in seconds
    function setUnstakingTime(uint256 unstakingTime_) external onlyOwner returns (bool success) {
        _setUnstakingTime(unstakingTime_);
        return true;
    }

    function _getStrategyUnlockedRewards(Strategy memory strategy_) internal view returns (uint256 unlocked) {
        uint256 timestamp = getTimestamp();
        if (timestamp < strategy_.startsAt || timestamp == lastUpdatedAt) {
            return unlocked;
        }
        uint256 lastRewardedSecond = Math.max(lastUpdatedAt, strategy_.startsAt);
        uint256 lastRewardableTimestamp = Math.min(timestamp, strategy_.endsAt);
        if (lastRewardedSecond < lastRewardableTimestamp) {
            uint256 timeDiff = lastRewardableTimestamp.sub(lastRewardedSecond);
            unlocked = unlocked.add(timeDiff.mul(strategy_.perSecondReward));
        }
    }

    function _calculateUnstake(
        address account,
        uint256 amount,
        AttoDecimal.Instance memory price_
    ) internal view returns (uint256 unstakedAmount, uint256 burnedAmount) {
        unstakedAmount = amount;
        burnedAmount = AttoDecimal.div(amount, price_).ceil();
        uint256 balance = balanceOf(account);
        require(burnedAmount > 0, "Too small unstaking amount");
        require(balance >= burnedAmount, "Not enough synthetic tokens");
        uint256 remainingSyntheticBalance = balance.sub(burnedAmount);
        uint256 remainingStake = _price.mul(remainingSyntheticBalance).floor();
        if (remainingStake < 10**18) {
            burnedAmount = balance;
            unstakedAmount = unstakedAmount.add(remainingStake);
        }
    }

    function _unlockRewardsAndStake() internal {
        (uint256 unlocked, bool currentStrategyEnded) = getUnlockedRewards();
        if (currentStrategyEnded) {
            _currentStrategy = _nextStrategy;
            emit NextStrategyRemoved();
            if (_currentStrategy.endsAt != 0) {
                emit CurrentStrategyUpdated(
                    _currentStrategy.perSecondReward,
                    _currentStrategy.startsAt,
                    _currentStrategy.endsAt
                );
            }
            delete _nextStrategy;
        }
        unlocked = Math.min(unlocked, _lockedRewards);
        if (unlocked > 0) {
            emit RewardsUnlocked(unlocked);
            _lockedRewards = _lockedRewards.sub(unlocked);
            _totalStaked = _totalStaked.add(unlocked);
        }
        lastUpdatedAt = getTimestamp();
    }

    function _update() internal {
        if (getTimestamp() <= lastUpdatedAt) return;
        _unlockRewardsAndStake();
        _updatePrice();
    }

    function _updatePrice() internal {
        uint256 totalStaked_ = _totalStaked;
        uint256 totalSupply_ = totalSupply();
        if (totalSupply_ == 0) _price = _defaultPrice;
        else _price = AttoDecimal.div(totalStaked_, totalSupply_);
        emit PriceUpdated(_price.mantissa, AttoDecimal.BASE, AttoDecimal.EXPONENTIATION);
    }

    function _validateStrategyParameters(
        uint256 perSecondReward,
        uint256 startsAt,
        uint256 duration
    ) internal view {
        require(duration > 0, "Duration is zero");
        require(startsAt >= getTimestamp(), "Starting timestamp lt current");
        require(perSecondReward <= 188 * 10**18, "Per second reward overflow");
    }

    function _setClaimingFeePercent(uint256 feePercent) internal {
        require(feePercent >= 0 && feePercent <= 100, "Invalid fee percent");
        claimingFeePercent = feePercent;
        emit ClaimingFeePercentUpdated(feePercent);
    }

    function _setUnstakingTime(uint256 unstakingTime_) internal {
        _unstakingTime = unstakingTime_;
        emit UnstakingTimeUpdated(unstakingTime_);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        _update();
        string memory errorText = "Minimal stake balance should be more or equal to 1 token";
        if (from != address(0)) {
            uint256 fromNewBalance = _price.mul(balanceOf(from).sub(amount)).floor();
            require(fromNewBalance >= MIN_STAKE_BALANCE || fromNewBalance == 0, errorText);
        }
        if (to != address(0)) {
            require(_price.mul(balanceOf(to).add(amount)).floor() >= MIN_STAKE_BALANCE, errorText);
        }
    }

    function _setCurrentStrategy(
        uint256 perSecondReward_,
        uint256 startsAt_,
        uint256 endsAt_
    ) private {
        _currentStrategy = Strategy({perSecondReward: perSecondReward_, startsAt: startsAt_, endsAt: endsAt_});
        emit CurrentStrategyUpdated(perSecondReward_, startsAt_, endsAt_);
    }

    function _stake(
        address staker,
        address payer,
        uint256 amount
    ) private returns (uint256 mintedAmount) {
        _update();
        mintedAmount = AttoDecimal.div(amount, _price).floor();
        require(mintedAmount > 0, "Too small staking amount");
        _mint(staker, mintedAmount);
        _totalStaked = _totalStaked.add(amount);
        emit Staked(staker, payer, amount, mintedAmount);
        _stakingToken.safeTransferFrom(payer, address(this), amount);
    }

    modifier onlyPositiveAmount(uint256 amount) {
        require(amount > 0, "Amount is not positive");
        _;
    }
}

File 2 of 11 : TwoStageOwnable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

abstract contract TwoStageOwnable {
    address private _nominatedOwner;
    address private _owner;

    function nominatedOwner() public view returns (address) {
        return _nominatedOwner;
    }

    function owner() public view returns (address) {
        return _owner;
    }

    event OwnerChanged(address indexed newOwner);
    event OwnerNominated(address indexed nominatedOwner);

    constructor(address owner_) internal {
        require(owner_ != address(0), "Owner is zero");
        _setOwner(owner_);
    }

    function acceptOwnership() external returns (bool success) {
        require(msg.sender == _nominatedOwner, "Not nominated to ownership");
        _setOwner(_nominatedOwner);
        return true;
    }

    function nominateNewOwner(address owner_) external onlyOwner returns (bool success) {
        _nominateNewOwner(owner_);
        return true;
    }

    modifier onlyOwner {
        require(msg.sender == _owner, "Not owner");
        _;
    }

    function _nominateNewOwner(address owner_) internal {
        if (_nominatedOwner == owner_) return;
        require(_owner != owner_, "Already owner");
        _nominatedOwner = owner_;
        emit OwnerNominated(owner_);
    }

    function _setOwner(address newOwner) internal {
        if (_owner == newOwner) return;
        _owner = newOwner;
        _nominatedOwner = address(0);
        emit OwnerChanged(newOwner);
    }
}

File 3 of 11 : AttoDecimal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;

import "openzeppelin-solidity/contracts/math/SafeMath.sol";

library AttoDecimal {
    using SafeMath for uint256;

    struct Instance {
        uint256 mantissa;
    }

    uint256 internal constant BASE = 10;
    uint256 internal constant EXPONENTIATION = 18;
    uint256 internal constant ONE_MANTISSA = BASE**EXPONENTIATION;
    uint256 internal constant ONE_TENTH_MANTISSA = ONE_MANTISSA / 10;
    uint256 internal constant HALF_MANTISSA = ONE_MANTISSA / 2;
    uint256 internal constant SQUARED_ONE_MANTISSA = ONE_MANTISSA * ONE_MANTISSA;
    uint256 internal constant MAX_INTEGER = uint256(-1) / ONE_MANTISSA;

    function maximum() internal pure returns (Instance memory) {
        return Instance({mantissa: uint256(-1)});
    }

    function zero() internal pure returns (Instance memory) {
        return Instance({mantissa: 0});
    }

    function one() internal pure returns (Instance memory) {
        return Instance({mantissa: ONE_MANTISSA});
    }

    function convert(uint256 integer) internal pure returns (Instance memory) {
        return Instance({mantissa: integer.mul(ONE_MANTISSA)});
    }

    function compare(Instance memory a, Instance memory b) internal pure returns (int8) {
        if (a.mantissa < b.mantissa) return -1;
        return int8(a.mantissa > b.mantissa ? 1 : 0);
    }

    function compare(Instance memory a, uint256 b) internal pure returns (int8) {
        return compare(a, convert(b));
    }

    function add(Instance memory a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.add(b.mantissa)});
    }

    function add(Instance memory a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.add(b.mul(ONE_MANTISSA))});
    }

    function sub(Instance memory a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.sub(b.mantissa)});
    }

    function sub(Instance memory a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.sub(b.mul(ONE_MANTISSA))});
    }

    function sub(uint256 a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mul(ONE_MANTISSA).sub(b.mantissa)});
    }

    function mul(Instance memory a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mul(b.mantissa) / ONE_MANTISSA});
    }

    function mul(Instance memory a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mul(b)});
    }

    function div(Instance memory a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mul(ONE_MANTISSA).div(b.mantissa)});
    }

    function div(Instance memory a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mul(ONE_MANTISSA).div(b)});
    }

    function div(uint256 a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mul(SQUARED_ONE_MANTISSA).div(b.mantissa)});
    }

    function div(uint256 a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mul(ONE_MANTISSA).div(b)});
    }

    function idiv(Instance memory a, Instance memory b) internal pure returns (uint256) {
        return a.mantissa.div(b.mantissa);
    }

    function idiv(Instance memory a, uint256 b) internal pure returns (uint256) {
        return a.mantissa.div(b.mul(ONE_MANTISSA));
    }

    function idiv(uint256 a, Instance memory b) internal pure returns (uint256) {
        return a.mul(ONE_MANTISSA).div(b.mantissa);
    }

    function mod(Instance memory a, Instance memory b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mod(b.mantissa)});
    }

    function mod(Instance memory a, uint256 b) internal pure returns (Instance memory) {
        return Instance({mantissa: a.mantissa.mod(b.mul(ONE_MANTISSA))});
    }

    function mod(uint256 a, Instance memory b) internal pure returns (Instance memory) {
        if (a > MAX_INTEGER) return Instance({mantissa: a.mod(b.mantissa).mul(ONE_MANTISSA) % b.mantissa});
        return Instance({mantissa: a.mul(ONE_MANTISSA).mod(b.mantissa)});
    }

    function floor(Instance memory a) internal pure returns (uint256) {
        return a.mantissa / ONE_MANTISSA;
    }

    function ceil(Instance memory a) internal pure returns (uint256) {
        return (a.mantissa / ONE_MANTISSA) + (a.mantissa % ONE_MANTISSA > 0 ? 1 : 0);
    }

    function round(Instance memory a) internal pure returns (uint256) {
        return (a.mantissa / ONE_MANTISSA) + ((a.mantissa / ONE_TENTH_MANTISSA) % 10 >= 5 ? 1 : 0);
    }

    function eq(Instance memory a, Instance memory b) internal pure returns (bool) {
        return a.mantissa == b.mantissa;
    }

    function eq(Instance memory a, uint256 b) internal pure returns (bool) {
        if (b > MAX_INTEGER) return false;
        return a.mantissa == b * ONE_MANTISSA;
    }

    function gt(Instance memory a, Instance memory b) internal pure returns (bool) {
        return a.mantissa > b.mantissa;
    }

    function gt(Instance memory a, uint256 b) internal pure returns (bool) {
        if (b > MAX_INTEGER) return false;
        return a.mantissa > b * ONE_MANTISSA;
    }

    function gte(Instance memory a, Instance memory b) internal pure returns (bool) {
        return a.mantissa >= b.mantissa;
    }

    function gte(Instance memory a, uint256 b) internal pure returns (bool) {
        if (b > MAX_INTEGER) return false;
        return a.mantissa >= b * ONE_MANTISSA;
    }

    function lt(Instance memory a, Instance memory b) internal pure returns (bool) {
        return a.mantissa < b.mantissa;
    }

    function lt(Instance memory a, uint256 b) internal pure returns (bool) {
        if (b > MAX_INTEGER) return true;
        return a.mantissa < b * ONE_MANTISSA;
    }

    function lte(Instance memory a, Instance memory b) internal pure returns (bool) {
        return a.mantissa <= b.mantissa;
    }

    function lte(Instance memory a, uint256 b) internal pure returns (bool) {
        if (b > MAX_INTEGER) return true;
        return a.mantissa <= b * ONE_MANTISSA;
    }

    function isInteger(Instance memory a) internal pure returns (bool) {
        return a.mantissa % ONE_MANTISSA == 0;
    }

    function isPositive(Instance memory a) internal pure returns (bool) {
        return a.mantissa > 0;
    }

    function isZero(Instance memory a) internal pure returns (bool) {
        return a.mantissa == 0;
    }

    function sum(Instance[] memory array) internal pure returns (Instance memory result) {
        uint256 length = array.length;
        for (uint256 index = 0; index < length; index++) result = add(result, array[index]);
    }

    function toTuple(Instance memory a)
        internal
        pure
        returns (
            uint256 mantissa,
            uint256 base,
            uint256 exponentiation
        )
    {
        return (a.mantissa, BASE, EXPONENTIATION);
    }
}

File 4 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

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

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

File 6 of 11 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 7 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

File 8 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

File 9 of 11 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

File 10 of 11 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

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

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"syntheticTokenName","type":"string"},{"internalType":"string","name":"syntheticTokenSymbol","type":"string"},{"internalType":"contract IERC20","name":"stakingToken_","type":"address"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"uint256","name":"claimingFeePercent_","type":"uint256"},{"internalType":"uint256","name":"perSecondReward_","type":"uint256"},{"internalType":"uint256","name":"startsAt_","type":"uint256"},{"internalType":"uint256","name":"duration_","type":"uint256"},{"internalType":"uint256","name":"unstakingTime_","type":"uint256"},{"internalType":"uint256","name":"defaultPriceMantissa","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"requestedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnedAmount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feePercent","type":"uint256"}],"name":"ClaimingFeePercentUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perSecondReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startsAt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endsAt","type":"uint256"}],"name":"CurrentStrategyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeeClaimed","type":"event"},{"anonymous":false,"inputs":[],"name":"NextStrategyRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"perSecondReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startsAt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endsAt","type":"uint256"}],"name":"NextStrategyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"nominatedOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PoolDecreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PoolIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"base","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"exponentiation","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"uint256","name":"stakedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintedAmount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"requestedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unstakedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnedAmount","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnstakingCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"unstakingTime","type":"uint256"}],"name":"UnstakingTimeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawed","type":"event"},{"inputs":[],"name":"MIN_STAKE_BALANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateUnstake","outputs":[{"internalType":"uint256","name":"unstakedAmount","type":"uint256"},{"internalType":"uint256","name":"burnedAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cancelUnstaking","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[{"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"internalType":"uint256","name":"burnedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFees","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimingFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"perSecondReward_","type":"uint256"},{"internalType":"uint256","name":"startsAt_","type":"uint256"},{"internalType":"uint256","name":"duration_","type":"uint256"}],"name":"createNewStrategy","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentStrategy","outputs":[{"components":[{"internalType":"uint256","name":"endsAt","type":"uint256"},{"internalType":"uint256","name":"perSecondReward","type":"uint256"},{"internalType":"uint256","name":"startsAt","type":"uint256"}],"internalType":"struct StakingPool.Strategy","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"decreasePool","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultPrice","outputs":[{"internalType":"uint256","name":"mantissa","type":"uint256"},{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"exponentiation","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentStrategyUnlockedRewards","outputs":[{"internalType":"uint256","name":"unlocked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnlockedRewards","outputs":[{"internalType":"uint256","name":"unlocked","type":"uint256"},{"internalType":"bool","name":"currentStrategyEnded","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getUnstake","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"applicableAt","type":"uint256"}],"internalType":"struct StakingPool.Unstake","name":"result","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increasePool","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastUpdatedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextStrategy","outputs":[{"components":[{"internalType":"uint256","name":"endsAt","type":"uint256"},{"internalType":"uint256","name":"perSecondReward","type":"uint256"},{"internalType":"uint256","name":"startsAt","type":"uint256"}],"internalType":"struct StakingPool.Strategy","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"nominateNewOwner","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"mantissa","type":"uint256"},{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"exponentiation","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceStored","outputs":[{"internalType":"uint256","name":"mantissa","type":"uint256"},{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"exponentiation","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"feePercent","type":"uint256"}],"name":"setClaimingFeePercent","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unstakingTime_","type":"uint256"}],"name":"setUnstakingTime","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[{"internalType":"uint256","name":"mintedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeForUser","outputs":[{"internalType":"uint256","name":"mintedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnstaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[{"internalType":"uint256","name":"unstakedAmount","type":"uint256"},{"internalType":"uint256","name":"burnedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unstakingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"update","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620034813803806200348183398101604081905262000034916200056c565b868a8a81600390805190602001906200004f9291906200041c565b508051620000659060049060208401906200041c565b50506005805460ff191660121790555060016006556001600160a01b038116620000c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd906200066d565b60405180910390fd5b620000d1816200016d565b5060408051602081019091528190526011819055601080546001600160a01b0319166001600160a01b038a161790556200010b86620001df565b620001188585856200025f565b62000123826200032d565b6200014985856200014386886200036460201b620014e41790919060201c565b620003af565b6200015362000418565b600a55505060115460125550620007b59650505050505050565b6008546001600160a01b03828116911614156200018a57620001dc565b600880546001600160a01b0383166001600160a01b031991821681179092556007805490911690556040517fa2ea9883a321a3e97b8266c2b078bfeec6d50c711ed71f874a90d500ae2eaf3690600090a25b50565b60648111156200021d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd9062000749565b60098190556040517fcd36e83aa831664c67a318291b1d97d2741c9ea9d5a49f66e29e28541b3c06e9906200025490839062000780565b60405180910390a150565b600081116200029c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd9062000636565b620002a662000418565b821015620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd9062000712565b680a31062beeed70000083111562000328576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd90620006db565b505050565b600f8190556040517f7f7d5eb76787d9279c88eb7f18c26b33761ae038bbd802551a7c6aa2f9f8dd12906200025490839062000780565b600082820183811015620003a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd90620006a4565b90505b92915050565b60408051606081018252828152602081018590528101839052601382905560148490556015839055517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c9492906200040b9085908590859062000789565b60405180910390a1505050565b4290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045f57805160ff19168380011785556200048f565b828001600101855582156200048f579182015b828111156200048f57825182559160200191906001019062000472565b506200049d929150620004a1565b5090565b5b808211156200049d5760008155600101620004a2565b8051620003a9816200079f565b600082601f830112620004d6578081fd5b81516001600160401b0380821115620004ed578283fd5b6040516020601f8401601f19168201810183811183821017156200050f578586fd5b806040525081945083825286818588010111156200052c57600080fd5b600092505b8383101562000550578583018101518284018201529182019162000531565b83831115620005625760008185840101525b5050505092915050565b6000806000806000806000806000806101408b8d0312156200058c578586fd5b8a516001600160401b0380821115620005a3578788fd5b620005b18e838f01620004c5565b9b5060208d0151915080821115620005c7578788fd5b50620005d68d828e01620004c5565b995050620005e88c60408d01620004b8565b9750620005f98c60608d01620004b8565b965060808b0151955060a08b0151945060c08b0151935060e08b015192506101008b015191506101208b015190509295989b9194979a5092959850565b60208082526010908201527f4475726174696f6e206973207a65726f00000000000000000000000000000000604082015260600190565b6020808252600d908201527f4f776e6572206973207a65726f00000000000000000000000000000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f506572207365636f6e6420726577617264206f766572666c6f77000000000000604082015260600190565b6020808252601d908201527f5374617274696e672074696d657374616d70206c742063757272656e74000000604082015260600190565b60208082526013908201527f496e76616c6964206665652070657263656e7400000000000000000000000000604082015260600190565b90815260200190565b9283526020830191909152604082015260600190565b6001600160a01b0381168114620001dc57600080fd5b612cbc80620007c56000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c806372f702f31161015c578063a694fc3a116100ce578063dd62ed3e11610087578063dd62ed3e14610524578063e175ae1314610537578063e2fd6ff91461053f578063e69e04b314610547578063e928ce721461054f578063fd79c6a2146105575761028a565b8063a694fc3a146104d3578063a9059cbb146104e6578063ae2e933b146104f9578063af1c7f2014610501578063d294f09314610509578063d708120e146105115761028a565b80638da5cb5b116101205780638da5cb5b14610480578063947ae12a1461048857806395d89b41146104a8578063a035b1fe146104b0578063a2e62045146104b8578063a457c2d7146104c05761028a565b806372f702f31461044257806379ba50971461044a5780637ee3beb914610452578063817b1cd214610465578063833e8bb61461046d5761028a565b806332a6bf43116102005780635235934d116101b95780635235934d146103e257806353a47bb7146103ea57806354aea127146103ff578063551fdc46146104075780636a1ceb2d1461041a57806370a082311461042f5761028a565b806332a6bf4314610382578063379607f51461039957806339509351146103ac578063396f55d0146103bf5780633ccfd60b146103c757806346267a93146103cf5761028a565b80631627540c116102525780631627540c1461030b57806318160ddd1461031e5780632059ba6f1461032657806323b872dd146103395780632e17de781461034c578063313ce5671461036d5761028a565b806301a563831461028f57806306fdde03146102ad578063095ea7b3146102c25780630be4bc0d146102e257806314cb97d7146102f8575b600080fd5b61029761056a565b6040516102a49190612b12565b60405180910390f35b6102b5610570565b6040516102a4919061252f565b6102d56102d036600461242a565b610607565b6040516102a49190612524565b6102ea610625565b6040516102a4929190612b1b565b6102d5610306366004612474565b6106af565b6102d561031936600461239b565b6106f7565b61029761072d565b6102d5610334366004612474565b610733565b6102d56103473660046123ea565b610769565b61035f61035a366004612474565b6107f1565b6040516102a4929190612b2b565b6103756108fa565b6040516102a49190612b6a565b61038a610903565b6040516102a493929190612b39565b61035f6103a7366004612474565b61092e565b6102d56103ba36600461242a565b610a3d565b610297610a8b565b6102d5610a93565b61035f6103dd36600461242a565b610b82565b610297610bb8565b6103f2610bbe565b6040516102a491906124d3565b610297610bcd565b6102d5610415366004612474565b610bd3565b610422610cc3565b6040516102a49190612ada565b61029761043d36600461239b565b610cf0565b6103f2610d0b565b6102d5610d1a565b6102d5610460366004612474565b610d62565b610297610f0a565b6102d561047b366004612474565b610f10565b6103f2610fa8565b61049b61049636600461239b565b610fb7565b6040516102a49190612afb565b6102b5610ff2565b61038a611053565b6102d56110c1565b6102d56104ce36600461242a565b6110cb565b6102976104e1366004612474565b611133565b6102d56104f436600461242a565b61116a565b61029761117e565b610297611184565b61029761118a565b6102d561051f36600461248c565b611249565b6102976105323660046123b6565b611406565b610422611431565b61029761145e565b61038a611490565b6102976114b0565b61029761056536600461242a565b6114b6565b60095481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b505050505090505b90565b600061061b610614611509565b848461150d565b5060015b92915050565b6040805160608101825260135481526014546020820152601554918101919091526000908190610654906115c1565b601354909250610662611655565b106106ab5750601654600190156106ab576040805160608101825260165481526017546020820152601854918101919091526106a8906106a1906115c1565b83906114e4565b91505b9091565b6008546000906001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc906128e9565b60405180910390fd5b6106ee82611659565b5060015b919050565b6008546000906001600160a01b031633146107245760405162461bcd60e51b81526004016106dc906128e9565b6106ee826116ba565b60025490565b6008546000906001600160a01b031633146107605760405162461bcd60e51b81526004016106dc906128e9565b6106ee8261174e565b6000610776848484611783565b6107e684610782611509565b6107e185604051806060016040528060288152602001612c02602891396001600160a01b038a166000908152600160205260408120906107c0611509565b6001600160a01b031681526020810191909152604001600020549190611898565b61150d565b5060015b9392505050565b60008082600081116108155760405162461bcd60e51b81526004016106dc906126c6565b61081d6118c4565b60408051602081019091526012548152339061083c90829087906118eb565b909450925061084b81846119ae565b600d546108589085611a90565b600d55600e5461086890856114e4565b600e556001600160a01b0381166000908152601960205260409020805461088f90866114e4565b8155600f546108a6906108a0611655565b906114e4565b60018201556040516001600160a01b038316907f204fccf0d92ed8d48f204adb39b2e81e92bad0dedb93f5716ca9478cfb57de00906108ea90899089908990612b39565b60405180910390a2505050915091565b60055460ff1690565b604080516020810190915260125481526000908190819061092390611ad2565b925092509250909192565b60008082600081116109525760405162461bcd60e51b81526004016106dc906126c6565b61095a6118c4565b60408051602081019091526012548152339061097990829087906118eb565b600954919550935060009061099c90606490610996908890611adc565b90611b16565b90506109a882856119ae565b600d546109b59086611a90565b600d556109c28582611a90565b600b549095506109d290826114e4565b600b556040516001600160a01b038316907f7708755c9b641bf197be5047b04002d2e88fa658c173a351067747eb5dfc568a90610a16908990899086908a90612b4f565b60405180910390a2601054610a35906001600160a01b03168387611b58565b505050915091565b600061061b610a4a611509565b846107e18560016000610a5b611509565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114e4565b6305f5e10081565b336000818152601960205260408120805491929180610ac45760405162461bcd60e51b81526004016106dc9061267f565b610acc611655565b82600101541115610aef5760405162461bcd60e51b81526004016106dc9061276e565b6001600160a01b038316600090815260196020526040812081815560010155600e54610b1b9082611a90565b600e556040516001600160a01b038416907f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe90610b59908490612b12565b60405180910390a2601054610b78906001600160a01b03168483611b58565b6001935050505090565b6000806000610b8f611053565b50509050610bac85856040518060200160405280858152506118eb565b92509250509250929050565b600e5490565b6007546001600160a01b031690565b600a5481565b60008160008111610bf65760405162461bcd60e51b81526004016106dc906126c6565b6008546001600160a01b03163314610c205760405162461bcd60e51b81526004016106dc906128e9565b610c286118c4565b60408051808201909152601981527f4e6f7420656e6f756768206c6f636b65642072657761726473000000000000006020820152600c54610c6a918590611898565b600c556040517fcb871ad2b15bb3b1869f4566fd37fc75eb21cc32e880568fc6a73aae7939c5d290610c9d908590612b12565b60405180910390a161061b610cb0610fa8565b6010546001600160a01b03169085611b58565b610ccb612336565b5060408051606081018252601354815260145460208201526015549181019190915290565b6001600160a01b031660009081526020819052604090205490565b6010546001600160a01b031690565b6007546000906001600160a01b03163314610d475760405162461bcd60e51b81526004016106dc906127f5565b600754610d5c906001600160a01b0316611bb3565b50600190565b60008160008111610d855760405162461bcd60e51b81526004016106dc906126c6565b610d8d6118c4565b336000818152601960205260409020805485811015610dbe5760405162461bcd60e51b81526004016106dc90612987565b6000610dea610de5610dcf86610cf0565b6040805160208101909152601254815290611c22565b611c4c565b90506305f5e100610dfb82896114e4565b1015610e195760405162461bcd60e51b81526004016106dc906128b2565b60408051602081019091526012548152600090610e3b90610de5908a90611c5b565b9050610e478582611c8f565b600d54610e5490896114e4565b600d55600e54610e649089611a90565b600e55610e718389611a90565b84556040516000906001600160a01b038716907f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc90610eb3908c908690612b2b565b60405180910390a3846001600160a01b03167f6a6d5d5933544e2f8792a55eb024869c9b2fa719fd6b231725a991198658f94e89604051610ef49190612b12565b60405180910390a2506001979650505050505050565b600d5490565b60008160008111610f335760405162461bcd60e51b81526004016106dc906126c6565b610f3b6118c4565b600c543390610f4a90856114e4565b600c556040516001600160a01b038216907f457b865678556d8d0f459b359ad2daa4638a33e4616c48e9c501f28ef8b673c490610f88908790612b12565b60405180910390a26010546107e6906001600160a01b0316823087611d43565b6008546001600160a01b031690565b610fbf612357565b506001600160a01b0316600090815260196020908152604091829020825180840190935280548352600101549082015290565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b600080600080611061610625565b50600d54909150600061107261072d565b905061107c612371565b506040805160208101909152601154815281156110a9576110a66110a084866114e4565b83611d6a565b90505b6110b281611ad2565b96509650965050505050909192565b6000610d5c6118c4565b600061061b6110d8611509565b846107e185604051806060016040528060258152602001612c626025913960016000611102611509565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611898565b600081600081116111565760405162461bcd60e51b81526004016106dc906126c6565b33611162818086611d94565b949350505050565b600061061b611177611509565b8484611783565b600b5490565b600f5490565b6008546000906001600160a01b031633146111b75760405162461bcd60e51b81526004016106dc906128e9565b6000600b54116111d95760405162461bcd60e51b81526004016106dc906126a5565b50600b805460009091556111eb610fa8565b6001600160a01b03167f20ca5094f3a20c321cbe4123d0f01b276b81df0fa24cd4d83d9253956035d863826040516112239190612b12565b60405180910390a2610604611236610fa8565b6010546001600160a01b03169083611b58565b6008546000906001600160a01b031633146112765760405162461bcd60e51b81526004016106dc906128e9565b61127e6118c4565b611289848484611e61565b600061129584846114e4565b905061129f612336565b60405180606001604052808381526020018781526020018681525090506112c4611655565b601554111561135a5760006016819055601781905560188190556040517fe58d04c6069251e310ede9daae36efbc408e81b8bebd9915bf5a7e6e7ca95d989190a180516013556020810151601455604080820151601555517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c94929061134d90889088908690612b39565b60405180910390a16113fa565b7f1355800f5bff457ad5c5a51017502bef53351bc3e3575eaf67c1f768b2101b7586868460405161138d93929190612b39565b60405180910390a18051601655602081015160175560408101516018556013548510156113fa5760138590556014546015546040517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c9492926113f19290918990612b39565b60405180910390a15b50600195945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611439612336565b5060408051606081018252601654815260175460208201526018549181019190915290565b60408051606081018252601354815260145460208201526015549181019190915260009061148b906115c1565b905090565b604080516020810190915260115481526000908190819061092390611ad2565b600c5490565b600081600081116114d95760405162461bcd60e51b81526004016106dc906126c6565b611162843385611d94565b6000828201838110156107ea5760405162461bcd60e51b81526004016106dc90612611565b3390565b6001600160a01b0383166115335760405162461bcd60e51b81526004016106dc9061290c565b6001600160a01b0382166115595760405162461bcd60e51b81526004016106dc906125cf565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906115b4908590612b12565b60405180910390a3505050565b6000806115cc611655565b905082604001518110806115e15750600a5481145b156115ec57506106f2565b60006115fe600a548560400151611ed1565b90506000611610838660000151611ee8565b90508082101561164d5760006116268284611a90565b9050611649611642876020015183611adc90919063ffffffff16565b86906114e4565b9450505b505050919050565b4290565b606481111561167a5760405162461bcd60e51b81526004016106dc906129be565b60098190556040517fcd36e83aa831664c67a318291b1d97d2741c9ea9d5a49f66e29e28541b3c06e9906116af908390612b12565b60405180910390a150565b6007546001600160a01b03828116911614156116d55761174b565b6008546001600160a01b03828116911614156117035760405162461bcd60e51b81526004016106dc906127ce565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a25b50565b600f8190556040517f7f7d5eb76787d9279c88eb7f18c26b33761ae038bbd802551a7c6aa2f9f8dd12906116af908390612b12565b6001600160a01b0383166117a95760405162461bcd60e51b81526004016106dc9061286d565b6001600160a01b0382166117cf5760405162461bcd60e51b81526004016106dc90612562565b6117da838383611ef7565b61181781604051806060016040528060268152602001612bdc602691396001600160a01b0386166000908152602081905260409020549190611898565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461184690826114e4565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115b4908590612b12565b600081848411156118bc5760405162461bcd60e51b81526004016106dc919061252f565b505050900390565b600a546118cf611655565b116118d9576118e9565b6118e1611fca565b6118e96120f1565b565b8160006119006118fb8385611c5b565b612162565b9050600061190d86610cf0565b90506000821161192f5760405162461bcd60e51b81526004016106dc90612a6c565b8181101561194f5760405162461bcd60e51b81526004016106dc90612a35565b600061195b8284611a90565b6040805160208101909152601254815290915060009061197f90610de59084611c22565b9050670de0b6b3a76400008110156119a35791925082916119a085826114e4565b94505b505050935093915050565b6001600160a01b0382166119d45760405162461bcd60e51b81526004016106dc9061282c565b6119e082600083611ef7565b611a1d81604051806060016040528060228152602001612bba602291396001600160a01b0385166000908152602081905260409020549190611898565b6001600160a01b038316600090815260208190526040902055600254611a439082611a90565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a84908590612b12565b60405180910390a35050565b60006107ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611898565b5190600a90601290565b600082611aeb5750600061061f565b82820282848281611af857fe5b04146107ea5760405162461bcd60e51b81526004016106dc9061272d565b60006107ea83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061219c565b611bae8363a9059cbb60e01b8484604051602401611b7792919061250b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526121d3565b505050565b6008546001600160a01b0382811691161415611bce5761174b565b600880546001600160a01b0383166001600160a01b031991821681179092556007805490911690556040517fa2ea9883a321a3e97b8266c2b078bfeec6d50c711ed71f874a90d500ae2eaf3690600090a250565b611c2a612371565b604080516020810190915283518190611c439085611adc565b90529392505050565b51670de0b6b3a7640000900490565b611c63612371565b604080516020810190915282518190611c4390610996876ec097ce7bc90715b34b9f1000000000611adc565b6001600160a01b038216611cb55760405162461bcd60e51b81526004016106dc90612aa3565b611cc160008383611ef7565b600254611cce90826114e4565b6002556001600160a01b038216600090815260208190526040902054611cf490826114e4565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a84908590612b12565b611d64846323b872dd60e01b858585604051602401611b77939291906124e7565b50505050565b611d72612371565b604080516020810190915280611c438461099687670de0b6b3a7640000611adc565b6000611d9e6118c4565b60408051602081019091526012548152611dbd90610de5908490611c5b565b905060008111611ddf5760405162461bcd60e51b81526004016106dc90612797565b611de98482611c8f565b600d54611df690836114e4565b600d81905550826001600160a01b0316846001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8484604051611e41929190612b2b565b60405180910390a36010546107ea906001600160a01b0316843085611d43565b60008111611e815760405162461bcd60e51b81526004016106dc906125a5565b611e89611655565b821015611ea85760405162461bcd60e51b81526004016106dc906126f6565b680a31062beeed700000831115611bae5760405162461bcd60e51b81526004016106dc90612648565b600081831015611ee157816107ea565b5090919050565b6000818310611ee157816107ea565b611eff6118c4565b6060604051806060016040528060388152602001612c2a6038913990506001600160a01b03841615611f7b576000611f46610de5610dcf85611f4089610cf0565b90611a90565b90506305f5e10081101580611f59575080155b8290611f785760405162461bcd60e51b81526004016106dc919061252f565b50505b6001600160a01b03831615611d64576305f5e100611fa2610de5610dcf856108a088610cf0565b10158190611fc35760405162461bcd60e51b81526004016106dc919061252f565b5050505050565b600080611fd5610625565b915091508015612076576016546013556017546014556018546015556040517fe58d04c6069251e310ede9daae36efbc408e81b8bebd9915bf5a7e6e7ca95d9890600090a160135415612066576014546015546013546040517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c94929361205d9390929091612b39565b60405180910390a15b6000601681905560178190556018555b61208282600c54611ee8565b915081156120e2577f01feb0f24c52736758ca404486734e6287175eb5c93aa090f0ab371665231d72826040516120b99190612b12565b60405180910390a1600c546120ce9083611a90565b600c55600d546120de90836114e4565b600d555b6120ea611655565b600a555050565b600d5460006120fe61072d565b9050806121105760115460125561211f565b61211a8282611d6a565b516012555b601280546040517f15819dd2fd9f6418b142e798d08a18d0bf06ea368f4480b7b0d3f75bd966bc48926121569291600a9190612b39565b60405180910390a15050565b8051600090670de0b6b3a7640000900661217d576000612180565b60015b60ff166012600a0a83600001518161219457fe5b040192915050565b600081836121bd5760405162461bcd60e51b81526004016106dc919061252f565b5060008385816121c957fe5b0495945050505050565b6060612228826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122629092919063ffffffff16565b805190915015611bae57808060200190518101906122469190612454565b611bae5760405162461bcd60e51b81526004016106dc906129eb565b60606111628484600085606061227785612330565b6122935760405162461bcd60e51b81526004016106dc90612950565b60006060866001600160a01b031685876040516122b091906124b7565b60006040518083038185875af1925050503d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b509150915081156123065791506111629050565b8051156123165780518082602001fd5b8360405162461bcd60e51b81526004016106dc919061252f565b3b151590565b60405180606001604052806000815260200160008152602001600081525090565b604051806040016040528060008152602001600081525090565b6040518060200160405280600081525090565b80356001600160a01b038116811461061f57600080fd5b6000602082840312156123ac578081fd5b6107ea8383612384565b600080604083850312156123c8578081fd5b6123d28484612384565b91506123e18460208501612384565b90509250929050565b6000806000606084860312156123fe578081fd5b833561240981612ba4565b9250602084013561241981612ba4565b929592945050506040919091013590565b6000806040838503121561243c578182fd5b6124468484612384565b946020939093013593505050565b600060208284031215612465578081fd5b815180151581146107ea578182fd5b600060208284031215612485578081fd5b5035919050565b6000806000606084860312156124a0578283fd5b505081359360208301359350604090920135919050565b600082516124c9818460208701612b78565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b600060208252825180602084015261254e816040850160208701612b78565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526010908201526f4475726174696f6e206973207a65726f60801b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f506572207365636f6e6420726577617264206f766572666c6f77000000000000604082015260600190565b6020808252600c908201526b139bdd081d5b9cdd185ad95960a21b604082015260600190565b6020808252600790820152664e6f206665657360c81b604082015260600190565b602080825260169082015275416d6f756e74206973206e6f7420706f73697469766560501b604082015260600190565b6020808252601d908201527f5374617274696e672074696d657374616d70206c742063757272656e74000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252600f908201526e139bdd081c995b19585cd95908185d608a1b604082015260600190565b60208082526018908201527f546f6f20736d616c6c207374616b696e6720616d6f756e740000000000000000604082015260600190565b6020808252600d908201526c20b63932b0b23c9037bbb732b960991b604082015260600190565b6020808252601a908201527f4e6f74206e6f6d696e6174656420746f206f776e657273686970000000000000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f5374616b652062616c616e6365206c74206d696e207374616b65000000000000604082015260600190565b6020808252600990820152682737ba1037bbb732b960b91b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820756e7374616b65642062616c616e63650000000000604082015260600190565b602080825260139082015272125b9d985b1a5908199959481c195c98d95b9d606a1b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601b908201527f4e6f7420656e6f7567682073796e74686574696320746f6b656e730000000000604082015260600190565b6020808252601a908201527f546f6f20736d616c6c20756e7374616b696e6720616d6f756e74000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b81518152602080830151908201526040918201519181019190915260600190565b815181526020918201519181019190915260400190565b90815260200190565b9182521515602082015260400190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60005b83811015612b93578181015183820152602001612b7b565b83811115611d645750506000910152565b6001600160a01b038116811461174b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e696d616c207374616b652062616c616e63652073686f756c64206265206d6f7265206f7220657175616c20746f203120746f6b656e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204b0749f4cadf01608620cbcfca09dd78408896f5d8998ef411a6f23219d9120e64736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000031c2415c946928e9fd1af83cdfa38d3edbd4326f000000000000000000000000d4eee3d50588d7dee8dcc42635e50093e0aa8cc0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061de8bac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000a8c000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b5374616b656420554d4144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000573554d4144000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061028a5760003560e01c806372f702f31161015c578063a694fc3a116100ce578063dd62ed3e11610087578063dd62ed3e14610524578063e175ae1314610537578063e2fd6ff91461053f578063e69e04b314610547578063e928ce721461054f578063fd79c6a2146105575761028a565b8063a694fc3a146104d3578063a9059cbb146104e6578063ae2e933b146104f9578063af1c7f2014610501578063d294f09314610509578063d708120e146105115761028a565b80638da5cb5b116101205780638da5cb5b14610480578063947ae12a1461048857806395d89b41146104a8578063a035b1fe146104b0578063a2e62045146104b8578063a457c2d7146104c05761028a565b806372f702f31461044257806379ba50971461044a5780637ee3beb914610452578063817b1cd214610465578063833e8bb61461046d5761028a565b806332a6bf43116102005780635235934d116101b95780635235934d146103e257806353a47bb7146103ea57806354aea127146103ff578063551fdc46146104075780636a1ceb2d1461041a57806370a082311461042f5761028a565b806332a6bf4314610382578063379607f51461039957806339509351146103ac578063396f55d0146103bf5780633ccfd60b146103c757806346267a93146103cf5761028a565b80631627540c116102525780631627540c1461030b57806318160ddd1461031e5780632059ba6f1461032657806323b872dd146103395780632e17de781461034c578063313ce5671461036d5761028a565b806301a563831461028f57806306fdde03146102ad578063095ea7b3146102c25780630be4bc0d146102e257806314cb97d7146102f8575b600080fd5b61029761056a565b6040516102a49190612b12565b60405180910390f35b6102b5610570565b6040516102a4919061252f565b6102d56102d036600461242a565b610607565b6040516102a49190612524565b6102ea610625565b6040516102a4929190612b1b565b6102d5610306366004612474565b6106af565b6102d561031936600461239b565b6106f7565b61029761072d565b6102d5610334366004612474565b610733565b6102d56103473660046123ea565b610769565b61035f61035a366004612474565b6107f1565b6040516102a4929190612b2b565b6103756108fa565b6040516102a49190612b6a565b61038a610903565b6040516102a493929190612b39565b61035f6103a7366004612474565b61092e565b6102d56103ba36600461242a565b610a3d565b610297610a8b565b6102d5610a93565b61035f6103dd36600461242a565b610b82565b610297610bb8565b6103f2610bbe565b6040516102a491906124d3565b610297610bcd565b6102d5610415366004612474565b610bd3565b610422610cc3565b6040516102a49190612ada565b61029761043d36600461239b565b610cf0565b6103f2610d0b565b6102d5610d1a565b6102d5610460366004612474565b610d62565b610297610f0a565b6102d561047b366004612474565b610f10565b6103f2610fa8565b61049b61049636600461239b565b610fb7565b6040516102a49190612afb565b6102b5610ff2565b61038a611053565b6102d56110c1565b6102d56104ce36600461242a565b6110cb565b6102976104e1366004612474565b611133565b6102d56104f436600461242a565b61116a565b61029761117e565b610297611184565b61029761118a565b6102d561051f36600461248c565b611249565b6102976105323660046123b6565b611406565b610422611431565b61029761145e565b61038a611490565b6102976114b0565b61029761056536600461242a565b6114b6565b60095481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b505050505090505b90565b600061061b610614611509565b848461150d565b5060015b92915050565b6040805160608101825260135481526014546020820152601554918101919091526000908190610654906115c1565b601354909250610662611655565b106106ab5750601654600190156106ab576040805160608101825260165481526017546020820152601854918101919091526106a8906106a1906115c1565b83906114e4565b91505b9091565b6008546000906001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc906128e9565b60405180910390fd5b6106ee82611659565b5060015b919050565b6008546000906001600160a01b031633146107245760405162461bcd60e51b81526004016106dc906128e9565b6106ee826116ba565b60025490565b6008546000906001600160a01b031633146107605760405162461bcd60e51b81526004016106dc906128e9565b6106ee8261174e565b6000610776848484611783565b6107e684610782611509565b6107e185604051806060016040528060288152602001612c02602891396001600160a01b038a166000908152600160205260408120906107c0611509565b6001600160a01b031681526020810191909152604001600020549190611898565b61150d565b5060015b9392505050565b60008082600081116108155760405162461bcd60e51b81526004016106dc906126c6565b61081d6118c4565b60408051602081019091526012548152339061083c90829087906118eb565b909450925061084b81846119ae565b600d546108589085611a90565b600d55600e5461086890856114e4565b600e556001600160a01b0381166000908152601960205260409020805461088f90866114e4565b8155600f546108a6906108a0611655565b906114e4565b60018201556040516001600160a01b038316907f204fccf0d92ed8d48f204adb39b2e81e92bad0dedb93f5716ca9478cfb57de00906108ea90899089908990612b39565b60405180910390a2505050915091565b60055460ff1690565b604080516020810190915260125481526000908190819061092390611ad2565b925092509250909192565b60008082600081116109525760405162461bcd60e51b81526004016106dc906126c6565b61095a6118c4565b60408051602081019091526012548152339061097990829087906118eb565b600954919550935060009061099c90606490610996908890611adc565b90611b16565b90506109a882856119ae565b600d546109b59086611a90565b600d556109c28582611a90565b600b549095506109d290826114e4565b600b556040516001600160a01b038316907f7708755c9b641bf197be5047b04002d2e88fa658c173a351067747eb5dfc568a90610a16908990899086908a90612b4f565b60405180910390a2601054610a35906001600160a01b03168387611b58565b505050915091565b600061061b610a4a611509565b846107e18560016000610a5b611509565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906114e4565b6305f5e10081565b336000818152601960205260408120805491929180610ac45760405162461bcd60e51b81526004016106dc9061267f565b610acc611655565b82600101541115610aef5760405162461bcd60e51b81526004016106dc9061276e565b6001600160a01b038316600090815260196020526040812081815560010155600e54610b1b9082611a90565b600e556040516001600160a01b038416907f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe90610b59908490612b12565b60405180910390a2601054610b78906001600160a01b03168483611b58565b6001935050505090565b6000806000610b8f611053565b50509050610bac85856040518060200160405280858152506118eb565b92509250509250929050565b600e5490565b6007546001600160a01b031690565b600a5481565b60008160008111610bf65760405162461bcd60e51b81526004016106dc906126c6565b6008546001600160a01b03163314610c205760405162461bcd60e51b81526004016106dc906128e9565b610c286118c4565b60408051808201909152601981527f4e6f7420656e6f756768206c6f636b65642072657761726473000000000000006020820152600c54610c6a918590611898565b600c556040517fcb871ad2b15bb3b1869f4566fd37fc75eb21cc32e880568fc6a73aae7939c5d290610c9d908590612b12565b60405180910390a161061b610cb0610fa8565b6010546001600160a01b03169085611b58565b610ccb612336565b5060408051606081018252601354815260145460208201526015549181019190915290565b6001600160a01b031660009081526020819052604090205490565b6010546001600160a01b031690565b6007546000906001600160a01b03163314610d475760405162461bcd60e51b81526004016106dc906127f5565b600754610d5c906001600160a01b0316611bb3565b50600190565b60008160008111610d855760405162461bcd60e51b81526004016106dc906126c6565b610d8d6118c4565b336000818152601960205260409020805485811015610dbe5760405162461bcd60e51b81526004016106dc90612987565b6000610dea610de5610dcf86610cf0565b6040805160208101909152601254815290611c22565b611c4c565b90506305f5e100610dfb82896114e4565b1015610e195760405162461bcd60e51b81526004016106dc906128b2565b60408051602081019091526012548152600090610e3b90610de5908a90611c5b565b9050610e478582611c8f565b600d54610e5490896114e4565b600d55600e54610e649089611a90565b600e55610e718389611a90565b84556040516000906001600160a01b038716907f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc90610eb3908c908690612b2b565b60405180910390a3846001600160a01b03167f6a6d5d5933544e2f8792a55eb024869c9b2fa719fd6b231725a991198658f94e89604051610ef49190612b12565b60405180910390a2506001979650505050505050565b600d5490565b60008160008111610f335760405162461bcd60e51b81526004016106dc906126c6565b610f3b6118c4565b600c543390610f4a90856114e4565b600c556040516001600160a01b038216907f457b865678556d8d0f459b359ad2daa4638a33e4616c48e9c501f28ef8b673c490610f88908790612b12565b60405180910390a26010546107e6906001600160a01b0316823087611d43565b6008546001600160a01b031690565b610fbf612357565b506001600160a01b0316600090815260196020908152604091829020825180840190935280548352600101549082015290565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b600080600080611061610625565b50600d54909150600061107261072d565b905061107c612371565b506040805160208101909152601154815281156110a9576110a66110a084866114e4565b83611d6a565b90505b6110b281611ad2565b96509650965050505050909192565b6000610d5c6118c4565b600061061b6110d8611509565b846107e185604051806060016040528060258152602001612c626025913960016000611102611509565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611898565b600081600081116111565760405162461bcd60e51b81526004016106dc906126c6565b33611162818086611d94565b949350505050565b600061061b611177611509565b8484611783565b600b5490565b600f5490565b6008546000906001600160a01b031633146111b75760405162461bcd60e51b81526004016106dc906128e9565b6000600b54116111d95760405162461bcd60e51b81526004016106dc906126a5565b50600b805460009091556111eb610fa8565b6001600160a01b03167f20ca5094f3a20c321cbe4123d0f01b276b81df0fa24cd4d83d9253956035d863826040516112239190612b12565b60405180910390a2610604611236610fa8565b6010546001600160a01b03169083611b58565b6008546000906001600160a01b031633146112765760405162461bcd60e51b81526004016106dc906128e9565b61127e6118c4565b611289848484611e61565b600061129584846114e4565b905061129f612336565b60405180606001604052808381526020018781526020018681525090506112c4611655565b601554111561135a5760006016819055601781905560188190556040517fe58d04c6069251e310ede9daae36efbc408e81b8bebd9915bf5a7e6e7ca95d989190a180516013556020810151601455604080820151601555517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c94929061134d90889088908690612b39565b60405180910390a16113fa565b7f1355800f5bff457ad5c5a51017502bef53351bc3e3575eaf67c1f768b2101b7586868460405161138d93929190612b39565b60405180910390a18051601655602081015160175560408101516018556013548510156113fa5760138590556014546015546040517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c9492926113f19290918990612b39565b60405180910390a15b50600195945050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611439612336565b5060408051606081018252601654815260175460208201526018549181019190915290565b60408051606081018252601354815260145460208201526015549181019190915260009061148b906115c1565b905090565b604080516020810190915260115481526000908190819061092390611ad2565b600c5490565b600081600081116114d95760405162461bcd60e51b81526004016106dc906126c6565b611162843385611d94565b6000828201838110156107ea5760405162461bcd60e51b81526004016106dc90612611565b3390565b6001600160a01b0383166115335760405162461bcd60e51b81526004016106dc9061290c565b6001600160a01b0382166115595760405162461bcd60e51b81526004016106dc906125cf565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906115b4908590612b12565b60405180910390a3505050565b6000806115cc611655565b905082604001518110806115e15750600a5481145b156115ec57506106f2565b60006115fe600a548560400151611ed1565b90506000611610838660000151611ee8565b90508082101561164d5760006116268284611a90565b9050611649611642876020015183611adc90919063ffffffff16565b86906114e4565b9450505b505050919050565b4290565b606481111561167a5760405162461bcd60e51b81526004016106dc906129be565b60098190556040517fcd36e83aa831664c67a318291b1d97d2741c9ea9d5a49f66e29e28541b3c06e9906116af908390612b12565b60405180910390a150565b6007546001600160a01b03828116911614156116d55761174b565b6008546001600160a01b03828116911614156117035760405162461bcd60e51b81526004016106dc906127ce565b600780546001600160a01b0319166001600160a01b0383169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a25b50565b600f8190556040517f7f7d5eb76787d9279c88eb7f18c26b33761ae038bbd802551a7c6aa2f9f8dd12906116af908390612b12565b6001600160a01b0383166117a95760405162461bcd60e51b81526004016106dc9061286d565b6001600160a01b0382166117cf5760405162461bcd60e51b81526004016106dc90612562565b6117da838383611ef7565b61181781604051806060016040528060268152602001612bdc602691396001600160a01b0386166000908152602081905260409020549190611898565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461184690826114e4565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115b4908590612b12565b600081848411156118bc5760405162461bcd60e51b81526004016106dc919061252f565b505050900390565b600a546118cf611655565b116118d9576118e9565b6118e1611fca565b6118e96120f1565b565b8160006119006118fb8385611c5b565b612162565b9050600061190d86610cf0565b90506000821161192f5760405162461bcd60e51b81526004016106dc90612a6c565b8181101561194f5760405162461bcd60e51b81526004016106dc90612a35565b600061195b8284611a90565b6040805160208101909152601254815290915060009061197f90610de59084611c22565b9050670de0b6b3a76400008110156119a35791925082916119a085826114e4565b94505b505050935093915050565b6001600160a01b0382166119d45760405162461bcd60e51b81526004016106dc9061282c565b6119e082600083611ef7565b611a1d81604051806060016040528060228152602001612bba602291396001600160a01b0385166000908152602081905260409020549190611898565b6001600160a01b038316600090815260208190526040902055600254611a439082611a90565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a84908590612b12565b60405180910390a35050565b60006107ea83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611898565b5190600a90601290565b600082611aeb5750600061061f565b82820282848281611af857fe5b04146107ea5760405162461bcd60e51b81526004016106dc9061272d565b60006107ea83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061219c565b611bae8363a9059cbb60e01b8484604051602401611b7792919061250b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526121d3565b505050565b6008546001600160a01b0382811691161415611bce5761174b565b600880546001600160a01b0383166001600160a01b031991821681179092556007805490911690556040517fa2ea9883a321a3e97b8266c2b078bfeec6d50c711ed71f874a90d500ae2eaf3690600090a250565b611c2a612371565b604080516020810190915283518190611c439085611adc565b90529392505050565b51670de0b6b3a7640000900490565b611c63612371565b604080516020810190915282518190611c4390610996876ec097ce7bc90715b34b9f1000000000611adc565b6001600160a01b038216611cb55760405162461bcd60e51b81526004016106dc90612aa3565b611cc160008383611ef7565b600254611cce90826114e4565b6002556001600160a01b038216600090815260208190526040902054611cf490826114e4565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611a84908590612b12565b611d64846323b872dd60e01b858585604051602401611b77939291906124e7565b50505050565b611d72612371565b604080516020810190915280611c438461099687670de0b6b3a7640000611adc565b6000611d9e6118c4565b60408051602081019091526012548152611dbd90610de5908490611c5b565b905060008111611ddf5760405162461bcd60e51b81526004016106dc90612797565b611de98482611c8f565b600d54611df690836114e4565b600d81905550826001600160a01b0316846001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8484604051611e41929190612b2b565b60405180910390a36010546107ea906001600160a01b0316843085611d43565b60008111611e815760405162461bcd60e51b81526004016106dc906125a5565b611e89611655565b821015611ea85760405162461bcd60e51b81526004016106dc906126f6565b680a31062beeed700000831115611bae5760405162461bcd60e51b81526004016106dc90612648565b600081831015611ee157816107ea565b5090919050565b6000818310611ee157816107ea565b611eff6118c4565b6060604051806060016040528060388152602001612c2a6038913990506001600160a01b03841615611f7b576000611f46610de5610dcf85611f4089610cf0565b90611a90565b90506305f5e10081101580611f59575080155b8290611f785760405162461bcd60e51b81526004016106dc919061252f565b50505b6001600160a01b03831615611d64576305f5e100611fa2610de5610dcf856108a088610cf0565b10158190611fc35760405162461bcd60e51b81526004016106dc919061252f565b5050505050565b600080611fd5610625565b915091508015612076576016546013556017546014556018546015556040517fe58d04c6069251e310ede9daae36efbc408e81b8bebd9915bf5a7e6e7ca95d9890600090a160135415612066576014546015546013546040517f2fa40e2e6101b8bae833c4716c3c36b1e15938b1aaa699ec9896bb2d836c94929361205d9390929091612b39565b60405180910390a15b6000601681905560178190556018555b61208282600c54611ee8565b915081156120e2577f01feb0f24c52736758ca404486734e6287175eb5c93aa090f0ab371665231d72826040516120b99190612b12565b60405180910390a1600c546120ce9083611a90565b600c55600d546120de90836114e4565b600d555b6120ea611655565b600a555050565b600d5460006120fe61072d565b9050806121105760115460125561211f565b61211a8282611d6a565b516012555b601280546040517f15819dd2fd9f6418b142e798d08a18d0bf06ea368f4480b7b0d3f75bd966bc48926121569291600a9190612b39565b60405180910390a15050565b8051600090670de0b6b3a7640000900661217d576000612180565b60015b60ff166012600a0a83600001518161219457fe5b040192915050565b600081836121bd5760405162461bcd60e51b81526004016106dc919061252f565b5060008385816121c957fe5b0495945050505050565b6060612228826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122629092919063ffffffff16565b805190915015611bae57808060200190518101906122469190612454565b611bae5760405162461bcd60e51b81526004016106dc906129eb565b60606111628484600085606061227785612330565b6122935760405162461bcd60e51b81526004016106dc90612950565b60006060866001600160a01b031685876040516122b091906124b7565b60006040518083038185875af1925050503d80600081146122ed576040519150601f19603f3d011682016040523d82523d6000602084013e6122f2565b606091505b509150915081156123065791506111629050565b8051156123165780518082602001fd5b8360405162461bcd60e51b81526004016106dc919061252f565b3b151590565b60405180606001604052806000815260200160008152602001600081525090565b604051806040016040528060008152602001600081525090565b6040518060200160405280600081525090565b80356001600160a01b038116811461061f57600080fd5b6000602082840312156123ac578081fd5b6107ea8383612384565b600080604083850312156123c8578081fd5b6123d28484612384565b91506123e18460208501612384565b90509250929050565b6000806000606084860312156123fe578081fd5b833561240981612ba4565b9250602084013561241981612ba4565b929592945050506040919091013590565b6000806040838503121561243c578182fd5b6124468484612384565b946020939093013593505050565b600060208284031215612465578081fd5b815180151581146107ea578182fd5b600060208284031215612485578081fd5b5035919050565b6000806000606084860312156124a0578283fd5b505081359360208301359350604090920135919050565b600082516124c9818460208701612b78565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b600060208252825180602084015261254e816040850160208701612b78565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526010908201526f4475726174696f6e206973207a65726f60801b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601a908201527f506572207365636f6e6420726577617264206f766572666c6f77000000000000604082015260600190565b6020808252600c908201526b139bdd081d5b9cdd185ad95960a21b604082015260600190565b6020808252600790820152664e6f206665657360c81b604082015260600190565b602080825260169082015275416d6f756e74206973206e6f7420706f73697469766560501b604082015260600190565b6020808252601d908201527f5374617274696e672074696d657374616d70206c742063757272656e74000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252600f908201526e139bdd081c995b19585cd95908185d608a1b604082015260600190565b60208082526018908201527f546f6f20736d616c6c207374616b696e6720616d6f756e740000000000000000604082015260600190565b6020808252600d908201526c20b63932b0b23c9037bbb732b960991b604082015260600190565b6020808252601a908201527f4e6f74206e6f6d696e6174656420746f206f776e657273686970000000000000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601a908201527f5374616b652062616c616e6365206c74206d696e207374616b65000000000000604082015260600190565b6020808252600990820152682737ba1037bbb732b960b91b604082015260600190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820756e7374616b65642062616c616e63650000000000604082015260600190565b602080825260139082015272125b9d985b1a5908199959481c195c98d95b9d606a1b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601b908201527f4e6f7420656e6f7567682073796e74686574696320746f6b656e730000000000604082015260600190565b6020808252601a908201527f546f6f20736d616c6c20756e7374616b696e6720616d6f756e74000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b81518152602080830151908201526040918201519181019190915260600190565b815181526020918201519181019190915260400190565b90815260200190565b9182521515602082015260400190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60005b83811015612b93578181015183820152602001612b7b565b83811115611d645750506000910152565b6001600160a01b038116811461174b57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d696e696d616c207374616b652062616c616e63652073686f756c64206265206d6f7265206f7220657175616c20746f203120746f6b656e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204b0749f4cadf01608620cbcfca09dd78408896f5d8998ef411a6f23219d9120e64736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000031c2415c946928e9fd1af83cdfa38d3edbd4326f000000000000000000000000d4eee3d50588d7dee8dcc42635e50093e0aa8cc0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061de8bac000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000a8c000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000b5374616b656420554d4144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000573554d4144000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : syntheticTokenName (string): Staked UMAD
Arg [1] : syntheticTokenSymbol (string): sUMAD
Arg [2] : stakingToken_ (address): 0x31c2415c946928e9FD1Af83cdFA38d3eDBD4326f
Arg [3] : owner_ (address): 0xd4eeE3D50588D7dee8Dcc42635E50093E0AA8Cc0
Arg [4] : claimingFeePercent_ (uint256): 2
Arg [5] : perSecondReward_ (uint256): 0
Arg [6] : startsAt_ (uint256): 1641974700
Arg [7] : duration_ (uint256): 1
Arg [8] : unstakingTime_ (uint256): 691200
Arg [9] : defaultPriceMantissa (uint256): 1000000000000000000

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000031c2415c946928e9fd1af83cdfa38d3edbd4326f
Arg [3] : 000000000000000000000000d4eee3d50588d7dee8dcc42635e50093e0aa8cc0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000061de8bac
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 00000000000000000000000000000000000000000000000000000000000a8c00
Arg [9] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [11] : 5374616b656420554d4144000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 73554d4144000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

566:19810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;999:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2219:81:4;;;:::i;:::-;;;;;;;:::i;4255:166::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2921:389:0:-;;;:::i;:::-;;;;;;;;:::i;11918:165::-;;;;;;:::i;:::-;;:::i;797:147:10:-;;;;;;:::i;:::-;;:::i;3262:98:4:-;;;:::i;15050:163:0:-;;;;;;:::i;:::-;;:::i;4881:317:4:-;;;;;;:::i;:::-;;:::i;13371:708:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3121:81:4:-;;;:::i;:::-;;;;;;;:::i;3964:214:0:-;;;:::i;:::-;;;;;;;;;:::i;8385:675::-;;;;;;:::i;:::-;;:::i;5593:215:4:-;;;;;;:::i;:::-;;:::i;943:49:0:-;;;:::i;14386:515::-;;;:::i;4622:288::-;;;;;;:::i;:::-;;:::i;1887:93::-;;;:::i;164:95:10:-;;;:::i;:::-;;;;;;;:::i;1038:28:0:-;;;:::i;10972:325::-;;;;;;:::i;:::-;;:::i;2181:105::-;;;:::i;:::-;;;;;;;:::i;3418:117:4:-;;;;;;:::i;:::-;;:::i;1986:90:0:-;;;:::i;590:201:10:-;;;:::i;7094:902:0:-;;;;;;:::i;:::-;;:::i;1792:89::-;;;:::i;11438:346::-;;;;;;:::i;:::-;;:::i;265:77:10:-;;;:::i;2397:125:0:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2413:85:4:-;;;:::i;3386:510:0:-;;;:::i;14233:97::-;;;:::i;6295:266:4:-;;;;;;:::i;:::-;;:::i;12304:189:0:-;;;;;;:::i;:::-;;:::i;3738:172:4:-;;;;;;:::i;:::-;;:::i;1606:81:0:-;;;:::i;2082:93::-;;;:::i;9288:258::-;;;:::i;9881:1085::-;;;;;;:::i;:::-;;:::i;3968:149:4:-;;;;;;:::i;:::-;;:::i;2292:99:0:-;;;:::i;2758:157::-;;;:::i;2528:224::-;;;:::i;1693:93::-;;;:::i;12822:209::-;;;;;;:::i;:::-;;:::i;999:33::-;;;;:::o;2219:81:4:-;2288:5;2281:12;;;;;;;;-1:-1:-1;;2281:12:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2256:13;;2281:12;;2288:5;;2281:12;;2288:5;2281:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2219:81;;:::o;4255:166::-;4338:4;4354:39;4363:12;:10;:12::i;:::-;4377:7;4386:6;4354:8;:39::i;:::-;-1:-1:-1;4410:4:4;4255:166;;;;;:::o;2921:389:0:-;3038:45;;;;;;;;3066:16;3038:45;;;;;;;;;;;;;;;;;;2972:16;;;;3038:45;;:27;:45::i;:::-;3115:16;:23;3027:56;;-1:-1:-1;3097:14:0;:12;:14::i;:::-;:41;3093:211;;-1:-1:-1;3199:13:0;:20;3177:4;;3199:25;3195:98;;3250:42;;;;;;;;3278:13;3250:42;;;;;;;;;;;;;;;;;;3237:56;;3250:42;;:27;:42::i;:::-;3237:8;;:12;:56::i;:::-;3226:67;;3195:98;2921:389;;:::o;11918:165::-;1001:6:10;;11997:12:0;;-1:-1:-1;;;;;1001:6:10;987:10;:20;979:42;;;;-1:-1:-1;;;979:42:10;;;;;;;:::i;:::-;;;;;;;;;12021:34:0::1;12044:10;12021:22;:34::i;:::-;-1:-1:-1::0;12072:4:0::1;1031:1:10;11918:165:0::0;;;:::o;797:147:10:-;1001:6;;867:12;;-1:-1:-1;;;;;1001:6:10;987:10;:20;979:42;;;;-1:-1:-1;;;979:42:10;;;;;;;:::i;:::-;891:25:::1;909:6;891:17;:25::i;3262:98:4:-:0;3341:12;;3262:98;:::o;15050:163:0:-;1001:6:10;;15128:12:0;;-1:-1:-1;;;;;1001:6:10;987:10;:20;979:42;;;;-1:-1:-1;;;979:42:10;;;;;;;:::i;:::-;15152:33:0::1;15170:14;15152:17;:33::i;4881:317:4:-:0;4987:4;5003:36;5013:6;5021:9;5032:6;5003:9;:36::i;:::-;5049:121;5058:6;5066:12;:10;:12::i;:::-;5080:89;5118:6;5080:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5080:19:4;;;;;;:11;:19;;;;;;5100:12;:10;:12::i;:::-;-1:-1:-1;;;;;5080:33:4;;;;;;;;;;;;-1:-1:-1;5080:33:4;;;:89;:37;:89::i;:::-;5049:8;:121::i;:::-;-1:-1:-1;5187:4:4;4881:317;;;;;;:::o;13371:708:0:-;13473:22;13497:20;13448:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;13533:9:::1;:7;:9::i;:::-;13622:41;::::0;;::::1;::::0;::::1;::::0;;;13656:6:::1;13622:41:::0;;;13569:10:::1;::::0;13622:41:::1;::::0;13569:10;;13648:6;;13622:17:::1;:41::i;:::-;13589:74:::0;;-1:-1:-1;13589:74:0;-1:-1:-1;13673:27:0::1;13679:6:::0;13589:74;13673:5:::1;:27::i;:::-;13725:12;::::0;:32:::1;::::0;13742:14;13725:16:::1;:32::i;:::-;13710:12;:47:::0;13784:14:::1;::::0;:34:::1;::::0;13803:14;13784:18:::1;:34::i;:::-;13767:14;:51:::0;-1:-1:-1;;;;;13855:17:0;::::1;13828:24;13855:17:::0;;;:9:::1;:17;::::0;;;;13900:15;;:35:::1;::::0;13920:14;13900:19:::1;:35::i;:::-;13882:53:::0;;13988:14:::1;::::0;13969:34:::1;::::0;:14:::1;:12;:14::i;:::-;:18:::0;::::1;:34::i;:::-;13945:21;::::0;::::1;:58:::0;14018:54:::1;::::0;-1:-1:-1;;;;;14018:54:0;::::1;::::0;::::1;::::0;::::1;::::0;14035:6;;14043:14;;14059:12;;14018:54:::1;:::i;:::-;;;;;;;;20366:1;;13371:708:::0;;;;:::o;3121:81:4:-;3186:9;;;;3121:81;:::o;3964:214:0:-;4155:14;;;;;;;;;:6;:14;;;4045:16;;;;;;4155;;:14;:16::i;:::-;4148:23;;;;;;3964:214;;;:::o;8385:675::-;8485:21;8508:20;8460:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;8544:9:::1;:7;:9::i;:::-;8632:41;::::0;;::::1;::::0;::::1;::::0;;;8666:6:::1;8632:41:::0;;;8580:10:::1;::::0;8632:41:::1;::::0;8580:10;;8658:6;;8632:17:::1;:41::i;:::-;8715:18;::::0;8600:73;;-1:-1:-1;8600:73:0;-1:-1:-1;8683:11:0::1;::::0;8697:46:::1;::::0;8739:3:::1;::::0;8697:37:::1;::::0;8600:73;;8697:17:::1;:37::i;:::-;:41:::0;::::1;:46::i;:::-;8683:60;;8753:27;8759:6;8767:12;8753:5;:27::i;:::-;8805:12;::::0;:31:::1;::::0;8822:13;8805:16:::1;:31::i;:::-;8790:12;:46:::0;8862:22:::1;:13:::0;8880:3;8862:17:::1;:22::i;:::-;8905:8;::::0;8846:38;;-1:-1:-1;8905:17:0::1;::::0;8918:3;8905:12:::1;:17::i;:::-;8894:8;:28:::0;8937:57:::1;::::0;-1:-1:-1;;;;;8937:57:0;::::1;::::0;::::1;::::0;::::1;::::0;8953:6;;8961:13;;8976:3;;8981:12;;8937:57:::1;:::i;:::-;;;;;;;;9004:13;::::0;:49:::1;::::0;-1:-1:-1;;;;;9004:13:0::1;9031:6:::0;9039:13;9004:26:::1;:49::i;:::-;20366:1;;8385:675:::0;;;;:::o;5593:215:4:-;5681:4;5697:83;5706:12;:10;:12::i;:::-;5720:7;5729:50;5768:10;5729:11;:25;5741:12;:10;:12::i;:::-;-1:-1:-1;;;;;5729:25:4;;;;;;;;;;;;;;;;;-1:-1:-1;5729:25:4;;;:34;;;;;;;;;;;:38;:50::i;943:49:0:-;987:5;943:49;:::o;14386:515::-;14465:10;14424:12;14512:17;;;:9;:17;;;;;14556:15;;14424:12;;14465:10;14589;14581:35;;;;-1:-1:-1;;;14581:35:0;;;;;;;:::i;:::-;14659:14;:12;:14::i;:::-;14634:8;:21;;;:39;;14626:67;;;;-1:-1:-1;;;14626:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14710:17:0;;;;;;:9;:17;;;;;14703:24;;;;;;14754:14;;:26;;14773:6;14754:18;:26::i;:::-;14737:14;:43;14795:26;;-1:-1:-1;;;;;14795:26:0;;;;;;;14814:6;;14795:26;:::i;:::-;;;;;;;;14831:13;;:42;;-1:-1:-1;;;;;14831:13:0;14858:6;14866;14831:26;:42::i;:::-;14890:4;14883:11;;;;;14386:515;:::o;4622:288::-;4726:22;4750:20;4787:17;4812:7;:5;:7::i;:::-;4786:33;;;;4836:67;4854:7;4863:6;4871:31;;;;;;;;4892:9;4871:31;;;4836:17;:67::i;:::-;4829:74;;;;;4622:288;;;;;:::o;1887:93::-;1959:14;;1887:93;:::o;164:95:10:-;237:15;;-1:-1:-1;;;;;237:15:10;164:95;:::o;1038:28:0:-;;;;:::o;10972:325::-;11065:12;11038:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;1001:6:10::1;::::0;-1:-1:-1;;;;;1001:6:10::1;987:10;:20;979:42;;;;-1:-1:-1::0;;;979:42:10::1;;;;;;;:::i;:::-;11089:9:0::2;:7;:9::i;:::-;11125:55;::::0;;;;::::2;::::0;;;::::2;::::0;;::::2;;::::0;::::2;::::0;:14:::2;::::0;:55:::2;::::0;11144:6;;11125:18:::2;:55::i;:::-;11108:14;:72:::0;11195:21:::2;::::0;::::2;::::0;::::2;::::0;11209:6;;11195:21:::2;:::i;:::-;;;;;;;;11226:43;11253:7;:5;:7::i;:::-;11226:13;::::0;-1:-1:-1;;;;;11226:13:0::2;::::0;11262:6;11226:26:::2;:43::i;2181:105::-:0;2229:15;;:::i;:::-;-1:-1:-1;2256:23:0;;;;;;;;2263:16;2256:23;;;;;;;;;;;;;;;;;;2181:105;:::o;3418:117:4:-;-1:-1:-1;;;;;3510:18:4;3484:7;3510:18;;;;;;;;;;;;3418:117::o;1986:90:0:-;2056:13;;-1:-1:-1;;;;;2056:13:0;1986:90;:::o;590:201:10:-;681:15;;635:12;;-1:-1:-1;;;;;681:15:10;667:10;:29;659:68;;;;-1:-1:-1;;;659:68:10;;;;;;;:::i;:::-;747:15;;737:26;;-1:-1:-1;;;;;747:15:10;737:9;:26::i;:::-;-1:-1:-1;780:4:10;590:201;:::o;7094:902:0:-;7180:12;7163:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;7204:9:::1;:7;:9::i;:::-;7240:10;7223:14;7287:17:::0;;;:9:::1;:17;::::0;;;;7340:15;;7373:25;;::::1;;7365:65;;;;-1:-1:-1::0;;;7365:65:0::1;;;;;;;:::i;:::-;7440:20;7463:37;:29;7474:17;7484:6;7474:9;:17::i;:::-;7463:10;::::0;;::::1;::::0;::::1;::::0;;;:6:::1;:10:::0;;;;::::1;:29::i;:::-;:35;:37::i;:::-;7440:60:::0;-1:-1:-1;987:5:0::1;7518:24;7440:60:::0;7535:6;7518:16:::1;:24::i;:::-;:45;;7510:84;;;;-1:-1:-1::0;;;7510:84:0::1;;;;;;;:::i;:::-;7626:31;::::0;;::::1;::::0;::::1;::::0;;;7650:6:::1;7626:31:::0;;;7604:19:::1;::::0;7626:39:::1;::::0;:31:::1;::::0;7642:6;;7626:15:::1;:31::i;:39::-;7604:61;;7675:26;7681:6;7689:11;7675:5;:26::i;:::-;7726:12;::::0;:24:::1;::::0;7743:6;7726:16:::1;:24::i;:::-;7711:12;:39:::0;7777:14:::1;::::0;:26:::1;::::0;7796:6;7777:18:::1;:26::i;:::-;7760:14;:43:::0;7831:27:::1;:15:::0;7851:6;7831:19:::1;:27::i;:::-;7813:45:::0;;7873:47:::1;::::0;7813:15:::1;::::0;-1:-1:-1;;;;;7873:47:0;::::1;::::0;::::1;::::0;::::1;::::0;7900:6;;7908:11;;7873:47:::1;:::i;:::-;;;;;;;;7953:6;-1:-1:-1::0;;;;;7935:33:0::1;;7961:6;7935:33;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;7985:4:0::1;::::0;7094:902;-1:-1:-1;;;;;;;7094:902:0:o;1792:89::-;1862:12;;1792:89;:::o;11438:346::-;11521:12;11504:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;11545:9:::1;:7;:9::i;:::-;11617:14;::::0;11580:10:::1;::::0;11617:26:::1;::::0;11636:6;11617:18:::1;:26::i;:::-;11600:14;:43:::0;11658:28:::1;::::0;-1:-1:-1;;;;;11658:28:0;::::1;::::0;::::1;::::0;::::1;::::0;11679:6;;11658:28:::1;:::i;:::-;;;;;;;;11696:13;::::0;:60:::1;::::0;-1:-1:-1;;;;;11696:13:0::1;11727:5:::0;11742:4:::1;11749:6:::0;11696:30:::1;:60::i;265:77:10:-:0;329:6;;-1:-1:-1;;;;;329:6:10;265:77;:::o;2397:125:0:-;2455:21;;:::i;:::-;-1:-1:-1;;;;;;2497:18:0;;;;;:9;:18;;;;;;;;;2488:27;;;;;;;;;;;;;;;;;;;;2397:125::o;2413:85:4:-;2484:7;2477:14;;;;;;;;-1:-1:-1;;2477:14:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2452:13;;2477:14;;2484:7;;2477:14;;2484:7;2477:14;;;;;;;;;;;;;;;;;;;;;;;;3386:510:0;3461:16;3491:12;3517:22;3565:16;3587:20;:18;:20::i;:::-;-1:-1:-1;3640:12:0;;3564:43;;-1:-1:-1;3617:20:0;3685:13;:11;:13::i;:::-;3662:36;;3708:34;;:::i;:::-;-1:-1:-1;3708:50:0;;;;;;;;;3745:13;3708:50;;;3772:16;;3768:88;;3799:57;3815:26;:12;3832:8;3815:16;:26::i;:::-;3843:12;3799:15;:57::i;:::-;3790:66;;3768:88;3873:16;:6;:14;:16::i;:::-;3866:23;;;;;;;;;;3386:510;;;:::o;14233:97::-;14269:12;14293:9;:7;:9::i;6295:266:4:-;6388:4;6404:129;6413:12;:10;:12::i;:::-;6427:7;6436:96;6475:15;6436:96;;;;;;;;;;;;;;;;;:11;:25;6448:12;:10;:12::i;:::-;-1:-1:-1;;;;;6436:25:4;;;;;;;;;;;;;;;;;-1:-1:-1;6436:25:4;;;:34;;;;;;;;;;;:96;:38;:96::i;12304:189:0:-;12380:20;12363:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;12429:10:::1;12456:30;12429:10:::0;;12479:6;12456::::1;:30::i;:::-;12449:37:::0;12304:189;-1:-1:-1;;;;12304:189:0:o;3738:172:4:-;3824:4;3840:42;3850:12;:10;:12::i;:::-;3864:9;3875:6;3840:9;:42::i;1606:81:0:-;1672:8;;1606:81;:::o;2082:93::-;2154:14;;2082:93;:::o;9288:258::-;1001:6:10;;9337:14:0;;-1:-1:-1;;;;;1001:6:10;987:10;:20;979:42;;;;-1:-1:-1;;;979:42:10;;;;;;;:::i;:::-;9382:1:0::1;9371:8;;:12;9363:32;;;;-1:-1:-1::0;;;9363:32:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;9414:8:0::1;::::0;;9443:1:::1;9432:12:::0;;;9470:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;9459:27:0::1;;9479:6;9459:27;;;;;;:::i;:::-;;;;;;;;9496:43;9523:7;:5;:7::i;:::-;9496:13;::::0;-1:-1:-1;;;;;9496:13:0::1;::::0;9532:6;9496:26:::1;:43::i;9881:1085::-:0;1001:6:10;;10028:12:0;;-1:-1:-1;;;;;1001:6:10;987:10;:20;979:42;;;;-1:-1:-1;;;979:42:10;;;;;;;:::i;:::-;10052:9:0::1;:7;:9::i;:::-;10071:67;10099:16;10117:9;10128;10071:27;:67::i;:::-;10148:14;10165:24;:9:::0;10179;10165:13:::1;:24::i;:::-;10148:41;;10199:24;;:::i;:::-;10226:82;;;;;;;;10300:6;10226:82;;;;10253:16;10226:82;;;;10281:9;10226:82;;::::0;10199:109:::1;;10350:14;:12;:14::i;:::-;10322:25:::0;;:42:::1;10318:621;;;10387:13;;10380:20:::0;;;;;;;;;;;10419:21:::1;::::0;::::1;::::0;10387:13;10419:21:::1;10454:27:::0;;:16:::1;:27:::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;10500:59;::::1;::::0;::::1;::::0;10523:16;;10541:9;;10552:6;;10500:59:::1;:::i;:::-;;;;;;;;10318:621;;;10595:56;10615:16;10633:9;10644:6;10595:56;;;;;;;;:::i;:::-;;;;;;;;10665:24:::0;;:13:::1;:24:::0;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;10707:16:::1;:23:::0;:35;-1:-1:-1;10703:226:0::1;;;10762:16;:35:::0;;;10843:32;;10877:25;;10820:94:::1;::::0;::::1;::::0;::::1;::::0;10843:32;;10788:9;;10820:94:::1;:::i;:::-;;;;;;;;10703:226;-1:-1:-1::0;10955:4:0::1;::::0;9881:1085;-1:-1:-1;;;;;9881:1085:0:o;3968:149:4:-;-1:-1:-1;;;;;4083:18:4;;;4057:7;4083:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3968:149::o;2292:99:0:-;2337:15;;:::i;:::-;-1:-1:-1;2364:20:0;;;;;;;;2371:13;2364:20;;;;;;;;;;;;;;;;;;2292:99;:::o;2758:157::-;2863:45;;;;;;;;2891:16;2863:45;;;;;;;;;;;;;;;;;;2824:16;;2863:45;;:27;:45::i;:::-;2852:56;;2758:157;:::o;2528:224::-;2722:21;;;;;;;;;:13;:21;;;2612:16;;;;;;2722:23;;:21;:23::i;1693:93::-;1765:14;;1693:93;:::o;12822:209::-;12946:20;12921:6;20328:1;20319:6;:10;20311:45;;;;-1:-1:-1;;;20311:45:0;;;;;;;:::i;:::-;12989:35:::1;12996:7;13005:10;13017:6;12989;:35::i;874:176:3:-:0;932:7;963:5;;;986:6;;;;978:46;;;;-1:-1:-1;;;978:46:3;;;;;;;:::i;590:104:1:-;677:10;590:104;:::o;9357:340:4:-;-1:-1:-1;;;;;9458:19:4;;9450:68;;;;-1:-1:-1;;;9450:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;9536:21:4;;9528:68;;;;-1:-1:-1;;;9528:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;9607:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;9658:32;;;;;9637:6;;9658:32;:::i;:::-;;;;;;;;9357:340;;;:::o;15219:662:0:-;15306:16;15334:17;15354:14;:12;:14::i;:::-;15334:34;;15394:9;:18;;;15382:9;:30;:60;;;;15429:13;;15416:9;:26;15382:60;15378:106;;;15458:15;;;15378:106;15493:26;15522:43;15531:13;;15546:9;:18;;;15522:8;:43::i;:::-;15493:72;;15575:31;15609:37;15618:9;15629;:16;;;15609:8;:37::i;:::-;15575:71;;15681:23;15660:18;:44;15656:219;;;15720:16;15739:47;:23;15767:18;15739:27;:47::i;:::-;15720:66;;15811:53;15824:39;15837:9;:25;;;15824:8;:12;;:39;;;;:::i;:::-;15811:8;;:12;:53::i;:::-;15800:64;;15656:219;;15219:662;;;;;;:::o;1497:103::-;1578:15;1497:103;:::o;18403:239::-;18515:3;18501:10;:17;;18474:68;;;;-1:-1:-1;;;18474:68:0;;;;;;;:::i;:::-;18552:18;:31;;;18598:37;;;;;;18573:10;;18598:37;:::i;:::-;;;;;;;;18403:239;:::o;1045:229:10:-;1111:15;;-1:-1:-1;;;;;1111:25:10;;;:15;;:25;1107:38;;;1138:7;;1107:38;1162:6;;-1:-1:-1;;;;;1162:16:10;;;:6;;:16;;1154:42;;;;-1:-1:-1;;;1154:42:10;;;;;;;:::i;:::-;1206:15;:24;;-1:-1:-1;;;;;;1206:24:10;-1:-1:-1;;;;;1206:24:10;;;;;;;;1245:22;;;;-1:-1:-1;;1245:22:10;1045:229;;:::o;18648:159:0:-;18718:14;:31;;;18764:36;;;;;;18735:14;;18764:36;:::i;7035:530:4:-;-1:-1:-1;;;;;7140:20:4;;7132:70;;;;-1:-1:-1;;;7132:70:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;7220:23:4;;7212:71;;;;-1:-1:-1;;;7212:71:4;;;;;;;:::i;:::-;7294:47;7315:6;7323:9;7334:6;7294:20;:47::i;:::-;7372:71;7394:6;7372:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7372:17:4;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7352:17:4;;;:9;:17;;;;;;;;;;;:91;;;;7476:20;;;;;;;:32;;7501:6;7476:24;:32::i;:::-;-1:-1:-1;;;;;7453:20:4;;;:9;:20;;;;;;;;;;;;:55;;;;7523:35;;;;;;;;;;7551:6;;7523:35;:::i;1746:187:3:-;1832:7;1867:12;1859:6;;;;1851:29;;;;-1:-1:-1;;;1851:29:3;;;;;;;;:::i;:::-;-1:-1:-1;;;1902:5:3;;;1746:187::o;17538:146:0:-;17598:13;;17580:14;:12;:14::i;:::-;:31;17576:44;;17613:7;;17576:44;17629:24;:22;:24::i;:::-;17663:14;:12;:14::i;:::-;17538:146::o;15887:783::-;16109:6;16036:22;16140:38;:31;16109:6;16164;16140:15;:31::i;:::-;:36;:38::i;:::-;16125:53;;16188:15;16206:18;16216:7;16206:9;:18::i;:::-;16188:36;;16257:1;16242:12;:16;16234:55;;;;-1:-1:-1;;;16234:55:0;;;;;;;:::i;:::-;16318:12;16307:7;:23;;16299:63;;;;-1:-1:-1;;;16299:63:0;;;;;;;:::i;:::-;16372:33;16408:25;:7;16420:12;16408:11;:25::i;:::-;16468:10;;;;;;;;;:6;:10;;;16372:61;;-1:-1:-1;16443:22:0;;16468:45;;:37;;16372:61;16468:10;:37::i;:45::-;16443:70;;16544:6;16527:14;:23;16523:141;;;16581:7;;-1:-1:-1;16581:7:0;;16619:34;:14;16638;16619:18;:34::i;:::-;16602:51;;16523:141;15887:783;;;;;;;;;:::o;8524:410:4:-;-1:-1:-1;;;;;8607:21:4;;8599:67;;;;-1:-1:-1;;;8599:67:4;;;;;;;:::i;:::-;8677:49;8698:7;8715:1;8719:6;8677:20;:49::i;:::-;8758:68;8781:6;8758:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8758:18:4;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;8737:18:4;;:9;:18;;;;;;;;;;:89;8851:12;;:24;;8868:6;8851:16;:24::i;:::-;8836:12;:39;8890:37;;8916:1;;-1:-1:-1;;;;;8890:37:4;;;;;;;8920:6;;8890:37;:::i;:::-;;;;;;;;8524:410;;:::o;1321:134:3:-;1379:7;1405:43;1409:1;1412;1405:43;;;;;;;;;;;;;;;;;:3;:43::i;6995:247:9:-;7202:10;;266:2;;317;;6995:247::o;2180:459:3:-;2238:7;2479:6;2475:45;;-1:-1:-1;2508:1:3;2501:8;;2475:45;2542:5;;;2546:1;2542;:5;:1;2565:5;;;;;:10;2557:56;;;;-1:-1:-1;;;2557:56:3;;;;;;;:::i;3101:130::-;3159:7;3185:39;3189:1;3192;3185:39;;;;;;;;;;;;;;;;;:3;:39::i;696:175:6:-;778:86;798:5;828:23;;;853:2;857:5;805:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;805:58:6;;;;;;;;;;;;;;-1:-1:-1;;;;;805:58:6;-1:-1:-1;;;;;;805:58:6;;;;;;;;;;778:19;:86::i;:::-;696:175;;;:::o;1280:195:10:-;1340:6;;-1:-1:-1;;;;;1340:18:10;;;:6;;:18;1336:31;;;1360:7;;1336:31;1376:6;:17;;-1:-1:-1;;;;;1376:17:10;;-1:-1:-1;;;;;;1376:17:10;;;;;;;;1403:15;:28;;;;;;;1446:22;;;;1376:6;;1446:22;1280:195;:::o;2541:146:9:-;2607:15;;:::i;:::-;2641:39;;;;;;;;;2661:10;;2641:39;;2661:17;;2676:1;2661:14;:17::i;:::-;2641:39;;2634:46;2541:146;-1:-1:-1;;;2541:146:9:o;4420:115::-;4503:10;366:20;4503:25;;;4420:115::o;3050:172::-;3116:15;;:::i;:::-;3150:65;;;;;;;;;3202:10;;3150:65;;3170:43;;:27;:1;575:27;3170:5;:27::i;7835:370:4:-;-1:-1:-1;;;;;7918:21:4;;7910:65;;;;-1:-1:-1;;;7910:65:4;;;;;;;:::i;:::-;7986:49;8015:1;8019:7;8028:6;7986:20;:49::i;:::-;8061:12;;:24;;8078:6;8061:16;:24::i;:::-;8046:12;:39;-1:-1:-1;;;;;8116:18:4;;:9;:18;;;;;;;;;;;:30;;8139:6;8116:22;:30::i;:::-;-1:-1:-1;;;;;8095:18:4;;:9;:18;;;;;;;;;;;:51;;;;8161:37;;8095:18;;:9;8161:37;;;;8191:6;;8161:37;:::i;877:203:6:-;977:96;997:5;1027:27;;;1056:4;1062:2;1066:5;1004:68;;;;;;;;;;:::i;977:96::-;877:203;;;;:::o;3228:147:9:-;3286:15;;:::i;:::-;3320:48;;;;;;;;;;3340:26;3364:1;3340:19;:1;366:20;3340:5;:19::i;19752:499:0:-;19862:20;19894:9;:7;:9::i;:::-;19928:31;;;;;;;;;19952:6;19928:31;;;:39;;:31;;19944:6;;19928:15;:31::i;:39::-;19913:54;;20000:1;19985:12;:16;19977:53;;;;-1:-1:-1;;;19977:53:0;;;;;;;:::i;:::-;20040:27;20046:6;20054:12;20040:5;:27::i;:::-;20092:12;;:24;;20109:6;20092:16;:24::i;:::-;20077:12;:39;;;;20146:5;-1:-1:-1;;;;;20131:43:0;20138:6;-1:-1:-1;;;;;20131:43:0;;20153:6;20161:12;20131:43;;;;;;;:::i;:::-;;;;;;;;20184:13;;:60;;-1:-1:-1;;;;;20184:13:0;20215:5;20230:4;20237:6;20184:30;:60::i;18039:358::-;18210:1;18199:8;:12;18191:41;;;;-1:-1:-1;;;18191:41:0;;;;;;;:::i;:::-;18262:14;:12;:14::i;:::-;18250:8;:26;;18242:68;;;;-1:-1:-1;;;18242:68:0;;;;;;;:::i;:::-;18347:12;18328:15;:31;;18320:70;;;;-1:-1:-1;;;18320:70:0;;;;;;;:::i;215:105:2:-;273:7;304:1;299;:6;;:14;;312:1;299:14;;;-1:-1:-1;308:1:2;;215:105;-1:-1:-1;215:105:2:o;391:104::-;449:7;479:1;475;:5;:13;;487:1;475:13;;18813:604:0;18943:9;:7;:9::i;:::-;18962:23;:84;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19060:18:0;;;19056:213;;19094:22;19119:47;:39;19130:27;19150:6;19130:15;19140:4;19130:9;:15::i;:::-;:19;;:27::i;19119:47::-;19094:72;;987:5;19188:14;:35;;:58;;;-1:-1:-1;19227:19:0;;19188:58;19248:9;19180:78;;;;;-1:-1:-1;;;19180:78:0;;;;;;;;:::i;:::-;;19056:213;;-1:-1:-1;;;;;19282:16:0;;;19278:133;;987:5;19322:45;:37;19333:25;19351:6;19333:13;19343:2;19333:9;:13::i;19322:45::-;:66;;19390:9;19314:86;;;;;-1:-1:-1;;;19314:86:0;;;;;;;;:::i;:::-;;18813:604;;;;:::o;16676:856::-;16730:16;16748:25;16777:20;:18;:20::i;:::-;16729:68;;;;16811:20;16807:428;;;16866:13;16847:32;:16;:32;;;;;;;;;16898:21;;;;16847:32;;16898:21;16937:16;:23;:28;16933:258;;17034:32;;17088:25;;17034:16;17135:23;16990:186;;;;;;17034:32;;17088:25;;16990:186;:::i;:::-;;;;;;;;16933:258;17211:13;;17204:20;;;;;;;;;16807:428;17255:34;17264:8;17274:14;;17255:8;:34::i;:::-;17244:45;-1:-1:-1;17303:12:0;;17299:187;;17336:25;17352:8;17336:25;;;;;;:::i;:::-;;;;;;;;17392:14;;:28;;17411:8;17392:18;:28::i;:::-;17375:14;:45;17449:12;;:26;;17466:8;17449:16;:26::i;:::-;17434:12;:41;17299:187;17511:14;:12;:14::i;:::-;17495:13;:30;-1:-1:-1;;16676:856:0:o;17690:343::-;17756:12;;17733:20;17801:13;:11;:13::i;:::-;17778:36;-1:-1:-1;17828:17:0;17824:112;;17856:13;17847:22;:6;:22;17824:112;;;17893:43;17909:12;17923;17893:15;:43::i;:::-;17884:52;:6;:52;17824:112;17964:6;:15;;17951:75;;;;;;17964:15;266:2:9;;17964:6:0;17951:75;:::i;:::-;;;;;;;;17690:343;;:::o;4541:158:9:-;4654:10;;4597:7;;366:20;4654:25;;:37;;4690:1;4654:37;;;4686:1;4654:37;4623:69;;317:2;266;366:20;4624:1;:10;;;:25;;;;;;4623:69;;4541:158;-1:-1:-1;;4541:158:9:o;3713:272:3:-;3799:7;3833:12;3826:5;3818:28;;;;-1:-1:-1;;;3818:28:3;;;;;;;;:::i;:::-;;3856:9;3872:1;3868;:5;;;;;;;3713:272;-1:-1:-1;;;;;3713:272:3:o;2959:751:6:-;3378:23;3404:69;3432:4;3404:69;;;;;;;;;;;;;;;;;3412:5;-1:-1:-1;;;;;3404:27:6;;;:69;;;;;:::i;:::-;3487:17;;3378:95;;-1:-1:-1;3487:21:6;3483:221;;3627:10;3616:30;;;;;;;;;;;;:::i;:::-;3608:85;;;;-1:-1:-1;;;3608:85:6;;;;;;;:::i;3573:194:7:-;3676:12;3707:53;3730:6;3738:4;3744:1;3747:12;5050;5082:18;5093:6;5082:10;:18::i;:::-;5074:60;;;;-1:-1:-1;;;5074:60:7;;;;;;;:::i;:::-;5205:12;5219:23;5246:6;-1:-1:-1;;;;;5246:11:7;5266:8;5277:4;5246:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5204:78;;;;5296:7;5292:580;;;5326:10;-1:-1:-1;5319:17:7;;-1:-1:-1;5319:17:7;5292:580;5437:17;;:21;5433:429;;5695:10;5689:17;5755:15;5742:10;5738:2;5734:19;5727:44;5644:145;5834:12;5827:20;;-1:-1:-1;;;5827:20:7;;;;;;;;:::i;718:413::-;1078:20;1116:8;;;718:413::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;31293:54;;32255:35;;32245:2;;32304:1;;32294:12;414:241;;518:2;506:9;497:7;493:23;489:32;486:2;;;-1:-1;;524:12;486:2;586:53;631:7;607:22;586:53;:::i;662:366::-;;;783:2;771:9;762:7;758:23;754:32;751:2;;;-1:-1;;789:12;751:2;851:53;896:7;872:22;851:53;:::i;:::-;841:63;;959:53;1004:7;941:2;984:9;980:22;959:53;:::i;:::-;949:63;;745:283;;;;;:::o;1035:491::-;;;;1173:2;1161:9;1152:7;1148:23;1144:32;1141:2;;;-1:-1;;1179:12;1141:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1231:63;-1:-1;1331:2;1370:22;;72:20;97:33;72:20;97:33;:::i;:::-;1135:391;;1339:63;;-1:-1;;;1439:2;1478:22;;;;344:20;;1135:391::o;1533:366::-;;;1654:2;1642:9;1633:7;1629:23;1625:32;1622:2;;;-1:-1;;1660:12;1622:2;1722:53;1767:7;1743:22;1722:53;:::i;:::-;1712:63;1812:2;1851:22;;;;344:20;;-1:-1;;;1616:283::o;1906:257::-;;2018:2;2006:9;1997:7;1993:23;1989:32;1986:2;;;-1:-1;;2024:12;1986:2;223:6;217:13;32401:5;31205:13;31198:21;32379:5;32376:32;32366:2;;-1:-1;;32412:12;2170:241;;2274:2;2262:9;2253:7;2249:23;2245:32;2242:2;;;-1:-1;;2280:12;2242:2;-1:-1;344:20;;2236:175;-1:-1;2236:175::o;2418:491::-;;;;2556:2;2544:9;2535:7;2531:23;2527:32;2524:2;;;-1:-1;;2562:12;2524:2;-1:-1;;344:20;;;2714:2;2753:22;;344:20;;-1:-1;2822:2;2861:22;;;344:20;;2518:391;-1:-1;2518:391::o;14592:271::-;;3307:5;30546:12;3418:52;3463:6;3458:3;3451:4;3444:5;3440:16;3418:52;:::i;:::-;3482:16;;;;;14726:137;-1:-1;;14726:137::o;14870:222::-;-1:-1;;;;;31293:54;;;;2987:37;;14997:2;14982:18;;14968:124::o;15099:444::-;-1:-1;;;;;31293:54;;;2987:37;;31293:54;;;;15446:2;15431:18;;2987:37;15529:2;15514:18;;14309:37;;;;15282:2;15267:18;;15253:290::o;15550:333::-;-1:-1;;;;;31293:54;;;;2987:37;;15869:2;15854:18;;14309:37;15705:2;15690:18;;15676:207::o;15890:210::-;31205:13;;31198:21;3101:34;;16011:2;15996:18;;15982:118::o;16366:310::-;;16513:2;16534:17;16527:47;3818:5;30546:12;30985:6;16513:2;16502:9;16498:18;30973:19;3912:52;3957:6;31013:14;16502:9;31013:14;16513:2;3938:5;3934:16;3912:52;:::i;:::-;32175:7;32159:14;-1:-1;;32155:28;3976:39;;;;31013:14;3976:39;;16484:192;-1:-1;;16484:192::o;16683:416::-;16883:2;16897:47;;;4252:2;16868:18;;;30973:19;4288:34;31013:14;;;4268:55;-1:-1;;;4343:12;;;4336:27;4382:12;;;16854:245::o;17106:416::-;17306:2;17320:47;;;4633:2;17291:18;;;30973:19;-1:-1;;;31013:14;;;4649:39;4707:12;;;17277:245::o;17529:416::-;17729:2;17743:47;;;4958:2;17714:18;;;30973:19;4994:34;31013:14;;;4974:55;-1:-1;;;5049:12;;;5042:26;5087:12;;;17700:245::o;17952:416::-;18152:2;18166:47;;;5338:2;18137:18;;;30973:19;5374:29;31013:14;;;5354:50;5423:12;;;18123:245::o;18375:416::-;18575:2;18589:47;;;5674:2;18560:18;;;30973:19;5710:28;31013:14;;;5690:49;5758:12;;;18546:245::o;18798:416::-;18998:2;19012:47;;;6009:2;18983:18;;;30973:19;-1:-1;;;31013:14;;;6025:35;6079:12;;;18969:245::o;19221:416::-;19421:2;19435:47;;;6330:1;19406:18;;;30973:19;-1:-1;;;31013:14;;;6345:30;6394:12;;;19392:245::o;19644:416::-;19844:2;19858:47;;;6645:2;19829:18;;;30973:19;-1:-1;;;31013:14;;;6661:45;6725:12;;;19815:245::o;20067:416::-;20267:2;20281:47;;;6976:2;20252:18;;;30973:19;7012:31;31013:14;;;6992:52;7063:12;;;20238:245::o;20490:416::-;20690:2;20704:47;;;7314:2;20675:18;;;30973:19;7350:34;31013:14;;;7330:55;-1:-1;;;7405:12;;;7398:25;7442:12;;;20661:245::o;20913:416::-;21113:2;21127:47;;;7693:2;21098:18;;;30973:19;-1:-1;;;31013:14;;;7709:38;7766:12;;;21084:245::o;21336:416::-;21536:2;21550:47;;;8017:2;21521:18;;;30973:19;8053:26;31013:14;;;8033:47;8099:12;;;21507:245::o;21759:416::-;21959:2;21973:47;;;8350:2;21944:18;;;30973:19;-1:-1;;;31013:14;;;8366:36;8421:12;;;21930:245::o;22182:416::-;22382:2;22396:47;;;8672:2;22367:18;;;30973:19;8708:28;31013:14;;;8688:49;8756:12;;;22353:245::o;22605:416::-;22805:2;22819:47;;;9007:2;22790:18;;;30973:19;9043:34;31013:14;;;9023:55;-1:-1;;;9098:12;;;9091:25;9135:12;;;22776:245::o;23028:416::-;23228:2;23242:47;;;9386:2;23213:18;;;30973:19;9422:34;31013:14;;;9402:55;-1:-1;;;9477:12;;;9470:29;9518:12;;;23199:245::o;23451:416::-;23651:2;23665:47;;;9769:2;23636:18;;;30973:19;9805:28;31013:14;;;9785:49;9853:12;;;23622:245::o;23874:416::-;24074:2;24088:47;;;10104:1;24059:18;;;30973:19;-1:-1;;;31013:14;;;10119:32;10170:12;;;24045:245::o;24297:416::-;24497:2;24511:47;;;10421:2;24482:18;;;30973:19;10457:34;31013:14;;;10437:55;-1:-1;;;10512:12;;;10505:28;10552:12;;;24468:245::o;24720:416::-;24920:2;24934:47;;;10803:2;24905:18;;;30973:19;10839:31;31013:14;;;10819:52;10890:12;;;24891:245::o;25143:416::-;25343:2;25357:47;;;11141:2;25328:18;;;30973:19;11177:29;31013:14;;;11157:50;11226:12;;;25314:245::o;25566:416::-;25766:2;25780:47;;;11477:2;25751:18;;;30973:19;-1:-1;;;31013:14;;;11493:42;11554:12;;;25737:245::o;25989:416::-;26189:2;26203:47;;;11805:2;26174:18;;;30973:19;11841:34;31013:14;;;11821:55;-1:-1;;;11896:12;;;11889:34;11942:12;;;26160:245::o;26412:416::-;26612:2;26626:47;;;12193:2;26597:18;;;30973:19;12229:29;31013:14;;;12209:50;12278:12;;;26583:245::o;26835:416::-;27035:2;27049:47;;;12529:2;27020:18;;;30973:19;12565:28;31013:14;;;12545:49;12613:12;;;27006:245::o;27258:416::-;27458:2;27472:47;;;12864:2;27443:18;;;30973:19;12900:33;31013:14;;;12880:54;12953:12;;;27429:245::o;27681:318::-;13253:23;;14309:37;;13435:4;13424:16;;;13418:23;13495:14;;;14309:37;13593:4;13582:16;;;13576:23;13653:14;;;14309:37;;;;27856:2;27841:18;;27827:172::o;28006:314::-;13966:23;;14309:37;;14145:4;14134:16;;;14128:23;14205:14;;;14309:37;;;;28179:2;28164:18;;28150:170::o;28327:222::-;14309:37;;;28454:2;28439:18;;28425:124::o;28556:321::-;14309:37;;;31205:13;31198:21;28863:2;28848:18;;3101:34;28705:2;28690:18;;28676:201::o;28884:333::-;14309:37;;;29203:2;29188:18;;14309:37;29039:2;29024:18;;29010:207::o;29224:444::-;14309:37;;;29571:2;29556:18;;14309:37;;;;29654:2;29639:18;;14309:37;29407:2;29392:18;;29378:290::o;29675:556::-;14309:37;;;30051:2;30036:18;;14309:37;;;;30134:2;30119:18;;14309:37;30217:2;30202:18;;14309:37;29886:3;29871:19;;29857:374::o;30238:214::-;31509:4;31498:16;;;;14545:35;;30361:2;30346:18;;30332:120::o;31815:268::-;31880:1;31887:101;31901:6;31898:1;31895:13;31887:101;;;31968:11;;;31962:18;31949:11;;;31942:39;31923:2;31916:10;31887:101;;;32003:6;32000:1;31997:13;31994:2;;;-1:-1;;31880:1;32050:16;;32043:27;31864:219::o;32196:117::-;-1:-1;;;;;31293:54;;32255:35;;32245:2;;32304:1;;32294:12

Swarm Source

ipfs://4b0749f4cadf01608620cbcfca09dd78408896f5d8998ef411a6f23219d9120e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.