false
true
0

Contract Address Details

0x0013c9468E7e43E2660B0a259351C23c1eb1b1eF

Contract Name
CataLystBridgeERC20
Creator
0xba5b4e–6ed9a0 at 0x4ea6f1–65f0b2
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
26347958
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CataLystBridgeERC20




Optimization enabled
true
Compiler version
v0.8.0+commit.c7dfd78e




Optimization runs
999999
EVM Version
istanbul




Verified at
2026-04-22T01:58:56.188820Z

/Users/hoangquan/Desktop/Self/keyTango/catalyst/contracts/CatalystBridgeERC20.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract Round {
    struct RoundInfo {
        uint256 startTime;
        uint256 mintAmount;
        uint256 depositDuration;
        uint256 stakeDuration;
        uint256 totalDeposit;
        uint256 totalWithdrawn;
        uint256 totalReward;
        address depositToken;
        address rewardToken;
    }
}

contract Manager is Ownable, Pausable, Round {
    uint256 public totalRounds;
    mapping(uint256 => RoundInfo) public rounds;

    event RoundStarted(
        uint256 indexed roundId,
        uint256 indexed startTime,
        uint256 indexed duration
    );

    function adminAddRound(uint256 _startTime, uint256 _depositDuration, uint256 _stakeDuration, uint256 _minAmount, address _depositToken, address _rewardToken)
        external
        whenNotPaused()
        onlyOwner()
    {
        RoundInfo memory newRound;
        newRound.startTime = _startTime;
        newRound.mintAmount = _minAmount;
        newRound.depositToken = _depositToken;
        newRound.rewardToken = _rewardToken;
        newRound.depositDuration = _depositDuration;
        newRound.stakeDuration = _stakeDuration;
        rounds[totalRounds] = newRound;
        totalRounds = totalRounds + 1;
    }

    function adminUpdateRound(uint256 _roundId, uint256 _startTime, uint256 _depositDuration, uint256 _stakeDuration)
        external
        whenNotPaused()
        onlyOwner()
    {
        RoundInfo memory round = rounds[_roundId];
        require(0 < round.startTime &&  round.startTime < block.timestamp, "Can-not-update");
        round.startTime = _startTime;
        round.depositDuration = _depositDuration;
        round.stakeDuration = _stakeDuration;
        rounds[_roundId] = round;
    }

    function stop() external onlyOwner() {
        require(!paused(), "Already-paused");
        _pause();
    }

    function start() external onlyOwner() {
        require(paused(), "Already-start");
        _unpause();
    }

}


