Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Code
Read Contract
Write Contract
- Contract name:
- TokenTimelock
- Optimization enabled
- false
- Compiler version
- v0.8.7+commit.e28d00a7
- EVM Version
- default
- Verified at
- 2021-12-18T18:17:24.231669Z
Constructor Arguments
00000000000000000000000069fdb77064ec5c84fa2f21072973eb28441f43f3000000000000000000000000141d48801abc47213d7f714b77618e698adcbe4400000000000000000000000000000000000000000000000000000000639f5883
Arg [0] (address) : 0x69fdb77064ec5c84fa2f21072973eb28441f43f3
Arg [1] (address) : 0x141d48801abc47213d7f714b77618e698adcbe44
Arg [2] (uint256) : 1671387267
Contract source code
/** *Submitted for verification at FtmScan.com on 2021-05-04 */ // 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); } /** * @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); } } } } /** * @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"); } } } /** * @dev A token holder contract that will allow a beneficiary to extract the * tokens after a given release time. * * Useful for simple vesting schedules like "advisors get all of their tokens * after 1 year". */ contract TokenTimelock { using SafeERC20 for IERC20; // ERC20 basic token contract being held IERC20 immutable private _token; // beneficiary of tokens after they are released address immutable private _beneficiary; // timestamp when token release is enabled uint256 immutable private _releaseTime; constructor (IERC20 token_, address beneficiary_, uint256 releaseTime_) { // solhint-disable-next-line not-rely-on-time require(releaseTime_ > block.timestamp, "TokenTimelock: release time is before current time"); _token = token_; _beneficiary = beneficiary_; _releaseTime = releaseTime_; } /** * @return the token being held. */ function token() public view virtual returns (IERC20) { return _token; } function verifyTimestamp() public view returns (uint256){ return block.timestamp; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view virtual returns (address) { return _beneficiary; } /** * @return the time when the tokens are released. */ function releaseTime() public view virtual returns (uint256) { return _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public virtual { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= releaseTime(), "TokenTimelock: current time is before release time"); uint256 amount = token().balanceOf(address(this)); require(amount > 0, "TokenTimelock: no tokens to release"); token().safeTransfer(beneficiary(), amount); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"token_","internalType":"contract IERC20"},{"type":"address","name":"beneficiary_","internalType":"address"},{"type":"uint256","name":"releaseTime_","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"beneficiary","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"release","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"releaseTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"token","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"verifyTimestamp","inputs":[]}]
Contract Creation Code
0x60e06040523480156200001157600080fd5b5060405162000eac38038062000eac833981810160405281019062000037919062000140565b4281116200007c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007390620001c3565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060c08181525050505050620002ea565b6000815190506200010c816200029c565b92915050565b6000815190506200012381620002b6565b92915050565b6000815190506200013a81620002d0565b92915050565b6000806000606084860312156200015c576200015b62000248565b5b60006200016c8682870162000112565b93505060206200017f86828701620000fb565b9250506040620001928682870162000129565b9150509250925092565b6000620001ab603283620001e5565b9150620001b8826200024d565b604082019050919050565b60006020820190508181036000830152620001de816200019c565b9050919050565b600082825260208201905092915050565b600062000203826200021e565b9050919050565b60006200021782620001f6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b7f546f6b656e54696d656c6f636b3a2072656c656173652074696d65206973206260008201527f65666f72652063757272656e742074696d650000000000000000000000000000602082015250565b620002a781620001f6565b8114620002b357600080fd5b50565b620002c1816200020a565b8114620002cd57600080fd5b50565b620002db816200023e565b8114620002e757600080fd5b50565b60805160601c60a05160601c60c051610b8d6200031f600039600061026f0152600060ea015260006102970152610b8d6000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80630ff6af811461005c57806338af3eed1461007a57806386d1a69f14610098578063b91d4001146100a2578063fc0c546a146100c0575b600080fd5b6100646100de565b60405161007191906108b0565b60405180910390f35b6100826100e6565b60405161008f919061078f565b60405180910390f35b6100a061010e565b005b6100aa61026b565b6040516100b791906108b0565b60405180910390f35b6100c8610293565b6040516100d591906107d3565b60405180910390f35b600042905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b61011661026b565b421015610158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014f90610810565b60405180910390fd5b6000610162610293565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161019a919061078f565b60206040518083038186803b1580156101b257600080fd5b505afa1580156101c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ea9190610605565b90506000811161022f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022690610890565b60405180910390fd5b61026861023a6100e6565b82610243610293565b73ffffffffffffffffffffffffffffffffffffffff166102bb9092919063ffffffff16565b50565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b61033c8363a9059cbb60e01b84846040516024016102da9291906107aa565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610341565b505050565b60006103a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166104089092919063ffffffff16565b905060008151111561040357808060200190518101906103c391906105d8565b610402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f990610870565b60405180910390fd5b5b505050565b60606104178484600085610420565b90509392505050565b606082471015610465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045c90610830565b60405180910390fd5b61046e85610534565b6104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a490610850565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516104d69190610778565b60006040518083038185875af1925050503d8060008114610513576040519150601f19603f3d011682016040523d82523d6000602084013e610518565b606091505b5091509150610528828286610547565b92505050949350505050565b600080823b905060008111915050919050565b60608315610557578290506105a7565b60008351111561056a5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e91906107ee565b60405180910390fd5b9392505050565b6000815190506105bd81610b29565b92915050565b6000815190506105d281610b40565b92915050565b6000602082840312156105ee576105ed6109ae565b5b60006105fc848285016105ae565b91505092915050565b60006020828403121561061b5761061a6109ae565b5b6000610629848285016105c3565b91505092915050565b61063b816108fd565b82525050565b600061064c826108cb565b61065681856108e1565b935061066681856020860161097b565b80840191505092915050565b61067b81610945565b82525050565b600061068c826108d6565b61069681856108ec565b93506106a681856020860161097b565b6106af816109b3565b840191505092915050565b60006106c76032836108ec565b91506106d2826109c4565b604082019050919050565b60006106ea6026836108ec565b91506106f582610a13565b604082019050919050565b600061070d601d836108ec565b915061071882610a62565b602082019050919050565b6000610730602a836108ec565b915061073b82610a8b565b604082019050919050565b60006107536023836108ec565b915061075e82610ada565b604082019050919050565b6107728161093b565b82525050565b60006107848284610641565b915081905092915050565b60006020820190506107a46000830184610632565b92915050565b60006040820190506107bf6000830185610632565b6107cc6020830184610769565b9392505050565b60006020820190506107e86000830184610672565b92915050565b600060208201905081810360008301526108088184610681565b905092915050565b60006020820190508181036000830152610829816106ba565b9050919050565b60006020820190508181036000830152610849816106dd565b9050919050565b6000602082019050818103600083015261086981610700565b9050919050565b6000602082019050818103600083015261088981610723565b9050919050565b600060208201905081810360008301526108a981610746565b9050919050565b60006020820190506108c56000830184610769565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006109088261091b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061095082610957565b9050919050565b600061096282610969565b9050919050565b60006109748261091b565b9050919050565b60005b8381101561099957808201518184015260208101905061097e565b838111156109a8576000848401525b50505050565b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206260008201527f65666f72652072656c656173652074696d650000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e54696d656c6f636b3a206e6f20746f6b656e7320746f2072656c6560008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b610b328161090f565b8114610b3d57600080fd5b50565b610b498161093b565b8114610b5457600080fd5b5056fea26469706673582212202be6012a3d2d069fbd215464b7dda43c35741c981be14d6ac4e5d859de3f599564736f6c6343000807003300000000000000000000000069fdb77064ec5c84fa2f21072973eb28441f43f3000000000000000000000000141d48801abc47213d7f714b77618e698adcbe4400000000000000000000000000000000000000000000000000000000639f5883
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106100575760003560e01c80630ff6af811461005c57806338af3eed1461007a57806386d1a69f14610098578063b91d4001146100a2578063fc0c546a146100c0575b600080fd5b6100646100de565b60405161007191906108b0565b60405180910390f35b6100826100e6565b60405161008f919061078f565b60405180910390f35b6100a061010e565b005b6100aa61026b565b6040516100b791906108b0565b60405180910390f35b6100c8610293565b6040516100d591906107d3565b60405180910390f35b600042905090565b60007f000000000000000000000000141d48801abc47213d7f714b77618e698adcbe44905090565b61011661026b565b421015610158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014f90610810565b60405180910390fd5b6000610162610293565b73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161019a919061078f565b60206040518083038186803b1580156101b257600080fd5b505afa1580156101c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101ea9190610605565b90506000811161022f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022690610890565b60405180910390fd5b61026861023a6100e6565b82610243610293565b73ffffffffffffffffffffffffffffffffffffffff166102bb9092919063ffffffff16565b50565b60007f00000000000000000000000000000000000000000000000000000000639f5883905090565b60007f00000000000000000000000069fdb77064ec5c84fa2f21072973eb28441f43f3905090565b61033c8363a9059cbb60e01b84846040516024016102da9291906107aa565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610341565b505050565b60006103a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166104089092919063ffffffff16565b905060008151111561040357808060200190518101906103c391906105d8565b610402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f990610870565b60405180910390fd5b5b505050565b60606104178484600085610420565b90509392505050565b606082471015610465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045c90610830565b60405180910390fd5b61046e85610534565b6104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a490610850565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516104d69190610778565b60006040518083038185875af1925050503d8060008114610513576040519150601f19603f3d011682016040523d82523d6000602084013e610518565b606091505b5091509150610528828286610547565b92505050949350505050565b600080823b905060008111915050919050565b60608315610557578290506105a7565b60008351111561056a5782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e91906107ee565b60405180910390fd5b9392505050565b6000815190506105bd81610b29565b92915050565b6000815190506105d281610b40565b92915050565b6000602082840312156105ee576105ed6109ae565b5b60006105fc848285016105ae565b91505092915050565b60006020828403121561061b5761061a6109ae565b5b6000610629848285016105c3565b91505092915050565b61063b816108fd565b82525050565b600061064c826108cb565b61065681856108e1565b935061066681856020860161097b565b80840191505092915050565b61067b81610945565b82525050565b600061068c826108d6565b61069681856108ec565b93506106a681856020860161097b565b6106af816109b3565b840191505092915050565b60006106c76032836108ec565b91506106d2826109c4565b604082019050919050565b60006106ea6026836108ec565b91506106f582610a13565b604082019050919050565b600061070d601d836108ec565b915061071882610a62565b602082019050919050565b6000610730602a836108ec565b915061073b82610a8b565b604082019050919050565b60006107536023836108ec565b915061075e82610ada565b604082019050919050565b6107728161093b565b82525050565b60006107848284610641565b915081905092915050565b60006020820190506107a46000830184610632565b92915050565b60006040820190506107bf6000830185610632565b6107cc6020830184610769565b9392505050565b60006020820190506107e86000830184610672565b92915050565b600060208201905081810360008301526108088184610681565b905092915050565b60006020820190508181036000830152610829816106ba565b9050919050565b60006020820190508181036000830152610849816106dd565b9050919050565b6000602082019050818103600083015261086981610700565b9050919050565b6000602082019050818103600083015261088981610723565b9050919050565b600060208201905081810360008301526108a981610746565b9050919050565b60006020820190506108c56000830184610769565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b60006109088261091b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061095082610957565b9050919050565b600061096282610969565b9050919050565b60006109748261091b565b9050919050565b60005b8381101561099957808201518184015260208101905061097e565b838111156109a8576000848401525b50505050565b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206260008201527f65666f72652072656c656173652074696d650000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f546f6b656e54696d656c6f636b3a206e6f20746f6b656e7320746f2072656c6560008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b610b328161090f565b8114610b3d57600080fd5b50565b610b498161093b565b8114610b5457600080fd5b5056fea26469706673582212202be6012a3d2d069fbd215464b7dda43c35741c981be14d6ac4e5d859de3f599564736f6c63430008070033