false
false
- We're indexing this chain right now. Some of the counts may be inaccurate.

Contract Address Details

0xc5b016c5597D298Fe9eD22922CE290A048aA5B75

Contract Name
MasterChef
Creator
0x32c2b2–e25fd3 at 0xb52b1e–eec865
Balance
9.999999999999 ASTR ( )
Tokens
Fetching tokens...
Transactions
80,014 Transactions
Transfers
102,859 Transfers
Gas Used
7,241,218,471
Last Balance Update
3693916
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
MasterChef




Optimization enabled
false
Compiler version
v0.6.12+commit.27d51765




Verified at
2022-05-30T05:59:13.595692Z

Constructor Arguments

000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea4678

Arg [0] (address) : <a href=/astar/address/0xde2578edec4669ba7f41c5d5d2386300bcea4678>0xde2578edec4669ba7f41c5d5d2386300bcea4678</a>

              

contracts/MasterChef.sol

Sol2uml
new
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

import "boring-solidity/contracts/libraries/BoringMath.sol";
import "boring-solidity/contracts/BoringBatchable.sol";
import "boring-solidity/contracts/BoringOwnable.sol";
import "./libraries/SignedSafeMath.sol";
import "./interfaces/IRewarder.sol";

/// @notice The MasterChef contract gives out ARSW tokens for yield farming.
/// The amount of ARSW token reward decreases per month (215000 blocks).
/// For the detail, see the token economics documents: https://docs.arthswap.org/arsw-token
contract MasterChef is BoringOwnable, BoringBatchable {
    using BoringMath for uint256;
    using BoringMath128 for uint128;
    using BoringMath64 for uint64;
    using BoringERC20 for IERC20;
    using SignedSafeMath for int256;

    /// @notice Info of each MasterChef user.
    /// `amount` LP token amount the user has provided.
    /// `rewardDebt` The amount of ARSW entitled to the user.
    struct UserInfo {
        uint256 amount;
        int256 rewardDebt;
    }

    /// @notice Info of each MasterChef pool.
    /// `allocPoint` The amount of allocation points assigned to the pool.
    /// Also known as the amount of ARSW to distribute per block.
    struct PoolInfo {
        uint128 accARSWPerShare;
        uint64 lastRewardBlock;
        uint64 allocPoint;
    }

    /// @notice Address of ARSW contract.
    IERC20 public immutable ARSW;

    /// @notice Info of each MasterChef pool.
    PoolInfo[] public poolInfos;
    /// @notice Address of the LP token for each MasterChef pool.
    IERC20[] public lpTokens;
    /// @notice Address of each `IRewarder` contract in MasterChef.
    IRewarder[] public rewarders;

    /// @notice Info of each user that stakes LP tokens.
    mapping(uint256 => mapping(address => UserInfo)) public userInfos;
    /// @dev Total allocation points. Must be the sum of all allocation points in all pools.
    uint256 public totalAllocPoint;

    uint256 private constant ACC_ARSW_PRECISION = 1e12;
    /// @dev Block number of starting ARSW reward
    uint64 internal ARTHSWAP_ORIGIN_BLOCK = 242181;
    uint256 internal BLOCK_PER_PERIOD = 215000;
    /// @dev After MAX_PERIOD ARSW reward will end
    uint256 private constant MAX_PERIOD = 23;
    /// @notice Amount of ARSW reward per block in the first period
    uint256 public constant FIRST_PERIOD_REWERD_SUPPLY = 151629858171523000000;

    event Deposit(
        address indexed user,
        uint256 indexed pid,
        uint256 amount,
        address indexed to
    );
    event Withdraw(
        address indexed user,
        uint256 indexed pid,
        uint256 amount,
        address indexed to
    );
    event EmergencyWithdraw(
        address indexed user,
        uint256 indexed pid,
        uint256 amount,
        address indexed to
    );
    event Harvest(address indexed user, uint256 indexed pid, uint256 amount);
    event LogPoolAddition(
        uint256 indexed pid,
        uint256 allocPoint,
        IERC20 indexed lpToken,
        IRewarder indexed rewarder
    );
    event LogSetPool(
        uint256 indexed pid,
        uint256 allocPoint,
        IRewarder indexed rewarder,
        bool overwrite
    );
    event LogUpdatePool(
        uint256 indexed pid,
        uint64 lastRewardBlock,
        uint256 lpSupply,
        uint256 accARSWPerShare
    );
    event DepositARSW(uint256 blockNumber, uint256 amount);

    /// @param arswToken The ARSW token contract address.
    constructor(IERC20 arswToken) public {
        ARSW = arswToken;
    }

    /// @dev Modifier to check that the pool is valid
    modifier validPool(uint256 pid) {
        require(pid < poolInfos.length, "MasterChef: invalid pool id");
        _;
    }

    /// @notice Returns the number of MasterChef pools.
    function poolLength() external view returns (uint256 pools) {
        pools = poolInfos.length;
    }

    /// @dev Prevent duplicate LP token
    function checkPoolDuplicate(IERC20 lpToken) internal view {
        for (uint256 pid = 0; pid < lpTokens.length; pid++) {
            require(lpTokens[pid] != lpToken, "MasterChef: duplicate LP token");
        }
    }

    /// @notice Add a new LP to the pool. Can only be called by the owner.
    /// DO NOT add the same LP token more than once. Rewards will be messed up if you do.
    /// @param allocPoint AP of the new pool.
    /// @param lpToken Address of the LP ERC-20 token.
    /// @param rewarder Address of the rewarder delegate.
    function add(
        uint256 allocPoint,
        IERC20 lpToken,
        IRewarder rewarder
    ) external onlyOwner {
        checkPoolDuplicate(lpToken);
        updateAllPools();
        uint256 lastRewardBlock = block.number;
        totalAllocPoint = totalAllocPoint.add(allocPoint);
        lpTokens.push(lpToken);
        rewarders.push(rewarder);

        poolInfos.push(
            PoolInfo({
                allocPoint: allocPoint.to64(),
                lastRewardBlock: lastRewardBlock.to64(),
                accARSWPerShare: 0
            })
        );
        emit LogPoolAddition(
            lpTokens.length.sub(1),
            allocPoint,
            lpToken,
            rewarder
        );
    }

    /// @notice Update the given pool's ARSW allocation point and `IRewarder` contract. Can only be called by the owner.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param allocPoint New AP of the pool.
    /// @param rewarder Address of the rewarder delegate.
    /// @param overwrite True if rewarder should be `set`. Otherwise `rewarder` is ignored.
    function set(
        uint256 pid,
        uint256 allocPoint,
        IRewarder rewarder,
        bool overwrite
    ) external validPool(pid) onlyOwner {
        updateAllPools();
        totalAllocPoint = totalAllocPoint.sub(poolInfos[pid].allocPoint).add(
            allocPoint
        );
        poolInfos[pid].allocPoint = allocPoint.to64();
        if (overwrite) {
            rewarders[pid] = rewarder;
        }
        emit LogSetPool(
            pid,
            allocPoint,
            overwrite ? rewarder : rewarders[pid],
            overwrite
        );
    }

    /// @notice View function to see pending ARSW on frontend.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param user Address of user.
    /// @return pending ARSW reward for a given user.
    function pendingARSW(uint256 pid, address user)
        external
        view
        validPool(pid)
        returns (uint256 pending)
    {
        PoolInfo memory pool = poolInfos[pid];
        UserInfo storage userInfo = userInfos[pid][user];
        uint256 accARSWPerShare = pool.accARSWPerShare;
        uint256 lpSupply = lpTokens[pid].balanceOf(address(this));
        if (block.number > pool.lastRewardBlock && lpSupply != 0) {
            uint256 additionalAccARSWPerShare = calculateAdditionalAccARSWPerShare(
                    pool,
                    block.number,
                    lpSupply
                );
            accARSWPerShare = accARSWPerShare.add(additionalAccARSWPerShare);
        }
        pending = int256(
            userInfo.amount.mul(accARSWPerShare) / ACC_ARSW_PRECISION
        ).sub(userInfo.rewardDebt).toUInt256();
    }

    /// @notice Update reward variables for selected pools. Be careful of gas spending!
    /// @param pids Pool IDs of all to be updated. Make sure to update all active pools.
    function massUpdatePools(uint256[] calldata pids) external {
        uint256 len = pids.length;
        for (uint256 i = 0; i < len; ++i) {
            updatePool(pids[i]);
        }
    }

    /// @notice Update reward variables for all pools. Be careful of gas spending!
    function updateAllPools() public {
        for (uint256 pid = 0; pid < poolInfos.length; ++pid) {
            updatePool(pid);
        }
    }

    /// @notice get period of the given blockNumber.
    /// @param blockNumber block number
    /// @return period period of the blockNumber
    function getPeriod(uint256 blockNumber)
        public
        view
        returns (uint256 period)
    {
        require(
            blockNumber >= ARTHSWAP_ORIGIN_BLOCK,
            "MasterChef: blockNumber should be greater than ARTHSWAP_ORIGIN_BLOCK"
        );
        return blockNumber.sub(ARTHSWAP_ORIGIN_BLOCK) / BLOCK_PER_PERIOD;
    }

    /// @notice get max block number in the given period.
    /// @param period period
    /// @return periodMaxBlock max block number in the period
    function periodMax(uint256 period)
        public
        view
        returns (uint256 periodMaxBlock)
    {
        return
            ARTHSWAP_ORIGIN_BLOCK
                .add(BLOCK_PER_PERIOD.mul(period.add(1)).to64())
                .sub(1);
    }

    /// @notice Calculates and returns the `amount` of ARSW per block.
    function ARSWPerBlock(uint256 period) public pure returns (uint256 amount) {
        if (period > MAX_PERIOD) {
            return 0;
        }

        return FIRST_PERIOD_REWERD_SUPPLY.mul(9**period) / (10**period);
    }

    /// @notice calculate additional accARSWPerShare of the given pool
    /// @param pool pool
    /// @param lpSupply sum deposit amount of the LP token by the pool
    /// @return additionalAccARSWPerShare additional accARSWPerShare
    function calculateAdditionalAccARSWPerShare(
        PoolInfo memory pool,
        uint256 currentBlock,
        uint256 lpSupply
    ) internal view returns (uint256 additionalAccARSWPerShare) {
        require(lpSupply > 0, "MasterChef: lpSupply should be greater than 0");
        uint256 lastRewardBlockPeriod = getPeriod(pool.lastRewardBlock);
        uint256 currentPeriod = getPeriod(currentBlock);

        // ARSWReward, lastBlock are mutable variable
        uint256 ARSWReward = 0;
        uint256 lastBlock = pool.lastRewardBlock;
        for (
            uint256 period = lastRewardBlockPeriod;
            period <= currentPeriod;
            period++
        ) {
            if (period > MAX_PERIOD) break;
            if (currentBlock <= periodMax(period)) {
                ARSWReward = ARSWReward.add(
                    currentBlock.sub(lastBlock).mul(ARSWPerBlock(period)).mul(
                        pool.allocPoint
                    ) / totalAllocPoint
                );
            } else {
                ARSWReward = ARSWReward.add(
                    periodMax(period)
                        .sub(lastBlock)
                        .mul(ARSWPerBlock(period))
                        .mul(pool.allocPoint) / totalAllocPoint
                );
                lastBlock = periodMax(period);
            }
        }

        return ARSWReward.mul(ACC_ARSW_PRECISION) / lpSupply;
    }

    /// @notice Update reward variables of the given pool.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @return pool Returns the pool that was updated.
    function updatePool(uint256 pid)
        public
        validPool(pid)
        returns (PoolInfo memory pool)
    {
        pool = poolInfos[pid];
        if (block.number > pool.lastRewardBlock) {
            uint256 lpSupply = lpTokens[pid].balanceOf(address(this));
            if (lpSupply > 0) {
                uint256 additionalAccARSWPerShare = calculateAdditionalAccARSWPerShare(
                        pool,
                        block.number,
                        lpSupply
                    );
                pool.accARSWPerShare = pool.accARSWPerShare.add(
                    additionalAccARSWPerShare.to128()
                );
            }
            pool.lastRewardBlock = block.number.to64();
            poolInfos[pid] = pool;
            emit LogUpdatePool(
                pid,
                pool.lastRewardBlock,
                lpSupply,
                pool.accARSWPerShare
            );
        }
    }

    /// @notice Deposit LP tokens to MasterChef for ARSW allocation.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param amount LP token amount to deposit.
    /// @param to The receiver of `amount` deposit benefit.
    function deposit(
        uint256 pid,
        uint256 amount,
        address to
    ) external validPool(pid) {
        PoolInfo memory pool = updatePool(pid);
        UserInfo storage user = userInfos[pid][to];

        // Effects
        user.amount = user.amount.add(amount);
        user.rewardDebt = user.rewardDebt.add(
            int256(amount.mul(pool.accARSWPerShare) / ACC_ARSW_PRECISION)
        );

        emit Deposit(msg.sender, pid, amount, to);

        // Interactions
        IRewarder rewarder = rewarders[pid];
        if (address(rewarder) != address(0)) {
            rewarder.onARSWReward(pid, to, to, 0, user.amount);
        }
        lpTokens[pid].safeTransferFrom(msg.sender, address(this), amount);
    }

    /// @notice Withdraw LP tokens from MasterChef.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param amount LP token amount to withdraw.
    /// @param to Receiver of the LP tokens.
    function withdraw(
        uint256 pid,
        uint256 amount,
        address to
    ) external validPool(pid) {
        PoolInfo memory pool = updatePool(pid);
        UserInfo storage user = userInfos[pid][msg.sender];
        require(amount > 0, "amount should not be 0");
        // Effects
        user.rewardDebt = user.rewardDebt.sub(
            int256(amount.mul(pool.accARSWPerShare) / ACC_ARSW_PRECISION)
        );

        user.amount = user.amount.sub(amount);

        emit Withdraw(msg.sender, pid, amount, to);

        // Interactions
        IRewarder rewarder = rewarders[pid];
        if (address(rewarder) != address(0)) {
            rewarder.onARSWReward(pid, msg.sender, to, 0, user.amount);
        }

        lpTokens[pid].safeTransfer(to, amount);
    }

    /// @notice Harvest proceeds for transaction sender to `to`.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param to Receiver of ARSW rewards.
    function harvest(uint256 pid, address to) external validPool(pid) {
        PoolInfo memory pool = updatePool(pid);
        UserInfo storage user = userInfos[pid][msg.sender];
        int256 accumulatedARSW = int256(
            user.amount.mul(pool.accARSWPerShare) / ACC_ARSW_PRECISION
        );
        uint256 _pendingARSW = accumulatedARSW.sub(user.rewardDebt).toUInt256();

        // Effects
        user.rewardDebt = accumulatedARSW;

        emit Harvest(msg.sender, pid, _pendingARSW);

        // Interactions
        if (_pendingARSW != 0) {
            ARSW.safeTransfer(to, _pendingARSW);
        }

        IRewarder rewarder = rewarders[pid];
        if (address(rewarder) != address(0)) {
            rewarder.onARSWReward(
                pid,
                msg.sender,
                to,
                _pendingARSW,
                user.amount
            );
        }
    }

    /// @notice Withdraw LP tokens from MasterChef and harvest proceeds for transaction sender to `to`.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param amount LP token amount to withdraw.
    /// @param to Receiver of the LP tokens and ARSW rewards.
    function withdrawAndHarvest(
        uint256 pid,
        uint256 amount,
        address to
    ) external validPool(pid) {
        PoolInfo memory pool = updatePool(pid);
        UserInfo storage user = userInfos[pid][msg.sender];
        int256 accumulatedARSW = int256(
            user.amount.mul(pool.accARSWPerShare) / ACC_ARSW_PRECISION
        );
        uint256 _pendingARSW = accumulatedARSW.sub(user.rewardDebt).toUInt256();

        // Effects
        user.rewardDebt = accumulatedARSW.sub(
            int256(amount.mul(pool.accARSWPerShare) / ACC_ARSW_PRECISION)
        );
        user.amount = user.amount.sub(amount);

        emit Withdraw(msg.sender, pid, amount, to);
        emit Harvest(msg.sender, pid, _pendingARSW);

        // Interactions
        ARSW.safeTransfer(to, _pendingARSW);

        IRewarder rewarder = rewarders[pid];
        if (address(rewarder) != address(0)) {
            rewarder.onARSWReward(
                pid,
                msg.sender,
                to,
                _pendingARSW,
                user.amount
            );
        }

        lpTokens[pid].safeTransfer(to, amount);
    }

    /// @notice Withdraw without caring about rewards. EMERGENCY ONLY.
    /// @param pid The index of the pool. See `poolInfo`.
    /// @param to Receiver of the LP tokens.
    function emergencyWithdraw(uint256 pid, address to)
        external
        validPool(pid)
    {
        UserInfo storage user = userInfos[pid][msg.sender];
        uint256 amount = user.amount;
        user.amount = 0;
        user.rewardDebt = 0;

        IRewarder rewarder = rewarders[pid];

        emit EmergencyWithdraw(msg.sender, pid, amount, to);

        if (address(rewarder) != address(0)) {
            rewarder.onARSWReward(pid, msg.sender, to, 0, 0);
        }

        // Note: transfer can fail or succeed if `amount` is zero.
        lpTokens[pid].safeTransfer(to, amount);
    }

    /// @notice send ARSW to MasterChef contract for user's farming
    /// @param amount amount of ARSW to deposit
    function depositARSW(uint256 amount) external onlyOwner {
        require(amount > 0, "MasterChef: amount should be greater than 0");
        emit DepositARSW(block.number, amount);
        ARSW.safeTransferFrom(msg.sender, address(this), amount);
    }
}
        