contract CataLystBridgeERC20 is Manager, ReentrancyGuard {
    using Address for address payable;
    using SafeERC20 for IERC20;

    mapping (address => mapping(uint256 => uint256)) public userFund;
    mapping (address => mapping(uint256 => uint256)) public userWithdrawnFund;
    mapping (address => mapping(uint256 => uint256)) public userReward;

    event UserDeposit(address indexed user, uint indexed roundId, uint indexed amount);
    event UserWithdrawn(address indexed user, uint indexed roundId, uint indexed amount);
   
    modifier isValidRound(uint256 _roundId) {
        require(rounds[_roundId].startTime > 0, "Invalid-round");
        _;
    }

    receive() external payable {
        
    }


    constructor() public  { 
        
    }
    function userDeposit(uint256 _roundId, uint256 _amount) isValidRound(_roundId) external payable whenNotPaused() nonReentrant() { 
        RoundInfo memory round = rounds[_roundId];
        require(round.startTime <= block.timestamp && block.timestamp <= (round.startTime + round.depositDuration),"Can-not-deposit");
        uint fund;
        if(round.depositToken == address(0)) {// round accept ETH
            require(msg.value >= round.mintAmount, "Invalid-fund");
            fund = msg.value;
        } else {
            IERC20(round.depositToken).safeTransferFrom(msg.sender, address(this), _amount);
            fund  = _amount;
        } 
    
        userFund[msg.sender][_roundId] = userFund[msg.sender][_roundId] + fund;
        round.totalDeposit = round.totalDeposit + fund;
        rounds[_roundId] = round;
        emit UserDeposit(msg.sender, _roundId, fund);
    }
    
    function userWithDrawn(uint256 _roundId) isValidRound(_roundId) external whenNotPaused()  nonReentrant() {
        RoundInfo memory round = rounds[_roundId];
        uint256 fundOfUser = userFund[msg.sender][_roundId];
        require(fundOfUser > 0, "Invalid fund");
        require((block.timestamp <= round.startTime + round.depositDuration &&  round.totalWithdrawn == 0) ||
                (block.timestamp >= (round.startTime + round.depositDuration + round.stakeDuration) && round.totalWithdrawn > 0), "Can-not-withdrawn-now");
        uint256 amountToWithdrawn;
        uint rewardToUser;
        if (round.totalWithdrawn == 0) {
            amountToWithdrawn = fundOfUser;
            round.totalDeposit = round.totalDeposit - amountToWithdrawn;
            rounds[_roundId] = round;
        } else {
            amountToWithdrawn = fundOfUser * round.totalWithdrawn / round.totalDeposit;
            rewardToUser = fundOfUser * round.totalReward / round.totalDeposit;
            userWithdrawnFund[msg.sender][_roundId] = amountToWithdrawn;
            userReward[msg.sender][_roundId] = rewardToUser;
        }
        if(round.depositToken == address(0)) {
            payable(msg.sender).sendValue(amountToWithdrawn);
        } else { 
            IERC20(round.depositToken).safeTransfer(msg.sender, amountToWithdrawn); // transfer token to user
        }
        IERC20(round.rewardToken).safeTransfer(msg.sender, rewardToUser); // transfer reward to user
        emit UserWithdrawn(msg.sender, _roundId, amountToWithdrawn);
        delete userFund[msg.sender][_roundId];
    }

    function adminCollectFund(uint256 _roundId) isValidRound(_roundId) external onlyOwner() whenNotPaused() {
        require((rounds[_roundId].startTime + rounds[_roundId].depositDuration) < block.timestamp, "Deposit-time-not-end-yet");
        RoundInfo memory round = rounds[_roundId];
        uint256 collectValue = round.totalDeposit;
        if(round.depositToken == address(0)) {
            payable(msg.sender).sendValue(collectValue);
        } else { 
            IERC20(round.depositToken).safeTransfer(msg.sender, collectValue); // transfer token to owner
        }
    }

    function adminDepositFund(uint256 _roundId, uint256 _amount, uint256 _rewardAmount) isValidRound(_roundId) external payable onlyOwner() whenNotPaused() {
        RoundInfo memory round = rounds[_roundId];
        require((round.startTime + round.depositDuration + round.stakeDuration) < block.timestamp, "Round-not-end-yet");
        uint256 depositValue;
        if(round.depositToken == address(0)) {
            depositValue = msg.value;
        } else { 
            IERC20(round.depositToken).safeTransferFrom(msg.sender, address(this), _amount);
            depositValue = _amount;
        }
        IERC20(round.rewardToken).safeTransferFrom(msg.sender, address(this), _rewardAmount);
        round.totalWithdrawn = depositValue;
        round.totalReward = _rewardAmount;
        rounds[_roundId] = round;
    }

    function emergencyWithdawn(address _token) external onlyOwner() whenPaused() {
        if(_token == address(0)) {
            payable(msg.sender).sendValue((address(this).balance));
        } else { 
            uint balance = IERC20(_token).balanceOf(address(this));
            IERC20(_token).safeTransfer(msg.sender, balance);
        }
        
    }
}
        

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/utils/SafeERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
          

/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
          

Compiler Settings

