ETH Price: $3,276.96 (+0.79%)
Gas: 1 Gwei

Token

E2X (E2X)
 

Overview

Max Total Supply

33,484,442.08379964 E2X

Holders

1,078

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.03719112 E2X

Value
$0.00
0x2fe1cf162ea7ff94ee9f23a601e588248390e2de
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:
E2X

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity 0.5.10;

/*
 * @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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface TRC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Implementation of the {TRC20} 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 {ERC20Mintable}.
 *
 * 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 {TRC20-approve}.
 */
contract ERC20 is Context, TRC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    // allocating 10 million tokens for xswap liquidity, promotions, airdrop and dev costs
    uint256 private _totalSupply = 10000000 * (10 ** 8);

    constructor() public {
        _balances[msg.sender] = _totalSupply;
    }

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

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

    /**
     * @dev See {TRC20-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 returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    /**
     * @dev See {TRC20-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 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 {TRC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public 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 {TRC20-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 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _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 {
        require(account != address(0), "ERC20: mint to the zero address");

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

     /**
     * @dev External function to destroys `amount` tokens from `account`, reducing the
     * total supply.
     */
    function burn(uint256 amount) external {
        require(_balances[msg.sender] >= amount, "ERC20: not enough balance!");

        _burn(msg.sender, 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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _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 is 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 {
        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 Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

contract GlobalsAndUtility is ERC20 {
    /*  XfLobbyEnter
    */
    event XfLobbyEnter(
        uint256 timestamp,
        uint256 enterDay,
        uint256 indexed entryIndex,
        uint256 indexed rawAmount
    );

    /*  XfLobbyExit 
    */
    event XfLobbyExit(
        uint256 timestamp,
        uint256 enterDay,
        uint256 indexed entryIndex,
        uint256 indexed xfAmount,
        address indexed referrerAddr
    );

    /*  DailyDataUpdate
    */
    event DailyDataUpdate(
        address indexed updaterAddr,
        uint256 timestamp,
        uint256 beginDay,
        uint256 endDay
    );

    /*  StakeStart
    */
    event StakeStart(
        uint40 indexed stakeId,
        address indexed stakerAddr,
        uint256 stakedSuns,
        uint256 stakeShares,
        uint256 stakedDays
    );
    
    /*  StakeGoodAccounting
    */
    event StakeGoodAccounting(
        uint40 indexed stakeId,
        address indexed stakerAddr,
        address indexed senderAddr,
        uint256 stakedSuns,
        uint256 stakeShares,
        uint256 payout,
        uint256 penalty
    );

    /*  StakeEnd 
    */
    event StakeEnd(
        uint40 indexed stakeId,
        uint40 prevUnlocked,
        address indexed stakerAddr,
        uint256 lockedDay,
        uint256 servedDays,
        uint256 stakedSuns,
        uint256 stakeShares,
        uint256 dividends,
        uint256 payout,
        uint256 penalty,
        uint256 stakeReturn
    );

    /*  ShareRateChange 
    */
    event ShareRateChange(
        uint40 indexed stakeId,
        uint256 timestamp,
        uint256 newShareRate
    );

    /* T2X allocation share address */
    address payable internal constant T2X_SHARE_ADDR = 0x769902b4cB2dfD79F2370555AD255Bf599bF7155;

    uint8 internal LAST_FLUSHED_DAY = 1;

    /* ERC20 constants */
    string public constant name = "E2X";
    string public constant symbol = "E2X";
    uint8 public constant decimals = 8;

    /* Suns per Satoshi = 10,000 * 1e8 / 1e8 = 1e4 */
    uint256 private constant SUNS_PER_E2X = 10 ** uint256(decimals); // 1e8

    /* Time of contract launch (30-10-2020 T00:00:00Z) */
    uint256 internal constant LAUNCH_TIME = 1604016000;

    /* Start of claim phase */
    uint256 internal constant PRE_CLAIM_DAYS = 1;
    uint256 internal constant CLAIM_STARTING_AMOUNT = 5000000 * (10 ** 8);
    uint256 internal constant CLAIM_LOWEST_AMOUNT = 1000000 * (10 ** 8);
    uint256 internal constant CLAIM_PHASE_START_DAY = PRE_CLAIM_DAYS;

    /* Number of words to hold 1 bit for each transform lobby day */
    uint256 internal constant XF_LOBBY_DAY_WORDS = ((1 + (50 * 7)) + 255) >> 8;

    /* Stake timing parameters */
    uint256 internal constant MIN_STAKE_DAYS = 1;

    uint256 internal constant MAX_STAKE_DAYS = 365;

    uint256 internal constant EARLY_PENALTY_MIN_DAYS = 90;

    uint256 private constant LATE_PENALTY_GRACE_WEEKS = 2;
    uint256 internal constant LATE_PENALTY_GRACE_DAYS = LATE_PENALTY_GRACE_WEEKS * 7;

    uint256 private constant LATE_PENALTY_SCALE_WEEKS = 100;
    uint256 internal constant LATE_PENALTY_SCALE_DAYS = LATE_PENALTY_SCALE_WEEKS * 7;

    /* Stake shares Longer Pays Better bonus constants used by _stakeStartBonusSuns() */
    uint256 private constant LPB_BONUS_PERCENT = 20;
    uint256 private constant LPB_BONUS_MAX_PERCENT = 200;
    uint256 internal constant LPB = 364 * 100 / LPB_BONUS_PERCENT;
    uint256 internal constant LPB_MAX_DAYS = LPB * LPB_BONUS_MAX_PERCENT / 100;

    /* Stake shares Bigger Pays Better bonus constants used by _stakeStartBonusSuns() */
    uint256 private constant BPB_BONUS_PERCENT = 10;
    uint256 private constant BPB_MAX_E2X = 7 * 1e6;
    uint256 internal constant BPB_MAX_SUNS = BPB_MAX_E2X * SUNS_PER_E2X;
    uint256 internal constant BPB = BPB_MAX_SUNS * 100 / BPB_BONUS_PERCENT;

    /* Share rate is scaled to increase precision */
    uint256 internal constant SHARE_RATE_SCALE = 1e5;

    /* Share rate max (after scaling) */
    uint256 internal constant SHARE_RATE_UINT_SIZE = 40;
    uint256 internal constant SHARE_RATE_MAX = (1 << SHARE_RATE_UINT_SIZE) - 1;

    /* weekly staking bonus */
    uint8 internal constant BONUS_DAY_SCALE = 2;

    /* Globals expanded for memory (except _latestStakeId) and compact for storage */
    struct GlobalsCache {
        uint256 _lockedSunsTotal;
        uint256 _nextStakeSharesTotal;
        uint256 _shareRate;
        uint256 _stakePenaltyTotal;
        uint256 _dailyDataCount;
        uint256 _stakeSharesTotal;
        uint40 _latestStakeId;
        uint256 _currentDay;
    }

    struct GlobalsStore {
        uint72 lockedSunsTotal;
        uint72 nextStakeSharesTotal;
        uint40 shareRate;
        uint72 stakePenaltyTotal;
        uint16 dailyDataCount;
        uint72 stakeSharesTotal;
        uint40 latestStakeId;
    }

    GlobalsStore public globals;

    /* Daily data */
    struct DailyDataStore {
        uint72 dayPayoutTotal;
        uint256 dayDividends;
        uint72 dayStakeSharesTotal;
    }

    mapping(uint256 => DailyDataStore) public dailyData;

    /* Stake expanded for memory (except _stakeId) and compact for storage */
    struct StakeCache {
        uint40 _stakeId;
        uint256 _stakedSuns;
        uint256 _stakeShares;
        uint256 _lockedDay;
        uint256 _stakedDays;
        uint256 _unlockedDay;
    }

    struct StakeStore {
        uint40 stakeId;
        uint72 stakedSuns;
        uint72 stakeShares;
        uint16 lockedDay;
        uint16 stakedDays;
        uint16 unlockedDay;
    }

    mapping(address => StakeStore[]) public stakeLists;

    /* Temporary state for calculating daily rounds */
    struct DailyRoundState {
        uint256 _allocSupplyCached;
        uint256 _payoutTotal;
    }

    struct XfLobbyEntryStore {
        uint96 rawAmount;
        address referrerAddr;
    }

    struct XfLobbyQueueStore {
        uint40 headIndex;
        uint40 tailIndex;
        mapping(uint256 => XfLobbyEntryStore) entries;
    }

    mapping(uint256 => uint256) public xfLobby;
    mapping(uint256 => mapping(address => XfLobbyQueueStore)) public xfLobbyMembers;

    /**
     * @dev PUBLIC FACING: Optionally update daily data for a smaller
     * range to reduce gas cost for a subsequent operation
     * @param beforeDay Only update days before this day number (optional; 0 for current day)
     */
    function dailyDataUpdate(uint256 beforeDay)
        external
    {
        GlobalsCache memory g;
        GlobalsCache memory gSnapshot;
        _globalsLoad(g, gSnapshot);

        /* Skip pre-claim period */
        require(g._currentDay > CLAIM_PHASE_START_DAY, "E2X: Too early");

        if (beforeDay != 0) {
            require(beforeDay <= g._currentDay, "E2X: beforeDay cannot be in the future");

            _dailyDataUpdate(g, beforeDay, false);
        } else {
            /* Default to updating before current day */
            _dailyDataUpdate(g, g._currentDay, false);
        }

        _globalsSync(g, gSnapshot);
    }

    /**
     * @dev PUBLIC FACING: External helper to return multiple values of daily data with
     * a single call.
     * @param beginDay First day of data range
     * @param endDay Last day (non-inclusive) of data range
     * @return array of day stake shares total
     * @return array of day payout total
     */
    function dailyDataRange(uint256 beginDay, uint256 endDay)
        external
        view
        returns (uint256[] memory _dayStakeSharesTotal, uint256[] memory _dayPayoutTotal, uint256[] memory _dayDividends)
    {
        require(beginDay < endDay && endDay <= globals.dailyDataCount, "E2X: range invalid");

        _dayStakeSharesTotal = new uint256[](endDay - beginDay);
        _dayPayoutTotal = new uint256[](endDay - beginDay);
        _dayDividends = new uint256[](endDay - beginDay);

        uint256 src = beginDay;
        uint256 dst = 0;
        do {
            _dayStakeSharesTotal[dst] = uint256(dailyData[src].dayStakeSharesTotal);
            _dayPayoutTotal[dst++] = uint256(dailyData[src].dayPayoutTotal);
            _dayDividends[dst++] = dailyData[src].dayDividends;
        } while (++src < endDay);

        return (_dayStakeSharesTotal, _dayPayoutTotal, _dayDividends);
    }


    /**
     * @dev PUBLIC FACING: External helper to return most global info with a single call.
     * Ugly implementation due to limitations of the standard ABI encoder.
     * @return Fixed array of values
     */
    function globalInfo()
        external
        view
        returns (uint256[10] memory)
    {

        return [
            globals.lockedSunsTotal,
            globals.nextStakeSharesTotal,
            globals.shareRate,
            globals.stakePenaltyTotal,
            globals.dailyDataCount,
            globals.stakeSharesTotal,
            globals.latestStakeId,
            block.timestamp,
            totalSupply(),
            xfLobby[_currentDay()]
        ];
    }

    /**
     * @dev PUBLIC FACING: ERC20 totalSupply() is the circulating supply and does not include any
     * staked Suns. allocatedSupply() includes both.
     * @return Allocated Supply in Suns
     */
    function allocatedSupply()
        external
        view
        returns (uint256)
    {
        return totalSupply() + globals.lockedSunsTotal;
    }

    /**
     * @dev PUBLIC FACING: External helper for the current day number since launch time
     * @return Current day number (zero-based)
     */
    function currentDay()
        external
        view
        returns (uint256)
    {
        return _currentDay();
    }

    function _currentDay()
        internal
        view
        returns (uint256)
    {
        if (block.timestamp < LAUNCH_TIME){
             return 0;
        }else{
             return (block.timestamp - LAUNCH_TIME) / 1 days;
        }
    }

    function _dailyDataUpdateAuto(GlobalsCache memory g)
        internal
    {
        _dailyDataUpdate(g, g._currentDay, true);
    }

    function _globalsLoad(GlobalsCache memory g, GlobalsCache memory gSnapshot)
        internal
        view
    {
        g._lockedSunsTotal = globals.lockedSunsTotal;
        g._nextStakeSharesTotal = globals.nextStakeSharesTotal;
        g._shareRate = globals.shareRate;
        g._stakePenaltyTotal = globals.stakePenaltyTotal;
        g._dailyDataCount = globals.dailyDataCount;
        g._stakeSharesTotal = globals.stakeSharesTotal;
        g._latestStakeId = globals.latestStakeId;
        g._currentDay = _currentDay();

        _globalsCacheSnapshot(g, gSnapshot);
    }

    function _globalsCacheSnapshot(GlobalsCache memory g, GlobalsCache memory gSnapshot)
        internal
        pure
    {
        gSnapshot._lockedSunsTotal = g._lockedSunsTotal;
        gSnapshot._nextStakeSharesTotal = g._nextStakeSharesTotal;
        gSnapshot._shareRate = g._shareRate;
        gSnapshot._stakePenaltyTotal = g._stakePenaltyTotal;
        gSnapshot._dailyDataCount = g._dailyDataCount;
        gSnapshot._stakeSharesTotal = g._stakeSharesTotal;
        gSnapshot._latestStakeId = g._latestStakeId;
    }

    function _globalsSync(GlobalsCache memory g, GlobalsCache memory gSnapshot)
        internal
    {
        if (g._lockedSunsTotal != gSnapshot._lockedSunsTotal
            || g._nextStakeSharesTotal != gSnapshot._nextStakeSharesTotal
            || g._shareRate != gSnapshot._shareRate
            || g._stakePenaltyTotal != gSnapshot._stakePenaltyTotal) {
            globals.lockedSunsTotal = uint72(g._lockedSunsTotal);
            globals.nextStakeSharesTotal = uint72(g._nextStakeSharesTotal);
            globals.shareRate = uint40(g._shareRate);
            globals.stakePenaltyTotal = uint72(g._stakePenaltyTotal);
        }
        if (g._dailyDataCount != gSnapshot._dailyDataCount
            || g._stakeSharesTotal != gSnapshot._stakeSharesTotal
            || g._latestStakeId != gSnapshot._latestStakeId) {
            globals.dailyDataCount = uint16(g._dailyDataCount);
            globals.stakeSharesTotal = uint72(g._stakeSharesTotal);
            globals.latestStakeId = g._latestStakeId;
        }
    }

    function _stakeLoad(StakeStore storage stRef, uint40 stakeIdParam, StakeCache memory st)
        internal
        view
    {
        /* Ensure caller's stakeIndex is still current */
        require(stakeIdParam == stRef.stakeId, "E2X: stakeIdParam not in stake");

        st._stakeId = stRef.stakeId;
        st._stakedSuns = stRef.stakedSuns;
        st._stakeShares = stRef.stakeShares;
        st._lockedDay = stRef.lockedDay;
        st._stakedDays = stRef.stakedDays;
        st._unlockedDay = stRef.unlockedDay;
    }

    function _stakeUpdate(StakeStore storage stRef, StakeCache memory st)
        internal
    {
        stRef.stakeId = st._stakeId;
        stRef.stakedSuns = uint72(st._stakedSuns);
        stRef.stakeShares = uint72(st._stakeShares);
        stRef.lockedDay = uint16(st._lockedDay);
        stRef.stakedDays = uint16(st._stakedDays);
        stRef.unlockedDay = uint16(st._unlockedDay);
    }

    function _stakeAdd(
        StakeStore[] storage stakeListRef,
        uint40 newStakeId,
        uint256 newStakedSuns,
        uint256 newStakeShares,
        uint256 newLockedDay,
        uint256 newStakedDays
    )
        internal
    {
        stakeListRef.push(
            StakeStore(
                newStakeId,
                uint72(newStakedSuns),
                uint72(newStakeShares),
                uint16(newLockedDay),
                uint16(newStakedDays),
                uint16(0) // unlockedDay
            )
        );
    }

    /**
     * @dev Efficiently delete from an unordered array by moving the last element
     * to the "hole" and reducing the array length. Can change the order of the list
     * and invalidate previously held indexes.
     * @notice stakeListRef length and stakeIndex are already ensured valid in stakeEnd()
     * @param stakeListRef Reference to stakeLists[stakerAddr] array in storage
     * @param stakeIndex Index of the element to delete
     */
    function _stakeRemove(StakeStore[] storage stakeListRef, uint256 stakeIndex)
        internal
    {
        uint256 lastIndex = stakeListRef.length - 1;

        /* Skip the copy if element to be removed is already the last element */
        if (stakeIndex != lastIndex) {
            /* Copy last element to the requested element's "hole" */
            stakeListRef[stakeIndex] = stakeListRef[lastIndex];
        }

        /*
            Reduce the array length now that the array is contiguous.
            Surprisingly, 'pop()' uses less gas than 'stakeListRef.length = lastIndex'
        */
        stakeListRef.pop();
    }

    /**
     * @dev Estimate the stake payout for an incomplete day
     * @param g Cache of stored globals
     * @param stakeSharesParam Param from stake to calculate bonuses for
     * @param day Day to calculate bonuses for
     * @return Payout in Suns
     */
    function _estimatePayoutRewardsDay(GlobalsCache memory g, uint256 stakeSharesParam, uint256 day)
        internal
        view
        returns (uint256 payout)
    {
        /* Prevent updating state for this estimation */
        GlobalsCache memory gTmp;
        _globalsCacheSnapshot(g, gTmp);

        DailyRoundState memory rs;
        rs._allocSupplyCached = totalSupply() + g._lockedSunsTotal;

        _dailyRoundCalc(gTmp, rs, day);

        /* Stake is no longer locked so it must be added to total as if it were */
        gTmp._stakeSharesTotal += stakeSharesParam;

        payout = rs._payoutTotal * stakeSharesParam / gTmp._stakeSharesTotal;

        return payout;
    }

    function _dailyRoundCalc(GlobalsCache memory g, DailyRoundState memory rs, uint256 day)
        private
        view
    {
        /*
            Calculate payout round

            Inflation of 5.42% inflation per 364 days             (approx 1 year)
            dailyInterestRate   = exp(log(1 + 5.42%)  / 364) - 1
                                = exp(log(1 + 0.0542) / 364) - 1
                                = exp(log(1.0542) / 364) - 1
                                = 0.0.00014523452066           (approx)

            payout  = allocSupply * dailyInterestRate
                    = allocSupply / (1 / dailyInterestRate)
                    = allocSupply / (1 / 0.00014523452066)
                    = allocSupply / 6885.4153644438375            (approx)
                    = allocSupply * 50000 / 68854153             (* 50000/50000 for int precision)
        */
        
        rs._payoutTotal = (rs._allocSupplyCached * 50000 / 68854153);

        if (g._stakePenaltyTotal != 0) {
            rs._payoutTotal += g._stakePenaltyTotal;
            g._stakePenaltyTotal = 0;
        }
    }

    function _dailyRoundCalcAndStore(GlobalsCache memory g, DailyRoundState memory rs, uint256 day)
        private
    {
        _dailyRoundCalc(g, rs, day);

        dailyData[day].dayPayoutTotal = uint72(rs._payoutTotal);
        dailyData[day].dayDividends = xfLobby[day];
        dailyData[day].dayStakeSharesTotal = uint72(g._stakeSharesTotal);
    }

    function _dailyDataUpdate(GlobalsCache memory g, uint256 beforeDay, bool isAutoUpdate)
        private
    {
        if (g._dailyDataCount >= beforeDay) {
            /* Already up-to-date */
            return;
        }

        DailyRoundState memory rs;
        rs._allocSupplyCached = totalSupply() + g._lockedSunsTotal;

        uint256 day = g._dailyDataCount;

        _dailyRoundCalcAndStore(g, rs, day);

        /* Stakes started during this day are added to the total the next day */
        if (g._nextStakeSharesTotal != 0) {
            g._stakeSharesTotal += g._nextStakeSharesTotal;
            g._nextStakeSharesTotal = 0;
        }

        while (++day < beforeDay) {
            _dailyRoundCalcAndStore(g, rs, day);
        }

        emit DailyDataUpdate(
            msg.sender,
            block.timestamp,
            g._dailyDataCount, 
            day
        );
        
        g._dailyDataCount = day;
    }
}

contract StakeableToken is GlobalsAndUtility {
    /**
     * @dev PUBLIC FACING: Open a stake.
     * @param newStakedSuns Number of Suns to stake
     * @param newStakedDays Number of days to stake
     */
    function stakeStart(uint256 newStakedSuns, uint256 newStakedDays)
        external
    {
        GlobalsCache memory g;
        GlobalsCache memory gSnapshot;
        _globalsLoad(g, gSnapshot);

        /* Enforce the minimum stake time */
        require(newStakedDays >= MIN_STAKE_DAYS, "E2X: newStakedDays lower than minimum");

        /* Check if log data needs to be updated */
        _dailyDataUpdateAuto(g);

        _stakeStart(g, newStakedSuns, newStakedDays);

        /* Remove staked Suns from balance of staker */
        _burn(msg.sender, newStakedSuns);

        _globalsSync(g, gSnapshot);
    }

    /**
     * @dev PUBLIC FACING: Unlocks a completed stake, distributing the proceeds of any penalty
     * immediately. The staker must still call stakeEnd() to retrieve their stake return (if any).
     * @param stakerAddr Address of staker
     * @param stakeIndex Index of stake within stake list
     * @param stakeIdParam The stake's id
     */
    function stakeGoodAccounting(address stakerAddr, uint256 stakeIndex, uint40 stakeIdParam)
        external
    {
        GlobalsCache memory g;
        GlobalsCache memory gSnapshot;
        _globalsLoad(g, gSnapshot);

        /* require() is more informative than the default assert() */
        require(stakeLists[stakerAddr].length != 0, "E2X: Empty stake list");
        require(stakeIndex < stakeLists[stakerAddr].length, "E2X: stakeIndex invalid");

        StakeStore storage stRef = stakeLists[stakerAddr][stakeIndex];

        /* Get stake copy */
        StakeCache memory st;
        _stakeLoad(stRef, stakeIdParam, st);

        /* Stake must have served full term */
        require(g._currentDay >= st._lockedDay + st._stakedDays, "E2X: Stake not fully served");

        /* Stake must still be locked */
        require(st._unlockedDay == 0, "E2X: Stake already unlocked");

        /* Check if log data needs to be updated */
        _dailyDataUpdateAuto(g);

        /* Unlock the completed stake */
        _stakeUnlock(g, st);

        /* stakeReturn & dividends values are unused here */
        (, uint256 payout, uint256 dividends, uint256 penalty, uint256 cappedPenalty) = _stakePerformance(
            g,
            st,
            st._stakedDays
        );

        emit StakeGoodAccounting(
            stakeIdParam,
            stakerAddr,
            msg.sender,
            st._stakedSuns,
            st._stakeShares,
            payout,
            penalty
        );

        if (cappedPenalty != 0) {
            g._stakePenaltyTotal += cappedPenalty;
        }

        /* st._unlockedDay has changed */
        _stakeUpdate(stRef, st);

        _globalsSync(g, gSnapshot);
    }

    /**
     * @dev PUBLIC FACING: Closes a stake. The order of the stake list can change so
     * a stake id is used to reject stale indexes.
     * @param stakeIndex Index of stake within stake list
     * @param stakeIdParam The stake's id
     */
    function stakeEnd(uint256 stakeIndex, uint40 stakeIdParam)
        external
    {
        GlobalsCache memory g;
        GlobalsCache memory gSnapshot;
        _globalsLoad(g, gSnapshot);

        StakeStore[] storage stakeListRef = stakeLists[msg.sender];

        /* require() is more informative than the default assert() */
        require(stakeListRef.length != 0, "E2X: Empty stake list");
        require(stakeIndex < stakeListRef.length, "E2X: stakeIndex invalid");

        /* Get stake copy */
        StakeCache memory st;
        _stakeLoad(stakeListRef[stakeIndex], stakeIdParam, st);

        /* Check if log data needs to be updated */
        _dailyDataUpdateAuto(g);

        uint256 servedDays = 0;

        bool prevUnlocked = (st._unlockedDay != 0);
        uint256 stakeReturn;
        uint256 payout = 0;
        uint256 dividends = 0;
        uint256 penalty = 0;
        uint256 cappedPenalty = 0;

        if (g._currentDay >= st._lockedDay) {
            if (prevUnlocked) {
                /* Previously unlocked in stakeGoodAccounting(), so must have served full term */
                servedDays = st._stakedDays;
            } else {
                _stakeUnlock(g, st);

                servedDays = g._currentDay - st._lockedDay;
                if (servedDays > st._stakedDays) {
                    servedDays = st._stakedDays;
                }
            }

            (stakeReturn, payout, dividends, penalty, cappedPenalty) = _stakePerformance(g, st, servedDays);

            msg.sender.transfer(dividends);
        } else {
            /* Stake hasn't been added to the total yet, so no penalties or rewards apply */
            g._nextStakeSharesTotal -= st._stakeShares;

            stakeReturn = st._stakedSuns;
        }

        emit StakeEnd(
            stakeIdParam, 
            prevUnlocked ? 1 : 0,
            msg.sender,
            st._lockedDay,
            servedDays, 
            st._stakedSuns, 
            st._stakeShares, 
            dividends,
            payout, 
            penalty,
            stakeReturn
        );

        if (cappedPenalty != 0 && !prevUnlocked) {
            /* Split penalty proceeds only if not previously unlocked by stakeGoodAccounting() */
            g._stakePenaltyTotal += cappedPenalty;
        }

        /* Pay the stake return, if any, to the staker */
        if (stakeReturn != 0) {
            _mint(msg.sender, stakeReturn);
        }
        g._lockedSunsTotal -= st._stakedSuns;

        _stakeRemove(stakeListRef, stakeIndex);

        _globalsSync(g, gSnapshot);
    }

    /**
     * @dev PUBLIC FACING: Return the current stake count for a staker address
     * @param stakerAddr Address of staker
     */
    function stakeCount(address stakerAddr)
        external
        view
        returns (uint256)
    {
        return stakeLists[stakerAddr].length;
    }

    /**
     * @dev Open a stake.
     * @param g Cache of stored globals
     * @param newStakedSuns Number of Suns to stake
     * @param newStakedDays Number of days to stake
     */
    function _stakeStart(
        GlobalsCache memory g,
        uint256 newStakedSuns,
        uint256 newStakedDays
    )
        internal
    {
        /* Enforce the maximum stake time */
        require(newStakedDays <= MAX_STAKE_DAYS, "E2X: newStakedDays higher than maximum");

        uint256 bonusSuns = _stakeStartBonusSuns(newStakedSuns, newStakedDays);
        uint256 newStakeShares = (newStakedSuns + bonusSuns) * SHARE_RATE_SCALE / g._shareRate;

        /* Ensure newStakedSuns is enough for at least one stake share */
        require(newStakeShares != 0, "E2X: newStakedSuns must be at least minimum shareRate");

        /*
            The stakeStart timestamp will always be part-way through the current
            day, so it needs to be rounded-up to the next day to ensure all
            stakes align with the same fixed calendar days. The current day is
            already rounded-down, so rounded-up is current day + 1.
        */
        uint256 newLockedDay = g._currentDay + 1;

        /* Create Stake */
        uint40 newStakeId = ++g._latestStakeId;
        _stakeAdd(
            stakeLists[msg.sender],
            newStakeId,
            newStakedSuns,
            newStakeShares,
            newLockedDay,
            newStakedDays
        );

        emit StakeStart(
            newStakeId, 
            msg.sender,
            newStakedSuns, 
            newStakeShares, 
            newStakedDays
        );

        /* Stake is added to total in the next round, not the current round */
        g._nextStakeSharesTotal += newStakeShares;

        /* Track total staked Suns for inflation calculations */
        g._lockedSunsTotal += newStakedSuns;
    }

    /**
     * @dev Calculates total stake payout including rewards for a multi-day range
     * @param g Cache of stored globals
     * @param stakeSharesParam Param from stake to calculate bonuses for
     * @param beginDay First day to calculate bonuses for
     * @param endDay Last day (non-inclusive) of range to calculate bonuses for
     * @return Payout in Suns
     */
    function _calcPayoutRewards(
        GlobalsCache memory g,
        uint256 stakeSharesParam,
        uint256 beginDay,
        uint256 endDay
    )
        private
        view
        returns (uint256 payout)
    {
        uint256 counter;

        for (uint256 day = beginDay; day < endDay; day++) {
            uint256 dayPayout;

            dayPayout = dailyData[day].dayPayoutTotal * stakeSharesParam
                / dailyData[day].dayStakeSharesTotal;

            if (counter < 4) {
                counter++;
            } 
            /* Eligible to receive bonus */
            else {
                dayPayout = (dailyData[day].dayPayoutTotal * stakeSharesParam
                / dailyData[day].dayStakeSharesTotal) * BONUS_DAY_SCALE;
                counter = 0;
            }

            payout += dayPayout;
        }

        return payout;
    }

    /**
     * @dev Calculates user dividends
     * @param g Cache of stored globals
     * @param stakeSharesParam Param from stake to calculate bonuses for
     * @param beginDay First day to calculate bonuses for
     * @param endDay Last day (non-inclusive) of range to calculate bonuses for
     * @return Payout in Suns
     */
    function _calcPayoutDividendsReward(
        GlobalsCache memory g,
        uint256 stakeSharesParam,
        uint256 beginDay,
        uint256 endDay
    )
        private
        view
        returns (uint256 payout)
    {

        for (uint256 day = beginDay; day < endDay; day++) {
            uint256 dayPayout;

            /* user's share of 95% of the day's dividends */
            dayPayout += ((dailyData[day].dayDividends * 90) / 100) * stakeSharesParam
            / dailyData[day].dayStakeSharesTotal;

            payout += dayPayout;
        }

        return payout;
    }

    /**
     * @dev Calculate bonus Suns for a new stake, if any
     * @param newStakedSuns Number of Suns to stake
     * @param newStakedDays Number of days to stake
     */
    function _stakeStartBonusSuns(uint256 newStakedSuns, uint256 newStakedDays)
        private
        pure
        returns (uint256 bonusSuns)
    {
        /*
            LONGER PAYS BETTER:

            If longer than 1 day stake is committed to, each extra day
            gives bonus shares of approximately 0.0548%, which is approximately 20%
            extra per year of increased stake length committed to, but capped to a
            maximum of 200% extra.

            extraDays       =  stakedDays - 1

            longerBonus%    = (extraDays / 364) * 20%
                            = (extraDays / 364) / 5
                            =  extraDays / 1820
                            =  extraDays / LPB

            extraDays       =  longerBonus% * 1820
            extraDaysMax    =  longerBonusMax% * 1820
                            =  200% * 1820
                            =  3640
                            =  LPB_MAX_DAYS

            BIGGER PAYS BETTER:

            Bonus percentage scaled 0% to 10% for the first 7M E2X of stake.

            biggerBonus%    = (cappedSuns /  BPB_MAX_SUNS) * 10%
                            = (cappedSuns /  BPB_MAX_SUNS) / 10
                            =  cappedSuns / (BPB_MAX_SUNS * 10)
                            =  cappedSuns /  BPB

            COMBINED:

            combinedBonus%  =            longerBonus%  +  biggerBonus%

                                      cappedExtraDays     cappedSuns
                            =         ---------------  +  ------------
                                            LPB               BPB

                                cappedExtraDays * BPB     cappedSuns * LPB
                            =   ---------------------  +  ------------------
                                      LPB * BPB               LPB * BPB

                                cappedExtraDays * BPB  +  cappedSuns * LPB
                            =   --------------------------------------------
                                                  LPB  *  BPB

            bonusSuns     = suns * combinedBonus%
                            = suns * (cappedExtraDays * BPB  +  cappedSuns * LPB) / (LPB * BPB)
        */
        uint256 cappedExtraDays = 0;

        /* Must be more than 1 day for Longer-Pays-Better */
        if (newStakedDays > 1) {
            cappedExtraDays = newStakedDays <= LPB_MAX_DAYS ? newStakedDays - 1 : LPB_MAX_DAYS;
        }

        uint256 cappedStakedSuns = newStakedSuns <= BPB_MAX_SUNS
            ? newStakedSuns
            : BPB_MAX_SUNS;

        bonusSuns = cappedExtraDays * BPB + cappedStakedSuns * LPB;
        bonusSuns = newStakedSuns * bonusSuns / (LPB * BPB);

        return bonusSuns;
    }

    function _stakeUnlock(GlobalsCache memory g, StakeCache memory st)
        private
        pure
    {
        g._stakeSharesTotal -= st._stakeShares;
        st._unlockedDay = g._currentDay;
    }

    function _stakePerformance(GlobalsCache memory g, StakeCache memory st, uint256 servedDays)
        private
        view
        returns (uint256 stakeReturn, uint256 payout, uint256 dividends, uint256 penalty, uint256 cappedPenalty)
    {
        if (servedDays < st._stakedDays) {
            (payout, penalty) = _calcPayoutAndEarlyPenalty(
                g,
                st._lockedDay,
                st._stakedDays,
                servedDays,
                st._stakeShares
            );
            stakeReturn = st._stakedSuns + payout;

            dividends = _calcPayoutDividendsReward(
                g,
                st._stakeShares,
                st._lockedDay,
                st._lockedDay + servedDays
            );
        } else {
            // servedDays must == stakedDays here
            payout = _calcPayoutRewards(
                g,
                st._stakeShares,
                st._lockedDay,
                st._lockedDay + servedDays
            );

            dividends = _calcPayoutDividendsReward(
                g,
                st._stakeShares,
                st._lockedDay,
                st._lockedDay + servedDays
            );

            stakeReturn = st._stakedSuns + payout;

            penalty = _calcLatePenalty(st._lockedDay, st._stakedDays, st._unlockedDay, stakeReturn);
        }
        if (penalty != 0) {
            if (penalty > stakeReturn) {
                /* Cannot have a negative stake return */
                cappedPenalty = stakeReturn;
                stakeReturn = 0;
            } else {
                /* Remove penalty from the stake return */
                cappedPenalty = penalty;
                stakeReturn -= cappedPenalty;
            }
        }
        return (stakeReturn, payout, dividends, penalty, cappedPenalty);
    }

    function _calcPayoutAndEarlyPenalty(
        GlobalsCache memory g,
        uint256 lockedDayParam,
        uint256 stakedDaysParam,
        uint256 servedDays,
        uint256 stakeSharesParam
    )
        private
        view
        returns (uint256 payout, uint256 penalty)
    {
        uint256 servedEndDay = lockedDayParam + servedDays;

        /* 50% of stakedDays (rounded up) with a minimum applied */
        uint256 penaltyDays = (stakedDaysParam + 1) / 2;
        if (penaltyDays < EARLY_PENALTY_MIN_DAYS) {
            penaltyDays = EARLY_PENALTY_MIN_DAYS;
        }

        if (servedDays == 0) {
            /* Fill penalty days with the estimated average payout */
            uint256 expected = _estimatePayoutRewardsDay(g, stakeSharesParam, lockedDayParam);
            penalty = expected * penaltyDays;
            return (payout, penalty); // Actual payout was 0
        }

        if (penaltyDays < servedDays) {
            /*
                Simplified explanation of intervals where end-day is non-inclusive:

                penalty:    [lockedDay  ...  penaltyEndDay)
                delta:                      [penaltyEndDay  ...  servedEndDay)
                payout:     [lockedDay  .......................  servedEndDay)
            */
            uint256 penaltyEndDay = lockedDayParam + penaltyDays;
            penalty = _calcPayoutRewards(g, stakeSharesParam, lockedDayParam, penaltyEndDay);

            uint256 delta = _calcPayoutRewards(g, stakeSharesParam, penaltyEndDay, servedEndDay);
            payout = penalty + delta;
            return (payout, penalty);
        }

        /* penaltyDays >= servedDays  */
        payout = _calcPayoutRewards(g, stakeSharesParam, lockedDayParam, servedEndDay);

        if (penaltyDays == servedDays) {
            penalty = payout;
        } else {
            /*
                (penaltyDays > servedDays) means not enough days served, so fill the
                penalty days with the average payout from only the days that were served.
            */
            penalty = payout * penaltyDays / servedDays;
        }
        return (payout, penalty);
    }

    function _calcLatePenalty(
        uint256 lockedDayParam,
        uint256 stakedDaysParam,
        uint256 unlockedDayParam,
        uint256 rawStakeReturn
    )
        private
        pure
        returns (uint256)
    {
        /* Allow grace time before penalties accrue */
        uint256 maxUnlockedDay = lockedDayParam + stakedDaysParam + LATE_PENALTY_GRACE_DAYS;
        if (unlockedDayParam <= maxUnlockedDay) {
            return 0;
        }

        /* Calculate penalty as a percentage of stake return based on time */
        return rawStakeReturn * (unlockedDayParam - maxUnlockedDay) / LATE_PENALTY_SCALE_DAYS;
    }

}

contract TransformableToken is StakeableToken {
    /**
     * @dev PUBLIC FACING: Enter the auction lobby for the current round
     * @param referrerAddr TRX address of referring user (optional; 0x0 for no referrer)
     */
    function xfLobbyEnter(address referrerAddr)
        external
        payable
    {
        uint256 enterDay = _currentDay();

        uint256 rawAmount = msg.value;
        require(rawAmount != 0, "E2X: Amount required");

        XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender];

        uint256 entryIndex = qRef.tailIndex++;

        qRef.entries[entryIndex] = XfLobbyEntryStore(uint96(rawAmount), referrerAddr);

        xfLobby[enterDay] += rawAmount;

        emit XfLobbyEnter(
            block.timestamp, 
            enterDay, 
            entryIndex, 
            rawAmount
        );
    }

    /**
     * @dev PUBLIC FACING: Leave the transform lobby after the round is complete
     * @param enterDay Day number when the member entered
     * @param count Number of queued-enters to exit (optional; 0 for all)
     */
    function xfLobbyExit(uint256 enterDay, uint256 count)
        external
    {
        require(enterDay < _currentDay(), "E2X: Round is not complete");

        XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender];

        uint256 headIndex = qRef.headIndex;
        uint256 endIndex;

        if (count != 0) {
            require(count <= qRef.tailIndex - headIndex, "E2X: count invalid");
            endIndex = headIndex + count;
        } else {
            endIndex = qRef.tailIndex;
            require(headIndex < endIndex, "E2X: count invalid");
        }

        uint256 waasLobby = _waasLobby(enterDay);
        uint256 _xfLobby = xfLobby[enterDay];
        uint256 totalXfAmount = 0;

        do {
            uint256 rawAmount = qRef.entries[headIndex].rawAmount;
            address referrerAddr = qRef.entries[headIndex].referrerAddr;

            delete qRef.entries[headIndex];

            uint256 xfAmount = waasLobby * rawAmount / _xfLobby;

            if (referrerAddr == address(0) || referrerAddr == msg.sender) {
                /* No referrer or Self-referred */
                _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr);
            } else {
                /* Referral bonus of 5% of xfAmount to member */
                uint256 referralBonusSuns = xfAmount / 20;

                xfAmount += referralBonusSuns;

                /* Then a cumulative referrer bonus of 10% to referrer */
                uint256 referrerBonusSuns = xfAmount / 10;

                _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr);
                _mint(referrerAddr, referrerBonusSuns);
            }

            totalXfAmount += xfAmount;
        } while (++headIndex < endIndex);

        qRef.headIndex = uint40(headIndex);

        if (totalXfAmount != 0) {
            _mint(msg.sender, totalXfAmount);
        }
    }

    /**
     * @dev PUBLIC FACING: External helper to return multiple values of xfLobby[] with
     * a single call
     * @param beginDay First day of data range
     * @param endDay Last day (non-inclusive) of data range
     * @return Fixed array of values
     */
    function xfLobbyRange(uint256 beginDay, uint256 endDay)
        external
        view
        returns (uint256[] memory list)
    {
        require(
            beginDay < endDay && endDay <= _currentDay(),
            "E2X: invalid range"
        );

        list = new uint256[](endDay - beginDay);

        uint256 src = beginDay;
        uint256 dst = 0;
        do {
            list[dst++] = uint256(xfLobby[src++]);
        } while (src < endDay);

        return list;
    }

    /**
     * @dev PUBLIC FACING: Release 5% dev share from daily dividends
     */
    function xfFlush()
        external
    {
        GlobalsCache memory g;
        GlobalsCache memory gSnapshot;
        _globalsLoad(g, gSnapshot);
        
        require(address(this).balance != 0, "E2X: No value");

        require(LAST_FLUSHED_DAY < _currentDay(), "E2X: Invalid day");

        _dailyDataUpdateAuto(g);

        T2X_SHARE_ADDR.transfer((dailyData[LAST_FLUSHED_DAY].dayDividends * 10) / 100);

        LAST_FLUSHED_DAY++;

        _globalsSync(g, gSnapshot);
    }

    /**
     * @dev PUBLIC FACING: Return a current lobby member queue entry.
     * Only needed due to limitations of the standard ABI encoder.
     * @param memberAddr TRX address of the lobby member
     * @param enterDay 
     * @param entryIndex 
     * @return 1: Raw amount that was entered with; 2: Referring TRX addr (optional; 0x0 for no referrer)
     */
    function xfLobbyEntry(address memberAddr, uint256 enterDay, uint256 entryIndex)
        external
        view
        returns (uint256 rawAmount, address referrerAddr)
    {
        XfLobbyEntryStore storage entry = xfLobbyMembers[enterDay][memberAddr].entries[entryIndex];

        require(entry.rawAmount != 0, "E2X: Param invalid");

        return (entry.rawAmount, entry.referrerAddr);
    }

    /**
     * @dev PUBLIC FACING: Return the lobby days that a user is in with a single call
     * @param memberAddr TRX address of the user
     * @return Bit vector of lobby day numbers
     */
    function xfLobbyPendingDays(address memberAddr)
        external
        view
        returns (uint256[XF_LOBBY_DAY_WORDS] memory words)
    {
        uint256 day = _currentDay() + 1;

        while (day-- != 0) {
            if (xfLobbyMembers[day][memberAddr].tailIndex > xfLobbyMembers[day][memberAddr].headIndex) {
                words[day >> 8] |= 1 << (day & 255);
            }
        }

        return words;
    }
    
    function _waasLobby(uint256 enterDay)
        private
        returns (uint256 waasLobby)
    {
        /* 1342465753424 = ~ 4900000 * SUNS_PER_E2X / 365 */
        if (enterDay > 0 && enterDay <= 365) {                                     
            waasLobby = CLAIM_STARTING_AMOUNT - ((enterDay - 1) * 1342465753424);
        } else {
            waasLobby = CLAIM_LOWEST_AMOUNT;
        }

        return waasLobby;
    }

    function _emitXfLobbyExit(
        uint256 enterDay,
        uint256 entryIndex,
        uint256 xfAmount,
        address referrerAddr
    )
        private
    {
        emit XfLobbyExit(
            block.timestamp, 
            enterDay,
            entryIndex,
            xfAmount,
            referrerAddr
        );
    }
}