boring-solidity/contracts/interfaces/IERC20.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /// @notice EIP 2612
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}
          

boring-solidity/contracts/BoringBatchable.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;

// solhint-disable avoid-low-level-calls
// solhint-disable no-inline-assembly

// Audit on 5-Jan-2021 by Keno and BoringCrypto
// WARNING!!!
// Combining BoringBatchable with msg.value can cause double spending issues
// https://www.paradigm.xyz/2021/08/two-rights-might-make-a-wrong/

import "./interfaces/IERC20.sol";

contract BaseBoringBatchable {
    /// @dev Helper function to extract a useful revert message from a failed call.
    /// If the returned data is malformed or not correctly abi encoded then this call can fail itself.
    function _getRevertMsg(bytes memory _returnData) internal pure returns (string memory) {
        // If the _res length is less than 68, then the transaction failed silently (without a revert message)
        if (_returnData.length < 68) return "Transaction reverted silently";

        assembly {
            // Slice the sighash.
            _returnData := add(_returnData, 0x04)
        }
        return abi.decode(_returnData, (string)); // All that remains is the revert string
    }

    /// @notice Allows batched call to self (this contract).
    /// @param calls An array of inputs for each call.
    /// @param revertOnFail If True then reverts after a failed call and stops doing further calls.
    // F1: External is ok here because this is the batch function, adding it to a batch makes no sense
    // F2: Calls in the batch may be payable, delegatecall operates in the same context, so each call in the batch has access to msg.value
    // C3: The length of the loop is fully under user control, so can't be exploited
    // C7: Delegatecall is only used on the same contract, so it's safe
    function batch(bytes[] calldata calls, bool revertOnFail) external payable {
        for (uint256 i = 0; i < calls.length; i++) {
            (bool success, bytes memory result) = address(this).delegatecall(calls[i]);
            if (!success && revertOnFail) {
                revert(_getRevertMsg(result));
            }
        }
    }
}

contract BoringBatchable is BaseBoringBatchable {
    /// @notice Call wrapper that performs `ERC20.permit` on `token`.
    /// Lookup `IERC20.permit`.
    // F6: Parameters can be used front-run the permit and the user's permit will fail (due to nonce or other revert)
    //     if part of a batch this could be used to grief once as the second call would not need the permit
    function permitToken(
        IERC20 token,
        address from,
        address to,
        uint256 amount,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        token.permit(from, to, amount, deadline, v, r, s);
    }
}
          

boring-solidity/contracts/BoringOwnable.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

// Audit on 5-Jan-2021 by Keno and BoringCrypto
// Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol + Claimable.sol
// Edited by BoringCrypto

contract BoringOwnableData {
    address public owner;
    address public pendingOwner;
}