{"remappings":[],"optimizer":{"runs":999999,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"/Users/hoangquan/Desktop/Self/keyTango/catalyst/contracts/CatalystBridgeERC20.sol":"CataLystBridgeERC20"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"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":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"RoundStarted","inputs":[{"type":"uint256","name":"roundId","internalType":"uint256","indexed":true},{"type":"uint256","name":"startTime","internalType":"uint256","indexed":true},{"type":"uint256","name":"duration","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"UserDeposit","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"roundId","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"UserWithdrawn","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"roundId","internalType":"uint256","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminAddRound","inputs":[{"type":"uint256","name":"_startTime","internalType":"uint256"},{"type":"uint256","name":"_depositDuration","internalType":"uint256"},{"type":"uint256","name":"_stakeDuration","internalType":"uint256"},{"type":"uint256","name":"_minAmount","internalType":"uint256"},{"type":"address","name":"_depositToken","internalType":"address"},{"type":"address","name":"_rewardToken","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminCollectFund","inputs":[{"type":"uint256","name":"_roundId","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"adminDepositFund","inputs":[{"type":"uint256","name":"_roundId","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"uint256","name":"_rewardAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminUpdateRound","inputs":[{"type":"uint256","name":"_roundId","internalType":"uint256"},{"type":"uint256","name":"_startTime","internalType":"uint256"},{"type":"uint256","name":"_depositDuration","internalType":"uint256"},{"type":"uint256","name":"_stakeDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyWithdawn","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"startTime","internalType":"uint256"},{"type":"uint256","name":"mintAmount","internalType":"uint256"},{"type":"uint256","name":"depositDuration","internalType":"uint256"},{"type":"uint256","name":"stakeDuration","internalType":"uint256"},{"type":"uint256","name":"totalDeposit","internalType":"uint256"},{"type":"uint256","name":"totalWithdrawn","internalType":"uint256"},{"type":"uint256","name":"totalReward","internalType":"uint256"},{"type":"address","name":"depositToken","internalType":"address"},{"type":"address","name":"rewardToken","internalType":"address"}],"name":"rounds","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"start","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stop","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalRounds","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"userDeposit","inputs":[{"type":"uint256","name":"_roundId","internalType":"uint256"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userFund","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userReward","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"userWithDrawn","inputs":[{"type":"uint256","name":"_roundId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userWithdrawnFund","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x608060405234801561001057600080fd5b50600061001b61007c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b191690556001600355610080565b3390565b61293c8061008f6000396000f3fe60806040526004361061012d5760003560e01c8063715018a6116100a5578063be9a655511610074578063eae5f1a811610059578063eae5f1a814610304578063f2fde38b14610324578063ffadc3921461034457610134565b8063be9a6555146102dc578063c4164274146102f157610134565b8063715018a61461025b5780638a568299146102705780638c65c81f146102855780638da5cb5b146102ba57610134565b80632659dffe116100fc578063562de1c6116100e1578063562de1c6146101f95780635c975abb14610219578063673d70481461023b57610134565b80632659dffe146101a3578063378c53bf146101c357610134565b806306cb94021461013957806307da68f51461015b57806308db9ed714610170578063139f79691461018357610134565b3661013457005b600080fd5b34801561014557600080fd5b506101596101543660046120cc565b610364565b005b34801561016757600080fd5b50610159610590565b61015961017e36600461211d565b61064c565b34801561018f57600080fd5b5061015961019e366004612148565b610960565b3480156101af57600080fd5b506101596101be366004612069565b610baa565b3480156101cf57600080fd5b506101e36101de366004612083565b610d52565b6040516101f091906127a5565b60405180910390f35b34801561020557600080fd5b506101e3610214366004612083565b610d6f565b34801561022557600080fd5b5061022e610d8c565b6040516101f09190612267565b34801561024757600080fd5b506101e3610256366004612083565b610dad565b34801561026757600080fd5b50610159610dca565b34801561027c57600080fd5b506101e3610eac565b34801561029157600080fd5b506102a56102a03660046120cc565b610eb2565b6040516101f0999897969594939291906127ae565b3480156102c657600080fd5b506102cf610f17565b6040516101f091906121ef565b3480156102e857600080fd5b50610159610f33565b6101596102ff3660046120fc565b610fec565b34801561031057600080fd5b5061015961031f3660046120cc565b611369565b34801561033057600080fd5b5061015961033f366004612069565b6117b7565b34801561035057600080fd5b5061015961035f366004612179565b611904565b60008181526002602052604090205481906103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b60405180910390fd5b6103bc611aab565b73ffffffffffffffffffffffffffffffffffffffff166103da610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610427576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61042f610d8c565b15610466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6000828152600260208190526040909120908101549054429161048891612806565b106104bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612737565b60008281526002602081815260409283902083516101208101855281548152600182015492810192909252918201549281019290925260038101546060830152600481015460808301819052600582015460a0840152600682015460c0840152600782015473ffffffffffffffffffffffffffffffffffffffff90811660e0850181905260089093015416610100840152906105645761055f3382611aaf565b61058a565b60e082015161058a9073ffffffffffffffffffffffffffffffffffffffff163383611b91565b50505050565b610598611aab565b73ffffffffffffffffffffffffffffffffffffffff166105b6610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61060b610d8c565b15610642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906126a3565b61064a611c32565b565b6000838152600260205260409020548390610693576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b61069b611aab565b73ffffffffffffffffffffffffffffffffffffffff166106b9610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61070e610d8c565b15610745576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b60008481526002602081815260409283902083516101208101855281548082526001830154938201939093529281015493830184905260038101546060840181905260048201546080850152600582015460a0850152600682015460c0850152600782015473ffffffffffffffffffffffffffffffffffffffff90811660e086015260089092015490911661010084015291924292916107e59190612806565b6107ef9190612806565b10610826576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906124ed565b60e081015160009073ffffffffffffffffffffffffffffffffffffffff1661084f575034610879565b60e08201516108769073ffffffffffffffffffffffffffffffffffffffff16333088611cf0565b50835b6101008201516108a19073ffffffffffffffffffffffffffffffffffffffff16333087611cf0565b60a0820190815260c082019384526000958652600260208181526040978890208451815590840151600182015596830151908701556060820151600387015560808201516004870155516005860155915160068501555060e08101516007840180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff93841617909155610100909201516008909401805490921693169290921790915550565b610968610d8c565b1561099f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6109a7611aab565b73ffffffffffffffffffffffffffffffffffffffff166109c5610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b600084815260026020818152604092839020835161012081018552815480825260018301549382019390935292810154938301939093526003830154606083015260048301546080830152600583015460a0830152600683015460c0830152600783015473ffffffffffffffffffffffffffffffffffffffff90811660e08401526008909301549092166101008201529015801590610ab15750805142115b610ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122fa565b9283526040808401928352606084019182526000948552600260208181529190952084518155908401516001820155915193820193909355915160038301556080810151600483015560a0810151600583015560c0810151600683015560e08101516007830180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff9384161790915561010090920151600890930180549092169216919091179055565b610bb2611aab565b73ffffffffffffffffffffffffffffffffffffffff16610bd0610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b610c25610d8c565b610c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122c3565b73ffffffffffffffffffffffffffffffffffffffff8116610c8557610c803347611aaf565b610d4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610cda9030906004016121ef565b60206040518083038186803b158015610cf257600080fd5b505afa158015610d06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2a91906120e4565b9050610d4d73ffffffffffffffffffffffffffffffffffffffff83163383611b91565b505b50565b600660209081526000928352604080842090915290825290205481565b600560209081526000928352604080842090915290825290205481565b60005474010000000000000000000000000000000000000000900460ff1690565b600460209081526000928352604080842090915290825290205481565b610dd2611aab565b73ffffffffffffffffffffffffffffffffffffffff16610df0610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60015481565b60026020819052600091825260409091208054600182015492820154600383015460048401546005850154600686015460078701546008909701549597969495939492939192909173ffffffffffffffffffffffffffffffffffffffff918216911689565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b610f3b611aab565b73ffffffffffffffffffffffffffffffffffffffff16610f59610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b610fae610d8c565b610fe4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612592565b61064a611d11565b6000828152600260205260409020548290611033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b61103b610d8c565b15611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b600260035414156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061276e565b60026003818155600085815260208381526040918290208251610120810184528154808252600183015493820193909352948101549285019290925291810154606084015260048101546080840152600581015460a0840152600681015460c0840152600781015473ffffffffffffffffffffffffffffffffffffffff90811660e085015260089091015416610100830152421080159061116057506040810151815161115c9190612806565b4211155b611196576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906123c5565b60e081015160009073ffffffffffffffffffffffffffffffffffffffff166111fd5781602001513410156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906125c9565b5034611227565b60e08201516112249073ffffffffffffffffffffffffffffffffffffffff16333087611cf0565b50825b33600090815260046020908152604080832088845290915290205461124d908290612806565b3360009081526004602090815260408083208984529091529020556080820151611278908290612806565b608083019081526000868152600260208181526040808420875181559187015160018301558087015192820192909255606086015160038201559251600484015560a0850151600584015560c0850151600684015560e085015160078401805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155610100870151600890950180549590921694169390931790925590518291879133917f2f1a7fda57b5fd5cb62770aebd7fc9a8a0a834c5ff558eb7562f85f2b28c437591a450506001600355505050565b60008181526002602052604090205481906113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b6113b8610d8c565b156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6002600354141561142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061276e565b600260038181556000848152602083815260408083208151610120810183528154815260018201548185015295810154868301529384015460608601526004808501546080870152600585015460a0870152600685015460c0870152600785015473ffffffffffffffffffffffffffffffffffffffff90811660e08801526008909501549094166101008601523383529281528282208683529052205480611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061255b565b604082015182516115119190612806565b4211158015611522575060a0820151155b8061155b575060608201516040830151835161153e9190612806565b6115489190612806565b421015801561155b575060008260a00151115b611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061266c565b6000808360a0015160001415611670578291508184608001516115b49190612894565b60808501908152600087815260026020818152604092839020885181559088015160018201559187015190820155606086015160038201559051600482015560a0850151600582015560c0850151600682015560e085015160078201805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155610100870151600890930180549390921692169190911790556116e2565b608084015160a08501516116849085612857565b61168e919061281e565b915083608001518460c00151846116a59190612857565b6116af919061281e565b3360008181526005602090815260408083208b84528252808320879055928252600681528282208a835290522081905590505b60e084015173ffffffffffffffffffffffffffffffffffffffff166117105761170b3383611aaf565b611736565b60e08401516117369073ffffffffffffffffffffffffffffffffffffffff163384611b91565b61010084015161175d9073ffffffffffffffffffffffffffffffffffffffff163383611b91565b6040518290879033907f43389e74a5f67d287aa20ee5677bf6eaea427b4b436414723562a06c75debdc190600090a45050336000908152600460209081526040808320968352959052938420939093555050600160035550565b6117bf611aab565b73ffffffffffffffffffffffffffffffffffffffff166117dd610f17565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b73ffffffffffffffffffffffffffffffffffffffff8116611877576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612331565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61190c610d8c565b15611943576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b61194b611aab565b73ffffffffffffffffffffffffffffffffffffffff16611969610f17565b73ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b6119be611fcd565b868152602080820185815273ffffffffffffffffffffffffffffffffffffffff80861660e08501908152858216610100860190815260408087018c8152606088018c81526001805460009081526002998a90529390932089518155965187840155905196860196909655945160038501556080860151600485015560a0860151600585015560c0860151600685015590516007840180549184167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790559051600890930180549390921692169190911790558054611a9f91612806565b60015550505050505050565b3390565b80471015611ae9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612459565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b0f906121ec565b60006040518083038185875af1925050503d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b5050905080611b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906123fc565b505050565b611b8c8363a9059cbb60e01b8484604051602401611bb0929190612241565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611da0565b611c3a610d8c565b15611c71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cd9611aab565b604051611ce691906121ef565b60405180910390a1565b61058a846323b872dd60e01b858585604051602401611bb093929190612210565b611d19610d8c565b611d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122c3565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cd9611aab565b6000611e02826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e569092919063ffffffff16565b805190915015611b8c5780806020019051810190611e2091906120ac565b611b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906126da565b6060611e658484600085611e6f565b90505b9392505050565b606082471015611eab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612490565b611eb485611f70565b611eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612635565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611f1391906121d0565b60006040518083038185875af1925050503d8060008114611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b5091509150611f65828286611f7a565b979650505050505050565b803b15155b919050565b60608315611f89575081611e68565b825115611f995782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9190612272565b60405180610120016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f7557600080fd5b60006020828403121561207a578081fd5b611e6882612045565b60008060408385031215612095578081fd5b61209e83612045565b946020939093013593505050565b6000602082840312156120bd578081fd5b81518015158114611e68578182fd5b6000602082840312156120dd578081fd5b5035919050565b6000602082840312156120f5578081fd5b5051919050565b6000806040838503121561210e578182fd5b50508035926020909101359150565b600080600060608486031215612131578081fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561215d578081fd5b5050823594602084013594506040840135936060013592509050565b60008060008060008060c08789031215612191578182fd5b863595506020870135945060408701359350606087013592506121b660808801612045565b91506121c460a08801612045565b90509295509295509295565b600082516121e28184602087016128ab565b9190910192915050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526122918160408501602087016128ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252600e908201527f43616e2d6e6f742d757064617465000000000000000000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600d908201527f496e76616c69642d726f756e6400000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f43616e2d6e6f742d6465706f7369740000000000000000000000000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c0000000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f526f756e642d6e6f742d656e642d796574000000000000000000000000000000604082015260600190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b6020808252600c908201527f496e76616c69642066756e640000000000000000000000000000000000000000604082015260600190565b6020808252600d908201527f416c72656164792d737461727400000000000000000000000000000000000000604082015260600190565b6020808252600c908201527f496e76616c69642d66756e640000000000000000000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526015908201527f43616e2d6e6f742d77697468647261776e2d6e6f770000000000000000000000604082015260600190565b6020808252600e908201527f416c72656164792d706175736564000000000000000000000000000000000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f4465706f7369742d74696d652d6e6f742d656e642d7965740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b988952602089019790975260408801959095526060870193909352608086019190915260a085015260c084015273ffffffffffffffffffffffffffffffffffffffff90811660e0840152166101008201526101200190565b60008219821115612819576128196128d7565b500190565b600082612852577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561288f5761288f6128d7565b500290565b6000828210156128a6576128a66128d7565b500390565b60005b838110156128c65781810151838201526020016128ae565b8381111561058a5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212203662159754c7b42fa40dbfeee7acad62d80a6951b067fe276a522bab67bea54264736f6c63430008000033

Deployed ByteCode

0x60806040526004361061012d5760003560e01c8063715018a6116100a5578063be9a655511610074578063eae5f1a811610059578063eae5f1a814610304578063f2fde38b14610324578063ffadc3921461034457610134565b8063be9a6555146102dc578063c4164274146102f157610134565b8063715018a61461025b5780638a568299146102705780638c65c81f146102855780638da5cb5b146102ba57610134565b80632659dffe116100fc578063562de1c6116100e1578063562de1c6146101f95780635c975abb14610219578063673d70481461023b57610134565b80632659dffe146101a3578063378c53bf146101c357610134565b806306cb94021461013957806307da68f51461015b57806308db9ed714610170578063139f79691461018357610134565b3661013457005b600080fd5b34801561014557600080fd5b506101596101543660046120cc565b610364565b005b34801561016757600080fd5b50610159610590565b61015961017e36600461211d565b61064c565b34801561018f57600080fd5b5061015961019e366004612148565b610960565b3480156101af57600080fd5b506101596101be366004612069565b610baa565b3480156101cf57600080fd5b506101e36101de366004612083565b610d52565b6040516101f091906127a5565b60405180910390f35b34801561020557600080fd5b506101e3610214366004612083565b610d6f565b34801561022557600080fd5b5061022e610d8c565b6040516101f09190612267565b34801561024757600080fd5b506101e3610256366004612083565b610dad565b34801561026757600080fd5b50610159610dca565b34801561027c57600080fd5b506101e3610eac565b34801561029157600080fd5b506102a56102a03660046120cc565b610eb2565b6040516101f0999897969594939291906127ae565b3480156102c657600080fd5b506102cf610f17565b6040516101f091906121ef565b3480156102e857600080fd5b50610159610f33565b6101596102ff3660046120fc565b610fec565b34801561031057600080fd5b5061015961031f3660046120cc565b611369565b34801561033057600080fd5b5061015961033f366004612069565b6117b7565b34801561035057600080fd5b5061015961035f366004612179565b611904565b60008181526002602052604090205481906103b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b60405180910390fd5b6103bc611aab565b73ffffffffffffffffffffffffffffffffffffffff166103da610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610427576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61042f610d8c565b15610466576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6000828152600260208190526040909120908101549054429161048891612806565b106104bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612737565b60008281526002602081815260409283902083516101208101855281548152600182015492810192909252918201549281019290925260038101546060830152600481015460808301819052600582015460a0840152600682015460c0840152600782015473ffffffffffffffffffffffffffffffffffffffff90811660e0850181905260089093015416610100840152906105645761055f3382611aaf565b61058a565b60e082015161058a9073ffffffffffffffffffffffffffffffffffffffff163383611b91565b50505050565b610598611aab565b73ffffffffffffffffffffffffffffffffffffffff166105b6610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61060b610d8c565b15610642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906126a3565b61064a611c32565b565b6000838152600260205260409020548390610693576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b61069b611aab565b73ffffffffffffffffffffffffffffffffffffffff166106b9610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b61070e610d8c565b15610745576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b60008481526002602081815260409283902083516101208101855281548082526001830154938201939093529281015493830184905260038101546060840181905260048201546080850152600582015460a0850152600682015460c0850152600782015473ffffffffffffffffffffffffffffffffffffffff90811660e086015260089092015490911661010084015291924292916107e59190612806565b6107ef9190612806565b10610826576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906124ed565b60e081015160009073ffffffffffffffffffffffffffffffffffffffff1661084f575034610879565b60e08201516108769073ffffffffffffffffffffffffffffffffffffffff16333088611cf0565b50835b6101008201516108a19073ffffffffffffffffffffffffffffffffffffffff16333087611cf0565b60a0820190815260c082019384526000958652600260208181526040978890208451815590840151600182015596830151908701556060820151600387015560808201516004870155516005860155915160068501555060e08101516007840180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff93841617909155610100909201516008909401805490921693169290921790915550565b610968610d8c565b1561099f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6109a7611aab565b73ffffffffffffffffffffffffffffffffffffffff166109c5610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610a12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b600084815260026020818152604092839020835161012081018552815480825260018301549382019390935292810154938301939093526003830154606083015260048301546080830152600583015460a0830152600683015460c0830152600783015473ffffffffffffffffffffffffffffffffffffffff90811660e08401526008909301549092166101008201529015801590610ab15750805142115b610ae7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122fa565b9283526040808401928352606084019182526000948552600260208181529190952084518155908401516001820155915193820193909355915160038301556080810151600483015560a0810151600583015560c0810151600683015560e08101516007830180547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff9384161790915561010090920151600890930180549092169216919091179055565b610bb2611aab565b73ffffffffffffffffffffffffffffffffffffffff16610bd0610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b610c25610d8c565b610c5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122c3565b73ffffffffffffffffffffffffffffffffffffffff8116610c8557610c803347611aaf565b610d4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610cda9030906004016121ef565b60206040518083038186803b158015610cf257600080fd5b505afa158015610d06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2a91906120e4565b9050610d4d73ffffffffffffffffffffffffffffffffffffffff83163383611b91565b505b50565b600660209081526000928352604080842090915290825290205481565b600560209081526000928352604080842090915290825290205481565b60005474010000000000000000000000000000000000000000900460ff1690565b600460209081526000928352604080842090915290825290205481565b610dd2611aab565b73ffffffffffffffffffffffffffffffffffffffff16610df0610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610e3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60015481565b60026020819052600091825260409091208054600182015492820154600383015460048401546005850154600686015460078701546008909701549597969495939492939192909173ffffffffffffffffffffffffffffffffffffffff918216911689565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b610f3b611aab565b73ffffffffffffffffffffffffffffffffffffffff16610f59610f17565b73ffffffffffffffffffffffffffffffffffffffff1614610fa6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b610fae610d8c565b610fe4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612592565b61064a611d11565b6000828152600260205260409020548290611033576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b61103b610d8c565b15611072576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b600260035414156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061276e565b60026003818155600085815260208381526040918290208251610120810184528154808252600183015493820193909352948101549285019290925291810154606084015260048101546080840152600581015460a0840152600681015460c0840152600781015473ffffffffffffffffffffffffffffffffffffffff90811660e085015260089091015416610100830152421080159061116057506040810151815161115c9190612806565b4211155b611196576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906123c5565b60e081015160009073ffffffffffffffffffffffffffffffffffffffff166111fd5781602001513410156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906125c9565b5034611227565b60e08201516112249073ffffffffffffffffffffffffffffffffffffffff16333087611cf0565b50825b33600090815260046020908152604080832088845290915290205461124d908290612806565b3360009081526004602090815260408083208984529091529020556080820151611278908290612806565b608083019081526000868152600260208181526040808420875181559187015160018301558087015192820192909255606086015160038201559251600484015560a0850151600584015560c0850151600684015560e085015160078401805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155610100870151600890950180549590921694169390931790925590518291879133917f2f1a7fda57b5fd5cb62770aebd7fc9a8a0a834c5ff558eb7562f85f2b28c437591a450506001600355505050565b60008181526002602052604090205481906113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061238e565b6113b8610d8c565b156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b6002600354141561142c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061276e565b600260038181556000848152602083815260408083208151610120810183528154815260018201548185015295810154868301529384015460608601526004808501546080870152600585015460a0870152600685015460c0870152600785015473ffffffffffffffffffffffffffffffffffffffff90811660e08801526008909501549094166101008601523383529281528282208683529052205480611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061255b565b604082015182516115119190612806565b4211158015611522575060a0820151155b8061155b575060608201516040830151835161153e9190612806565b6115489190612806565b421015801561155b575060008260a00151115b611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9061266c565b6000808360a0015160001415611670578291508184608001516115b49190612894565b60808501908152600087815260026020818152604092839020885181559088015160018201559187015190820155606086015160038201559051600482015560a0850151600582015560c0850151600682015560e085015160078201805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155610100870151600890930180549390921692169190911790556116e2565b608084015160a08501516116849085612857565b61168e919061281e565b915083608001518460c00151846116a59190612857565b6116af919061281e565b3360008181526005602090815260408083208b84528252808320879055928252600681528282208a835290522081905590505b60e084015173ffffffffffffffffffffffffffffffffffffffff166117105761170b3383611aaf565b611736565b60e08401516117369073ffffffffffffffffffffffffffffffffffffffff163384611b91565b61010084015161175d9073ffffffffffffffffffffffffffffffffffffffff163383611b91565b6040518290879033907f43389e74a5f67d287aa20ee5677bf6eaea427b4b436414723562a06c75debdc190600090a45050336000908152600460209081526040808320968352959052938420939093555050600160035550565b6117bf611aab565b73ffffffffffffffffffffffffffffffffffffffff166117dd610f17565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b73ffffffffffffffffffffffffffffffffffffffff8116611877576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612331565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61190c610d8c565b15611943576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b61194b611aab565b73ffffffffffffffffffffffffffffffffffffffff16611969610f17565b73ffffffffffffffffffffffffffffffffffffffff16146119b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612600565b6119be611fcd565b868152602080820185815273ffffffffffffffffffffffffffffffffffffffff80861660e08501908152858216610100860190815260408087018c8152606088018c81526001805460009081526002998a90529390932089518155965187840155905196860196909655945160038501556080860151600485015560a0860151600585015560c0860151600685015590516007840180549184167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790559051600890930180549390921692169190911790558054611a9f91612806565b60015550505050505050565b3390565b80471015611ae9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612459565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b0f906121ec565b60006040518083038185875af1925050503d8060008114611b4c576040519150601f19603f3d011682016040523d82523d6000602084013e611b51565b606091505b5050905080611b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906123fc565b505050565b611b8c8363a9059cbb60e01b8484604051602401611bb0929190612241565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611da0565b611c3a610d8c565b15611c71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612524565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cd9611aab565b604051611ce691906121ef565b60405180910390a1565b61058a846323b872dd60e01b858585604051602401611bb093929190612210565b611d19610d8c565b611d4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906122c3565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611cd9611aab565b6000611e02826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e569092919063ffffffff16565b805190915015611b8c5780806020019051810190611e2091906120ac565b611b8c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab906126da565b6060611e658484600085611e6f565b90505b9392505050565b606082471015611eab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612490565b611eb485611f70565b611eea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab90612635565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611f1391906121d0565b60006040518083038185875af1925050503d8060008114611f50576040519150601f19603f3d011682016040523d82523d6000602084013e611f55565b606091505b5091509150611f65828286611f7a565b979650505050505050565b803b15155b919050565b60608315611f89575081611e68565b825115611f995782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ab9190612272565b60405180610120016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f7557600080fd5b60006020828403121561207a578081fd5b611e6882612045565b60008060408385031215612095578081fd5b61209e83612045565b946020939093013593505050565b6000602082840312156120bd578081fd5b81518015158114611e68578182fd5b6000602082840312156120dd578081fd5b5035919050565b6000602082840312156120f5578081fd5b5051919050565b6000806040838503121561210e578182fd5b50508035926020909101359150565b600080600060608486031215612131578081fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561215d578081fd5b5050823594602084013594506040840135936060013592509050565b60008060008060008060c08789031215612191578182fd5b863595506020870135945060408701359350606087013592506121b660808801612045565b91506121c460a08801612045565b90509295509295509295565b600082516121e28184602087016128ab565b9190910192915050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b901515815260200190565b60006020825282518060208401526122918160408501602087016128ab565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60208082526014908201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604082015260600190565b6020808252600e908201527f43616e2d6e6f742d757064617465000000000000000000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600d908201527f496e76616c69642d726f756e6400000000000000000000000000000000000000604082015260600190565b6020808252600f908201527f43616e2d6e6f742d6465706f7369740000000000000000000000000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60408201527f722063616c6c0000000000000000000000000000000000000000000000000000606082015260800190565b60208082526011908201527f526f756e642d6e6f742d656e642d796574000000000000000000000000000000604082015260600190565b60208082526010908201527f5061757361626c653a2070617573656400000000000000000000000000000000604082015260600190565b6020808252600c908201527f496e76616c69642066756e640000000000000000000000000000000000000000604082015260600190565b6020808252600d908201527f416c72656164792d737461727400000000000000000000000000000000000000604082015260600190565b6020808252600c908201527f496e76616c69642d66756e640000000000000000000000000000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526015908201527f43616e2d6e6f742d77697468647261776e2d6e6f770000000000000000000000604082015260600190565b6020808252600e908201527f416c72656164792d706175736564000000000000000000000000000000000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f4465706f7369742d74696d652d6e6f742d656e642d7965740000000000000000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b988952602089019790975260408801959095526060870193909352608086019190915260a085015260c084015273ffffffffffffffffffffffffffffffffffffffff90811660e0840152166101008201526101200190565b60008219821115612819576128196128d7565b500190565b600082612852577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561288f5761288f6128d7565b500290565b6000828210156128a6576128a66128d7565b500390565b60005b838110156128c65781810151838201526020016128ae565b8381111561058a5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212203662159754c7b42fa40dbfeee7acad62d80a6951b067fe276a522bab67bea54264736f6c63430008000033