contract E2X is TransformableToken {
    constructor()
        public
    {
        /* Initialize global shareRate to 1 */
        globals.shareRate = uint40(1 * SHARE_RATE_SCALE);
    }

    function() external payable {}
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"stakeLists","outputs":[{"name":"stakeId","type":"uint40"},{"name":"stakedSuns","type":"uint72"},{"name":"stakeShares","type":"uint72"},{"name":"lockedDay","type":"uint16"},{"name":"stakedDays","type":"uint16"},{"name":"unlockedDay","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"memberAddr","type":"address"},{"name":"enterDay","type":"uint256"},{"name":"entryIndex","type":"uint256"}],"name":"xfLobbyEntry","outputs":[{"name":"rawAmount","type":"uint256"},{"name":"referrerAddr","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"stakerAddr","type":"address"}],"name":"stakeCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"stakeIndex","type":"uint256"},{"name":"stakeIdParam","type":"uint40"}],"name":"stakeEnd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"allocatedSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"xfLobbyMembers","outputs":[{"name":"headIndex","type":"uint40"},{"name":"tailIndex","type":"uint40"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"memberAddr","type":"address"}],"name":"xfLobbyPendingDays","outputs":[{"name":"words","type":"uint256[2]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newStakedSuns","type":"uint256"},{"name":"newStakedDays","type":"uint256"}],"name":"stakeStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"stakerAddr","type":"address"},{"name":"stakeIndex","type":"uint256"},{"name":"stakeIdParam","type":"uint40"}],"name":"stakeGoodAccounting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"beginDay","type":"uint256"},{"name":"endDay","type":"uint256"}],"name":"dailyDataRange","outputs":[{"name":"_dayStakeSharesTotal","type":"uint256[]"},{"name":"_dayPayoutTotal","type":"uint256[]"},{"name":"_dayDividends","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"xfLobby","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"beforeDay","type":"uint256"}],"name":"dailyDataUpdate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"dailyData","outputs":[{"name":"dayPayoutTotal","type":"uint72"},{"name":"dayDividends","type":"uint256"},{"name":"dayStakeSharesTotal","type":"uint72"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"globals","outputs":[{"name":"lockedSunsTotal","type":"uint72"},{"name":"nextStakeSharesTotal","type":"uint72"},{"name":"shareRate","type":"uint40"},{"name":"stakePenaltyTotal","type":"uint72"},{"name":"dailyDataCount","type":"uint16"},{"name":"stakeSharesTotal","type":"uint72"},{"name":"latestStakeId","type":"uint40"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"enterDay","type":"uint256"},{"name":"count","type":"uint256"}],"name":"xfLobbyExit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"referrerAddr","type":"address"}],"name":"xfLobbyEnter","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"xfFlush","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"globalInfo","outputs":[{"name":"","type":"uint256[10]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"beginDay","type":"uint256"},{"name":"endDay","type":"uint256"}],"name":"xfLobbyRange","outputs":[{"name":"list","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"enterDay","type":"uint256"},{"indexed":true,"name":"entryIndex","type":"uint256"},{"indexed":true,"name":"rawAmount","type":"uint256"}],"name":"XfLobbyEnter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"enterDay","type":"uint256"},{"indexed":true,"name":"entryIndex","type":"uint256"},{"indexed":true,"name":"xfAmount","type":"uint256"},{"indexed":true,"name":"referrerAddr","type":"address"}],"name":"XfLobbyExit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"updaterAddr","type":"address"},{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"beginDay","type":"uint256"},{"indexed":false,"name":"endDay","type":"uint256"}],"name":"DailyDataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"stakeId","type":"uint40"},{"indexed":true,"name":"stakerAddr","type":"address"},{"indexed":false,"name":"stakedSuns","type":"uint256"},{"indexed":false,"name":"stakeShares","type":"uint256"},{"indexed":false,"name":"stakedDays","type":"uint256"}],"name":"StakeStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"stakeId","type":"uint40"},{"indexed":true,"name":"stakerAddr","type":"address"},{"indexed":true,"name":"senderAddr","type":"address"},{"indexed":false,"name":"stakedSuns","type":"uint256"},{"indexed":false,"name":"stakeShares","type":"uint256"},{"indexed":false,"name":"payout","type":"uint256"},{"indexed":false,"name":"penalty","type":"uint256"}],"name":"StakeGoodAccounting","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"stakeId","type":"uint40"},{"indexed":false,"name":"prevUnlocked","type":"uint40"},{"indexed":true,"name":"stakerAddr","type":"address"},{"indexed":false,"name":"lockedDay","type":"uint256"},{"indexed":false,"name":"servedDays","type":"uint256"},{"indexed":false,"name":"stakedSuns","type":"uint256"},{"indexed":false,"name":"stakeShares","type":"uint256"},{"indexed":false,"name":"dividends","type":"uint256"},{"indexed":false,"name":"payout","type":"uint256"},{"indexed":false,"name":"penalty","type":"uint256"},{"indexed":false,"name":"stakeReturn","type":"uint256"}],"name":"StakeEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"stakeId","type":"uint40"},{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"newShareRate","type":"uint256"}],"name":"ShareRateChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405266038d7ea4c680006002556001600360006101000a81548160ff021916908360ff16021790555034801561003757600080fd5b506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620186a0600102600460000160126101000a81548164ffffffffff021916908364ffffffffff1602179055506151b9806100b86000396000f3fe6080604052600436106101e35760003560e01c806365cf71b211610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610e5e578063e4df526514610ee3578063f04b5fa014610efa578063f57a1b3c14610f4d576101e3565b8063a9059cbb14610c91578063c312452514610d04578063cbb151d314610dd5578063ce7d1f7714610e1a576101e3565b80638f1c65c0116100d15780638f1c65c014610aca57806390de687114610b0557806395d89b4114610b8e578063a457c2d714610c1e576101e3565b806365cf71b2146108805780636a210a0e146108ec57806370a0823114610a1657806387a0f31c14610a7b576101e3565b8063343009a21161017a57806344203faf1161014957806344203faf146106f157806344f0de751461078357806352a438b8146108105780635c9302c914610855576101e3565b8063343009a2146105cc57806339509351146106185780633a70a5ca1461068b57806342966c68146106b6576101e3565b80632607443b116101b65780632607443b146103a65780632e60d1c41461048a578063313ce5671461053657806333060d9014610567576101e3565b806306fdde03146101e5578063095ea7b31461027557806318160ddd146102e857806323b872dd14610313575b005b3480156101f157600080fd5b506101fa610fe7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506102ce6004803603604081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611020565b604051808215151515815260200191505060405180910390f35b3480156102f457600080fd5b506102fd61103e565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b5061038c6004803603606081101561033657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611048565b604051808215151515815260200191505060405180910390f35b3480156103b257600080fd5b506103ff600480360360408110156103c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611121565b604051808764ffffffffff1664ffffffffff1681526020018668ffffffffffffffffff1668ffffffffffffffffff1681526020018568ffffffffffffffffff1668ffffffffffffffffff1681526020018461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152602001965050505050505060405180910390f35b34801561049657600080fd5b506104ed600480360360608110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506111d8565b604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390f35b34801561054257600080fd5b5061054b611344565b604051808260ff1660ff16815260200191505060405180910390f35b34801561057357600080fd5b506105b66004803603602081101561058a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611349565b6040518082815260200191505060405180910390f35b3480156105d857600080fd5b50610616600480360360408110156105ef57600080fd5b8101908080359060200190929190803564ffffffffff169060200190929190505050611395565b005b34801561062457600080fd5b506106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061173b565b604051808215151515815260200191505060405180910390f35b34801561069757600080fd5b506106a06117ee565b6040518082815260200191505060405180910390f35b3480156106c257600080fd5b506106ef600480360360208110156106d957600080fd5b8101908080359060200190929190505050611824565b005b3480156106fd57600080fd5b5061074a6004803603604081101561071457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118e5565b604051808364ffffffffff1664ffffffffff1681526020018264ffffffffff1664ffffffffff1681526020019250505060405180910390f35b34801561078f57600080fd5b506107d2600480360360208110156107a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611938565b6040518082600260200280838360005b838110156107fd5780820151818401526020810190506107e2565b5050505090500191505060405180910390f35b34801561081c57600080fd5b506108536004803603604081101561083357600080fd5b810190808035906020019092919080359060200190929190505050611a73565b005b34801561086157600080fd5b5061086a611b15565b6040518082815260200191505060405180910390f35b34801561088c57600080fd5b506108ea600480360360608110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803564ffffffffff169060200190929190505050611b24565b005b3480156108f857600080fd5b5061092f6004803603604081101561090f57600080fd5b810190808035906020019092919080359060200190929190505050611f0f565b60405180806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561097a57808201518184015260208101905061095f565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156109bc5780820151818401526020810190506109a1565b50505050905001848103825285818151815260200191508051906020019060200280838360005b838110156109fe5780820151818401526020810190506109e3565b50505050905001965050505050505060405180910390f35b348015610a2257600080fd5b50610a6560048036036020811015610a3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061214b565b6040518082815260200191505060405180910390f35b348015610a8757600080fd5b50610ab460048036036020811015610a9e57600080fd5b8101908080359060200190929190505050612193565b6040518082815260200191505060405180910390f35b348015610ad657600080fd5b50610b0360048036036020811015610aed57600080fd5b81019080803590602001909291905050506121ab565b005b348015610b1157600080fd5b50610b3e60048036036020811015610b2857600080fd5b81019080803590602001909291905050506122d5565b604051808468ffffffffffffffffff1668ffffffffffffffffff1681526020018381526020018268ffffffffffffffffff1668ffffffffffffffffff168152602001935050505060405180910390f35b348015610b9a57600080fd5b50610ba3612329565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610be3578082015181840152602081019050610bc8565b50505050905090810190601f168015610c105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c2a57600080fd5b50610c7760048036036040811015610c4157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612362565b604051808215151515815260200191505060405180910390f35b348015610c9d57600080fd5b50610cea60048036036040811015610cb457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061242f565b604051808215151515815260200191505060405180910390f35b348015610d1057600080fd5b50610d1961244d565b604051808868ffffffffffffffffff1668ffffffffffffffffff1681526020018768ffffffffffffffffff1668ffffffffffffffffff1681526020018664ffffffffff1664ffffffffff1681526020018568ffffffffffffffffff1668ffffffffffffffffff1681526020018461ffff1661ffff1681526020018368ffffffffffffffffff1668ffffffffffffffffff1681526020018264ffffffffff1664ffffffffff16815260200197505050505050505060405180910390f35b348015610de157600080fd5b50610e1860048036036040811015610df857600080fd5b810190808035906020019092919080359060200190929190505050612501565b005b610e5c60048036036020811015610e3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612956565b005b348015610e6a57600080fd5b50610ecd60048036036040811015610e8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bb4565b6040518082815260200191505060405180910390f35b348015610eef57600080fd5b50610ef8612c3b565b005b348015610f0657600080fd5b50610f0f612e4a565b6040518082600a60200280838360005b83811015610f3a578082015181840152602081019050610f1f565b5050505090500191505060405180910390f35b348015610f5957600080fd5b50610f9060048036036040811015610f7057600080fd5b810190808035906020019092919080359060200190929190505050612fa3565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610fd3578082015181840152602081019050610fb8565b505050509050019250505060405180910390f35b6040518060400160405280600381526020017f453258000000000000000000000000000000000000000000000000000000000081525081565b600061103461102d6130b6565b84846130be565b6001905092915050565b6000600254905090565b60006110558484846132b5565b611116846110616130b6565b6111118560405180606001604052806028815260200161509960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110c76130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6130be565b600190509392505050565b6007602052816000526040600020818154811061113a57fe5b90600052602060002001600091509150508060000160009054906101000a900464ffffffffff16908060000160059054906101000a900468ffffffffffffffffff169080600001600e9054906101000a900468ffffffffffffffffff16908060000160179054906101000a900461ffff16908060000160199054906101000a900461ffff169080600001601b9054906101000a900461ffff16905086565b60008060006009600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000858152602001908152602001600020905060008160000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1614156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20506172616d20696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b8060000160009054906101000a90046bffffffffffffffffffffffff1681600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816bffffffffffffffffffffffff1691509250925050935093915050565b600881565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b61139d614eb2565b6113a5614eb2565b6113af828261362b565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008180549050141561146d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4532583a20456d707479207374616b65206c697374000000000000000000000081525060200191505060405180910390fd5b808054905085106114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4532583a207374616b65496e64657820696e76616c696400000000000000000081525060200191505060405180910390fd5b6114ee614efe565b61150e8287815481106114fd57fe5b90600052602060002001868361377e565b61151784613906565b60008090506000808360a00151141590506000806000905060008090506000809050600080905087606001518b60e00151106115f657851561155f578760800151965061158b565b6115698b89613919565b87606001518b60e00151039650876080015187111561158a57876080015196505b5b6115968b898961393f565b80955081965082975083985084995050505050503373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115f0573d6000803e3d6000fd5b50611612565b87604001518b6020018181510391508181525050876020015194505b3373ffffffffffffffffffffffffffffffffffffffff168c64ffffffffff167f80bb257dd672adb291601517b3f5d31642fccf6d3db7a40983552a9baacbbabd8861165e576000611661565b60015b8b606001518b8d602001518e604001518a8c8b8f604051808a60ff1664ffffffffff168152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390a3600081141580156116db575085155b156116f157808b60600181815101915081815250505b60008514611704576117033386613a3a565b5b87602001518b6000018181510391508181525050611722898e613bf5565b61172c8b8b613e44565b50505050505050505050505050565b60006117e46117486130b6565b846117df85600160006117596130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6130be565b6001905092915050565b6000600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1661181e61103e565b01905090565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156118d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45524332303a206e6f7420656e6f7567682062616c616e63652100000000000081525060200191505060405180910390fd5b6118e233826140a1565b50565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900464ffffffffff16908060000160059054906101000a900464ffffffffff16905082565b611940614f3b565b6000600161194c614259565b0190505b6000818060019003925014611a6a576009600082815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900464ffffffffff1664ffffffffff166009600083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160059054906101000a900464ffffffffff1664ffffffffff161115611a655760ff81166001901b82600883901c60028110611a5557fe5b6020020181815117915081815250505b611950565b81915050919050565b611a7b614eb2565b611a83614eb2565b611a8d828261362b565b6001831015611ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150746025913960400191505060405180910390fd5b611af082613906565b611afb828585614289565b611b0533856140a1565b611b0f8282613e44565b50505050565b6000611b1f614259565b905090565b611b2c614eb2565b611b34614eb2565b611b3e828261362b565b6000600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501415611bf7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4532583a20456d707479207374616b65206c697374000000000000000000000081525060200191505060405180910390fd5b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508410611cae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4532583a207374616b65496e64657820696e76616c696400000000000000000081525060200191505060405180910390fd5b6000600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208581548110611cfa57fe5b906000526020600020019050611d0e614efe565b611d1982868361377e565b80608001518160600151018460e001511015611d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4532583a205374616b65206e6f742066756c6c7920736572766564000000000081525060200191505060405180910390fd5b60008160a0015114611e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4532583a205374616b6520616c726561647920756e6c6f636b6564000000000081525060200191505060405180910390fd5b611e2084613906565b611e2a8482613919565b600080600080611e3f8886876080015161393f565b9450945094509450503373ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff168a64ffffffffff167f0bff00790f1231cf0c26911db2d0c4e670b204ebb02d6a73d3fb5c995910705e8860200151896040015189886040518085815260200184815260200183815260200182815260200194505050505060405180910390a460008114611eee57808860600181815101915081815250505b611ef8868661446c565b611f028888613e44565b5050505050505050505050565b60608060608385108015611f3a5750600460010160009054906101000a900461ffff1661ffff168411155b611fac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a2072616e676520696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b848403604051908082528060200260200182016040528015611fdd5781602001602082028038833980820191505090505b5092508484036040519080825280602002602001820160405280156120115781602001602082028038833980820191505090505b5091508484036040519080825280602002602001820160405280156120455781602001602082028038833980820191505090505b509050600085905060008090505b6006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1685828151811061209657fe5b6020026020010181815250506006600083815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168482806001019350815181106120eb57fe5b602002602001018181525050600660008381526020019081526020016000206001015483828060010193508151811061212057fe5b6020026020010181815250508582600101925082106120535784848494509450945050509250925092565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915090505481565b6121b3614eb2565b6121bb614eb2565b6121c5828261362b565b60018260e001511161223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4532583a20546f6f206561726c7900000000000000000000000000000000000081525060200191505060405180910390fd5b600083146122b5578160e001518311156122a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150286026913960400191505060405180910390fd5b6122b082846000614564565b6122c6565b6122c5828360e001516000614564565b5b6122d08282613e44565b505050565b60066020528060005260406000206000915090508060000160009054906101000a900468ffffffffffffffffff16908060010154908060020160009054906101000a900468ffffffffffffffffff16905083565b6040518060400160405280600381526020017f453258000000000000000000000000000000000000000000000000000000000081525081565b600061242561236f6130b6565b846124208560405180606001604052806025815260200161516060259139600160006123996130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6130be565b6001905092915050565b600061244361243c6130b6565b84846132b5565b6001905092915050565b60048060000160009054906101000a900468ffffffffffffffffff16908060000160099054906101000a900468ffffffffffffffffff16908060000160129054906101000a900464ffffffffff16908060000160179054906101000a900468ffffffffffffffffff16908060010160009054906101000a900461ffff16908060010160029054906101000a900468ffffffffffffffffff169080600101600b9054906101000a900464ffffffffff16905087565b612509614259565b821061257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4532583a20526f756e64206973206e6f7420636f6d706c65746500000000000081525060200191505060405180910390fd5b60006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff169050600080841461269957818360000160059054906101000a900464ffffffffff1664ffffffffff160384111561268f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20636f756e7420696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b838201905061272e565b8260000160059054906101000a900464ffffffffff1664ffffffffff16905080821061272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20636f756e7420696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b5b600061273986614666565b905060006008600088815260200190815260200160002054905060008090505b600086600101600087815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690506000876001016000888152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050876001016000888152602001908152602001600020600080820160006101000a8154906bffffffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506000848387028161284457fe5b049050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806128ad57503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156128c3576128be8b8983856146ac565b6128ff565b6000601482816128cf57fe5b04905080820191506000600a83816128e357fe5b0490506128f28d8b85876146ac565b6128fc8482613a3a565b50505b808401935050505083856001019550851061275957848660000160006101000a81548164ffffffffff021916908364ffffffffff1602179055506000811461294c5761294b3382613a3a565b5b5050505050505050565b6000612960614259565b9050600034905060008114156129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4532583a20416d6f756e7420726571756972656400000000000000000000000081525060200191505060405180910390fd5b60006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001600581819054906101000a900464ffffffffff168092919060010191906101000a81548164ffffffffff021916908364ffffffffff16021790555064ffffffffff1690506040518060400160405280846bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681525082600101600083815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505082600860008681526020019081526020016000206000828254019250508190555082817f683f950243ca541a09abd8157385ce15a23ac43a47b8d0306de2bdc20d0b9e094287604051808381526020018281526020019250505060405180910390a35050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612c43614eb2565b612c4b614eb2565b612c55828261362b565b60003073ffffffffffffffffffffffffffffffffffffffff16311415612ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4532583a204e6f2076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b612ceb614259565b600360009054906101000a900460ff1660ff1610612d71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4532583a20496e76616c6964206461790000000000000000000000000000000081525060200191505060405180910390fd5b612d7a82613906565b73769902b4cb2dfd79f2370555ad255bf599bf715573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60066000600360009054906101000a900460ff1660ff168152602001908152602001600020600101540281612ddd57fe5b049081150290604051600060405180830381858888f19350505050158015612e09573d6000803e3d6000fd5b506003600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff16021790555050612e468282613e44565b5050565b612e52614f5d565b604051806101400160405280600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460000160099054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460000160129054906101000a900464ffffffffff1664ffffffffff168152602001600460000160179054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460010160009054906101000a900461ffff1661ffff168152602001600460010160029054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1681526020016004600101600b9054906101000a900464ffffffffff1664ffffffffff168152602001428152602001612f7b61103e565b815260200160086000612f8c614259565b815260200190815260200160002054815250905090565b60608183108015612fbb5750612fb7614259565b8211155b61302d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20696e76616c69642072616e6765000000000000000000000000000081525060200191505060405180910390fd5b82820360405190808252806020026020018201604052801561305e5781602001602082028038833980820191505090505b509050600083905060008090505b600860008380600101945081526020019081526020016000205483828060010193508151811061309857fe5b60200260200101818152505083821061306c57829250505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061513c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150066022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561333b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150e26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f9b6023913960400191505060405180910390fd5b61342c8160405180606001604052806026815260200161504e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134bf816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135dd5780820151818401526020810190506135c2565b50505050905090810190601f16801561360a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826000018181525050600460000160099054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826020018181525050600460000160129054906101000a900464ffffffffff1664ffffffffff16826040018181525050600460000160179054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826060018181525050600460010160009054906101000a900461ffff1661ffff16826080018181525050600460010160029054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168260a00181815250506004600101600b9054906101000a900464ffffffffff168260c0019064ffffffffff16908164ffffffffff1681525050613767614259565b8260e001818152505061377a828261470a565b5050565b8260000160009054906101000a900464ffffffffff1664ffffffffff168264ffffffffff1614613816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4532583a207374616b654964506172616d206e6f7420696e207374616b65000081525060200191505060405180910390fd5b8260000160009054906101000a900464ffffffffff16816000019064ffffffffff16908164ffffffffff16815250508260000160059054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1681602001818152505082600001600e9054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168160400181815250508260000160179054906101000a900461ffff1661ffff168160600181815250508260000160199054906101000a900461ffff1661ffff1681608001818152505082600001601b9054906101000a900461ffff1661ffff168160a0018181525050505050565b613916818260e001516001614564565b50565b80604001518260a00181815103915081815250508160e001518160a00181815250505050565b6000806000806000866080015186101561399e5761396c8888606001518960800151898b60400151614780565b80935081955050508387602001510194506139978888604001518960600151898b6060015101614856565b92506139fa565b6139b88888604001518960600151898b60600151016148ef565b93506139d48888604001518960600151898b6060015101614856565b92508387602001510194506139f7876060015188608001518960a0015188614a37565b91505b60008214613a205784821115613a165784905060009450613a1f565b81905080850394505b5b848484848494509450945094509450939792965093509350565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613af28160025461401990919063ffffffff16565b600281905550613b49816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600060018380549050039050808214613d9157828181548110613c1457fe5b90600052602060002001838381548110613c2a57fe5b906000526020600020016000820160009054906101000a900464ffffffffff168160000160006101000a81548164ffffffffff021916908364ffffffffff1602179055506000820160059054906101000a900468ffffffffffffffffff168160000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555060008201600e9054906101000a900468ffffffffffffffffff1681600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055506000820160179054906101000a900461ffff168160000160176101000a81548161ffff021916908361ffff1602179055506000820160199054906101000a900461ffff168160000160196101000a81548161ffff021916908361ffff16021790555060008201601b9054906101000a900461ffff1681600001601b6101000a81548161ffff021916908361ffff1602179055509050505b82805480613d9b57fe5b60019003818190600052602060002001600080820160006101000a81549064ffffffffff02191690556000820160056101000a81549068ffffffffffffffffff021916905560008201600e6101000a81549068ffffffffffffffffff02191690556000820160176101000a81549061ffff02191690556000820160196101000a81549061ffff021916905560008201601b6101000a81549061ffff021916905550509055505050565b80600001518260000151141580613e6357508060200151826020015114155b80613e7657508060400151826040015114155b80613e8957508060600151826060015114155b15613f4f578160000151600460000160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160200151600460000160096101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160400151600460000160126101000a81548164ffffffffff021916908364ffffffffff1602179055508160600151600460000160176101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055505b80608001518260800151141580613f6e57508060a001518260a0015114155b80613f8f57508060c0015164ffffffffff168260c0015164ffffffffff1614155b15614015578160800151600460010160006101000a81548161ffff021916908361ffff1602179055508160a00151600460010160026101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160c001516004600101600b6101000a81548164ffffffffff021916908364ffffffffff1602179055505b5050565b600080828401905083811015614097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150c16021913960400191505060405180910390fd5b61419281604051806060016040528060228152602001614fbe602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141e981600254614a7490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000635f9b57804210156142705760009050614286565b62015180635f9b578042038161428257fe5b0490505b90565b61016d8111156142e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fe06026913960400191505060405180910390fd5b60006142f08383614abe565b905060008460400151620186a0838601028161430857fe5b0490506000811415614365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806151076035913960400191505060405180910390fd5b600060018660e0015101905060008660c001805160010164ffffffffff16908164ffffffffff1681525090506143dd600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828886868a614bb0565b3373ffffffffffffffffffffffffffffffffffffffff168164ffffffffff167fa75ea2f0baef0a6cfa36f61bc0cdc9b3a55ce8876892cf96f640208f65c799e988868960405180848152602001838152602001828152602001935050505060405180910390a3828760200181815101915081815250508587600001818151019150818152505050505050505050565b80600001518260000160006101000a81548164ffffffffff021916908364ffffffffff16021790555080602001518260000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550806040015182600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555080606001518260000160176101000a81548161ffff021916908361ffff16021790555080608001518260000160196101000a81548161ffff021916908361ffff1602179055508060a0015182600001601b6101000a81548161ffff021916908361ffff1602179055505050565b8183608001511061457457614661565b61457c614f80565b836000015161458961103e565b018160000181815250506000846080015190506145a7858383614d2e565b60008560200151146145d35784602001518560a001818151019150818152505060008560200181815250505b5b838160010191508110156145f2576145ed858383614d2e565b6145d4565b3373ffffffffffffffffffffffffffffffffffffffff167fe00f6f1c2b3ba17574be0a8136275368d74f37631cf36525a360b272fe21195b4287608001518460405180848152602001838152602001828152602001935050505060405180910390a28085608001818152505050505b505050565b60008082118015614679575061016d8211155b1561469a576501389131c15060018303026601c6bf526340000390506146a4565b655af3107a400090505b809050919050565b8073ffffffffffffffffffffffffffffffffffffffff1682847ff8fa88708321411fd98e823a1eb882047c8dc276ba17a8b81722ed282c4560f74288604051808381526020018281526020019250505060405180910390a450505050565b816000015181600001818152505081602001518160200181815250508160400151816040018181525050816060015181606001818152505081608001518160800181815250508160a001518160a00181815250508160c001518160c0019064ffffffffff16908164ffffffffff16815250505050565b6000806000848701905060006002600188018161479957fe5b049050605a8110156147aa57605a90505b60008614156147d55760006147c08a878b614df2565b9050818102935084849450945050505061484c565b8581101561481657600081890190506147f08a878b846148ef565b935060006148008b8884876148ef565b905080850195508585955095505050505061484c565b61482289868a856148ef565b93508581141561483457839250614843565b858185028161483f57fe5b0492505b83839350935050505b9550959350505050565b6000808390505b828110156148e35760006006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16866064605a600660008781526020019081526020016000206001015402816148c257fe5b0402816148cb57fe5b0481019050808301925050808060010191505061485d565b50809050949350505050565b60008060008490505b83811015614a2a5760006006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16876006600085815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16028161497957fe5b0490506004831015614992578280600101935050614a17565b600260ff166006600084815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16886006600086815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff160281614a0e57fe5b04029050600092505b80840193505080806001019150506148f8565b5081915050949350505050565b6000806007600202858701019050808411614a56576000915050614a6c565b6007606402818503840281614a6757fe5b049150505b949350505050565b6000614ab683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061356b565b905092915050565b600080600090506001831115614b1657606460c86014618e3081614ade57fe5b040281614ae757fe5b04831115614b0e57606460c86014618e3081614aff57fe5b040281614b0857fe5b04614b13565b600183035b90505b6000600860ff16600a0a626acfc002851115614b3e57600860ff16600a0a626acfc002614b40565b845b90506014618e3081614b4e57fe5b048102600a6064600860ff16600a0a626acfc0020281614b6a57fe5b048302019250600a6064600860ff16600a0a626acfc0020281614b8957fe5b046014618e3081614b9657fe5b040283860281614ba257fe5b049250829250505092915050565b856040518060c001604052808764ffffffffff1681526020018668ffffffffffffffffff1681526020018568ffffffffffffffffff1681526020018461ffff1681526020018361ffff168152602001600061ffff1681525090806001815401808255809150509060018203906000526020600020016000909192909190915060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550604082015181600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555060608201518160000160176101000a81548161ffff021916908361ffff16021790555060808201518160000160196101000a81548161ffff021916908361ffff16021790555060a082015181600001601b6101000a81548161ffff021916908361ffff160217905550505050505050505050565b614d39838383614e62565b81602001516006600083815260200190815260200160002060000160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550600860008281526020019081526020016000205460066000838152602001908152602001600020600101819055508260a001516006600083815260200190815260200160002060020160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550505050565b6000614dfc614eb2565b614e06858261470a565b614e0e614f80565b8560000151614e1b61103e565b01816000018181525050614e30828286614e62565b848260a00181815101915081815250508160a001518582602001510281614e5357fe5b04925082925050509392505050565b63041aa18961c35083600001510281614e7757fe5b048260200181815250506000836060015114614ead57826060015182602001818151019150818152505060008360600181815250505b505050565b604051806101000160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600081525090565b6040518060c00160405280600064ffffffffff16815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060400160405280600290602082028038833980820191505090505090565b604051806101400160405280600a90602082028038833980820191505090505090565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654532583a206e65775374616b65644461797320686967686572207468616e206d6178696d756d45524332303a20617070726f766520746f20746865207a65726f20616464726573734532583a206265666f72654461792063616e6e6f7420626520696e207468652066757475726545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654532583a206e65775374616b656444617973206c6f776572207468616e206d696e696d756d45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734532583a206e65775374616b656453756e73206d757374206265206174206c65617374206d696e696d756d2073686172655261746545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72305820e8ca1574db7d79516b18fa84c1a49176fb4710c25bc7b393e406372d3a7c75ef64736f6c634300050a0032

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806365cf71b211610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610e5e578063e4df526514610ee3578063f04b5fa014610efa578063f57a1b3c14610f4d576101e3565b8063a9059cbb14610c91578063c312452514610d04578063cbb151d314610dd5578063ce7d1f7714610e1a576101e3565b80638f1c65c0116100d15780638f1c65c014610aca57806390de687114610b0557806395d89b4114610b8e578063a457c2d714610c1e576101e3565b806365cf71b2146108805780636a210a0e146108ec57806370a0823114610a1657806387a0f31c14610a7b576101e3565b8063343009a21161017a57806344203faf1161014957806344203faf146106f157806344f0de751461078357806352a438b8146108105780635c9302c914610855576101e3565b8063343009a2146105cc57806339509351146106185780633a70a5ca1461068b57806342966c68146106b6576101e3565b80632607443b116101b65780632607443b146103a65780632e60d1c41461048a578063313ce5671461053657806333060d9014610567576101e3565b806306fdde03146101e5578063095ea7b31461027557806318160ddd146102e857806323b872dd14610313575b005b3480156101f157600080fd5b506101fa610fe7565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506102ce6004803603604081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611020565b604051808215151515815260200191505060405180910390f35b3480156102f457600080fd5b506102fd61103e565b6040518082815260200191505060405180910390f35b34801561031f57600080fd5b5061038c6004803603606081101561033657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611048565b604051808215151515815260200191505060405180910390f35b3480156103b257600080fd5b506103ff600480360360408110156103c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611121565b604051808764ffffffffff1664ffffffffff1681526020018668ffffffffffffffffff1668ffffffffffffffffff1681526020018568ffffffffffffffffff1668ffffffffffffffffff1681526020018461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152602001965050505050505060405180910390f35b34801561049657600080fd5b506104ed600480360360608110156104ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506111d8565b604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390f35b34801561054257600080fd5b5061054b611344565b604051808260ff1660ff16815260200191505060405180910390f35b34801561057357600080fd5b506105b66004803603602081101561058a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611349565b6040518082815260200191505060405180910390f35b3480156105d857600080fd5b50610616600480360360408110156105ef57600080fd5b8101908080359060200190929190803564ffffffffff169060200190929190505050611395565b005b34801561062457600080fd5b506106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061173b565b604051808215151515815260200191505060405180910390f35b34801561069757600080fd5b506106a06117ee565b6040518082815260200191505060405180910390f35b3480156106c257600080fd5b506106ef600480360360208110156106d957600080fd5b8101908080359060200190929190505050611824565b005b3480156106fd57600080fd5b5061074a6004803603604081101561071457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118e5565b604051808364ffffffffff1664ffffffffff1681526020018264ffffffffff1664ffffffffff1681526020019250505060405180910390f35b34801561078f57600080fd5b506107d2600480360360208110156107a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611938565b6040518082600260200280838360005b838110156107fd5780820151818401526020810190506107e2565b5050505090500191505060405180910390f35b34801561081c57600080fd5b506108536004803603604081101561083357600080fd5b810190808035906020019092919080359060200190929190505050611a73565b005b34801561086157600080fd5b5061086a611b15565b6040518082815260200191505060405180910390f35b34801561088c57600080fd5b506108ea600480360360608110156108a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803564ffffffffff169060200190929190505050611b24565b005b3480156108f857600080fd5b5061092f6004803603604081101561090f57600080fd5b810190808035906020019092919080359060200190929190505050611f0f565b60405180806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561097a57808201518184015260208101905061095f565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156109bc5780820151818401526020810190506109a1565b50505050905001848103825285818151815260200191508051906020019060200280838360005b838110156109fe5780820151818401526020810190506109e3565b50505050905001965050505050505060405180910390f35b348015610a2257600080fd5b50610a6560048036036020811015610a3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061214b565b6040518082815260200191505060405180910390f35b348015610a8757600080fd5b50610ab460048036036020811015610a9e57600080fd5b8101908080359060200190929190505050612193565b6040518082815260200191505060405180910390f35b348015610ad657600080fd5b50610b0360048036036020811015610aed57600080fd5b81019080803590602001909291905050506121ab565b005b348015610b1157600080fd5b50610b3e60048036036020811015610b2857600080fd5b81019080803590602001909291905050506122d5565b604051808468ffffffffffffffffff1668ffffffffffffffffff1681526020018381526020018268ffffffffffffffffff1668ffffffffffffffffff168152602001935050505060405180910390f35b348015610b9a57600080fd5b50610ba3612329565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610be3578082015181840152602081019050610bc8565b50505050905090810190601f168015610c105780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c2a57600080fd5b50610c7760048036036040811015610c4157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612362565b604051808215151515815260200191505060405180910390f35b348015610c9d57600080fd5b50610cea60048036036040811015610cb457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061242f565b604051808215151515815260200191505060405180910390f35b348015610d1057600080fd5b50610d1961244d565b604051808868ffffffffffffffffff1668ffffffffffffffffff1681526020018768ffffffffffffffffff1668ffffffffffffffffff1681526020018664ffffffffff1664ffffffffff1681526020018568ffffffffffffffffff1668ffffffffffffffffff1681526020018461ffff1661ffff1681526020018368ffffffffffffffffff1668ffffffffffffffffff1681526020018264ffffffffff1664ffffffffff16815260200197505050505050505060405180910390f35b348015610de157600080fd5b50610e1860048036036040811015610df857600080fd5b810190808035906020019092919080359060200190929190505050612501565b005b610e5c60048036036020811015610e3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612956565b005b348015610e6a57600080fd5b50610ecd60048036036040811015610e8157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bb4565b6040518082815260200191505060405180910390f35b348015610eef57600080fd5b50610ef8612c3b565b005b348015610f0657600080fd5b50610f0f612e4a565b6040518082600a60200280838360005b83811015610f3a578082015181840152602081019050610f1f565b5050505090500191505060405180910390f35b348015610f5957600080fd5b50610f9060048036036040811015610f7057600080fd5b810190808035906020019092919080359060200190929190505050612fa3565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610fd3578082015181840152602081019050610fb8565b505050509050019250505060405180910390f35b6040518060400160405280600381526020017f453258000000000000000000000000000000000000000000000000000000000081525081565b600061103461102d6130b6565b84846130be565b6001905092915050565b6000600254905090565b60006110558484846132b5565b611116846110616130b6565b6111118560405180606001604052806028815260200161509960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110c76130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6130be565b600190509392505050565b6007602052816000526040600020818154811061113a57fe5b90600052602060002001600091509150508060000160009054906101000a900464ffffffffff16908060000160059054906101000a900468ffffffffffffffffff169080600001600e9054906101000a900468ffffffffffffffffff16908060000160179054906101000a900461ffff16908060000160199054906101000a900461ffff169080600001601b9054906101000a900461ffff16905086565b60008060006009600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001016000858152602001908152602001600020905060008160000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1614156112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20506172616d20696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b8060000160009054906101000a90046bffffffffffffffffffffffff1681600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816bffffffffffffffffffffffff1691509250925050935093915050565b600881565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b61139d614eb2565b6113a5614eb2565b6113af828261362b565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008180549050141561146d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4532583a20456d707479207374616b65206c697374000000000000000000000081525060200191505060405180910390fd5b808054905085106114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4532583a207374616b65496e64657820696e76616c696400000000000000000081525060200191505060405180910390fd5b6114ee614efe565b61150e8287815481106114fd57fe5b90600052602060002001868361377e565b61151784613906565b60008090506000808360a00151141590506000806000905060008090506000809050600080905087606001518b60e00151106115f657851561155f578760800151965061158b565b6115698b89613919565b87606001518b60e00151039650876080015187111561158a57876080015196505b5b6115968b898961393f565b80955081965082975083985084995050505050503373ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156115f0573d6000803e3d6000fd5b50611612565b87604001518b6020018181510391508181525050876020015194505b3373ffffffffffffffffffffffffffffffffffffffff168c64ffffffffff167f80bb257dd672adb291601517b3f5d31642fccf6d3db7a40983552a9baacbbabd8861165e576000611661565b60015b8b606001518b8d602001518e604001518a8c8b8f604051808a60ff1664ffffffffff168152602001898152602001888152602001878152602001868152602001858152602001848152602001838152602001828152602001995050505050505050505060405180910390a3600081141580156116db575085155b156116f157808b60600181815101915081815250505b60008514611704576117033386613a3a565b5b87602001518b6000018181510391508181525050611722898e613bf5565b61172c8b8b613e44565b50505050505050505050505050565b60006117e46117486130b6565b846117df85600160006117596130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6130be565b6001905092915050565b6000600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1661181e61103e565b01905090565b806000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156118d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f45524332303a206e6f7420656e6f7567682062616c616e63652100000000000081525060200191505060405180910390fd5b6118e233826140a1565b50565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900464ffffffffff16908060000160059054906101000a900464ffffffffff16905082565b611940614f3b565b6000600161194c614259565b0190505b6000818060019003925014611a6a576009600082815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900464ffffffffff1664ffffffffff166009600083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160059054906101000a900464ffffffffff1664ffffffffff161115611a655760ff81166001901b82600883901c60028110611a5557fe5b6020020181815117915081815250505b611950565b81915050919050565b611a7b614eb2565b611a83614eb2565b611a8d828261362b565b6001831015611ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150746025913960400191505060405180910390fd5b611af082613906565b611afb828585614289565b611b0533856140a1565b611b0f8282613e44565b50505050565b6000611b1f614259565b905090565b611b2c614eb2565b611b34614eb2565b611b3e828261362b565b6000600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501415611bf7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4532583a20456d707479207374616b65206c697374000000000000000000000081525060200191505060405180910390fd5b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508410611cae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f4532583a207374616b65496e64657820696e76616c696400000000000000000081525060200191505060405180910390fd5b6000600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208581548110611cfa57fe5b906000526020600020019050611d0e614efe565b611d1982868361377e565b80608001518160600151018460e001511015611d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4532583a205374616b65206e6f742066756c6c7920736572766564000000000081525060200191505060405180910390fd5b60008160a0015114611e17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4532583a205374616b6520616c726561647920756e6c6f636b6564000000000081525060200191505060405180910390fd5b611e2084613906565b611e2a8482613919565b600080600080611e3f8886876080015161393f565b9450945094509450503373ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff168a64ffffffffff167f0bff00790f1231cf0c26911db2d0c4e670b204ebb02d6a73d3fb5c995910705e8860200151896040015189886040518085815260200184815260200183815260200182815260200194505050505060405180910390a460008114611eee57808860600181815101915081815250505b611ef8868661446c565b611f028888613e44565b5050505050505050505050565b60608060608385108015611f3a5750600460010160009054906101000a900461ffff1661ffff168411155b611fac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a2072616e676520696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b848403604051908082528060200260200182016040528015611fdd5781602001602082028038833980820191505090505b5092508484036040519080825280602002602001820160405280156120115781602001602082028038833980820191505090505b5091508484036040519080825280602002602001820160405280156120455781602001602082028038833980820191505090505b509050600085905060008090505b6006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1685828151811061209657fe5b6020026020010181815250506006600083815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168482806001019350815181106120eb57fe5b602002602001018181525050600660008381526020019081526020016000206001015483828060010193508151811061212057fe5b6020026020010181815250508582600101925082106120535784848494509450945050509250925092565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915090505481565b6121b3614eb2565b6121bb614eb2565b6121c5828261362b565b60018260e001511161223f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4532583a20546f6f206561726c7900000000000000000000000000000000000081525060200191505060405180910390fd5b600083146122b5578160e001518311156122a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150286026913960400191505060405180910390fd5b6122b082846000614564565b6122c6565b6122c5828360e001516000614564565b5b6122d08282613e44565b505050565b60066020528060005260406000206000915090508060000160009054906101000a900468ffffffffffffffffff16908060010154908060020160009054906101000a900468ffffffffffffffffff16905083565b6040518060400160405280600381526020017f453258000000000000000000000000000000000000000000000000000000000081525081565b600061242561236f6130b6565b846124208560405180606001604052806025815260200161516060259139600160006123996130b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6130be565b6001905092915050565b600061244361243c6130b6565b84846132b5565b6001905092915050565b60048060000160009054906101000a900468ffffffffffffffffff16908060000160099054906101000a900468ffffffffffffffffff16908060000160129054906101000a900464ffffffffff16908060000160179054906101000a900468ffffffffffffffffff16908060010160009054906101000a900461ffff16908060010160029054906101000a900468ffffffffffffffffff169080600101600b9054906101000a900464ffffffffff16905087565b612509614259565b821061257d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4532583a20526f756e64206973206e6f7420636f6d706c65746500000000000081525060200191505060405180910390fd5b60006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff169050600080841461269957818360000160059054906101000a900464ffffffffff1664ffffffffff160384111561268f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20636f756e7420696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b838201905061272e565b8260000160059054906101000a900464ffffffffff1664ffffffffff16905080821061272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20636f756e7420696e76616c6964000000000000000000000000000081525060200191505060405180910390fd5b5b600061273986614666565b905060006008600088815260200190815260200160002054905060008090505b600086600101600087815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1690506000876001016000888152602001908152602001600020600001600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050876001016000888152602001908152602001600020600080820160006101000a8154906bffffffffffffffffffffffff021916905560008201600c6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550506000848387028161284457fe5b049050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806128ad57503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156128c3576128be8b8983856146ac565b6128ff565b6000601482816128cf57fe5b04905080820191506000600a83816128e357fe5b0490506128f28d8b85876146ac565b6128fc8482613a3a565b50505b808401935050505083856001019550851061275957848660000160006101000a81548164ffffffffff021916908364ffffffffff1602179055506000811461294c5761294b3382613a3a565b5b5050505050505050565b6000612960614259565b9050600034905060008114156129de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4532583a20416d6f756e7420726571756972656400000000000000000000000081525060200191505060405180910390fd5b60006009600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001600581819054906101000a900464ffffffffff168092919060010191906101000a81548164ffffffffff021916908364ffffffffff16021790555064ffffffffff1690506040518060400160405280846bffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681525082600101600083815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555090505082600860008681526020019081526020016000206000828254019250508190555082817f683f950243ca541a09abd8157385ce15a23ac43a47b8d0306de2bdc20d0b9e094287604051808381526020018281526020019250505060405180910390a35050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612c43614eb2565b612c4b614eb2565b612c55828261362b565b60003073ffffffffffffffffffffffffffffffffffffffff16311415612ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4532583a204e6f2076616c75650000000000000000000000000000000000000081525060200191505060405180910390fd5b612ceb614259565b600360009054906101000a900460ff1660ff1610612d71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4532583a20496e76616c6964206461790000000000000000000000000000000081525060200191505060405180910390fd5b612d7a82613906565b73769902b4cb2dfd79f2370555ad255bf599bf715573ffffffffffffffffffffffffffffffffffffffff166108fc6064600a60066000600360009054906101000a900460ff1660ff168152602001908152602001600020600101540281612ddd57fe5b049081150290604051600060405180830381858888f19350505050158015612e09573d6000803e3d6000fd5b506003600081819054906101000a900460ff168092919060010191906101000a81548160ff021916908360ff16021790555050612e468282613e44565b5050565b612e52614f5d565b604051806101400160405280600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460000160099054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460000160129054906101000a900464ffffffffff1664ffffffffff168152602001600460000160179054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168152602001600460010160009054906101000a900461ffff1661ffff168152602001600460010160029054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1681526020016004600101600b9054906101000a900464ffffffffff1664ffffffffff168152602001428152602001612f7b61103e565b815260200160086000612f8c614259565b815260200190815260200160002054815250905090565b60608183108015612fbb5750612fb7614259565b8211155b61302d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4532583a20696e76616c69642072616e6765000000000000000000000000000081525060200191505060405180910390fd5b82820360405190808252806020026020018201604052801561305e5781602001602082028038833980820191505090505b509050600083905060008090505b600860008380600101945081526020019081526020016000205483828060010193508151811061309857fe5b60200260200101818152505083821061306c57829250505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061513c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150066022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561333b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150e26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614f9b6023913960400191505060405180910390fd5b61342c8160405180606001604052806026815260200161504e602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134bf816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156135dd5780820151818401526020810190506135c2565b50505050905090810190601f16801561360a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600460000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826000018181525050600460000160099054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826020018181525050600460000160129054906101000a900464ffffffffff1664ffffffffff16826040018181525050600460000160179054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16826060018181525050600460010160009054906101000a900461ffff1661ffff16826080018181525050600460010160029054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168260a00181815250506004600101600b9054906101000a900464ffffffffff168260c0019064ffffffffff16908164ffffffffff1681525050613767614259565b8260e001818152505061377a828261470a565b5050565b8260000160009054906101000a900464ffffffffff1664ffffffffff168264ffffffffff1614613816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4532583a207374616b654964506172616d206e6f7420696e207374616b65000081525060200191505060405180910390fd5b8260000160009054906101000a900464ffffffffff16816000019064ffffffffff16908164ffffffffff16815250508260000160059054906101000a900468ffffffffffffffffff1668ffffffffffffffffff1681602001818152505082600001600e9054906101000a900468ffffffffffffffffff1668ffffffffffffffffff168160400181815250508260000160179054906101000a900461ffff1661ffff168160600181815250508260000160199054906101000a900461ffff1661ffff1681608001818152505082600001601b9054906101000a900461ffff1661ffff168160a0018181525050505050565b613916818260e001516001614564565b50565b80604001518260a00181815103915081815250508160e001518160a00181815250505050565b6000806000806000866080015186101561399e5761396c8888606001518960800151898b60400151614780565b80935081955050508387602001510194506139978888604001518960600151898b6060015101614856565b92506139fa565b6139b88888604001518960600151898b60600151016148ef565b93506139d48888604001518960600151898b6060015101614856565b92508387602001510194506139f7876060015188608001518960a0015188614a37565b91505b60008214613a205784821115613a165784905060009450613a1f565b81905080850394505b5b848484848494509450945094509450939792965093509350565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613af28160025461401990919063ffffffff16565b600281905550613b49816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461401990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600060018380549050039050808214613d9157828181548110613c1457fe5b90600052602060002001838381548110613c2a57fe5b906000526020600020016000820160009054906101000a900464ffffffffff168160000160006101000a81548164ffffffffff021916908364ffffffffff1602179055506000820160059054906101000a900468ffffffffffffffffff168160000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555060008201600e9054906101000a900468ffffffffffffffffff1681600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055506000820160179054906101000a900461ffff168160000160176101000a81548161ffff021916908361ffff1602179055506000820160199054906101000a900461ffff168160000160196101000a81548161ffff021916908361ffff16021790555060008201601b9054906101000a900461ffff1681600001601b6101000a81548161ffff021916908361ffff1602179055509050505b82805480613d9b57fe5b60019003818190600052602060002001600080820160006101000a81549064ffffffffff02191690556000820160056101000a81549068ffffffffffffffffff021916905560008201600e6101000a81549068ffffffffffffffffff02191690556000820160176101000a81549061ffff02191690556000820160196101000a81549061ffff021916905560008201601b6101000a81549061ffff021916905550509055505050565b80600001518260000151141580613e6357508060200151826020015114155b80613e7657508060400151826040015114155b80613e8957508060600151826060015114155b15613f4f578160000151600460000160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160200151600460000160096101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160400151600460000160126101000a81548164ffffffffff021916908364ffffffffff1602179055508160600151600460000160176101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055505b80608001518260800151141580613f6e57508060a001518260a0015114155b80613f8f57508060c0015164ffffffffff168260c0015164ffffffffff1614155b15614015578160800151600460010160006101000a81548161ffff021916908361ffff1602179055508160a00151600460010160026101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff1602179055508160c001516004600101600b6101000a81548164ffffffffff021916908364ffffffffff1602179055505b5050565b600080828401905083811015614097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806150c16021913960400191505060405180910390fd5b61419281604051806060016040528060228152602001614fbe602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461356b9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141e981600254614a7490919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000635f9b57804210156142705760009050614286565b62015180635f9b578042038161428257fe5b0490505b90565b61016d8111156142e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fe06026913960400191505060405180910390fd5b60006142f08383614abe565b905060008460400151620186a0838601028161430857fe5b0490506000811415614365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806151076035913960400191505060405180910390fd5b600060018660e0015101905060008660c001805160010164ffffffffff16908164ffffffffff1681525090506143dd600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828886868a614bb0565b3373ffffffffffffffffffffffffffffffffffffffff168164ffffffffff167fa75ea2f0baef0a6cfa36f61bc0cdc9b3a55ce8876892cf96f640208f65c799e988868960405180848152602001838152602001828152602001935050505060405180910390a3828760200181815101915081815250508587600001818151019150818152505050505050505050565b80600001518260000160006101000a81548164ffffffffff021916908364ffffffffff16021790555080602001518260000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550806040015182600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555080606001518260000160176101000a81548161ffff021916908361ffff16021790555080608001518260000160196101000a81548161ffff021916908361ffff1602179055508060a0015182600001601b6101000a81548161ffff021916908361ffff1602179055505050565b8183608001511061457457614661565b61457c614f80565b836000015161458961103e565b018160000181815250506000846080015190506145a7858383614d2e565b60008560200151146145d35784602001518560a001818151019150818152505060008560200181815250505b5b838160010191508110156145f2576145ed858383614d2e565b6145d4565b3373ffffffffffffffffffffffffffffffffffffffff167fe00f6f1c2b3ba17574be0a8136275368d74f37631cf36525a360b272fe21195b4287608001518460405180848152602001838152602001828152602001935050505060405180910390a28085608001818152505050505b505050565b60008082118015614679575061016d8211155b1561469a576501389131c15060018303026601c6bf526340000390506146a4565b655af3107a400090505b809050919050565b8073ffffffffffffffffffffffffffffffffffffffff1682847ff8fa88708321411fd98e823a1eb882047c8dc276ba17a8b81722ed282c4560f74288604051808381526020018281526020019250505060405180910390a450505050565b816000015181600001818152505081602001518160200181815250508160400151816040018181525050816060015181606001818152505081608001518160800181815250508160a001518160a00181815250508160c001518160c0019064ffffffffff16908164ffffffffff16815250505050565b6000806000848701905060006002600188018161479957fe5b049050605a8110156147aa57605a90505b60008614156147d55760006147c08a878b614df2565b9050818102935084849450945050505061484c565b8581101561481657600081890190506147f08a878b846148ef565b935060006148008b8884876148ef565b905080850195508585955095505050505061484c565b61482289868a856148ef565b93508581141561483457839250614843565b858185028161483f57fe5b0492505b83839350935050505b9550959350505050565b6000808390505b828110156148e35760006006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16866064605a600660008781526020019081526020016000206001015402816148c257fe5b0402816148cb57fe5b0481019050808301925050808060010191505061485d565b50809050949350505050565b60008060008490505b83811015614a2a5760006006600083815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16876006600085815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16028161497957fe5b0490506004831015614992578280600101935050614a17565b600260ff166006600084815260200190815260200160002060020160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff16886006600086815260200190815260200160002060000160009054906101000a900468ffffffffffffffffff1668ffffffffffffffffff160281614a0e57fe5b04029050600092505b80840193505080806001019150506148f8565b5081915050949350505050565b6000806007600202858701019050808411614a56576000915050614a6c565b6007606402818503840281614a6757fe5b049150505b949350505050565b6000614ab683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061356b565b905092915050565b600080600090506001831115614b1657606460c86014618e3081614ade57fe5b040281614ae757fe5b04831115614b0e57606460c86014618e3081614aff57fe5b040281614b0857fe5b04614b13565b600183035b90505b6000600860ff16600a0a626acfc002851115614b3e57600860ff16600a0a626acfc002614b40565b845b90506014618e3081614b4e57fe5b048102600a6064600860ff16600a0a626acfc0020281614b6a57fe5b048302019250600a6064600860ff16600a0a626acfc0020281614b8957fe5b046014618e3081614b9657fe5b040283860281614ba257fe5b049250829250505092915050565b856040518060c001604052808764ffffffffff1681526020018668ffffffffffffffffff1681526020018568ffffffffffffffffff1681526020018461ffff1681526020018361ffff168152602001600061ffff1681525090806001815401808255809150509060018203906000526020600020016000909192909190915060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550604082015181600001600e6101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff16021790555060608201518160000160176101000a81548161ffff021916908361ffff16021790555060808201518160000160196101000a81548161ffff021916908361ffff16021790555060a082015181600001601b6101000a81548161ffff021916908361ffff160217905550505050505050505050565b614d39838383614e62565b81602001516006600083815260200190815260200160002060000160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550600860008281526020019081526020016000205460066000838152602001908152602001600020600101819055508260a001516006600083815260200190815260200160002060020160006101000a81548168ffffffffffffffffff021916908368ffffffffffffffffff160217905550505050565b6000614dfc614eb2565b614e06858261470a565b614e0e614f80565b8560000151614e1b61103e565b01816000018181525050614e30828286614e62565b848260a00181815101915081815250508160a001518582602001510281614e5357fe5b04925082925050509392505050565b63041aa18961c35083600001510281614e7757fe5b048260200181815250506000836060015114614ead57826060015182602001818151019150818152505060008360600181815250505b505050565b604051806101000160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600081525090565b6040518060c00160405280600064ffffffffff16815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060400160405280600290602082028038833980820191505090505090565b604051806101400160405280600a90602082028038833980820191505090505090565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654532583a206e65775374616b65644461797320686967686572207468616e206d6178696d756d45524332303a20617070726f766520746f20746865207a65726f20616464726573734532583a206265666f72654461792063616e6e6f7420626520696e207468652066757475726545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654532583a206e65775374616b656444617973206c6f776572207468616e206d696e696d756d45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734532583a206e65775374616b656453756e73206d757374206265206174206c65617374206d696e696d756d2073686172655261746545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72305820e8ca1574db7d79516b18fa84c1a49176fb4710c25bc7b393e406372d3a7c75ef64736f6c634300050a0032