contract BoringOwnable is BoringOwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /// @notice `owner` defaults to msg.sender on construction.
    constructor() public {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
    /// Can only be invoked by the current `owner`.
    /// @param newOwner Address of the new owner.
    /// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
    /// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise.
    function transferOwnership(
        address newOwner,
        bool direct,
        bool renounce
    ) public onlyOwner {
        if (direct) {
            // Checks
            require(newOwner != address(0) || renounce, "Ownable: zero address");

            // Effects
            emit OwnershipTransferred(owner, newOwner);
            owner = newOwner;
            pendingOwner = address(0);
        } else {
            // Effects
            pendingOwner = newOwner;
        }
    }

    /// @notice Needs to be called by `pendingOwner` to claim ownership.
    function claimOwnership() public {
        address _pendingOwner = pendingOwner;

        // Checks
        require(msg.sender == _pendingOwner, "Ownable: caller != pending owner");

        // Effects
        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

    /// @notice Only allows the `owner` to execute the function.
    modifier onlyOwner() {
        require(msg.sender == owner, "Ownable: caller is not the owner");
        _;
    }
}
          

boring-solidity/contracts/libraries/BoringERC20.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "../interfaces/IERC20.sol";

// solhint-disable avoid-low-level-calls

library BoringERC20 {
    bytes4 private constant SIG_SYMBOL = 0x95d89b41; // symbol()
    bytes4 private constant SIG_NAME = 0x06fdde03; // name()
    bytes4 private constant SIG_DECIMALS = 0x313ce567; // decimals()
    bytes4 private constant SIG_BALANCE_OF = 0x70a08231; // balanceOf(address)
    bytes4 private constant SIG_TRANSFER = 0xa9059cbb; // transfer(address,uint256)
    bytes4 private constant SIG_TRANSFER_FROM = 0x23b872dd; // transferFrom(address,address,uint256)

    function returnDataToString(bytes memory data) internal pure returns (string memory) {
        if (data.length >= 64) {
            return abi.decode(data, (string));
        } else if (data.length == 32) {
            uint8 i = 0;
            while (i < 32 && data[i] != 0) {
                i++;
            }
            bytes memory bytesArray = new bytes(i);
            for (i = 0; i < 32 && data[i] != 0; i++) {
                bytesArray[i] = data[i];
            }
            return string(bytesArray);
        } else {
            return "???";
        }
    }

    /// @notice Provides a safe ERC20.symbol version which returns '???' as fallback string.
    /// @param token The address of the ERC-20 token contract.
    /// @return (string) Token symbol.
    function safeSymbol(IERC20 token) internal view returns (string memory) {
        (bool success, bytes memory data) = address(token).staticcall(
            abi.encodeWithSelector(SIG_SYMBOL)
        );
        return success ? returnDataToString(data) : "???";
    }

    /// @notice Provides a safe ERC20.name version which returns '???' as fallback string.
    /// @param token The address of the ERC-20 token contract.
    /// @return (string) Token name.
    function safeName(IERC20 token) internal view returns (string memory) {
        (bool success, bytes memory data) = address(token).staticcall(
            abi.encodeWithSelector(SIG_NAME)
        );
        return success ? returnDataToString(data) : "???";
    }

    /// @notice Provides a safe ERC20.decimals version which returns '18' as fallback value.
    /// @param token The address of the ERC-20 token contract.
    /// @return (uint8) Token decimals.
    function safeDecimals(IERC20 token) internal view returns (uint8) {
        (bool success, bytes memory data) = address(token).staticcall(
            abi.encodeWithSelector(SIG_DECIMALS)
        );
        return success && data.length == 32 ? abi.decode(data, (uint8)) : 18;
    }

    /// @notice Provides a gas-optimized balance check to avoid a redundant extcodesize check in addition to the returndatasize check.
    /// @param token The address of the ERC-20 token.
    /// @param to The address of the user to check.
    /// @return amount The token amount.
    function safeBalanceOf(IERC20 token, address to) internal view returns (uint256 amount) {
        (bool success, bytes memory data) = address(token).staticcall(
            abi.encodeWithSelector(SIG_BALANCE_OF, to)
        );
        require(success && data.length >= 32, "BoringERC20: BalanceOf failed");
        amount = abi.decode(data, (uint256));
    }

    /// @notice Provides a safe ERC20.transfer version for different ERC-20 implementations.
    /// Reverts on a failed transfer.
    /// @param token The address of the ERC-20 token.
    /// @param to Transfer tokens to.
    /// @param amount The token amount.
    function safeTransfer(
        IERC20 token,
        address to,
        uint256 amount
    ) internal {
        (bool success, bytes memory data) = address(token).call(
            abi.encodeWithSelector(SIG_TRANSFER, to, amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "BoringERC20: Transfer failed"
        );
    }

    /// @notice Provides a safe ERC20.transferFrom version for different ERC-20 implementations.
    /// Reverts on a failed transfer.
    /// @param token The address of the ERC-20 token.
    /// @param from Transfer tokens from.
    /// @param to Transfer tokens to.
    /// @param amount The token amount.
    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 amount
    ) internal {
        (bool success, bytes memory data) = address(token).call(
            abi.encodeWithSelector(SIG_TRANSFER_FROM, from, to, amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "BoringERC20: TransferFrom failed"
        );
    }
}
          

boring-solidity/contracts/libraries/BoringMath.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

/// @notice A library for performing overflow-/underflow-safe math,
/// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math).
library BoringMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        require(b == 0 || (c = a * b) / b == a, "BoringMath: Mul Overflow");
    }

    function to128(uint256 a) internal pure returns (uint128 c) {
        require(a <= uint128(-1), "BoringMath: uint128 Overflow");
        c = uint128(a);
    }

    function to64(uint256 a) internal pure returns (uint64 c) {
        require(a <= uint64(-1), "BoringMath: uint64 Overflow");
        c = uint64(a);
    }

    function to32(uint256 a) internal pure returns (uint32 c) {
        require(a <= uint32(-1), "BoringMath: uint32 Overflow");
        c = uint32(a);
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint128.
library BoringMath128 {
    function add(uint128 a, uint128 b) internal pure returns (uint128 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint128 a, uint128 b) internal pure returns (uint128 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint64.
library BoringMath64 {
    function add(uint64 a, uint64 b) internal pure returns (uint64 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint64 a, uint64 b) internal pure returns (uint64 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}

/// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32.
library BoringMath32 {
    function add(uint32 a, uint32 b) internal pure returns (uint32 c) {
        require((c = a + b) >= b, "BoringMath: Add Overflow");
    }

    function sub(uint32 a, uint32 b) internal pure returns (uint32 c) {
        require((c = a - b) <= a, "BoringMath: Underflow");
    }
}
          

contracts/interfaces/IRewarder.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;
import "boring-solidity/contracts/libraries/BoringERC20.sol";

interface IRewarder {
    using BoringERC20 for IERC20;

    function onARSWReward(
        uint256 pid,
        address user,
        address recipient,
        uint256 arswAmount,
        uint256 newLpAmount
    ) external;

    function pendingTokens(
        uint256 pid,
        address user,
        uint256 arswAmount
    ) external view returns (IERC20[] memory, uint256[] memory);
}
          

contracts/libraries/SignedSafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12;

library SignedSafeMath {
    int256 private constant _INT256_MIN = -2**255;

    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        // 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;
        }

        require(
            !(a == -1 && b == _INT256_MIN),
            "SignedSafeMath: multiplication overflow"
        );

        int256 c = a * b;
        require(c / a == b, "SignedSafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two signed 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(int256 a, int256 b) internal pure returns (int256) {
        require(b != 0, "SignedSafeMath: division by zero");
        require(
            !(b == -1 && a == _INT256_MIN),
            "SignedSafeMath: division overflow"
        );

        int256 c = a / b;

        return c;
    }

    /**
     * @dev Returns the subtraction of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require(
            (b >= 0 && c <= a) || (b < 0 && c > a),
            "SignedSafeMath: subtraction overflow"
        );

        return c;
    }

    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require(
            (b >= 0 && c >= a) || (b < 0 && c < a),
            "SignedSafeMath: addition overflow"
        );

        return c;
    }

    function toUInt256(int256 a) internal pure returns (uint256) {
        require(a >= 0, "Integer < 0");
        return uint256(a);
    }
}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"arswToken","internalType":"contract IERC20"}]},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"address","name":"to","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"DepositARSW","inputs":[{"type":"uint256","name":"blockNumber","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencyWithdraw","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"address","name":"to","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Harvest","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LogPoolAddition","inputs":[{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"allocPoint","internalType":"uint256","indexed":false},{"type":"address","name":"lpToken","internalType":"contract IERC20","indexed":true},{"type":"address","name":"rewarder","internalType":"contract IRewarder","indexed":true}],"anonymous":false},{"type":"event","name":"LogSetPool","inputs":[{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"allocPoint","internalType":"uint256","indexed":false},{"type":"address","name":"rewarder","internalType":"contract IRewarder","indexed":true},{"type":"bool","name":"overwrite","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"LogUpdatePool","inputs":[{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint64","name":"lastRewardBlock","internalType":"uint64","indexed":false},{"type":"uint256","name":"lpSupply","internalType":"uint256","indexed":false},{"type":"uint256","name":"accARSWPerShare","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Withdraw","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"pid","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"address","name":"to","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"ARSW","inputs":[]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"amount","internalType":"uint256"}],"name":"ARSWPerBlock","inputs":[{"type":"uint256","name":"period","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"FIRST_PERIOD_REWERD_SUPPLY","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"add","inputs":[{"type":"uint256","name":"allocPoint","internalType":"uint256"},{"type":"address","name":"lpToken","internalType":"contract IERC20"},{"type":"address","name":"rewarder","internalType":"contract IRewarder"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"batch","inputs":[{"type":"bytes[]","name":"calls","internalType":"bytes[]"},{"type":"bool","name":"revertOnFail","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"depositARSW","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyWithdraw","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"period","internalType":"uint256"}],"name":"getPeriod","inputs":[{"type":"uint256","name":"blockNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"harvest","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"lpTokens","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"massUpdatePools","inputs":[{"type":"uint256[]","name":"pids","internalType":"uint256[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"pending","internalType":"uint256"}],"name":"pendingARSW","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pendingOwner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"periodMaxBlock","internalType":"uint256"}],"name":"periodMax","inputs":[{"type":"uint256","name":"period","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"permitToken","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"},{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint128","name":"accARSWPerShare","internalType":"uint128"},{"type":"uint64","name":"lastRewardBlock","internalType":"uint64"},{"type":"uint64","name":"allocPoint","internalType":"uint64"}],"name":"poolInfos","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"pools","internalType":"uint256"}],"name":"poolLength","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IRewarder"}],"name":"rewarders","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"set","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"uint256","name":"allocPoint","internalType":"uint256"},{"type":"address","name":"rewarder","internalType":"contract IRewarder"},{"type":"bool","name":"overwrite","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalAllocPoint","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"},{"type":"bool","name":"direct","internalType":"bool"},{"type":"bool","name":"renounce","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateAllPools","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"tuple","name":"pool","internalType":"struct MasterChef.PoolInfo","components":[{"type":"uint128","name":"accARSWPerShare","internalType":"uint128"},{"type":"uint64","name":"lastRewardBlock","internalType":"uint64"},{"type":"uint64","name":"allocPoint","internalType":"uint64"}]}],"name":"updatePool","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"int256","name":"rewardDebt","internalType":"int256"}],"name":"userInfos","inputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAndHarvest","inputs":[{"type":"uint256","name":"pid","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"address","name":"to","internalType":"address"}]}]
              

Contract Creation Code

0x60a06040526203b205600760006101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550620347d86008553480156200004457600080fd5b5060405162004f4638038062004f4683398181016040528101906200006a91906200015a565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050620001e8565b6000815190506200015481620001ce565b92915050565b6000602082840312156200016d57600080fd5b60006200017d8482850162000143565b91505092915050565b60006200019382620001ae565b9050919050565b6000620001a78262000186565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620001d9816200019a565b8114620001e557600080fd5b50565b60805160601c614d316200021560003980610e445280611a4f528061269752806129885250614d316000f3fe6080604052600436106101c25760003560e01c806382e3fcf6116100f7578063b34bed8211610095578063d1abb90711610064578063d1abb90714610651578063d2423b511461067a578063e30c397814610696578063fcf8770f146106c1576101c2565b8063b34bed8214610595578063b9ec7d74146105d2578063c0105038146105e9578063c7df1a9514610614576101c2565b80638da5cb5b116100d15780638da5cb5b146104ed5780638dbdbe6d146105185780638dc3a97d14610541578063ab7de0981461056c576101c2565b806382e3fcf61461045d578063873708461461048657806388bba42f146104c4576101c2565b80632f940c701161016457806351eb05a61161013e57806351eb05a61461038f57806357a5b58c146103cc578063689d84e4146103f55780637c516e9414610434576101c2565b80632f940c70146103125780634b2c07061461033b5780634e71e0c814610378576101c2565b80630d1f64a8116101a05780630d1f64a81461024457806317caf6f11461028157806318fccc76146102ac5780631bb5e2dc146102d5576101c2565b8063078dfbe7146101c7578063081e3eda146101f05780630ad58d2f1461021b575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061389c565b6106fe565b005b3480156101fc57600080fd5b50610205610952565b60405161021291906147ad565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d9190613b81565b61095f565b005b34801561025057600080fd5b5061026b60048036038101906102669190613aa4565b610c7f565b60405161027891906147ad565b60405180910390f35b34801561028d57600080fd5b50610296610cc6565b6040516102a391906147ad565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190613af6565b610ccc565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613aa4565b610f7b565b60405161030991906144a3565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190613af6565b610fb7565b005b34801561034757600080fd5b50610362600480360381019061035d9190613aa4565b611225565b60405161036f91906147ad565b60405180910390f35b34801561038457600080fd5b5061038d6112cf565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613aa4565b611463565b6040516103c3919061475b565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613943565b611805565b005b34801561040157600080fd5b5061041c60048036038101906104179190613aa4565b611845565b60405161042b93929190614776565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906139b1565b6118bc565b005b34801561046957600080fd5b50610484600480360381019061047f9190613aa4565b61193d565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613af6565b611a97565b6040516104bb92919061493d565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613bd0565b611ac8565b005b3480156104f957600080fd5b50610502611d4c565b60405161050f91906143b9565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613b81565b611d70565b005b34801561054d57600080fd5b5061055661204f565b60405161056391906147ad565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613b32565b61205c565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190613af6565b61237d565b6040516105c991906147ad565b60405180910390f35b3480156105de57600080fd5b506105e761266d565b005b3480156105f557600080fd5b506105fe612695565b60405161060b91906144a3565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613aa4565b6126b9565b60405161064891906147ad565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613b81565b61274b565b005b610694600480360381019061068f91906138eb565b612b21565b005b3480156106a257600080fd5b506106ab612c25565b6040516106b891906143b9565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613aa4565b612c4b565b6040516106f591906144be565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107839061465b565b60405180910390fd5b811561090b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107cb5750805b61080a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108019061459b565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061094d565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6000600280549050905090565b8260028054905081106109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e906145db565b60405180910390fd5b6109af6136b0565b6109b885611463565b905060006005600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008511610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a489061463b565b60405180910390fd5b610a9e64e8d4a51000610a8384600001516fffffffffffffffffffffffffffffffff1688612c8790919063ffffffff16565b81610a8a57fe5b048260010154612ce990919063ffffffff16565b8160010181905550610abd858260000154612d6190919063ffffffff16565b81600001819055508373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec213288604051610b2391906147ad565b60405180910390a4600060048781548110610b3a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c14578073ffffffffffffffffffffffffffffffffffffffff1663c5317e21883388600087600001546040518663ffffffff1660e01b8152600401610be195949392919061481b565b600060405180830381600087803b158015610bfb57600080fd5b505af1158015610c0f573d6000803e3d6000fd5b505050505b610c76858760038a81548110610c2657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b50505050505050565b60006017821115610c935760009050610cc1565b81600a0a610cb68360090a6808384978a3387d66c0612c8790919063ffffffff16565b81610cbd57fe5b0490505b919050565b60065481565b816002805490508110610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906145db565b60405180910390fd5b610d1c6136b0565b610d2584611463565b905060006005600086815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600064e8d4a51000610db084600001516fffffffffffffffffffffffffffffffff168460000154612c8790919063ffffffff16565b81610db757fe5b0490506000610ddb610dd6846001015484612ce990919063ffffffff16565b612f07565b9050818360010181905550863373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae066092495483604051610e2d91906147ad565b60405180910390a360008114610e8957610e8886827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b5b600060048881548110610e9857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f71578073ffffffffffffffffffffffffffffffffffffffff1663c5317e2189338a8689600001546040518663ffffffff1660e01b8152600401610f3e95949392919061486e565b600060405180830381600087803b158015610f5857600080fd5b505af1158015610f6c573d6000803e3d6000fd5b505050505b5050505050505050565b60038181548110610f8857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b816002805490508110610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906145db565b60405180910390fd5b60006005600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555060006004868154811061107f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f2cac5e20e1541d836381527a43f651851e302817b71dc8e810284e69210c1c6b8560405161110a91906147ad565b60405180910390a4600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111bb578073ffffffffffffffffffffffffffffffffffffffff1663c5317e218733886000806040518663ffffffff1660e01b81526004016111889594939291906147c8565b600060405180830381600087803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050505b61121d8583600389815481106111cd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b505050505050565b6000600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1682101561128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061461b565b60405180910390fd5b6008546112c0600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1684612d6190919063ffffffff16565b816112c757fe5b049050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b9061467b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61146b6136b0565b8160028054905081106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906145db565b60405180910390fd5b600283815481106114c057fe5b906000526020600020016040518060600160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150816020015167ffffffffffffffff164311156117ff576000600384815481106115aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161160d91906143b9565b60206040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190613acd565b905060008111156116d9576000611675844384612f54565b90506116a86116838261312b565b85600001516fffffffffffffffffffffffffffffffff166131aa90919063ffffffff16565b84600001906fffffffffffffffffffffffffffffffff1690816fffffffffffffffffffffffffffffffff1681525050505b6116e24361321e565b836020019067ffffffffffffffff16908167ffffffffffffffff1681525050826002858154811061170f57fe5b9060005260206000200160008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050837f0fc9545022a542541ad085d091fb09a2ab36fee366a4576ab63714ea907ad35384602001518386600001516040516117f59392919061498f565b60405180910390a2505b50919050565b600082829050905060005b8181101561183f5761183384848381811061182757fe5b90506020020135611463565b50806001019050611810565b50505050565b6002818154811061185257fe5b906000526020600020016000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a900467ffffffffffffffff16908060000160189054906101000a900467ffffffffffffffff16905083565b8773ffffffffffffffffffffffffffffffffffffffff1663d505accf888888888888886040518863ffffffff1660e01b8152600401611901979695949392919061440b565b600060405180830381600087803b15801561191b57600080fd5b505af115801561192f573d6000803e3d6000fd5b505050505050505050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061465b565b60405180910390fd5b60008111611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a059061455b565b60405180910390fd5b7f46e9b6acb1b72974de7f77a937231a6e3cb50847d64e349659c5fa39bcaf9c2b4382604051611a3f929190614966565b60405180910390a1611a943330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613295909392919063ffffffff16565b50565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b836002805490508110611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906145db565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b959061465b565b60405180910390fd5b611ba661266d565b611c0584611bf760028881548110611bba57fe5b9060005260206000200160000160189054906101000a900467ffffffffffffffff1667ffffffffffffffff16600654612d6190919063ffffffff16565b6133ee90919063ffffffff16565b600681905550611c148461321e565b60028681548110611c2157fe5b9060005260206000200160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508115611cb1578260048681548110611c6857fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81611cf35760048581548110611cc357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cf5565b825b73ffffffffffffffffffffffffffffffffffffffff16857f95895a6ab1df54420d241b55243258a33e61b2194db66c1179ec521aae8e18658685604051611d3d929190614914565b60405180910390a35050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b826002805490508110611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906145db565b60405180910390fd5b611dc06136b0565b611dc985611463565b905060006005600087815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e368582600001546133ee90919063ffffffff16565b8160000181905550611e8b64e8d4a51000611e7084600001516fffffffffffffffffffffffffffffffff1688612c8790919063ffffffff16565b81611e7757fe5b04826001015461343e90919063ffffffff16565b81600101819055508373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b4788604051611ef191906147ad565b60405180910390a4600060048781548110611f0857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fe2578073ffffffffffffffffffffffffffffffffffffffff1663c5317e21888788600087600001546040518663ffffffff1660e01b8152600401611faf9594939291906148c1565b600060405180830381600087803b158015611fc957600080fd5b505af1158015611fdd573d6000803e3d6000fd5b505050505b61204633308860038b81548110611ff557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613295909392919063ffffffff16565b50505050505050565b6808384978a3387d66c081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e19061465b565b60405180910390fd5b6120f3826134b6565b6120fb61266d565b6000439050612115846006546133ee90919063ffffffff16565b6006819055506003839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002604051806060016040528060006fffffffffffffffffffffffffffffffff1681526020016122108461321e565b67ffffffffffffffff1681526020016122288761321e565b67ffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166123406001600380549050612d6190919063ffffffff16565b7f81ee0f8c5c46e2cb41984886f77a84181724abb86c32a5f6de539b07509d45e58760405161236f91906147ad565b60405180910390a450505050565b60008260028054905081106123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906145db565b60405180910390fd5b6123cf6136b0565b600285815481106123dc57fe5b906000526020600020016040518060600160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681525050905060006005600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082600001516fffffffffffffffffffffffffffffffff16905060006003888154811061251f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161258291906143b9565b60206040518083038186803b15801561259a57600080fd5b505afa1580156125ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d29190613acd565b9050836020015167ffffffffffffffff16431180156125f2575060008114155b1561261d576000612604854384612f54565b905061261981846133ee90919063ffffffff16565b9250505b61266061265b846001015464e8d4a51000612645868860000154612c8790919063ffffffff16565b8161264c57fe5b04612ce990919063ffffffff16565b612f07565b9550505050505092915050565b60005b6002805490508110156126925761268681611463565b50806001019050612670565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061273a60016127226126f36126ee6126dd6001886133ee90919063ffffffff16565b600854612c8790919063ffffffff16565b61321e565b600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1661357d90919063ffffffff16565b67ffffffffffffffff166135e190919063ffffffff16565b67ffffffffffffffff169050919050565b826002805490508110612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a906145db565b60405180910390fd5b61279b6136b0565b6127a485611463565b905060006005600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600064e8d4a5100061282f84600001516fffffffffffffffffffffffffffffffff168460000154612c8790919063ffffffff16565b8161283657fe5b049050600061285a612855846001015484612ce990919063ffffffff16565b612f07565b90506128a564e8d4a5100061288e86600001516fffffffffffffffffffffffffffffffff168a612c8790919063ffffffff16565b8161289557fe5b0483612ce990919063ffffffff16565b83600101819055506128c4878460000154612d6190919063ffffffff16565b83600001819055508573ffffffffffffffffffffffffffffffffffffffff16883373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec21328a60405161292a91906147ad565b60405180910390a4873373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae06609249548360405161297991906147ad565b60405180910390a36129cc86827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b6000600489815481106129db57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ab4578073ffffffffffffffffffffffffffffffffffffffff1663c5317e218a338a8689600001546040518663ffffffff1660e01b8152600401612a8195949392919061486e565b600060405180830381600087803b158015612a9b57600080fd5b505af1158015612aaf573d6000803e3d6000fd5b505050505b612b16878960038c81548110612ac657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b505050505050505050565b60005b83839050811015612c1f57600060603073ffffffffffffffffffffffffffffffffffffffff16868685818110612b5657fe5b9050602002810190612b6891906149c6565b604051612b76929190614389565b600060405180830381855af49150503d8060008114612bb1576040519150601f19603f3d011682016040523d82523d6000602084013e612bb6565b606091505b509150915081158015612bc65750835b15612c1057612bd481613645565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0791906144d9565b60405180910390fd5b50508080600101915050612b24565b50505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048181548110612c5857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080821480612ca45750828283850292508281612ca157fe5b04145b612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda9061471b565b60405180910390fd5b92915050565b600080828403905060008312158015612d025750838113155b80612d185750600083128015612d1757508381135b5b612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e906146bb565b60405180910390fd5b8091505092915050565b6000828284039150811115612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da2906144fb565b60405180910390fd5b92915050565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401612de792919061447a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051612e5191906143a2565b6000604051808303816000865af19150503d8060008114612e8e576040519150601f19603f3d011682016040523d82523d6000602084013e612e93565b606091505b5091509150818015612ec15750600081511480612ec0575080806020019051810190612ebf9190613988565b5b5b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef79061453b565b60405180910390fd5b5050505050565b600080821215612f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f439061451b565b60405180910390fd5b819050919050565b6000808211612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f906146fb565b60405180910390fd5b6000612fb1856020015167ffffffffffffffff16611225565b90506000612fbe85611225565b9050600080876020015167ffffffffffffffff16905060008490505b8381116130fc576017811115612fef576130fc565b612ff8816126b9565b881161306f576130686006546130518b6040015167ffffffffffffffff1661304361302286610c7f565b613035888f612d6190919063ffffffff16565b612c8790919063ffffffff16565b612c8790919063ffffffff16565b8161305857fe5b04846133ee90919063ffffffff16565b92506130ef565b6130e16006546130ca8b6040015167ffffffffffffffff166130bc61309386610c7f565b6130ae886130a0896126b9565b612d6190919063ffffffff16565b612c8790919063ffffffff16565b612c8790919063ffffffff16565b816130d157fe5b04846133ee90919063ffffffff16565b92506130ec816126b9565b91505b8080600101915050612fda565b508561311664e8d4a5100084612c8790919063ffffffff16565b8161311d57fe5b049450505050509392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff168211156131a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613199906145bb565b60405180910390fd5b819050919050565b6000816fffffffffffffffffffffffffffffffff168284019150816fffffffffffffffffffffffffffffffff161015613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f906145fb565b60405180910390fd5b92915050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff67ffffffffffffffff1682111561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061469b565b60405180910390fd5b819050919050565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b8686866040516024016132cd939291906143d4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161333791906143a2565b6000604051808303816000865af19150503d8060008114613374576040519150601f19603f3d011682016040523d82523d6000602084013e613379565b606091505b50915091508180156133a757506000815114806133a65750808060200190518101906133a59190613988565b5b5b6133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd906146db565b60405180910390fd5b505050505050565b6000818284019150811015613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342f906145fb565b60405180910390fd5b92915050565b6000808284019050600083121580156134575750838112155b8061346d575060008312801561346c57508381125b5b6134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a39061457b565b60405180910390fd5b8091505092915050565b60005b600380549050811015613579578173ffffffffffffffffffffffffffffffffffffffff16600382815481106134ea57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639061473b565b60405180910390fd5b80806001019150506134b9565b5050565b60008167ffffffffffffffff1682840191508167ffffffffffffffff1610156135db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d2906145fb565b60405180910390fd5b92915050565b60008267ffffffffffffffff1682840391508167ffffffffffffffff16111561363f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613636906144fb565b60405180910390fd5b92915050565b606060448251101561368e576040518060400160405280601d81526020017f5472616e73616374696f6e2072657665727465642073696c656e746c7900000081525090506136ab565b600482019150818060200190518101906136a89190613a63565b90505b919050565b604051806060016040528060006fffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff1681525090565b60008135905061370681614c5a565b92915050565b60008083601f84011261371e57600080fd5b8235905067ffffffffffffffff81111561373757600080fd5b60208301915083602082028301111561374f57600080fd5b9250929050565b60008083601f84011261376857600080fd5b8235905067ffffffffffffffff81111561378157600080fd5b60208301915083602082028301111561379957600080fd5b9250929050565b6000813590506137af81614c71565b92915050565b6000815190506137c481614c71565b92915050565b6000813590506137d981614c88565b92915050565b6000813590506137ee81614c9f565b92915050565b60008135905061380381614cb6565b92915050565b600082601f83011261381a57600080fd5b815161382d61382882614a4a565b614a1d565b9150808252602083016020830185838301111561384957600080fd5b613854838284614c16565b50505092915050565b60008135905061386c81614ccd565b92915050565b60008151905061388181614ccd565b92915050565b60008135905061389681614ce4565b92915050565b6000806000606084860312156138b157600080fd5b60006138bf868287016136f7565b93505060206138d0868287016137a0565b92505060406138e1868287016137a0565b9150509250925092565b60008060006040848603121561390057600080fd5b600084013567ffffffffffffffff81111561391a57600080fd5b6139268682870161370c565b93509350506020613939868287016137a0565b9150509250925092565b6000806020838503121561395657600080fd5b600083013567ffffffffffffffff81111561397057600080fd5b61397c85828601613756565b92509250509250929050565b60006020828403121561399a57600080fd5b60006139a8848285016137b5565b91505092915050565b600080600080600080600080610100898b0312156139ce57600080fd5b60006139dc8b828c016137df565b98505060206139ed8b828c016136f7565b97505060406139fe8b828c016136f7565b9650506060613a0f8b828c0161385d565b9550506080613a208b828c0161385d565b94505060a0613a318b828c01613887565b93505060c0613a428b828c016137ca565b92505060e0613a538b828c016137ca565b9150509295985092959890939650565b600060208284031215613a7557600080fd5b600082015167ffffffffffffffff811115613a8f57600080fd5b613a9b84828501613809565b91505092915050565b600060208284031215613ab657600080fd5b6000613ac48482850161385d565b91505092915050565b600060208284031215613adf57600080fd5b6000613aed84828501613872565b91505092915050565b60008060408385031215613b0957600080fd5b6000613b178582860161385d565b9250506020613b28858286016136f7565b9150509250929050565b600080600060608486031215613b4757600080fd5b6000613b558682870161385d565b9350506020613b66868287016137df565b9250506040613b77868287016137f4565b9150509250925092565b600080600060608486031215613b9657600080fd5b6000613ba48682870161385d565b9350506020613bb58682870161385d565b9250506040613bc6868287016136f7565b9150509250925092565b60008060008060808587031215613be657600080fd5b6000613bf48782880161385d565b9450506020613c058782880161385d565b9350506040613c16878288016137f4565b9250506060613c27878288016137a0565b91505092959194509250565b613c3c81614b65565b82525050565b613c4b81614aa8565b82525050565b613c5a81614aba565b82525050565b613c6981614ac6565b82525050565b6000613c7b8385614a8c565b9350613c88838584614c07565b82840190509392505050565b6000613c9f82614a76565b613ca98185614a8c565b9350613cb9818560208601614c16565b80840191505092915050565b613cce81614b77565b82525050565b613cdd81614b9b565b82525050565b613cec81614af4565b82525050565b613cfb81614bbf565b82525050565b6000613d0c82614a81565b613d168185614a97565b9350613d26818560208601614c16565b613d2f81614c49565b840191505092915050565b6000613d47601583614a97565b91507f426f72696e674d6174683a20556e646572666c6f7700000000000000000000006000830152602082019050919050565b6000613d87600b83614a97565b91507f496e7465676572203c20300000000000000000000000000000000000000000006000830152602082019050919050565b6000613dc7601c83614a97565b91507f426f72696e6745524332303a205472616e73666572206661696c6564000000006000830152602082019050919050565b6000613e07602b83614a97565b91507f4d6173746572436865663a20616d6f756e742073686f756c642062652067726560008301527f61746572207468616e20300000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6d602183614a97565b91507f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ed3601583614a97565b91507f4f776e61626c653a207a65726f206164647265737300000000000000000000006000830152602082019050919050565b6000613f13601c83614a97565b91507f426f72696e674d6174683a2075696e74313238204f766572666c6f77000000006000830152602082019050919050565b6000613f53601b83614a97565b91507f4d6173746572436865663a20696e76616c696420706f6f6c20696400000000006000830152602082019050919050565b6000613f93601883614a97565b91507f426f72696e674d6174683a20416464204f766572666c6f7700000000000000006000830152602082019050919050565b6000613fd3604483614a97565b91507f4d6173746572436865663a20626c6f636b4e756d6265722073686f756c64206260008301527f652067726561746572207468616e2041525448535741505f4f524947494e5f4260208301527f4c4f434b000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061405f601683614a97565b91507f616d6f756e742073686f756c64206e6f742062652030000000000000000000006000830152602082019050919050565b600061409f602083614a97565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140df602083614a97565b91507f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e65726000830152602082019050919050565b600061411f601b83614a97565b91507f426f72696e674d6174683a2075696e743634204f766572666c6f7700000000006000830152602082019050919050565b600061415f602483614a97565b91507f5369676e6564536166654d6174683a207375627472616374696f6e206f76657260008301527f666c6f77000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141c5602083614a97565b91507f426f72696e6745524332303a205472616e7366657246726f6d206661696c65646000830152602082019050919050565b6000614205602d83614a97565b91507f4d6173746572436865663a206c70537570706c792073686f756c64206265206760008301527f726561746572207468616e2030000000000000000000000000000000000000006020830152604082019050919050565b600061426b601883614a97565b91507f426f72696e674d6174683a204d756c204f766572666c6f7700000000000000006000830152602082019050919050565b60006142ab601e83614a97565b91507f4d6173746572436865663a206475706c6963617465204c5020746f6b656e00006000830152602082019050919050565b6060820160008201516142f46000850182614320565b506020820151614307602085018261435c565b50604082015161431a604085018261435c565b50505050565b61432981614afe565b82525050565b61433881614afe565b82525050565b61434781614bd1565b82525050565b61435681614b3a565b82525050565b61436581614b44565b82525050565b61437481614b44565b82525050565b61438381614b58565b82525050565b6000614396828486613c6f565b91508190509392505050565b60006143ae8284613c94565b915081905092915050565b60006020820190506143ce6000830184613c42565b92915050565b60006060820190506143e96000830186613c42565b6143f66020830185613c42565b614403604083018461434d565b949350505050565b600060e082019050614420600083018a613c42565b61442d6020830189613c42565b61443a604083018861434d565b614447606083018761434d565b614454608083018661437a565b61446160a0830185613c60565b61446e60c0830184613c60565b98975050505050505050565b600060408201905061448f6000830185613c42565b61449c602083018461434d565b9392505050565b60006020820190506144b86000830184613cc5565b92915050565b60006020820190506144d36000830184613cd4565b92915050565b600060208201905081810360008301526144f38184613d01565b905092915050565b6000602082019050818103600083015261451481613d3a565b9050919050565b6000602082019050818103600083015261453481613d7a565b9050919050565b6000602082019050818103600083015261455481613dba565b9050919050565b6000602082019050818103600083015261457481613dfa565b9050919050565b6000602082019050818103600083015261459481613e60565b9050919050565b600060208201905081810360008301526145b481613ec6565b9050919050565b600060208201905081810360008301526145d481613f06565b9050919050565b600060208201905081810360008301526145f481613f46565b9050919050565b6000602082019050818103600083015261461481613f86565b9050919050565b6000602082019050818103600083015261463481613fc6565b9050919050565b6000602082019050818103600083015261465481614052565b9050919050565b6000602082019050818103600083015261467481614092565b9050919050565b60006020820190508181036000830152614694816140d2565b9050919050565b600060208201905081810360008301526146b481614112565b9050919050565b600060208201905081810360008301526146d481614152565b9050919050565b600060208201905081810360008301526146f4816141b8565b9050919050565b60006020820190508181036000830152614714816141f8565b9050919050565b600060208201905081810360008301526147348161425e565b9050919050565b600060208201905081810360008301526147548161429e565b9050919050565b600060608201905061477060008301846142de565b92915050565b600060608201905061478b600083018661432f565b614798602083018561436b565b6147a5604083018461436b565b949350505050565b60006020820190506147c2600083018461434d565b92915050565b600060a0820190506147dd600083018861434d565b6147ea6020830187613c33565b6147f76040830186613c42565b6148046060830185613cf2565b6148116080830184613cf2565b9695505050505050565b600060a082019050614830600083018861434d565b61483d6020830187613c33565b61484a6040830186613c42565b6148576060830185613cf2565b614864608083018461434d565b9695505050505050565b600060a082019050614883600083018861434d565b6148906020830187613c33565b61489d6040830186613c42565b6148aa606083018561434d565b6148b7608083018461434d565b9695505050505050565b600060a0820190506148d6600083018861434d565b6148e36020830187613c42565b6148f06040830186613c42565b6148fd6060830185613cf2565b61490a608083018461434d565b9695505050505050565b6000604082019050614929600083018561434d565b6149366020830184613c51565b9392505050565b6000604082019050614952600083018561434d565b61495f6020830184613ce3565b9392505050565b600060408201905061497b600083018561434d565b614988602083018461434d565b9392505050565b60006060820190506149a4600083018661436b565b6149b1602083018561434d565b6149be604083018461433e565b949350505050565b600080833560016020038436030381126149df57600080fd5b80840192508235915067ffffffffffffffff8211156149fd57600080fd5b602083019250600182023603831315614a1557600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614a4057600080fd5b8060405250919050565b600067ffffffffffffffff821115614a6157600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000614ab382614b1a565b9050919050565b60008115159050919050565b6000819050919050565b6000614adb82614aa8565b9050919050565b6000614aed82614aa8565b9050919050565b6000819050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b6000614b7082614be3565b9050919050565b6000614b8282614b89565b9050919050565b6000614b9482614b1a565b9050919050565b6000614ba682614bad565b9050919050565b6000614bb882614b1a565b9050919050565b6000614bca82614b3a565b9050919050565b6000614bdc82614afe565b9050919050565b6000614bee82614bf5565b9050919050565b6000614c0082614b1a565b9050919050565b82818337600083830152505050565b60005b83811015614c34578082015181840152602081019050614c19565b83811115614c43576000848401525b50505050565b6000601f19601f8301169050919050565b614c6381614aa8565b8114614c6e57600080fd5b50565b614c7a81614aba565b8114614c8557600080fd5b50565b614c9181614ac6565b8114614c9c57600080fd5b50565b614ca881614ad0565b8114614cb357600080fd5b50565b614cbf81614ae2565b8114614cca57600080fd5b50565b614cd681614b3a565b8114614ce157600080fd5b50565b614ced81614b58565b8114614cf857600080fd5b5056fea26469706673582212203b2b0ad2947227209cd408e5a00ae6530ca90a88f2cfa0392f94e2dfc15d2ca764736f6c634300060c0033000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea4678

Deployed ByteCode

0x6080604052600436106101c25760003560e01c806382e3fcf6116100f7578063b34bed8211610095578063d1abb90711610064578063d1abb90714610651578063d2423b511461067a578063e30c397814610696578063fcf8770f146106c1576101c2565b8063b34bed8214610595578063b9ec7d74146105d2578063c0105038146105e9578063c7df1a9514610614576101c2565b80638da5cb5b116100d15780638da5cb5b146104ed5780638dbdbe6d146105185780638dc3a97d14610541578063ab7de0981461056c576101c2565b806382e3fcf61461045d578063873708461461048657806388bba42f146104c4576101c2565b80632f940c701161016457806351eb05a61161013e57806351eb05a61461038f57806357a5b58c146103cc578063689d84e4146103f55780637c516e9414610434576101c2565b80632f940c70146103125780634b2c07061461033b5780634e71e0c814610378576101c2565b80630d1f64a8116101a05780630d1f64a81461024457806317caf6f11461028157806318fccc76146102ac5780631bb5e2dc146102d5576101c2565b8063078dfbe7146101c7578063081e3eda146101f05780630ad58d2f1461021b575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061389c565b6106fe565b005b3480156101fc57600080fd5b50610205610952565b60405161021291906147ad565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d9190613b81565b61095f565b005b34801561025057600080fd5b5061026b60048036038101906102669190613aa4565b610c7f565b60405161027891906147ad565b60405180910390f35b34801561028d57600080fd5b50610296610cc6565b6040516102a391906147ad565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190613af6565b610ccc565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613aa4565b610f7b565b60405161030991906144a3565b60405180910390f35b34801561031e57600080fd5b5061033960048036038101906103349190613af6565b610fb7565b005b34801561034757600080fd5b50610362600480360381019061035d9190613aa4565b611225565b60405161036f91906147ad565b60405180910390f35b34801561038457600080fd5b5061038d6112cf565b005b34801561039b57600080fd5b506103b660048036038101906103b19190613aa4565b611463565b6040516103c3919061475b565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613943565b611805565b005b34801561040157600080fd5b5061041c60048036038101906104179190613aa4565b611845565b60405161042b93929190614776565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906139b1565b6118bc565b005b34801561046957600080fd5b50610484600480360381019061047f9190613aa4565b61193d565b005b34801561049257600080fd5b506104ad60048036038101906104a89190613af6565b611a97565b6040516104bb92919061493d565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613bd0565b611ac8565b005b3480156104f957600080fd5b50610502611d4c565b60405161050f91906143b9565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613b81565b611d70565b005b34801561054d57600080fd5b5061055661204f565b60405161056391906147ad565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190613b32565b61205c565b005b3480156105a157600080fd5b506105bc60048036038101906105b79190613af6565b61237d565b6040516105c991906147ad565b60405180910390f35b3480156105de57600080fd5b506105e761266d565b005b3480156105f557600080fd5b506105fe612695565b60405161060b91906144a3565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613aa4565b6126b9565b60405161064891906147ad565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190613b81565b61274b565b005b610694600480360381019061068f91906138eb565b612b21565b005b3480156106a257600080fd5b506106ab612c25565b6040516106b891906143b9565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613aa4565b612c4b565b6040516106f591906144be565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461078c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107839061465b565b60405180910390fd5b811561090b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107cb5750805b61080a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108019061459b565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061094d565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6000600280549050905090565b8260028054905081106109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e906145db565b60405180910390fd5b6109af6136b0565b6109b885611463565b905060006005600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008511610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a489061463b565b60405180910390fd5b610a9e64e8d4a51000610a8384600001516fffffffffffffffffffffffffffffffff1688612c8790919063ffffffff16565b81610a8a57fe5b048260010154612ce990919063ffffffff16565b8160010181905550610abd858260000154612d6190919063ffffffff16565b81600001819055508373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec213288604051610b2391906147ad565b60405180910390a4600060048781548110610b3a57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c14578073ffffffffffffffffffffffffffffffffffffffff1663c5317e21883388600087600001546040518663ffffffff1660e01b8152600401610be195949392919061481b565b600060405180830381600087803b158015610bfb57600080fd5b505af1158015610c0f573d6000803e3d6000fd5b505050505b610c76858760038a81548110610c2657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b50505050505050565b60006017821115610c935760009050610cc1565b81600a0a610cb68360090a6808384978a3387d66c0612c8790919063ffffffff16565b81610cbd57fe5b0490505b919050565b60065481565b816002805490508110610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b906145db565b60405180910390fd5b610d1c6136b0565b610d2584611463565b905060006005600086815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600064e8d4a51000610db084600001516fffffffffffffffffffffffffffffffff168460000154612c8790919063ffffffff16565b81610db757fe5b0490506000610ddb610dd6846001015484612ce990919063ffffffff16565b612f07565b9050818360010181905550863373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae066092495483604051610e2d91906147ad565b60405180910390a360008114610e8957610e8886827f000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea467873ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b5b600060048881548110610e9857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f71578073ffffffffffffffffffffffffffffffffffffffff1663c5317e2189338a8689600001546040518663ffffffff1660e01b8152600401610f3e95949392919061486e565b600060405180830381600087803b158015610f5857600080fd5b505af1158015610f6c573d6000803e3d6000fd5b505050505b5050505050505050565b60038181548110610f8857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b816002805490508110610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906145db565b60405180910390fd5b60006005600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555060006004868154811061107f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f2cac5e20e1541d836381527a43f651851e302817b71dc8e810284e69210c1c6b8560405161110a91906147ad565b60405180910390a4600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111bb578073ffffffffffffffffffffffffffffffffffffffff1663c5317e218733886000806040518663ffffffff1660e01b81526004016111889594939291906147c8565b600060405180830381600087803b1580156111a257600080fd5b505af11580156111b6573d6000803e3d6000fd5b505050505b61121d8583600389815481106111cd57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b505050505050565b6000600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1682101561128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061461b565b60405180910390fd5b6008546112c0600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1684612d6190919063ffffffff16565b816112c757fe5b049050919050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135b9061467b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61146b6136b0565b8160028054905081106114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906145db565b60405180910390fd5b600283815481106114c057fe5b906000526020600020016040518060600160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509150816020015167ffffffffffffffff164311156117ff576000600384815481106115aa57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161160d91906143b9565b60206040518083038186803b15801561162557600080fd5b505afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190613acd565b905060008111156116d9576000611675844384612f54565b90506116a86116838261312b565b85600001516fffffffffffffffffffffffffffffffff166131aa90919063ffffffff16565b84600001906fffffffffffffffffffffffffffffffff1690816fffffffffffffffffffffffffffffffff1681525050505b6116e24361321e565b836020019067ffffffffffffffff16908167ffffffffffffffff1681525050826002858154811061170f57fe5b9060005260206000200160008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050837f0fc9545022a542541ad085d091fb09a2ab36fee366a4576ab63714ea907ad35384602001518386600001516040516117f59392919061498f565b60405180910390a2505b50919050565b600082829050905060005b8181101561183f5761183384848381811061182757fe5b90506020020135611463565b50806001019050611810565b50505050565b6002818154811061185257fe5b906000526020600020016000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a900467ffffffffffffffff16908060000160189054906101000a900467ffffffffffffffff16905083565b8773ffffffffffffffffffffffffffffffffffffffff1663d505accf888888888888886040518863ffffffff1660e01b8152600401611901979695949392919061440b565b600060405180830381600087803b15801561191b57600080fd5b505af115801561192f573d6000803e3d6000fd5b505050505050505050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061465b565b60405180910390fd5b60008111611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a059061455b565b60405180910390fd5b7f46e9b6acb1b72974de7f77a937231a6e3cb50847d64e349659c5fa39bcaf9c2b4382604051611a3f929190614966565b60405180910390a1611a943330837f000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea467873ffffffffffffffffffffffffffffffffffffffff16613295909392919063ffffffff16565b50565b6005602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b836002805490508110611b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b07906145db565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b959061465b565b60405180910390fd5b611ba661266d565b611c0584611bf760028881548110611bba57fe5b9060005260206000200160000160189054906101000a900467ffffffffffffffff1667ffffffffffffffff16600654612d6190919063ffffffff16565b6133ee90919063ffffffff16565b600681905550611c148461321e565b60028681548110611c2157fe5b9060005260206000200160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508115611cb1578260048681548110611c6857fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81611cf35760048581548110611cc357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cf5565b825b73ffffffffffffffffffffffffffffffffffffffff16857f95895a6ab1df54420d241b55243258a33e61b2194db66c1179ec521aae8e18658685604051611d3d929190614914565b60405180910390a35050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b826002805490508110611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906145db565b60405180910390fd5b611dc06136b0565b611dc985611463565b905060006005600087815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e368582600001546133ee90919063ffffffff16565b8160000181905550611e8b64e8d4a51000611e7084600001516fffffffffffffffffffffffffffffffff1688612c8790919063ffffffff16565b81611e7757fe5b04826001015461343e90919063ffffffff16565b81600101819055508373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b4788604051611ef191906147ad565b60405180910390a4600060048781548110611f0857fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611fe2578073ffffffffffffffffffffffffffffffffffffffff1663c5317e21888788600087600001546040518663ffffffff1660e01b8152600401611faf9594939291906148c1565b600060405180830381600087803b158015611fc957600080fd5b505af1158015611fdd573d6000803e3d6000fd5b505050505b61204633308860038b81548110611ff557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613295909392919063ffffffff16565b50505050505050565b6808384978a3387d66c081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e19061465b565b60405180910390fd5b6120f3826134b6565b6120fb61266d565b6000439050612115846006546133ee90919063ffffffff16565b6006819055506003839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002604051806060016040528060006fffffffffffffffffffffffffffffffff1681526020016122108461321e565b67ffffffffffffffff1681526020016122288761321e565b67ffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166123406001600380549050612d6190919063ffffffff16565b7f81ee0f8c5c46e2cb41984886f77a84181724abb86c32a5f6de539b07509d45e58760405161236f91906147ad565b60405180910390a450505050565b60008260028054905081106123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906145db565b60405180910390fd5b6123cf6136b0565b600285815481106123dc57fe5b906000526020600020016040518060600160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681525050905060006005600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082600001516fffffffffffffffffffffffffffffffff16905060006003888154811061251f57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161258291906143b9565b60206040518083038186803b15801561259a57600080fd5b505afa1580156125ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d29190613acd565b9050836020015167ffffffffffffffff16431180156125f2575060008114155b1561261d576000612604854384612f54565b905061261981846133ee90919063ffffffff16565b9250505b61266061265b846001015464e8d4a51000612645868860000154612c8790919063ffffffff16565b8161264c57fe5b04612ce990919063ffffffff16565b612f07565b9550505050505092915050565b60005b6002805490508110156126925761268681611463565b50806001019050612670565b50565b7f000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea467881565b600061273a60016127226126f36126ee6126dd6001886133ee90919063ffffffff16565b600854612c8790919063ffffffff16565b61321e565b600760009054906101000a900467ffffffffffffffff1667ffffffffffffffff1661357d90919063ffffffff16565b67ffffffffffffffff166135e190919063ffffffff16565b67ffffffffffffffff169050919050565b826002805490508110612793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278a906145db565b60405180910390fd5b61279b6136b0565b6127a485611463565b905060006005600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600064e8d4a5100061282f84600001516fffffffffffffffffffffffffffffffff168460000154612c8790919063ffffffff16565b8161283657fe5b049050600061285a612855846001015484612ce990919063ffffffff16565b612f07565b90506128a564e8d4a5100061288e86600001516fffffffffffffffffffffffffffffffff168a612c8790919063ffffffff16565b8161289557fe5b0483612ce990919063ffffffff16565b83600101819055506128c4878460000154612d6190919063ffffffff16565b83600001819055508573ffffffffffffffffffffffffffffffffffffffff16883373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec21328a60405161292a91906147ad565b60405180910390a4873373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae06609249548360405161297991906147ad565b60405180910390a36129cc86827f000000000000000000000000de2578edec4669ba7f41c5d5d2386300bcea467873ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b6000600489815481106129db57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612ab4578073ffffffffffffffffffffffffffffffffffffffff1663c5317e218a338a8689600001546040518663ffffffff1660e01b8152600401612a8195949392919061486e565b600060405180830381600087803b158015612a9b57600080fd5b505af1158015612aaf573d6000803e3d6000fd5b505050505b612b16878960038c81548110612ac657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612db19092919063ffffffff16565b505050505050505050565b60005b83839050811015612c1f57600060603073ffffffffffffffffffffffffffffffffffffffff16868685818110612b5657fe5b9050602002810190612b6891906149c6565b604051612b76929190614389565b600060405180830381855af49150503d8060008114612bb1576040519150601f19603f3d011682016040523d82523d6000602084013e612bb6565b606091505b509150915081158015612bc65750835b15612c1057612bd481613645565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0791906144d9565b60405180910390fd5b50508080600101915050612b24565b50505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60048181548110612c5857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080821480612ca45750828283850292508281612ca157fe5b04145b612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda9061471b565b60405180910390fd5b92915050565b600080828403905060008312158015612d025750838113155b80612d185750600083128015612d1757508381135b5b612d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4e906146bb565b60405180910390fd5b8091505092915050565b6000828284039150811115612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da2906144fb565b60405180910390fd5b92915050565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401612de792919061447a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051612e5191906143a2565b6000604051808303816000865af19150503d8060008114612e8e576040519150601f19603f3d011682016040523d82523d6000602084013e612e93565b606091505b5091509150818015612ec15750600081511480612ec0575080806020019051810190612ebf9190613988565b5b5b612f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef79061453b565b60405180910390fd5b5050505050565b600080821215612f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f439061451b565b60405180910390fd5b819050919050565b6000808211612f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8f906146fb565b60405180910390fd5b6000612fb1856020015167ffffffffffffffff16611225565b90506000612fbe85611225565b9050600080876020015167ffffffffffffffff16905060008490505b8381116130fc576017811115612fef576130fc565b612ff8816126b9565b881161306f576130686006546130518b6040015167ffffffffffffffff1661304361302286610c7f565b613035888f612d6190919063ffffffff16565b612c8790919063ffffffff16565b612c8790919063ffffffff16565b8161305857fe5b04846133ee90919063ffffffff16565b92506130ef565b6130e16006546130ca8b6040015167ffffffffffffffff166130bc61309386610c7f565b6130ae886130a0896126b9565b612d6190919063ffffffff16565b612c8790919063ffffffff16565b612c8790919063ffffffff16565b816130d157fe5b04846133ee90919063ffffffff16565b92506130ec816126b9565b91505b8080600101915050612fda565b508561311664e8d4a5100084612c8790919063ffffffff16565b8161311d57fe5b049450505050509392505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff168211156131a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613199906145bb565b60405180910390fd5b819050919050565b6000816fffffffffffffffffffffffffffffffff168284019150816fffffffffffffffffffffffffffffffff161015613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f906145fb565b60405180910390fd5b92915050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff67ffffffffffffffff1682111561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061469b565b60405180910390fd5b819050919050565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b8686866040516024016132cd939291906143d4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161333791906143a2565b6000604051808303816000865af19150503d8060008114613374576040519150601f19603f3d011682016040523d82523d6000602084013e613379565b606091505b50915091508180156133a757506000815114806133a65750808060200190518101906133a59190613988565b5b5b6133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd906146db565b60405180910390fd5b505050505050565b6000818284019150811015613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342f906145fb565b60405180910390fd5b92915050565b6000808284019050600083121580156134575750838112155b8061346d575060008312801561346c57508381125b5b6134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a39061457b565b60405180910390fd5b8091505092915050565b60005b600380549050811015613579578173ffffffffffffffffffffffffffffffffffffffff16600382815481106134ea57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135639061473b565b60405180910390fd5b80806001019150506134b9565b5050565b60008167ffffffffffffffff1682840191508167ffffffffffffffff1610156135db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d2906145fb565b60405180910390fd5b92915050565b60008267ffffffffffffffff1682840391508167ffffffffffffffff16111561363f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613636906144fb565b60405180910390fd5b92915050565b606060448251101561368e576040518060400160405280601d81526020017f5472616e73616374696f6e2072657665727465642073696c656e746c7900000081525090506136ab565b600482019150818060200190518101906136a89190613a63565b90505b919050565b604051806060016040528060006fffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff1681525090565b60008135905061370681614c5a565b92915050565b60008083601f84011261371e57600080fd5b8235905067ffffffffffffffff81111561373757600080fd5b60208301915083602082028301111561374f57600080fd5b9250929050565b60008083601f84011261376857600080fd5b8235905067ffffffffffffffff81111561378157600080fd5b60208301915083602082028301111561379957600080fd5b9250929050565b6000813590506137af81614c71565b92915050565b6000815190506137c481614c71565b92915050565b6000813590506137d981614c88565b92915050565b6000813590506137ee81614c9f565b92915050565b60008135905061380381614cb6565b92915050565b600082601f83011261381a57600080fd5b815161382d61382882614a4a565b614a1d565b9150808252602083016020830185838301111561384957600080fd5b613854838284614c16565b50505092915050565b60008135905061386c81614ccd565b92915050565b60008151905061388181614ccd565b92915050565b60008135905061389681614ce4565b92915050565b6000806000606084860312156138b157600080fd5b60006138bf868287016136f7565b93505060206138d0868287016137a0565b92505060406138e1868287016137a0565b9150509250925092565b60008060006040848603121561390057600080fd5b600084013567ffffffffffffffff81111561391a57600080fd5b6139268682870161370c565b93509350506020613939868287016137a0565b9150509250925092565b6000806020838503121561395657600080fd5b600083013567ffffffffffffffff81111561397057600080fd5b61397c85828601613756565b92509250509250929050565b60006020828403121561399a57600080fd5b60006139a8848285016137b5565b91505092915050565b600080600080600080600080610100898b0312156139ce57600080fd5b60006139dc8b828c016137df565b98505060206139ed8b828c016136f7565b97505060406139fe8b828c016136f7565b9650506060613a0f8b828c0161385d565b9550506080613a208b828c0161385d565b94505060a0613a318b828c01613887565b93505060c0613a428b828c016137ca565b92505060e0613a538b828c016137ca565b9150509295985092959890939650565b600060208284031215613a7557600080fd5b600082015167ffffffffffffffff811115613a8f57600080fd5b613a9b84828501613809565b91505092915050565b600060208284031215613ab657600080fd5b6000613ac48482850161385d565b91505092915050565b600060208284031215613adf57600080fd5b6000613aed84828501613872565b91505092915050565b60008060408385031215613b0957600080fd5b6000613b178582860161385d565b9250506020613b28858286016136f7565b9150509250929050565b600080600060608486031215613b4757600080fd5b6000613b558682870161385d565b9350506020613b66868287016137df565b9250506040613b77868287016137f4565b9150509250925092565b600080600060608486031215613b9657600080fd5b6000613ba48682870161385d565b9350506020613bb58682870161385d565b9250506040613bc6868287016136f7565b9150509250925092565b60008060008060808587031215613be657600080fd5b6000613bf48782880161385d565b9450506020613c058782880161385d565b9350506040613c16878288016137f4565b9250506060613c27878288016137a0565b91505092959194509250565b613c3c81614b65565b82525050565b613c4b81614aa8565b82525050565b613c5a81614aba565b82525050565b613c6981614ac6565b82525050565b6000613c7b8385614a8c565b9350613c88838584614c07565b82840190509392505050565b6000613c9f82614a76565b613ca98185614a8c565b9350613cb9818560208601614c16565b80840191505092915050565b613cce81614b77565b82525050565b613cdd81614b9b565b82525050565b613cec81614af4565b82525050565b613cfb81614bbf565b82525050565b6000613d0c82614a81565b613d168185614a97565b9350613d26818560208601614c16565b613d2f81614c49565b840191505092915050565b6000613d47601583614a97565b91507f426f72696e674d6174683a20556e646572666c6f7700000000000000000000006000830152602082019050919050565b6000613d87600b83614a97565b91507f496e7465676572203c20300000000000000000000000000000000000000000006000830152602082019050919050565b6000613dc7601c83614a97565b91507f426f72696e6745524332303a205472616e73666572206661696c6564000000006000830152602082019050919050565b6000613e07602b83614a97565b91507f4d6173746572436865663a20616d6f756e742073686f756c642062652067726560008301527f61746572207468616e20300000000000000000000000000000000000000000006020830152604082019050919050565b6000613e6d602183614a97565b91507f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ed3601583614a97565b91507f4f776e61626c653a207a65726f206164647265737300000000000000000000006000830152602082019050919050565b6000613f13601c83614a97565b91507f426f72696e674d6174683a2075696e74313238204f766572666c6f77000000006000830152602082019050919050565b6000613f53601b83614a97565b91507f4d6173746572436865663a20696e76616c696420706f6f6c20696400000000006000830152602082019050919050565b6000613f93601883614a97565b91507f426f72696e674d6174683a20416464204f766572666c6f7700000000000000006000830152602082019050919050565b6000613fd3604483614a97565b91507f4d6173746572436865663a20626c6f636b4e756d6265722073686f756c64206260008301527f652067726561746572207468616e2041525448535741505f4f524947494e5f4260208301527f4c4f434b000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061405f601683614a97565b91507f616d6f756e742073686f756c64206e6f742062652030000000000000000000006000830152602082019050919050565b600061409f602083614a97565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140df602083614a97565b91507f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e65726000830152602082019050919050565b600061411f601b83614a97565b91507f426f72696e674d6174683a2075696e743634204f766572666c6f7700000000006000830152602082019050919050565b600061415f602483614a97565b91507f5369676e6564536166654d6174683a207375627472616374696f6e206f76657260008301527f666c6f77000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141c5602083614a97565b91507f426f72696e6745524332303a205472616e7366657246726f6d206661696c65646000830152602082019050919050565b6000614205602d83614a97565b91507f4d6173746572436865663a206c70537570706c792073686f756c64206265206760008301527f726561746572207468616e2030000000000000000000000000000000000000006020830152604082019050919050565b600061426b601883614a97565b91507f426f72696e674d6174683a204d756c204f766572666c6f7700000000000000006000830152602082019050919050565b60006142ab601e83614a97565b91507f4d6173746572436865663a206475706c6963617465204c5020746f6b656e00006000830152602082019050919050565b6060820160008201516142f46000850182614320565b506020820151614307602085018261435c565b50604082015161431a604085018261435c565b50505050565b61432981614afe565b82525050565b61433881614afe565b82525050565b61434781614bd1565b82525050565b61435681614b3a565b82525050565b61436581614b44565b82525050565b61437481614b44565b82525050565b61438381614b58565b82525050565b6000614396828486613c6f565b91508190509392505050565b60006143ae8284613c94565b915081905092915050565b60006020820190506143ce6000830184613c42565b92915050565b60006060820190506143e96000830186613c42565b6143f66020830185613c42565b614403604083018461434d565b949350505050565b600060e082019050614420600083018a613c42565b61442d6020830189613c42565b61443a604083018861434d565b614447606083018761434d565b614454608083018661437a565b61446160a0830185613c60565b61446e60c0830184613c60565b98975050505050505050565b600060408201905061448f6000830185613c42565b61449c602083018461434d565b9392505050565b60006020820190506144b86000830184613cc5565b92915050565b60006020820190506144d36000830184613cd4565b92915050565b600060208201905081810360008301526144f38184613d01565b905092915050565b6000602082019050818103600083015261451481613d3a565b9050919050565b6000602082019050818103600083015261453481613d7a565b9050919050565b6000602082019050818103600083015261455481613dba565b9050919050565b6000602082019050818103600083015261457481613dfa565b9050919050565b6000602082019050818103600083015261459481613e60565b9050919050565b600060208201905081810360008301526145b481613ec6565b9050919050565b600060208201905081810360008301526145d481613f06565b9050919050565b600060208201905081810360008301526145f481613f46565b9050919050565b6000602082019050818103600083015261461481613f86565b9050919050565b6000602082019050818103600083015261463481613fc6565b9050919050565b6000602082019050818103600083015261465481614052565b9050919050565b6000602082019050818103600083015261467481614092565b9050919050565b60006020820190508181036000830152614694816140d2565b9050919050565b600060208201905081810360008301526146b481614112565b9050919050565b600060208201905081810360008301526146d481614152565b9050919050565b600060208201905081810360008301526146f4816141b8565b9050919050565b60006020820190508181036000830152614714816141f8565b9050919050565b600060208201905081810360008301526147348161425e565b9050919050565b600060208201905081810360008301526147548161429e565b9050919050565b600060608201905061477060008301846142de565b92915050565b600060608201905061478b600083018661432f565b614798602083018561436b565b6147a5604083018461436b565b949350505050565b60006020820190506147c2600083018461434d565b92915050565b600060a0820190506147dd600083018861434d565b6147ea6020830187613c33565b6147f76040830186613c42565b6148046060830185613cf2565b6148116080830184613cf2565b9695505050505050565b600060a082019050614830600083018861434d565b61483d6020830187613c33565b61484a6040830186613c42565b6148576060830185613cf2565b614864608083018461434d565b9695505050505050565b600060a082019050614883600083018861434d565b6148906020830187613c33565b61489d6040830186613c42565b6148aa606083018561434d565b6148b7608083018461434d565b9695505050505050565b600060a0820190506148d6600083018861434d565b6148e36020830187613c42565b6148f06040830186613c42565b6148fd6060830185613cf2565b61490a608083018461434d565b9695505050505050565b6000604082019050614929600083018561434d565b6149366020830184613c51565b9392505050565b6000604082019050614952600083018561434d565b61495f6020830184613ce3565b9392505050565b600060408201905061497b600083018561434d565b614988602083018461434d565b9392505050565b60006060820190506149a4600083018661436b565b6149b1602083018561434d565b6149be604083018461433e565b949350505050565b600080833560016020038436030381126149df57600080fd5b80840192508235915067ffffffffffffffff8211156149fd57600080fd5b602083019250600182023603831315614a1557600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614a4057600080fd5b8060405250919050565b600067ffffffffffffffff821115614a6157600080fd5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000614ab382614b1a565b9050919050565b60008115159050919050565b6000819050919050565b6000614adb82614aa8565b9050919050565b6000614aed82614aa8565b9050919050565b6000819050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b6000614b7082614be3565b9050919050565b6000614b8282614b89565b9050919050565b6000614b9482614b1a565b9050919050565b6000614ba682614bad565b9050919050565b6000614bb882614b1a565b9050919050565b6000614bca82614b3a565b9050919050565b6000614bdc82614afe565b9050919050565b6000614bee82614bf5565b9050919050565b6000614c0082614b1a565b9050919050565b82818337600083830152505050565b60005b83811015614c34578082015181840152602081019050614c19565b83811115614c43576000848401525b50505050565b6000601f19601f8301169050919050565b614c6381614aa8565b8114614c6e57600080fd5b50565b614c7a81614aba565b8114614c8557600080fd5b50565b614c9181614ac6565b8114614c9c57600080fd5b50565b614ca881614ad0565b8114614cb357600080fd5b50565b614cbf81614ae2565b8114614cca57600080fd5b50565b614cd681614b3a565b8114614ce157600080fd5b50565b614ced81614b58565b8114614cf857600080fd5b5056fea26469706673582212203b2b0ad2947227209cd408e5a00ae6530ca90a88f2cfa0392f94e2dfc15d2ca764736f6c634300060c0033