Deployed Bytecode Sourcemap

61773:233:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19988:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19988:35:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19988:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12016:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12016:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12016:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11041:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11041:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12639:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12639:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12639:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23823:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23823:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23823:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59908:406;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59908:406:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;59908:406:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20074:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20074:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42775:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42775:159:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42775:159:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39963:2662;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39963:2662:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39963:2662:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13351:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13351:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13351:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27543:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27543:156:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16011:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16011:166:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16011:166:0;;;;;;;;;;;;;;;;;:::i;:::-;;24344:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24344:79:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24344:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60525:438;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60525:438:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;60525:438:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;60525:438:0;;;;;;;;;;;;;;;;36926:633;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36926:633:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36926:633:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27862:125;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27862:125:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37927:1770;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37927:1770:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37927:1770:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25672:922;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25672:922:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25672:922:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25672:922:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25672:922:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25672:922:0;;;;;;;;;;;;;;;;;;;;;11194:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11194:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11194:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24295:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24295:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24295:42:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24676:659;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24676:659:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24676:659:0;;;;;;;;;;;;;;;;;:::i;:::-;;23273:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23273:51:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23273:51:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20030:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20030:37:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;20030:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14063:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14063:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14063:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11516:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11516:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11516:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23077:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23077:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56204:1939;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56204:1939:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;56204:1939:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55316:646;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;55316:646:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11736:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11736:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11736:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;59023:503;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59023:503:0;;;:::i;:::-;;26827:496;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26827:496:0;;;:::i;:::-;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26827:496:0;;;;;;;;;;;;;;;;58426:501;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58426:501:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;58426:501:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;58426:501:0;;;;;;;;;;;;;;;;;19988:35;;;;;;;;;;;;;;;;;;;:::o;12016:152::-;12082:4;12099:39;12108:12;:10;:12::i;:::-;12122:7;12131:6;12099:8;:39::i;:::-;12156:4;12149:11;;12016:152;;;;:::o;11041:91::-;11085:7;11112:12;;11105:19;;11041:91;:::o;12639:304::-;12728:4;12745:36;12755:6;12763:9;12774:6;12745:9;:36::i;:::-;12792:121;12801:6;12809:12;:10;:12::i;:::-;12823:89;12861:6;12823:89;;;;;;;;;;;;;;;;;:11;:19;12835:6;12823:19;;;;;;;;;;;;;;;:33;12843:12;:10;:12::i;:::-;12823:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12792:8;:121::i;:::-;12931:4;12924:11;;12639:304;;;;;:::o;23823:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59908:406::-;60038:17;60057:20;60095:31;60129:14;:24;60144:8;60129:24;;;;;;;;;;;:36;60154:10;60129:36;;;;;;;;;;;;;;;:44;;:56;60174:10;60129:56;;;;;;;;;;;60095:90;;60225:1;60206:5;:15;;;;;;;;;;;;:20;;;;60198:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60270:5;:15;;;;;;;;;;;;60287:5;:18;;;;;;;;;;;;60262:44;;;;;;;;;;59908:406;;;;;;:::o;20074:34::-;20107:1;20074:34;:::o;42775:159::-;42865:7;42897:10;:22;42908:10;42897:22;;;;;;;;;;;;;;;:29;;;;42890:36;;42775:159;;;:::o;39963:2662::-;40056:21;;:::i;:::-;40088:29;;:::i;:::-;40128:26;40141:1;40144:9;40128:12;:26::i;:::-;40167:33;40203:10;:22;40214:10;40203:22;;;;;;;;;;;;;;;40167:58;;40340:1;40317:12;:19;;;;:24;;40309:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40399:12;:19;;;;40386:10;:32;40378:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40489:20;;:::i;:::-;40520:54;40531:12;40544:10;40531:24;;;;;;;;;;;;;;;40557:12;40571:2;40520:10;:54::i;:::-;40640:23;40661:1;40640:20;:23::i;:::-;40676:18;40697:1;40676:22;;40711:17;40751:1;40732:2;:15;;;:20;;40711:42;;40764:19;40794:14;40811:1;40794:18;;40823:17;40843:1;40823:21;;40855:15;40873:1;40855:19;;40885:21;40909:1;40885:25;;40944:2;:13;;;40927:1;:13;;;:30;40923:858;;40978:12;40974:423;;;41123:2;:14;;;41110:27;;40974:423;;;41178:19;41191:1;41194:2;41178:12;:19::i;:::-;41247:2;:13;;;41231:1;:13;;;:29;41218:42;;41296:2;:14;;;41283:10;:27;41279:103;;;41348:2;:14;;;41335:27;;41279:103;40974:423;41472:36;41490:1;41493:2;41497:10;41472:17;:36::i;:::-;41413:95;;;;;;;;;;;;;;;;;;;;41525:10;:19;;:30;41545:9;41525:30;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;41525:30:0;40923:858;;;41709:2;:15;;;41682:1;:23;;:42;;;;;;;;;;;41755:2;:14;;;41741:28;;40923:858;41884:10;41798:316;;41821:12;41798:316;;;41849:12;:20;;41868:1;41849:20;;;41864:1;41849:20;41909:2;:13;;;41937:10;41963:2;:14;;;41993:2;:15;;;42024:9;42048:6;42070:7;42092:11;41798:316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42148:1;42131:13;:18;;:35;;;;;42154:12;42153:13;42131:35;42127:204;;;42306:13;42282:1;:20;;:37;;;;;;;;;;;42127:204;42421:1;42406:11;:16;42402:79;;42439:30;42445:10;42457:11;42439:5;:30::i;:::-;42402:79;42513:2;:14;;;42491:1;:18;;:36;;;;;;;;;;;42540:38;42553:12;42567:10;42540:12;:38::i;:::-;42591:26;42604:1;42607:9;42591:12;:26::i;:::-;39963:2662;;;;;;;;;;;;;:::o;13351:210::-;13431:4;13448:83;13457:12;:10;:12::i;:::-;13471:7;13480:50;13519:10;13480:11;:25;13492:12;:10;:12::i;:::-;13480:25;;;;;;;;;;;;;;;:34;13506:7;13480:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13448:8;:83::i;:::-;13549:4;13542:11;;13351:210;;;;:::o;27543:156::-;27620:7;27668;:23;;;;;;;;;;;;27652:39;;:13;:11;:13::i;:::-;:39;27645:46;;27543:156;:::o;16011:166::-;16094:6;16069:9;:21;16079:10;16069:21;;;;;;;;;;;;;;;;:31;;16061:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144:25;16150:10;16162:6;16144:5;:25::i;:::-;16011:166;:::o;24344:79::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60525:438::-;60623:40;;:::i;:::-;60681:11;60711:1;60695:13;:11;:13::i;:::-;:17;60681:31;;60725:206;60741:1;60732:5;;;;;;;:10;60725:206;;60807:14;:19;60822:3;60807:19;;;;;;;;;;;:31;60827:10;60807:31;;;;;;;;;;;;;;;:41;;;;;;;;;;;;60763:85;;:14;:19;60778:3;60763:19;;;;;;;;;;;:31;60783:10;60763:31;;;;;;;;;;;;;;;:41;;;;;;;;;;;;:85;;;60759:161;;;60900:3;60894;:9;60888:1;:16;;60869:5;60882:1;60875:3;:8;;60869:15;;;;;;;;;;:35;;;;;;;;;;;60759:161;60725:206;;;60950:5;60943:12;;;60525:438;;;:::o;36926:633::-;37026:21;;:::i;:::-;37058:29;;:::i;:::-;37098:26;37111:1;37114:9;37098:12;:26::i;:::-;20906:1;37191:13;:31;;37183:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37330:23;37351:1;37330:20;:23::i;:::-;37366:44;37378:1;37381:13;37396;37366:11;:44::i;:::-;37480:32;37486:10;37498:13;37480:5;:32::i;:::-;37525:26;37538:1;37541:9;37525:12;:26::i;:::-;36926:633;;;;:::o;27862:125::-;27934:7;27966:13;:11;:13::i;:::-;27959:20;;27862:125;:::o;37927:1770::-;38051:21;;:::i;:::-;38083:29;;:::i;:::-;38123:26;38136:1;38139:9;38123:12;:26::i;:::-;38274:1;38241:10;:22;38252:10;38241:22;;;;;;;;;;;;;;;:29;;;;:34;;38233:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38333:10;:22;38344:10;38333:22;;;;;;;;;;;;;;;:29;;;;38320:10;:42;38312:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38403:24;38430:10;:22;38441:10;38430:22;;;;;;;;;;;;;;;38453:10;38430:34;;;;;;;;;;;;;;;38403:61;;38507:20;;:::i;:::-;38538:35;38549:5;38556:12;38570:2;38538:10;:35::i;:::-;38675:2;:14;;;38659:2;:13;;;:30;38642:1;:13;;;:47;;38634:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38803:1;38784:2;:15;;;:20;38776:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38902:23;38923:1;38902:20;:23::i;:::-;38980:19;38993:1;38996:2;38980:12;:19::i;:::-;39077:14;39093:17;39112:15;39129:21;39154:90;39186:1;39202:2;39219;:14;;;39154:17;:90::i;:::-;39074:170;;;;;;;;;39348:10;39262:209;;39323:10;39262:209;;39296:12;39262:209;;;39373:2;:14;;;39402:2;:15;;;39432:6;39453:7;39262:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39505:1;39488:13;:18;39484:88;;39547:13;39523:1;:20;;:37;;;;;;;;;;;39484:88;39627:23;39640:5;39647:2;39627:12;:23::i;:::-;39663:26;39676:1;39679:9;39663:12;:26::i;:::-;37927:1770;;;;;;;;;;;:::o;25672:922::-;25780:37;25819:32;25853:30;25920:6;25909:8;:17;:53;;;;;25940:7;:22;;;;;;;;;;;;25930:32;;:6;:32;;25909:53;25901:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26044:8;26035:6;:17;26021:32;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26021:32:0;;;;25998:55;;26105:8;26096:6;:17;26082:32;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26082:32:0;;;;26064:50;;26164:8;26155:6;:17;26141:32;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;26141:32:0;;;;26125:48;;26186:11;26200:8;26186:22;;26219:11;26233:1;26219:15;;26245:268;26299:9;:14;26309:3;26299:14;;;;;;;;;;;:34;;;;;;;;;;;;26291:43;;26263:20;26284:3;26263:25;;;;;;;;;;;;;:71;;;;;26382:9;:14;26392:3;26382:14;;;;;;;;;;;:29;;;;;;;;;;;;26374:38;;26349:15;26365:5;;;;;;26349:22;;;;;;;;;;;;;:63;;;;;26450:9;:14;26460:3;26450:14;;;;;;;;;;;:27;;;26427:13;26441:5;;;;;;26427:20;;;;;;;;;;;;;:50;;;;;26505:6;26497:5;;;;;;:14;26245:268;;26533:20;26555:15;26572:13;26525:61;;;;;;;;25672:922;;;;;:::o;11194:110::-;11251:7;11278:9;:18;11288:7;11278:18;;;;;;;;;;;;;;;;11271:25;;11194:110;;;:::o;24295:42::-;;;;;;;;;;;;;;;;;:::o;24676:659::-;24754:21;;:::i;:::-;24786:29;;:::i;:::-;24826:26;24839:1;24842:9;24826:12;:26::i;:::-;20444:1;24910;:13;;;:37;24902:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24996:1;24983:9;:14;24979:310;;25035:1;:13;;;25022:9;:26;;25014:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25108:37;25125:1;25128:9;25139:5;25108:16;:37::i;:::-;24979:310;;;25236:41;25253:1;25256;:13;;;25271:5;25236:16;:41::i;:::-;24979:310;25301:26;25314:1;25317:9;25301:12;:26::i;:::-;24676:659;;;:::o;23273:51::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20030:37::-;;;;;;;;;;;;;;;;;;;:::o;14063:261::-;14148:4;14165:129;14174:12;:10;:12::i;:::-;14188:7;14197:96;14236:15;14197:96;;;;;;;;;;;;;;;;;:11;:25;14209:12;:10;:12::i;:::-;14197:25;;;;;;;;;;;;;;;:34;14223:7;14197:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14165:8;:129::i;:::-;14312:4;14305:11;;14063:261;;;;:::o;11516:158::-;11585:4;11602:42;11612:12;:10;:12::i;:::-;11626:9;11637:6;11602:9;:42::i;:::-;11662:4;11655:11;;11516:158;;;;:::o;23077:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56204:1939::-;56311:13;:11;:13::i;:::-;56300:8;:24;56292:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56368:30;56401:14;:24;56416:8;56401:24;;;;;;;;;;;:36;56426:10;56401:36;;;;;;;;;;;;;;;56368:69;;56450:17;56470:4;:14;;;;;;;;;;;;56450:34;;;;56495:16;56537:1;56528:5;:10;56524:276;;56589:9;56572:4;:14;;;;;;;;;;;;:26;;;56563:5;:35;;56555:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56659:5;56647:9;:17;56636:28;;56524:276;;;56708:4;:14;;;;;;;;;;;;56697:25;;;;56757:8;56745:9;:20;56737:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56524:276;56812:17;56832:20;56843:8;56832:10;:20::i;:::-;56812:40;;56863:16;56882:7;:17;56890:8;56882:17;;;;;;;;;;;;56863:36;;56910:21;56934:1;56910:25;;56948:1046;56966:17;56986:4;:12;;:23;56999:9;56986:23;;;;;;;;;;;:33;;;;;;;;;;;;56966:53;;;;57034:20;57057:4;:12;;:23;57070:9;57057:23;;;;;;;;;;;:36;;;;;;;;;;;;57034:59;;57117:4;:12;;:23;57130:9;57117:23;;;;;;;;;;;;57110:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57157:16;57200:8;57188:9;57176;:21;:32;;;;;;57157:51;;57253:1;57229:26;;:12;:26;;;:56;;;;57275:10;57259:26;;:12;:26;;;57229:56;57225:684;;;57358:61;57375:8;57385:9;57396:8;57406:12;57358:16;:61::i;:::-;57225:684;;;57526:25;57565:2;57554:8;:13;;;;;;57526:41;;57600:17;57588:29;;;;57713:25;57752:2;57741:8;:13;;;;;;57713:41;;57775:61;57792:8;57802:9;57813:8;57823:12;57775:16;:61::i;:::-;57855:38;57861:12;57875:17;57855:5;:38::i;:::-;57225:684;;;57942:8;57925:25;;;;56948:1046;;;57984:8;57970:11;;;;;;:22;56948:1046;;58030:9;58006:4;:14;;;:34;;;;;;;;;;;;;;;;;;58074:1;58057:13;:18;58053:83;;58092:32;58098:10;58110:13;58092:5;:32::i;:::-;58053:83;56204:1939;;;;;;;;:::o;55316:646::-;55411:16;55430:13;:11;:13::i;:::-;55411:32;;55456:17;55476:9;55456:29;;55517:1;55504:9;:14;;55496:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55556:30;55589:14;:24;55604:8;55589:24;;;;;;;;;;;:36;55614:10;55589:36;;;;;;;;;;;;;;;55556:69;;55638:18;55659:4;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55638:37;;;;55715:50;;;;;;;;55740:9;55715:50;;;;;;55752:12;55715:50;;;;;55688:4;:12;;:24;55701:10;55688:24;;;;;;;;;;;:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55799:9;55778:7;:17;55786:8;55778:17;;;;;;;;;;;;:30;;;;;;;;;;;55934:9;55908:10;55826:128;55853:15;55884:8;55826:128;;;;;;;;;;;;;;;;;;;;;;;;55316:646;;;;;:::o;11736:134::-;11808:7;11835:11;:18;11847:5;11835:18;;;;;;;;;;;;;;;:27;11854:7;11835:27;;;;;;;;;;;;;;;;11828:34;;11736:134;;;;:::o;59023:503::-;59076:21;;:::i;:::-;59108:29;;:::i;:::-;59148:26;59161:1;59164:9;59148:12;:26::i;:::-;59228:1;59211:4;59203:21;;;:26;;59195:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59287:13;:11;:13::i;:::-;59268:16;;;;;;;;;;;:32;;;59260:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59334:23;59355:1;59334:20;:23::i;:::-;19866:42;59370:23;;:78;59444:3;59438:2;59395:9;:27;59405:16;;;;;;;;;;;59395:27;;;;;;;;;;;;;:40;;;:45;59394:53;;;;;;59370:78;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59370:78:0;59461:16;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59492:26;59505:1;59508:9;59492:12;:26::i;:::-;59023:503;;:::o;26827:496::-;26899:18;;:::i;:::-;26937:378;;;;;;;;26959:7;:23;;;;;;;;;;;;26937:378;;;;;;26997:7;:28;;;;;;;;;;;;26937:378;;;;;;27040:7;:17;;;;;;;;;;;;26937:378;;;;;;27072:7;:25;;;;;;;;;;;;26937:378;;;;;;27112:7;:22;;;;;;;;;;;;26937:378;;;;;;27149:7;:24;;;;;;;;;;;;26937:378;;;;;;27188:7;:21;;;;;;;;;;;;26937:378;;;;;;27224:15;26937:378;;;;27254:13;:11;:13::i;:::-;26937:378;;;;27282:7;:22;27290:13;:11;:13::i;:::-;27282:22;;;;;;;;;;;;26937:378;;;;;26827:496;:::o;58426:501::-;58532:21;58604:6;58593:8;:17;:44;;;;;58624:13;:11;:13::i;:::-;58614:6;:23;;58593:44;58571:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58726:8;58717:6;:17;58703:32;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;58703:32:0;;;;58696:39;;58748:11;58762:8;58748:22;;58781:11;58795:1;58781:15;;58807:89;58847:7;:14;58855:5;;;;;;58847:14;;;;;;;;;;;;58825:4;58830:5;;;;;;58825:11;;;;;;;;;;;;;:37;;;;;58888:6;58882:3;:12;58807:89;;58915:4;58908:11;;;;58426:501;;;;:::o;806:98::-;851:15;886:10;879:17;;806:98;:::o;17298:338::-;17409:1;17392:19;;:5;:19;;;;17384:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17490:1;17471:21;;:7;:21;;;;17463:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17574:6;17544:11;:18;17556:5;17544:18;;;;;;;;;;;;;;;:27;17563:7;17544:27;;;;;;;;;;;;;;;:36;;;;17612:7;17596:32;;17605:5;17596:32;;;17621:6;17596:32;;;;;;;;;;;;;;;;;;17298:338;;;:::o;14814:471::-;14930:1;14912:20;;:6;:20;;;;14904:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15014:1;14993:23;;:9;:23;;;;14985:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15089;15111:6;15089:71;;;;;;;;;;;;;;;;;:9;:17;15099:6;15089:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15069:9;:17;15079:6;15069:17;;;;;;;;;;;;;;;:91;;;;15194:32;15219:6;15194:9;:20;15204:9;15194:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15171:9;:20;15181:9;15171:20;;;;;;;;;;;;;;;:55;;;;15259:9;15242:35;;15251:6;15242:35;;;15270:6;15242:35;;;;;;;;;;;;;;;;;;14814:471;;;:::o;5698:192::-;5784:7;5817:1;5812;:6;;5820:12;5804:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5804:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5844:9;5860:1;5856;:5;5844:17;;5881:1;5874:8;;;5698:192;;;;;:::o;28400:592::-;28545:7;:23;;;;;;;;;;;;28524:44;;:1;:18;;:44;;;;;28605:7;:28;;;;;;;;;;;;28579:54;;:1;:23;;:54;;;;;28659:7;:17;;;;;;;;;;;;28644:32;;:1;:12;;:32;;;;;28710:7;:25;;;;;;;;;;;;28687:48;;:1;:20;;:48;;;;;28766:7;:22;;;;;;;;;;;;28746:42;;:1;:17;;:42;;;;;28821:7;:24;;;;;;;;;;;;28799:46;;:1;:19;;:46;;;;;28875:7;:21;;;;;;;;;;;;28856:1;:16;;:40;;;;;;;;;;;28923:13;:11;:13::i;:::-;28907:1;:13;;:29;;;;;28949:35;28971:1;28974:9;28949:21;:35::i;:::-;28400:592;;:::o;30591:538::-;30811:5;:13;;;;;;;;;;;;30795:29;;:12;:29;;;30787:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30886:5;:13;;;;;;;;;;;;30872:2;:11;;:27;;;;;;;;;;;30927:5;:16;;;;;;;;;;;;30910:33;;:2;:14;;:33;;;;;30972:5;:17;;;;;;;;;;;;30954:35;;:2;:15;;:35;;;;;31016:5;:15;;;;;;;;;;;;31000:31;;:2;:13;;:31;;;;;31059:5;:16;;;;;;;;;;;;31042:33;;:2;:14;;:33;;;;;31104:5;:17;;;;;;;;;;;;31086:35;;:2;:15;;:35;;;;;30591:538;;;:::o;28257:135::-;28344:40;28361:1;28364;:13;;;28379:4;28344:16;:40::i;:::-;28257:135;:::o;50115:202::-;50252:2;:15;;;50229:1;:19;;:38;;;;;;;;;;;50296:1;:13;;;50278:2;:15;;:31;;;;;50115:202;;:::o;50325:1879::-;50466:19;50487:14;50503:17;50522:15;50539:21;50595:2;:14;;;50582:10;:27;50578:1138;;;50646:189;50691:1;50711:2;:13;;;50743:2;:14;;;50776:10;50805:2;:15;;;50646:26;:189::i;:::-;50626:209;;;;;;;;50881:6;50864:2;:14;;;:23;50850:37;;50916:172;50961:1;50981:2;:15;;;51015:2;:13;;;51063:10;51047:2;:13;;;:26;50916;:172::i;:::-;50904:184;;50578:1138;;;51181:164;51218:1;51238:2;:15;;;51272:2;:13;;;51320:10;51304:2;:13;;;:26;51181:18;:164::i;:::-;51172:173;;51374:172;51419:1;51439:2;:15;;;51473:2;:13;;;51521:10;51505:2;:13;;;:26;51374;:172::i;:::-;51362:184;;51594:6;51577:2;:14;;;:23;51563:37;;51627:77;51644:2;:13;;;51659:2;:14;;;51675:2;:15;;;51692:11;51627:16;:77::i;:::-;51617:87;;50578:1138;51741:1;51730:7;:12;51726:397;;51773:11;51763:7;:21;51759:353;;;51880:11;51864:27;;51924:1;51910:15;;51759:353;;;52042:7;52026:23;;52083:13;52068:28;;;;51759:353;51726:397;52141:11;52154:6;52162:9;52173:7;52182:13;52133:63;;;;;;;;;;50325:1879;;;;;;;;;:::o;15566:308::-;15661:1;15642:21;;:7;:21;;;;15634:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15727:24;15744:6;15727:12;;:16;;:24;;;;:::i;:::-;15712:12;:39;;;;15783:30;15806:6;15783:9;:18;15793:7;15783:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15762:9;:18;15772:7;15762:18;;;;;;;;;;;;;;;:51;;;;15850:7;15829:37;;15846:1;15829:37;;;15859:6;15829:37;;;;;;;;;;;;;;;;;;15566:308;;:::o;32586:647::-;32697:17;32739:1;32717:12;:19;;;;:23;32697:43;;32853:9;32839:10;:23;32835:177;;32977:12;32990:9;32977:23;;;;;;;;;;;;;;;32950:12;32963:10;32950:24;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32835:177;33207:12;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32586:647;;;:::o;29542:1041::-;29678:9;:26;;;29656:1;:18;;;:48;;:123;;;;29748:9;:31;;;29721:1;:23;;;:58;;29656:123;:176;;;;29812:9;:20;;;29796:1;:12;;;:36;;29656:176;:245;;;;29873:9;:28;;;29849:1;:20;;;:52;;29656:245;29652:533;;;29951:1;:18;;;29918:7;:23;;;:52;;;;;;;;;;;;;;;;;;30023:1;:23;;;29985:7;:28;;;:62;;;;;;;;;;;;;;;;;;30089:1;:12;;;30062:7;:17;;;:40;;;;;;;;;;;;;;;;;;30152:1;:20;;;30117:7;:25;;;:56;;;;;;;;;;;;;;;;;;29652:533;30220:9;:25;;;30199:1;:17;;;:46;;:113;;;;30285:9;:27;;;30262:1;:19;;;:50;;30199:113;:174;;;;30349:9;:24;;;30329:44;;:1;:16;;;:44;;;;30199:174;30195:381;;;30422:1;:17;;;30390:7;:22;;;:50;;;;;;;;;;;;;;;;;;30489:1;:19;;;30455:7;:24;;;:54;;;;;;;;;;;;;;;;;;30548:1;:16;;;30524:7;:21;;;:40;;;;;;;;;;;;;;;;;;30195:381;29542:1041;;:::o;4769:181::-;4827:7;4847:9;4863:1;4859;:5;4847:17;;4888:1;4883;:6;;4875:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4941:1;4934:8;;;4769:181;;;;:::o;16510:348::-;16605:1;16586:21;;:7;:21;;;;16578:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16679:68;16702:6;16679:68;;;;;;;;;;;;;;;;;:9;:18;16689:7;16679:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16658:9;:18;16668:7;16658:18;;;;;;;;;;;;;;;:89;;;;16773:24;16790:6;16773:12;;:16;;:24;;;;:::i;:::-;16758:12;:39;;;;16839:1;16813:37;;16822:7;16813:37;;;16843:6;16813:37;;;;;;;;;;;;;;;;;;16510:348;;:::o;27995:254::-;28068:7;20350:10;28097:15;:29;28093:149;;;28150:1;28143:8;;;;28093:149;28224:6;20350:10;28191:15;:29;28190:40;;;;;;28183:47;;27995:254;;:::o;43134:1741::-;20959:3;43346:13;:31;;43338:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43433:17;43453:50;43474:13;43489;43453:20;:50::i;:::-;43433:70;;43514:22;43588:1;:12;;;22136:3;43556:9;43540:13;:25;43539:46;:61;;;;;;43514:86;;43714:1;43696:14;:19;;43688:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44118:20;44157:1;44141;:13;;;:17;44118:40;;44199:17;44221:1;:16;;44219:18;;;;;;;;;;;;;44199:38;;44248:194;44272:10;:22;44283:10;44272:22;;;;;;;;;;;;;;;44309:10;44334:13;44362:14;44391:12;44418:13;44248:9;:194::i;:::-;44511:10;44460:159;;44485:10;44460:159;;;44536:13;44565:14;44595:13;44460:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44739:14;44712:1;:23;;:41;;;;;;;;;;;44854:13;44832:1;:18;;:35;;;;;;;;;;;43134:1741;;;;;;;:::o;31137:401::-;31257:2;:11;;;31241:5;:13;;;:27;;;;;;;;;;;;;;;;;;31305:2;:14;;;31279:5;:16;;;:41;;;;;;;;;;;;;;;;;;31358:2;:15;;;31331:5;:17;;;:43;;;;;;;;;;;;;;;;;;31410:2;:13;;;31385:5;:15;;;:39;;;;;;;;;;;;;;;;;;31461:2;:14;;;31435:5;:16;;;:41;;;;;;;;;;;;;;;;;;31514:2;:15;;;31487:5;:17;;;:43;;;;;;;;;;;;;;;;;;31137:401;;:::o;35731:970::-;35876:9;35855:1;:17;;;:30;35851:107;;35940:7;;35851:107;35970:25;;:::i;:::-;36046:1;:18;;;36030:13;:11;:13::i;:::-;:34;36006:2;:21;;:58;;;;;36077:11;36091:1;:17;;;36077:31;;36121:35;36145:1;36148:2;36152:3;36121:23;:35::i;:::-;36282:1;36255;:23;;;:28;36251:149;;36323:1;:23;;;36300:1;:19;;:46;;;;;;;;;;;36387:1;36361;:23;;:27;;;;;36251:149;36412:88;36427:9;36419:5;;;;;;:17;36412:88;;;36453:35;36477:1;36480:2;36484:3;36453:23;:35::i;:::-;36412:88;;;36547:10;36517:132;;;36572:15;36602:1;:17;;;36635:3;36517:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36690:3;36670:1;:17;;:23;;;;;35731:970;;;;;;:::o;60975:439::-;61048:17;61160:1;61149:8;:12;:31;;;;;61177:3;61165:8;:15;;61149:31;61145:233;;;61288:13;61283:1;61272:8;:12;61271:30;20502:19;61246:56;61234:68;;61145:233;;;20576:19;61335:31;;61145:233;61397:9;61390:16;;60975:439;;;:::o;61422:344::-;61735:12;61607:151;;61712:8;61687:10;61607:151;61633:15;61664:8;61607:151;;;;;;;;;;;;;;;;;;;;;;;;61422:344;;;;:::o;29000:534::-;29162:1;:18;;;29133:9;:26;;:47;;;;;29225:1;:23;;;29191:9;:31;;:57;;;;;29282:1;:12;;;29259:9;:20;;:35;;;;;29336:1;:20;;;29305:9;:28;;:51;;;;;29395:1;:17;;;29367:9;:25;;:45;;;;;29453:1;:19;;;29423:9;:27;;:49;;;;;29510:1;:16;;;29483:9;:24;;:43;;;;;;;;;;;29000:534;;:::o;52212:2201::-;52467:14;52483:15;52516:20;52556:10;52539:14;:27;52516:50;;52648:19;52694:1;52689;52671:15;:19;52670:25;;;;;;52648:47;;21022:2;52710:11;:36;52706:105;;;21022:2;52763:36;;52706:105;52841:1;52827:10;:15;52823:309;;;52930:16;52949:62;52975:1;52978:16;52996:14;52949:25;:62::i;:::-;52930:81;;53047:11;53036:8;:22;53026:32;;53081:6;53089:7;53073:24;;;;;;;;;52823:309;53162:10;53148:11;:24;53144:723;;;53529:21;53570:11;53553:14;:28;53529:52;;53606:70;53625:1;53628:16;53646:14;53662:13;53606:18;:70::i;:::-;53596:80;;53693:13;53709:68;53728:1;53731:16;53749:13;53764:12;53709:18;:68::i;:::-;53693:84;;53811:5;53801:7;:15;53792:24;;53839:6;53847:7;53831:24;;;;;;;;;;53144:723;53930:69;53949:1;53952:16;53970:14;53986:12;53930:18;:69::i;:::-;53921:78;;54031:10;54016:11;:25;54012:359;;;54068:6;54058:16;;54012:359;;;54349:10;54335:11;54326:6;:20;:33;;;;;;54316:43;;54012:359;54389:6;54397:7;54381:24;;;;;;52212:2201;;;;;;;;;:::o;46519:611::-;46730:14;46769:11;46783:8;46769:22;;46764:333;46799:6;46793:3;:12;46764:333;;;46829:17;47015:9;:14;47025:3;47015:14;;;;;;;;;;;:34;;;;;;;;;;;;46938:111;;46983:16;46976:3;46970:2;46940:9;:14;46950:3;46940:14;;;;;;;;;;;:27;;;:32;46939:40;;;;;;46938:61;:111;;;;;;46925:124;;;;47076:9;47066:19;;;;46764:333;46807:5;;;;;;;46764:333;;;;47116:6;47109:13;;46519:611;;;;;;:::o;45270:898::-;45473:14;45505:15;45538:11;45552:8;45538:22;;45533:602;45568:6;45562:3;:12;45533:602;;;45598:17;45712:9;:14;45722:3;45712:14;;;;;;;;;;;:34;;;;;;;;;;;;45644:102;;45676:16;45644:9;:14;45654:3;45644:14;;;;;;;;;;;:29;;;;;;;;;;;;:48;;;:102;;;;;;45632:114;;45777:1;45767:7;:11;45763:325;;;45799:9;;;;;;;45763:325;;;22405:1;45920:122;;45989:9;:14;45999:3;45989:14;;;;;;;;;;;:34;;;;;;;;;;;;45921:102;;45953:16;45921:9;:14;45931:3;45921:14;;;;;;;;;;;:29;;;;;;;;;;;;:48;;;:102;;;;;;45920:122;45908:134;;46071:1;46061:11;;45763:325;46114:9;46104:19;;;;45533:602;45576:5;;;;;;;45533:602;;;;46154:6;46147:13;;;45270:898;;;;;;:::o;54421:651::-;54638:7;54719:22;21172:1;21085;21145:28;54761:15;54744:14;:32;:58;54719:83;;54837:14;54817:16;:34;54813:75;;54875:1;54868:8;;;;;54813:75;21323:1;21234:3;21296:28;55023:14;55004:16;:33;54986:14;:52;:78;;;;;;54979:85;;;54421:651;;;;;;;:::o;5225:136::-;5283:7;5310:43;5314:1;5317;5310:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5303:50;;5225:136;;;;:::o;47320:2787::-;47445:17;49578:23;49604:1;49578:27;;49700:1;49684:13;:17;49680:132;;;21675:3;21526;21468:2;21568:9;:29;;;;;;21645:27;:33;;;;;;49736:13;:29;;:64;;21675:3;21526;21468:2;21568:9;:29;;;;;;21645:27;:33;;;;;;49736:64;;;49784:1;49768:13;:17;49736:64;49718:82;;49680:132;49824:24;20107:1;20218:17;;20212:2;:23;21870:7;21925:26;49851:13;:29;;:86;;20107:1;20218:17;;20212:2;:23;21870:7;21925:26;49851:86;;;49896:13;49851:86;49824:113;;21468:2;21568:9;:29;;;;;;49986:16;:22;21822:2;22005:3;20107:1;20218:17;;20212:2;:23;21870:7;21925:26;21990:18;:38;;;;;;49962:15;:21;:46;49950:58;;21822:2;22005:3;20107:1;20218:17;;20212:2;:23;21870:7;21925:26;21990:18;:38;;;;;;21468:2;21568:9;:29;;;;;;50060:9;50047;50031:13;:25;:39;;;;;;50019:51;;50090:9;50083:16;;;;47320:2787;;;;:::o;31546:568::-;31806:12;31838:257;;;;;;;;31867:10;31838:257;;;;;;31903:13;31838:257;;;;;;31943:14;31838:257;;;;;;31984:12;31838:257;;;;;;32023:13;31838:257;;;;;;32063:1;31838:257;;;;;31806:300;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;31806:300:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31546:568;;;;;;:::o;35363:360::-;35492:27;35508:1;35511:2;35515:3;35492:15;:27::i;:::-;35571:2;:15;;;35532:9;:14;35542:3;35532:14;;;;;;;;;;;:29;;;:55;;;;;;;;;;;;;;;;;;35628:7;:12;35636:3;35628:12;;;;;;;;;;;;35598:9;:14;35608:3;35598:14;;;;;;;;;;;:27;;:42;;;;35695:1;:19;;;35651:9;:14;35661:3;35651:14;;;;;;;;;;;:34;;;:64;;;;;;;;;;;;;;;;;;35363:360;;;:::o;33514:706::-;33661:14;33751:24;;:::i;:::-;33786:30;33808:1;33811:4;33786:21;:30::i;:::-;33829:25;;:::i;:::-;33905:1;:18;;;33889:13;:11;:13::i;:::-;:34;33865:2;:21;;:58;;;;;33936:30;33952:4;33958:2;33962:3;33936:15;:30::i;:::-;34089:16;34063:4;:22;;:42;;;;;;;;;;;34164:4;:22;;;34145:16;34127:2;:15;;;:34;:59;;;;;;34118:68;;34206:6;34199:13;;;;33514:706;;;;;:::o;34228:1127::-;35190:8;35182:5;35158:2;:21;;;:29;:40;;;;;;35139:2;:15;;:60;;;;;35240:1;35216;:20;;;:25;35212:136;;35277:1;:20;;;35258:2;:15;;:39;;;;;;;;;;;35335:1;35312;:20;;:24;;;;;35212:136;34228:1127;;;:::o;61773:233::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;61773:233:0;;;;:::o;:::-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;61773:233:0;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://e8ca1574db7d79516b18fa84c1a49176fb4710c25bc7b393e406372d3a7c75ef
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.