ETH Price: $3,262.72 (-0.93%)
 

Overview

Max Total Supply

14,229,602.833714535685426687 ESCRW

Holders

682

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
250.687664669546656624 ESCRW

Value
$0.00
0xe0fb861b7d7356b01dda573215d6e6146de192fe
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TimeLockNonTransferablePool

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 30 : TimeLockNonTransferablePool.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "./TimeLockPool.sol";
contract TimeLockNonTransferablePool is TimeLockPool {
constructor(
string memory _name,
string memory _symbol,
address _depositToken,
address _rewardToken,
address _escrowPool,
uint256 _escrowPortion,
uint256 _escrowDuration,
uint256 _maxBonus,
uint256 _maxLockDuration
) TimeLockPool(_name, _symbol, _depositToken, _rewardToken, _escrowPool, _escrowPortion, _escrowDuration, _maxBonus, _maxLockDuration) {
}
// disable transfers
function _transfer(address _from, address _to, uint256 _amount) internal pure override {
revert("NON_TRANSFERABLE");
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 30 : EnumerableSet.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 30 : SafeCast.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 30 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 30 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 30 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 30 : draft-EIP712.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ECDSA.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 30 : ECDSA.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 30 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 30 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 30 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 30 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 30 : SafeERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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));
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 30 : draft-IERC20Permit.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 30 : draft-ERC20Permit.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
using Counters for Counters.Counter;
mapping(address => Counters.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 30 : IERC20Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 30 : ERC20Votes.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./draft-ERC20Permit.sol";
import "../../../utils/math/Math.sol";
import "../../../utils/math/SafeCast.sol";
import "../../../utils/cryptography/ECDSA.sol";
/**
* @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
* and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
*
* NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
*
* This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
* by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
* power can be queried through the public accessors {getVotes} and {getPastVotes}.
*
* By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
* requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
* Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this
* will significantly increase the base gas cost of transfers.
*
* _Available since v4.2._
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 30 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 30 : ERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 30 : IAccessControlEnumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
/**
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
*/
interface IAccessControlEnumerable is IAccessControl {
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) external view returns (address);
/**
* @dev Returns the number of accounts that have `role`. Can be used
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 21 of 30 : IAccessControl.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 22 of 30 : AccessControlEnumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 23 of 30 : AccessControl.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 24 of 30 : ITimeLockPool.sol
1
2
3
4
5
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface ITimeLockPool {
function deposit(uint256 _amount, uint256 _duration, address _receiver) external;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 25 of 30 : IBasePool.sol
1
2
3
4
5
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface IBasePool {
function distributeRewards(uint256 _amount) external;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 26 of 30 : IAbstractRewards.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
interface IAbstractRewards {
/**
* @dev Returns the total amount of rewards a given address is able to withdraw.
* @param account Address of a reward recipient
* @return A uint256 representing the rewards `account` can withdraw
*/
function withdrawableRewardsOf(address account) external view returns (uint256);
/**
* @dev View the amount of funds that an address has withdrawn.
* @param account The address of a token holder.
* @return The amount of funds that `account` has withdrawn.
*/
function withdrawnRewardsOf(address account) external view returns (uint256);
/**
* @dev View the amount of funds that an address has earned in total.
* accumulativeFundsOf(account) = withdrawableRewardsOf(account) + withdrawnRewardsOf(account)
* = (pointsPerShare * balanceOf(account) + pointsCorrection[account]) / POINTS_MULTIPLIER
* @param account The address of a token holder.
* @return The amount of funds that `account` has earned in total.
*/
function cumulativeRewardsOf(address account) external view returns (uint256);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 27 of 30 : TokenSaver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
contract TokenSaver is AccessControlEnumerable {
using SafeERC20 for IERC20;
bytes32 public constant TOKEN_SAVER_ROLE = keccak256("TOKEN_SAVER_ROLE");
event TokenSaved(address indexed by, address indexed receiver, address indexed token, uint256 amount);
modifier onlyTokenSaver() {
require(hasRole(TOKEN_SAVER_ROLE, _msgSender()), "TokenSaver.onlyTokenSaver: permission denied");
_;
}
constructor() {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
}
function saveToken(address _token, address _receiver, uint256 _amount) external onlyTokenSaver {
IERC20(_token).safeTransfer(_receiver, _amount);
emit TokenSaved(_msgSender(), _receiver, _token, _amount);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 28 of 30 : BasePool.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "../interfaces/IBasePool.sol";
import "../interfaces/ITimeLockPool.sol";
import "./AbstractRewards.sol";
import "./TokenSaver.sol";
abstract contract BasePool is ERC20Votes, AbstractRewards, IBasePool, TokenSaver {
using SafeERC20 for IERC20;
using SafeCast for uint256;
using SafeCast for int256;
IERC20 public immutable depositToken;
IERC20 public immutable rewardToken;
ITimeLockPool public immutable escrowPool;
uint256 public immutable escrowPortion; // how much is escrowed 1e18 == 100%
uint256 public immutable escrowDuration; // escrow duration in seconds
event RewardsClaimed(address indexed _from, address indexed _receiver, uint256 _escrowedAmount, uint256 _nonEscrowedAmount);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 29 of 30 : AbstractRewards.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "../interfaces/IAbstractRewards.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
/**
* @dev Based on: https://github.com/indexed-finance/dividends/blob/master/contracts/base/AbstractDividends.sol
* Renamed dividends to rewards.
* @dev (OLD) Many functions in this contract were taken from this repository:
* https://github.com/atpar/funds-distribution-token/blob/master/contracts/FundsDistributionToken.sol
* which is an example implementation of ERC 2222, the draft for which can be found at
* https://github.com/atpar/funds-distribution-token/blob/master/EIP-DRAFT.md
*
* This contract has been substantially modified from the original and does not comply with ERC 2222.
* Many functions were renamed as "rewards" rather than "funds" and the core functionality was separated
* into this abstract contract which can be inherited by anything tracking ownership of reward shares.
*/
abstract contract AbstractRewards is IAbstractRewards {
using SafeCast for uint128;
using SafeCast for uint256;
using SafeCast for int256;
/* ======== Constants ======== */
uint128 public constant POINTS_MULTIPLIER = type(uint128).max;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 30 of 30 : TimeLockPool.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./base/BasePool.sol";
import "./interfaces/ITimeLockPool.sol";
contract TimeLockPool is BasePool, ITimeLockPool {
using Math for uint256;
using SafeERC20 for IERC20;
uint256 public immutable maxBonus;
uint256 public immutable maxLockDuration;
uint256 public constant MIN_LOCK_DURATION = 10 minutes;
mapping(address => Deposit[]) public depositsOf;
struct Deposit {
uint256 amount;
uint64 start;
uint64 end;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_depositToken","type":"address"},{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"address","name":"_escrowPool","type":"address"},{"internalType":"uint256","name":"_escrowPortion","type":"uint256"},{"internalType":"uint256","name":"_escrowDuration","type":"uint256"},{"internalType":"uint256","name":"_maxBonus","type":"uint256"},{"internalType":"uint256","name":"_maxLockDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"_escrowedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_nonEscrowedAmount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewardsDistributed","type":"uint256"}],"name":"RewardsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":false,"internalType":"uint256","name":"fundsWithdrawn","type":"uint256"}],"name":"RewardsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"by","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenSaved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"depositId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_LOCK_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POINTS_MULTIPLIER","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_SAVER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"cumulativeRewardsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"depositsOf","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"end","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"escrowDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"escrowPool","outputs":[{"internalType":"contract ITimeLockPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"escrowPortion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getDepositsOf","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint64","name":"start","type":"uint64"},{"internalType":"uint64","name":"end","type":"uint64"}],"internalType":"struct TimeLockPool.Deposit[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getDepositsOfLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getTotalDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pointsCorrection","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pointsPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"saveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_depositId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"withdrawableRewardsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawnRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"withdrawnRewardsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6102606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b5060405162004b5d38038062004b5d8339810160408190526200005a9162000af6565b88888888888888888888888888888888620003e860201b62001023176200040360201b62000dfd178880604051806040016040528060018152602001603160f81b8152508b8b8160039080519060200190620000b89291906200097e565b508051620000ce9060049060208401906200097e565b5050825160208085019190912083519184019190912060c082905260e08190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200012381848462000409565b60805261010052505050505060c091821b6001600160c01b031990811661014052911b16610160526200015f6000620001593390565b62000453565b670de0b6b3a7640000821115620001d85760405162461bcd60e51b815260206004820152603260248201527f42617365506f6f6c2e636f6e7374727563746f723a2043616e6e6f7420657363604482015271726f77206d6f7265207468616e203130302560701b60648201526084015b60405180910390fd5b6001600160a01b038516620002485760405162461bcd60e51b815260206004820152602f60248201527f42617365506f6f6c2e636f6e7374727563746f723a204465706f73697420746f60448201526e1ad95b881b5d5cdd081899481cd95d608a1b6064820152608401620001cf565b6001600160a01b038416620002b75760405162461bcd60e51b815260206004820152602e60248201527f42617365506f6f6c2e636f6e7374727563746f723a2052657761726420746f6b60448201526d195b881b5d5cdd081899481cd95d60921b6064820152608401620001cf565b6001600160601b0319606086811b82166101805285811b82166101a05284901b166101c0526101e08290526102008190526001600160a01b038316156200031f576200031f83600019866001600160a01b03166200049660201b62001c47179092919060201c565b50505050505050610258811015620003c65760405162461bcd60e51b815260206004820152605e60248201527f54696d654c6f636b506f6f6c2e636f6e7374727563746f723a206d6178206c6f60448201527f636b206475726174696f6e206d7573742062652067726561746572206f72206560648201527f7175616c20746f206d696e696e6d756d206c6f636b206475726174696f6e0000608482015260a401620001cf565b61022091909152610240525062000cb29e505050505050505050505050505050565b6001600160a01b031660009081526020819052604090205490565b60025490565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6200046a8282620005f060201b62001d9e1760201c565b6000828152600d602090815260409091206200049191839062001dac62000600821b17901c565b505050565b801580620005245750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b158015620004e757600080fd5b505afa158015620004fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000522919062000bbf565b155b620005985760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401620001cf565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620004919185916200062016565b620005fc8282620006fe565b5050565b600062000617836001600160a01b038416620007a2565b90505b92915050565b60006200067c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620007f460201b62001dc1179092919060201c565b8051909150156200049157808060200190518101906200069d919062000ad2565b620004915760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401620001cf565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff16620005fc576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200075e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620007eb575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200061a565b5060006200061a565b60606200080584846000856200080d565b949350505050565b606082471015620008705760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401620001cf565b843b620008c05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001cf565b600080866001600160a01b03168587604051620008de919062000bd9565b60006040518083038185875af1925050503d80600081146200091d576040519150601f19603f3d011682016040523d82523d6000602084013e62000922565b606091505b5090925090506200093582828662000940565b979650505050505050565b60608315620009515750816200044c565b825115620009625782518084602001fd5b8160405162461bcd60e51b8152600401620001cf919062000bf7565b8280546200098c9062000c5f565b90600052602060002090601f016020900481019282620009b05760008555620009fb565b82601f10620009cb57805160ff1916838001178555620009fb565b82800160010185558215620009fb579182015b82811115620009fb578251825591602001919060010190620009de565b5062000a0992915062000a0d565b5090565b5b8082111562000a09576000815560010162000a0e565b80516001600160a01b038116811462000a3c57600080fd5b919050565b600082601f83011262000a5357600080fd5b81516001600160401b038082111562000a705762000a7062000c9c565b604051601f8301601f19908116603f0116810190828211818310171562000a9b5762000a9b62000c9c565b8160405283815286602085880101111562000ab557600080fd5b62000ac884602083016020890162000c2c565b9695505050505050565b60006020828403121562000ae557600080fd5b815180151581146200044c57600080fd5b60008060008060008060008060006101208a8c03121562000b1657600080fd5b89516001600160401b038082111562000b2e57600080fd5b62000b3c8d838e0162000a41565b9a5060208c015191508082111562000b5357600080fd5b5062000b628c828d0162000a41565b98505062000b7360408b0162000a24565b965062000b8360608b0162000a24565b955062000b9360808b0162000a24565b945060a08a0151935060c08a0151925060e08a015191506101008a015190509295985092959850929598565b60006020828403121562000bd257600080fd5b5051919050565b6000825162000bed81846020870162000c2c565b9190910192915050565b602081526000825180602084015262000c1881604085016020870162000c2c565b601f01601f19169190910160400192915050565b60005b8381101562000c4957818101518382015260200162000c2f565b8381111562000c59576000848401525b50505050565b600181811c9082168062000c7457607f821691505b6020821081141562000c9657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051610120516101405160c01c6101605160c01c6101805160601c6101a05160601c6101c05160601c6101e051610200516102205161024051613d9c62000dc1600039600081816107280152818161121501526116880152600081816104dc01526116ad0152600081816105030152611aa701526000818161085f0152611a1601526000818161059401528181611a610152611add01526000818161095501528181610fbb0152611b5001526000818161082501528181610c37015261124e0152600061232201526000610db0015260006118df015260006120f4015260006121430152600061211e015260006120a2015260006120cb0152613d9c6000f3fe608060405234801561001057600080fd5b50600436106103825760003560e01c8063804d9426116101de578063adf8252d1161010f578063d1f52983116100ad578063dd6624e41161007c578063dd6624e4146108e0578063ef5cfb8c14610900578063f1127ed814610913578063f7c618c11461095057600080fd5b8063d1f529831461085a578063d505accf14610881578063d547741f14610894578063dd62ed3e146108a757600080fd5b8063b8162dd2116100e9578063b8162dd2146107e4578063c3cda5201461080d578063c89039c514610820578063ca15c8731461084757600080fd5b8063adf8252d14610778578063ae22192e1461078b578063b182eb91146107c457600080fd5b806395d89b411161017c578063a16cdbb111610156578063a16cdbb114610723578063a217fddf1461074a578063a457c2d714610752578063a9059cbb1461076557600080fd5b806395d89b41146106f55780639ab24eb0146106fd5780639afdb2c21461071057600080fd5b80638e539e8c116101b85780638e539e8c146106965780638f2203f6146106a95780639010d07c146106cf57806391d14854146106e257600080fd5b8063804d942614610650578063857184d1146106705780638dbdbe6d1461068357600080fd5b80633a46b1a8116102b85780636fcfff451161025657806378b4330f1161023057806378b4330f146106185780637cd0b5c7146106215780637e245d79146106345780637ecebe001461063d57600080fd5b80636fcfff45146105b657806370a08231146105de57806376175b06146105f157600080fd5b8063587cde1e11610292578063587cde1e1461052557806359974e38146105695780635c19a95c1461057c57806368570e6a1461058f57600080fd5b80633a46b1a8146104c457806354c5b696146104d757806357c2c2ba146104fe57600080fd5b806323b872dd11610325578063313ce567116102ff578063313ce567146104875780633644e5151461049657806336568abe1461049e57806339509351146104b157600080fd5b806323b872dd1461043e578063248a9ca3146104515780632f2ff15d1461047457600080fd5b8063095ea7b311610361578063095ea7b3146103d957806310accecc146103ec57806318160ddd1461040d57806318f9e2911461041557600080fd5b8062f714ce1461038757806301ffc9a71461039c57806306fdde03146103c4575b600080fd5b61039a6103953660046138d5565b610977565b005b6103af6103aa36600461391a565b610ca9565b60405190151581526020015b60405180910390f35b6103cc610cd4565b6040516103bb9190613a8a565b6103af6103e73660046137d8565b610d66565b6103ff6103fa3660046136e4565b610d7c565b6040519081526020016103bb565b6002546103ff565b6103ff6104233660046136e4565b6001600160a01b03166000908152600b602052604090205490565b6103af61044c366004613732565b610e03565b6103ff61045f3660046138bc565b6000908152600c602052604090206001015490565b61039a6104823660046138d5565b610eaf565b604051601281526020016103bb565b6103ff610ed6565b61039a6104ac3660046138d5565b610ee5565b6103af6104bf3660046137d8565b610f07565b6103ff6104d23660046137d8565b610f43565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b6105516105333660046136e4565b6001600160a01b039081166000908152600660205260409020541690565b6040516001600160a01b0390911681526020016103bb565b61039a6105773660046138bc565b610fb6565b61039a61058a3660046136e4565b610ff7565b6105517f000000000000000000000000000000000000000000000000000000000000000081565b6105c96105c43660046136e4565b611001565b60405163ffffffff90911681526020016103bb565b6103ff6105ec3660046136e4565b611023565b6103ff7fd9d917c4034cff8a8c5fa1e40f9fbaf906b827c33ae3ab1fcabbb616cb8ef24d81565b6103ff61025881565b6103ff61062f3660046136e4565b61103e565b6103ff60095481565b6103ff61064b3660046136e4565b61106a565b61066361065e3660046136e4565b611088565b6040516103bb9190613a23565b6103ff61067e3660046136e4565b611126565b61039a61069136600461395d565b6111ae565b6103ff6106a43660046138bc565b6113a8565b6106b76001600160801b0381565b6040516001600160801b0390911681526020016103bb565b6105516106dd3660046138f8565b611404565b6103af6106f03660046138d5565b61141c565b6103cc611447565b6103ff61070b3660046136e4565b611456565b61039a61071e366004613732565b6114dd565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b6103ff600081565b6103af6107603660046137d8565b6115de565b6103af6107733660046137d8565b611677565b6103ff6107863660046138bc565b611684565b61079e6107993660046137d8565b6116ed565b6040805193845267ffffffffffffffff92831660208501529116908201526060016103bb565b6103ff6107d23660046136e4565b600a6020526000908152604090205481565b6103ff6107f23660046136e4565b6001600160a01b03166000908152600e602052604090205490565b61039a61081b366004613802565b61173e565b6105517f000000000000000000000000000000000000000000000000000000000000000081565b6103ff6108553660046138bc565b611874565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b61039a61088f36600461376e565b61188b565b61039a6108a23660046138d5565b6119ef565b6103ff6108b53660046136ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ff6108ee3660046136e4565b600b6020526000908152604090205481565b61039a61090e3660046136e4565b6119f9565b61092661092136600461385a565b611bc3565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016103bb565b6105517f000000000000000000000000000000000000000000000000000000000000000081565b336000908152600e602052604090205482106109f05760405162461bcd60e51b815260206004820152602d60248201527f54696d654c6f636b506f6f6c2e77697468647261773a204465706f736974206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b60648201526084015b60405180910390fd5b336000908152600e60205260408120805484908110610a1157610a11613d3a565b6000918252602091829020604080516060810182526002909302909101805483526001015467ffffffffffffffff80821694840194909452600160401b90049092169181018290529150421015610aaa5760405162461bcd60e51b815260206004820152601f60248201527f54696d654c6f636b506f6f6c2e77697468647261773a20746f6f20736f6f6e0060448201526064016109e7565b6000670de0b6b3a7640000610adb83602001518460400151610acc9190613c1f565b67ffffffffffffffff16611684565b8351610ae79190613be9565b610af19190613b42565b336000908152600e60205260409020805491925090610b1290600190613c08565b81548110610b2257610b22613d3a565b9060005260206000209060020201600e6000610b3b3390565b6001600160a01b03166001600160a01b031681526020019081526020016000208581548110610b6c57610b6c613d3a565b600091825260208083208454600293909302019182556001938401805494909201805467ffffffffffffffff95861667ffffffffffffffff1982168117835593546001600160801b0319909116909317600160401b93849004909516909202939093179055338152600e90915260409020805480610bec57610bec613d24565b60008281526020812060026000199093019283020190815560010180546001600160801b03191690559055610c27610c213390565b82611dd8565b8151610c5f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908590611df4565b815160405190815233906001600160a01b0385169086907fe5df19de43c8c04fd192bc68e484b2593570925fbb6ad8c07ccafbc2aa5c37a19060200160405180910390a450505050565b60006001600160e01b03198216635a05180f60e01b1480610cce5750610cce82611e24565b92915050565b606060038054610ce390613c8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f90613c8b565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b5050505050905090565b6000610d73338484611e59565b50600192915050565b6001600160a01b0381166000908152600a60205260408120546001600160801b0390610df390610de4610dd28663ffffffff7f000000000000000000000000000000000000000000000000000000000000000016565b600954610ddf9190613be9565b611f7d565b610dee9190613abd565b611feb565b610cce9190613b42565b60025490565b6000610e1084848461203d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e955760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e7565b610ea28533858403611e59565b60019150505b9392505050565b610eb98282612078565b6000828152600d60205260409020610ed19082611dac565b505050565b6000610ee061209e565b905090565b610eef8282612191565b6000828152600d60205260409020610ed1908261220b565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d73918590610f3e908690613afe565b611e59565b6000438210610f945760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016109e7565b6001600160a01b0383166000908152600760205260409020610ea89083612220565b610feb7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163330846122dd565b610ff48161231b565b50565b610ff4338261242c565b6001600160a01b038116600090815260076020526040812054610cce906124bb565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b0381166000908152600b602052604081205461106083610d7c565b610cce9190613c08565b6001600160a01b038116600090815260056020526040812054610cce565b6001600160a01b0381166000908152600e60209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561111b57600084815260209081902060408051606081018252600286029092018054835260019081015467ffffffffffffffff80821685870152600160401b909104169183019190915290835290920191016110c0565b505050509050919050565b60008060005b6001600160a01b0384166000908152600e60205260409020548110156111a7576001600160a01b0384166000908152600e6020526040902080548290811061117657611176613d3a565b906000526020600020906002020160000154826111939190613afe565b91508061119f81613cc0565b91505061112c565b5092915050565b6000831161120d5760405162461bcd60e51b815260206004820152602660248201527f54696d654c6f636b506f6f6c2e6465706f7369743a2063616e6e6f742064657060448201526506f73697420360d41b60648201526084016109e7565b6000611239837f0000000000000000000000000000000000000000000000000000000000000000612520565b905061124781610258612536565b905061127e7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163330876122dd565b600e6000836001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052808681526020014267ffffffffffffffff16815260200183426112d09190613b16565b67ffffffffffffffff908116909152825460018181018555600094855260208086208551600290940201928355840151910180546040909401518316600160401b026001600160801b03199094169190921617919091179055670de0b6b3a764000061133b83611684565b6113459087613be9565b61134f9190613b42565b905061135b8382612546565b604080518681526020810184905233916001600160a01b038616917f34194be2f096bdb2ad418add902a4da76d3d6f6d387d86d857f56c7711ecca70910160405180910390a35050505050565b60004382106113f95760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016109e7565b610cce600883612220565b6000828152600d60205260408120610ea89083612566565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610ce390613c8b565b6001600160a01b03811660009081526007602052604081205480156114ca576001600160a01b0383166000908152600760205260409020611498600183613c08565b815481106114a8576114a8613d3a565b60009182526020909120015464010000000090046001600160e01b03166114cd565b60005b6001600160e01b03169392505050565b6115077fd9d917c4034cff8a8c5fa1e40f9fbaf906b827c33ae3ab1fcabbb616cb8ef24d3361141c565b6115685760405162461bcd60e51b815260206004820152602c60248201527f546f6b656e53617665722e6f6e6c79546f6b656e53617665723a207065726d6960448201526b1cdcda5bdb8819195b9a595960a21b60648201526084016109e7565b61157c6001600160a01b0384168383611df4565b826001600160a01b0316826001600160a01b03166115973390565b6001600160a01b03167f30d87cec6b4c56cede1018725d1e6d9304e2f7ee6d25b004b7e2183f793f26bc846040516115d191815260200190565b60405180910390a4505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e7565b61166d3385858403611e59565b5060019392505050565b6000610d7333848461203d565b60007f00000000000000000000000000000000000000000000000000000000000000006116d1837f0000000000000000000000000000000000000000000000000000000000000000613be9565b6116db9190613b42565b610cce90670de0b6b3a7640000613afe565b600e602052816000526040600020818154811061170957600080fd5b60009182526020909120600290910201805460019091015490925067ffffffffffffffff8082169250600160401b9091041683565b8342111561178e5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016109e7565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090611808906118009060a00160405160208183030381529060405280519060200120612572565b8585856125c0565b9050611813816125e8565b86146118615760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016109e7565b61186b818861242c565b50505050505050565b6000818152600d60205260408120610cce90612610565b834211156118db5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016109e7565b60007f000000000000000000000000000000000000000000000000000000000000000088888861190a8c6125e8565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061196582612572565b90506000611975828787876125c0565b9050896001600160a01b0316816001600160a01b0316146119d85760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016109e7565b6119e38a8a8a611e59565b50505050505050505050565b610eef828261261a565b6000611a0433612640565b90506000670de0b6b3a7640000611a3b7f000000000000000000000000000000000000000000000000000000000000000084613be9565b611a459190613b42565b90506000611a538284613c08565b90508115801590611a8c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15611b3a57604051638dbdbe6d60e01b8152600481018390527f000000000000000000000000000000000000000000000000000000000000000060248201526001600160a01b0385811660448301527f00000000000000000000000000000000000000000000000000000000000000001690638dbdbe6d90606401600060405180830381600087803b158015611b2157600080fd5b505af1158015611b35573d6000803e3d6000fd5b505050505b6001811115611b7757611b776001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168583611df4565b60408051838152602081018390526001600160a01b0386169133917fd92c424393cb3ccdf7d5e36602e3bfa34f24490579ba47978f4bcfad496995f2910160405180910390a350505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff8416908110611c0757611c07613d3a565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b801580611cd05750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b158015611c9657600080fd5b505afa158015611caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cce9190613944565b155b611d3b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016109e7565b6040516001600160a01b038316602482015260448101829052610ed190849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526126d5565b611da882826127a7565b5050565b6000610ea8836001600160a01b03841661282d565b6060611dd0848460008561287c565b949350505050565b611de282826129a4565b611da882611def83611f7d565b6129bc565b6040516001600160a01b038316602482015260448101829052610ed190849063a9059cbb60e01b90606401611d67565b60006001600160e01b03198216637965db0b60e01b1480610cce57506301ffc9a760e01b6001600160e01b0319831614610cce565b6001600160a01b038316611ebb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e7565b6001600160a01b038216611f1c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006001600160ff1b03821115611fe75760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b60648201526084016109e7565b5090565b600080821215611fe75760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f73697469766560448201526064016109e7565b60405162461bcd60e51b815260206004820152601060248201526f4e4f4e5f5452414e5346455241424c4560801b60448201526064016109e7565b6000828152600c60205260409020600101546120948133612a0c565b610ed183836127a7565b60007f00000000000000000000000000000000000000000000000000000000000000004614156120ed57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b03811633146122015760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109e7565b611da88282612a70565b6000610ea8836001600160a01b038416612ad7565b8154600090815b8181101561228457600061223b8284612bca565b90508486828154811061225057612250613d3a565b60009182526020909120015463ffffffff1611156122705780925061227e565b61227b816001613afe565b91505b50612227565b81156122c85784612296600184613c08565b815481106122a6576122a6613d3a565b60009182526020909120015464010000000090046001600160e01b03166122cb565b60005b6001600160e01b031695945050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526123159085906323b872dd60e01b90608401611d67565b50505050565b60006123497f000000000000000000000000000000000000000000000000000000000000000063ffffffff16565b9050600081116123c15760405162461bcd60e51b815260206004820152603e60248201527f4162737472616374526577617264732e5f64697374726962757465526577617260448201527f64733a20746f74616c20736861726520737570706c79206973207a65726f000060648201526084016109e7565b8115611da857806123d96001600160801b0384613be9565b6123e39190613b42565b6009546123f09190613afe565b60095560405182815233907fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0869060200160405180910390a25050565b6001600160a01b038281166000908152600660205260408120549091169061245384611023565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612315828483612be5565b600063ffffffff821115611fe75760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016109e7565b600081831061252f5781610ea8565b5090919050565b60008183101561252f5781610ea8565b6125508282612d22565b611da88261255d83611f7d565b611def90613cdb565b6000610ea88383612dac565b6000610cce61257f61209e565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006125d187878787612dd6565b915091506125de81612ec3565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610cce825490565b6000828152600c60205260409020600101546126368133612a0c565b610ed18383612a70565b60008061264c8361103e565b90508015610cce576001600160a01b0383166000908152600b6020526040902054612678908290613afe565b6001600160a01b0384166000818152600b6020526040908190209290925590517f8a43c4352486ec339f487f64af78ca5cbf06cd47833f073d3baf3a193e503161906126c79084815260200190565b60405180910390a292915050565b600061272a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611dc19092919063ffffffff16565b805190915015610ed15780806020019051810190612748919061389a565b610ed15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109e7565b6127b1828261141c565b611da8576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff191660011790556127e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461287457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cce565b506000610cce565b6060824710156128dd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016109e7565b843b61292b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109e7565b600080866001600160a01b031685876040516129479190613992565b60006040518083038185875af1925050503d8060008114612984576040519150601f19603f3d011682016040523d82523d6000602084013e612989565b606091505b509150915061299982828661307e565b979650505050505050565b6129ae82826130b7565b612315600861320c83613218565b6009546129c99082613b64565b6001600160a01b0383166000908152600a60205260409020546129ec9190613abd565b6001600160a01b039092166000908152600a602052604090209190915550565b612a16828261141c565b611da857612a2e816001600160a01b03166014613391565b612a39836020613391565b604051602001612a4a9291906139ae565b60408051601f198184030181529082905262461bcd60e51b82526109e791600401613a8a565b612a7a828261141c565b15611da8576000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612bc0576000612afb600183613c08565b8554909150600090612b0f90600190613c08565b9050818114612b74576000866000018281548110612b2f57612b2f613d3a565b9060005260206000200154905080876000018481548110612b5257612b52613d3a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612b8557612b85613d24565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cce565b6000915050610cce565b6000612bd96002848418613b42565b610ea890848416613afe565b816001600160a01b0316836001600160a01b031614158015612c075750600081115b15610ed1576001600160a01b03831615612c95576001600160a01b03831660009081526007602052604081208190612c429061320c85613218565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612c8a929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610ed1576001600160a01b03821660009081526007602052604081208190612ccb9061352d85613218565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612d13929190918252602082015260400190565b60405180910390a25050505050565b612d2c8282613539565b6002546001600160e01b031015612d9e5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016109e7565b612315600861352d83613218565b6000826000018281548110612dc357612dc3613d3a565b9060005260206000200154905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612e0d5750600090506003612eba565b8460ff16601b14158015612e2557508460ff16601c14155b15612e365750600090506004612eba565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e8a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612eb357600060019250925050612eba565b9150600090505b94509492505050565b6000816004811115612ed757612ed7613d0e565b1415612ee05750565b6001816004811115612ef457612ef4613d0e565b1415612f425760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109e7565b6002816004811115612f5657612f56613d0e565b1415612fa45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109e7565b6003816004811115612fb857612fb8613d0e565b14156130115760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109e7565b600481600481111561302557613025613d0e565b1415610ff45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109e7565b6060831561308d575081610ea8565b82511561309d5782518084602001fd5b8160405162461bcd60e51b81526004016109e79190613a8a565b6001600160a01b0382166131175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109e7565b6001600160a01b0382166000908152602081905260409020548181101561318b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109e7565b6001600160a01b03831660009081526020819052604081208383039055600280548492906131ba908490613c08565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610ed18360008461361c565b6000610ea88284613c08565b8254600090819080156132635785613231600183613c08565b8154811061324157613241613d3a565b60009182526020909120015464010000000090046001600160e01b0316613266565b60005b6001600160e01b0316925061327f83858763ffffffff16565b91506000811180156132bd57504386613299600184613c08565b815481106132a9576132a9613d3a565b60009182526020909120015463ffffffff16145b1561331d576132cb8261364e565b866132d7600184613c08565b815481106132e7576132e7613d3a565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550613388565b856040518060400160405280613332436124bb565b63ffffffff1681526020016133468561364e565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b606060006133a0836002613be9565b6133ab906002613afe565b67ffffffffffffffff8111156133c3576133c3613d50565b6040519080825280601f01601f1916602001820160405280156133ed576020820181803683370190505b509050600360fc1b8160008151811061340857613408613d3a565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061343757613437613d3a565b60200101906001600160f81b031916908160001a905350600061345b846002613be9565b613466906001613afe565b90505b60018111156134de576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061349a5761349a613d3a565b1a60f81b8282815181106134b0576134b0613d3a565b60200101906001600160f81b031916908160001a90535060049490941c936134d781613c74565b9050613469565b508315610ea85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109e7565b6000610ea88284613afe565b6001600160a01b03821661358f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109e7565b80600260008282546135a19190613afe565b90915550506001600160a01b038216600090815260208190526040812080548392906135ce908490613afe565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3611da8600083835b6001600160a01b03838116600090815260066020526040808220548584168352912054610ed192918216911683612be5565b60006001600160e01b03821115611fe75760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016109e7565b80356001600160a01b03811681146136ce57600080fd5b919050565b803560ff811681146136ce57600080fd5b6000602082840312156136f657600080fd5b610ea8826136b7565b6000806040838503121561371257600080fd5b61371b836136b7565b9150613729602084016136b7565b90509250929050565b60008060006060848603121561374757600080fd5b613750846136b7565b925061375e602085016136b7565b9150604084013590509250925092565b600080600080600080600060e0888a03121561378957600080fd5b613792886136b7565b96506137a0602089016136b7565b955060408801359450606088013593506137bc608089016136d3565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156137eb57600080fd5b6137f4836136b7565b946020939093013593505050565b60008060008060008060c0878903121561381b57600080fd5b613824876136b7565b95506020870135945060408701359350613840606088016136d3565b92506080870135915060a087013590509295509295509295565b6000806040838503121561386d57600080fd5b613876836136b7565b9150602083013563ffffffff8116811461388f57600080fd5b809150509250929050565b6000602082840312156138ac57600080fd5b81518015158114610ea857600080fd5b6000602082840312156138ce57600080fd5b5035919050565b600080604083850312156138e857600080fd5b82359150613729602084016136b7565b6000806040838503121561390b57600080fd5b50508035926020909101359150565b60006020828403121561392c57600080fd5b81356001600160e01b031981168114610ea857600080fd5b60006020828403121561395657600080fd5b5051919050565b60008060006060848603121561397257600080fd5b8335925060208401359150613989604085016136b7565b90509250925092565b600082516139a4818460208701613c48565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516139e6816017850160208801613c48565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613a17816028840160208801613c48565b01602801949350505050565b602080825282518282018190526000919060409081850190868401855b82811015613a7d578151805185528681015167ffffffffffffffff9081168887015290860151168585015260609093019290850190600101613a40565b5091979650505050505050565b6020815260008251806020840152613aa9816040850160208701613c48565b601f01601f19169190910160400192915050565b600080821280156001600160ff1b0384900385131615613adf57613adf613cf8565b600160ff1b8390038412811615613af857613af8613cf8565b50500190565b60008219821115613b1157613b11613cf8565b500190565b600067ffffffffffffffff808316818516808303821115613b3957613b39613cf8565b01949350505050565b600082613b5f57634e487b7160e01b600052601260045260246000fd5b500490565b60006001600160ff1b0381841382841380821686840486111615613b8a57613b8a613cf8565b600160ff1b6000871282811687830589121615613ba957613ba9613cf8565b60008712925087820587128484161615613bc557613bc5613cf8565b87850587128184161615613bdb57613bdb613cf8565b505050929093029392505050565b6000816000190483118215151615613c0357613c03613cf8565b500290565b600082821015613c1a57613c1a613cf8565b500390565b600067ffffffffffffffff83811690831681811015613c4057613c40613cf8565b039392505050565b60005b83811015613c63578181015183820152602001613c4b565b838111156123155750506000910152565b600081613c8357613c83613cf8565b506000190190565b600181811c90821680613c9f57607f821691505b6020821081141561260a57634e487b7160e01b600052602260045260246000fd5b6000600019821415613cd457613cd4613cf8565b5060010190565b6000600160ff1b821415613cf157613cf1613cf8565b5060000390565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220279bd24b6f8ad704565bc54e3d78cdcd007212e4e6e51caf11c05f68fe132f0e64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5700000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000000000000000000a457363726f77506f6f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054553435257000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103825760003560e01c8063804d9426116101de578063adf8252d1161010f578063d1f52983116100ad578063dd6624e41161007c578063dd6624e4146108e0578063ef5cfb8c14610900578063f1127ed814610913578063f7c618c11461095057600080fd5b8063d1f529831461085a578063d505accf14610881578063d547741f14610894578063dd62ed3e146108a757600080fd5b8063b8162dd2116100e9578063b8162dd2146107e4578063c3cda5201461080d578063c89039c514610820578063ca15c8731461084757600080fd5b8063adf8252d14610778578063ae22192e1461078b578063b182eb91146107c457600080fd5b806395d89b411161017c578063a16cdbb111610156578063a16cdbb114610723578063a217fddf1461074a578063a457c2d714610752578063a9059cbb1461076557600080fd5b806395d89b41146106f55780639ab24eb0146106fd5780639afdb2c21461071057600080fd5b80638e539e8c116101b85780638e539e8c146106965780638f2203f6146106a95780639010d07c146106cf57806391d14854146106e257600080fd5b8063804d942614610650578063857184d1146106705780638dbdbe6d1461068357600080fd5b80633a46b1a8116102b85780636fcfff451161025657806378b4330f1161023057806378b4330f146106185780637cd0b5c7146106215780637e245d79146106345780637ecebe001461063d57600080fd5b80636fcfff45146105b657806370a08231146105de57806376175b06146105f157600080fd5b8063587cde1e11610292578063587cde1e1461052557806359974e38146105695780635c19a95c1461057c57806368570e6a1461058f57600080fd5b80633a46b1a8146104c457806354c5b696146104d757806357c2c2ba146104fe57600080fd5b806323b872dd11610325578063313ce567116102ff578063313ce567146104875780633644e5151461049657806336568abe1461049e57806339509351146104b157600080fd5b806323b872dd1461043e578063248a9ca3146104515780632f2ff15d1461047457600080fd5b8063095ea7b311610361578063095ea7b3146103d957806310accecc146103ec57806318160ddd1461040d57806318f9e2911461041557600080fd5b8062f714ce1461038757806301ffc9a71461039c57806306fdde03146103c4575b600080fd5b61039a6103953660046138d5565b610977565b005b6103af6103aa36600461391a565b610ca9565b60405190151581526020015b60405180910390f35b6103cc610cd4565b6040516103bb9190613a8a565b6103af6103e73660046137d8565b610d66565b6103ff6103fa3660046136e4565b610d7c565b6040519081526020016103bb565b6002546103ff565b6103ff6104233660046136e4565b6001600160a01b03166000908152600b602052604090205490565b6103af61044c366004613732565b610e03565b6103ff61045f3660046138bc565b6000908152600c602052604090206001015490565b61039a6104823660046138d5565b610eaf565b604051601281526020016103bb565b6103ff610ed6565b61039a6104ac3660046138d5565b610ee5565b6103af6104bf3660046137d8565b610f07565b6103ff6104d23660046137d8565b610f43565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b6105516105333660046136e4565b6001600160a01b039081166000908152600660205260409020541690565b6040516001600160a01b0390911681526020016103bb565b61039a6105773660046138bc565b610fb6565b61039a61058a3660046136e4565b610ff7565b6105517f000000000000000000000000000000000000000000000000000000000000000081565b6105c96105c43660046136e4565b611001565b60405163ffffffff90911681526020016103bb565b6103ff6105ec3660046136e4565b611023565b6103ff7fd9d917c4034cff8a8c5fa1e40f9fbaf906b827c33ae3ab1fcabbb616cb8ef24d81565b6103ff61025881565b6103ff61062f3660046136e4565b61103e565b6103ff60095481565b6103ff61064b3660046136e4565b61106a565b61066361065e3660046136e4565b611088565b6040516103bb9190613a23565b6103ff61067e3660046136e4565b611126565b61039a61069136600461395d565b6111ae565b6103ff6106a43660046138bc565b6113a8565b6106b76001600160801b0381565b6040516001600160801b0390911681526020016103bb565b6105516106dd3660046138f8565b611404565b6103af6106f03660046138d5565b61141c565b6103cc611447565b6103ff61070b3660046136e4565b611456565b61039a61071e366004613732565b6114dd565b6103ff7f0000000000000000000000000000000000000000000000000000000001e1338081565b6103ff600081565b6103af6107603660046137d8565b6115de565b6103af6107733660046137d8565b611677565b6103ff6107863660046138bc565b611684565b61079e6107993660046137d8565b6116ed565b6040805193845267ffffffffffffffff92831660208501529116908201526060016103bb565b6103ff6107d23660046136e4565b600a6020526000908152604090205481565b6103ff6107f23660046136e4565b6001600160a01b03166000908152600e602052604090205490565b61039a61081b366004613802565b61173e565b6105517f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5781565b6103ff6108553660046138bc565b611874565b6103ff7f000000000000000000000000000000000000000000000000000000000000000081565b61039a61088f36600461376e565b61188b565b61039a6108a23660046138d5565b6119ef565b6103ff6108b53660046136ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103ff6108ee3660046136e4565b600b6020526000908152604090205481565b61039a61090e3660046136e4565b6119f9565b61092661092136600461385a565b611bc3565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016103bb565b6105517f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5781565b336000908152600e602052604090205482106109f05760405162461bcd60e51b815260206004820152602d60248201527f54696d654c6f636b506f6f6c2e77697468647261773a204465706f736974206460448201526c1bd95cc81b9bdd08195e1a5cdd609a1b60648201526084015b60405180910390fd5b336000908152600e60205260408120805484908110610a1157610a11613d3a565b6000918252602091829020604080516060810182526002909302909101805483526001015467ffffffffffffffff80821694840194909452600160401b90049092169181018290529150421015610aaa5760405162461bcd60e51b815260206004820152601f60248201527f54696d654c6f636b506f6f6c2e77697468647261773a20746f6f20736f6f6e0060448201526064016109e7565b6000670de0b6b3a7640000610adb83602001518460400151610acc9190613c1f565b67ffffffffffffffff16611684565b8351610ae79190613be9565b610af19190613b42565b336000908152600e60205260409020805491925090610b1290600190613c08565b81548110610b2257610b22613d3a565b9060005260206000209060020201600e6000610b3b3390565b6001600160a01b03166001600160a01b031681526020019081526020016000208581548110610b6c57610b6c613d3a565b600091825260208083208454600293909302019182556001938401805494909201805467ffffffffffffffff95861667ffffffffffffffff1982168117835593546001600160801b0319909116909317600160401b93849004909516909202939093179055338152600e90915260409020805480610bec57610bec613d24565b60008281526020812060026000199093019283020190815560010180546001600160801b03191690559055610c27610c213390565b82611dd8565b8151610c5f906001600160a01b037f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5716908590611df4565b815160405190815233906001600160a01b0385169086907fe5df19de43c8c04fd192bc68e484b2593570925fbb6ad8c07ccafbc2aa5c37a19060200160405180910390a450505050565b60006001600160e01b03198216635a05180f60e01b1480610cce5750610cce82611e24565b92915050565b606060038054610ce390613c8b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0f90613c8b565b8015610d5c5780601f10610d3157610100808354040283529160200191610d5c565b820191906000526020600020905b815481529060010190602001808311610d3f57829003601f168201915b5050505050905090565b6000610d73338484611e59565b50600192915050565b6001600160a01b0381166000908152600a60205260408120546001600160801b0390610df390610de4610dd28663ffffffff7f000000000000000000000000000000000000000000000000000003e80000102316565b600954610ddf9190613be9565b611f7d565b610dee9190613abd565b611feb565b610cce9190613b42565b60025490565b6000610e1084848461203d565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e955760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109e7565b610ea28533858403611e59565b60019150505b9392505050565b610eb98282612078565b6000828152600d60205260409020610ed19082611dac565b505050565b6000610ee061209e565b905090565b610eef8282612191565b6000828152600d60205260409020610ed1908261220b565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610d73918590610f3e908690613afe565b611e59565b6000438210610f945760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016109e7565b6001600160a01b0383166000908152600760205260409020610ea89083612220565b610feb7f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d576001600160a01b03163330846122dd565b610ff48161231b565b50565b610ff4338261242c565b6001600160a01b038116600090815260076020526040812054610cce906124bb565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b0381166000908152600b602052604081205461106083610d7c565b610cce9190613c08565b6001600160a01b038116600090815260056020526040812054610cce565b6001600160a01b0381166000908152600e60209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561111b57600084815260209081902060408051606081018252600286029092018054835260019081015467ffffffffffffffff80821685870152600160401b909104169183019190915290835290920191016110c0565b505050509050919050565b60008060005b6001600160a01b0384166000908152600e60205260409020548110156111a7576001600160a01b0384166000908152600e6020526040902080548290811061117657611176613d3a565b906000526020600020906002020160000154826111939190613afe565b91508061119f81613cc0565b91505061112c565b5092915050565b6000831161120d5760405162461bcd60e51b815260206004820152602660248201527f54696d654c6f636b506f6f6c2e6465706f7369743a2063616e6e6f742064657060448201526506f73697420360d41b60648201526084016109e7565b6000611239837f0000000000000000000000000000000000000000000000000000000001e13380612520565b905061124781610258612536565b905061127e7f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d576001600160a01b03163330876122dd565b600e6000836001600160a01b03166001600160a01b0316815260200190815260200160002060405180606001604052808681526020014267ffffffffffffffff16815260200183426112d09190613b16565b67ffffffffffffffff908116909152825460018181018555600094855260208086208551600290940201928355840151910180546040909401518316600160401b026001600160801b03199094169190921617919091179055670de0b6b3a764000061133b83611684565b6113459087613be9565b61134f9190613b42565b905061135b8382612546565b604080518681526020810184905233916001600160a01b038616917f34194be2f096bdb2ad418add902a4da76d3d6f6d387d86d857f56c7711ecca70910160405180910390a35050505050565b60004382106113f95760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016109e7565b610cce600883612220565b6000828152600d60205260408120610ea89083612566565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610ce390613c8b565b6001600160a01b03811660009081526007602052604081205480156114ca576001600160a01b0383166000908152600760205260409020611498600183613c08565b815481106114a8576114a8613d3a565b60009182526020909120015464010000000090046001600160e01b03166114cd565b60005b6001600160e01b03169392505050565b6115077fd9d917c4034cff8a8c5fa1e40f9fbaf906b827c33ae3ab1fcabbb616cb8ef24d3361141c565b6115685760405162461bcd60e51b815260206004820152602c60248201527f546f6b656e53617665722e6f6e6c79546f6b656e53617665723a207065726d6960448201526b1cdcda5bdb8819195b9a595960a21b60648201526084016109e7565b61157c6001600160a01b0384168383611df4565b826001600160a01b0316826001600160a01b03166115973390565b6001600160a01b03167f30d87cec6b4c56cede1018725d1e6d9304e2f7ee6d25b004b7e2183f793f26bc846040516115d191815260200190565b60405180910390a4505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e7565b61166d3385858403611e59565b5060019392505050565b6000610d7333848461203d565b60007f0000000000000000000000000000000000000000000000000000000001e133806116d1837f0000000000000000000000000000000000000000000000000000000000000000613be9565b6116db9190613b42565b610cce90670de0b6b3a7640000613afe565b600e602052816000526040600020818154811061170957600080fd5b60009182526020909120600290910201805460019091015490925067ffffffffffffffff8082169250600160401b9091041683565b8342111561178e5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016109e7565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090611808906118009060a00160405160208183030381529060405280519060200120612572565b8585856125c0565b9050611813816125e8565b86146118615760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016109e7565b61186b818861242c565b50505050505050565b6000818152600d60205260408120610cce90612610565b834211156118db5760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016109e7565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861190a8c6125e8565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061196582612572565b90506000611975828787876125c0565b9050896001600160a01b0316816001600160a01b0316146119d85760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016109e7565b6119e38a8a8a611e59565b50505050505050505050565b610eef828261261a565b6000611a0433612640565b90506000670de0b6b3a7640000611a3b7f000000000000000000000000000000000000000000000000000000000000000084613be9565b611a459190613b42565b90506000611a538284613c08565b90508115801590611a8c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15611b3a57604051638dbdbe6d60e01b8152600481018390527f000000000000000000000000000000000000000000000000000000000000000060248201526001600160a01b0385811660448301527f00000000000000000000000000000000000000000000000000000000000000001690638dbdbe6d90606401600060405180830381600087803b158015611b2157600080fd5b505af1158015611b35573d6000803e3d6000fd5b505050505b6001811115611b7757611b776001600160a01b037f00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d57168583611df4565b60408051838152602081018390526001600160a01b0386169133917fd92c424393cb3ccdf7d5e36602e3bfa34f24490579ba47978f4bcfad496995f2910160405180910390a350505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff8416908110611c0757611c07613d3a565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b801580611cd05750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b158015611c9657600080fd5b505afa158015611caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cce9190613944565b155b611d3b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016109e7565b6040516001600160a01b038316602482015260448101829052610ed190849063095ea7b360e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526126d5565b611da882826127a7565b5050565b6000610ea8836001600160a01b03841661282d565b6060611dd0848460008561287c565b949350505050565b611de282826129a4565b611da882611def83611f7d565b6129bc565b6040516001600160a01b038316602482015260448101829052610ed190849063a9059cbb60e01b90606401611d67565b60006001600160e01b03198216637965db0b60e01b1480610cce57506301ffc9a760e01b6001600160e01b0319831614610cce565b6001600160a01b038316611ebb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e7565b6001600160a01b038216611f1c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006001600160ff1b03821115611fe75760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b60648201526084016109e7565b5090565b600080821215611fe75760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f73697469766560448201526064016109e7565b60405162461bcd60e51b815260206004820152601060248201526f4e4f4e5f5452414e5346455241424c4560801b60448201526064016109e7565b6000828152600c60205260409020600101546120948133612a0c565b610ed183836127a7565b60007f00000000000000000000000000000000000000000000000000000000000000014614156120ed57507f030532fdb8ec23aebc88ec18235d3fee4006c9e0c0f574734812624da184578990565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f10dfb0d349ea3e04f1a8429fe3fb581fc8186188424834988af824cb90a50458828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b03811633146122015760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016109e7565b611da88282612a70565b6000610ea8836001600160a01b038416612ad7565b8154600090815b8181101561228457600061223b8284612bca565b90508486828154811061225057612250613d3a565b60009182526020909120015463ffffffff1611156122705780925061227e565b61227b816001613afe565b91505b50612227565b81156122c85784612296600184613c08565b815481106122a6576122a6613d3a565b60009182526020909120015464010000000090046001600160e01b03166122cb565b60005b6001600160e01b031695945050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526123159085906323b872dd60e01b90608401611d67565b50505050565b60006123497f0000000000000000000000000000000000000000000000000000040300000dfd63ffffffff16565b9050600081116123c15760405162461bcd60e51b815260206004820152603e60248201527f4162737472616374526577617264732e5f64697374726962757465526577617260448201527f64733a20746f74616c20736861726520737570706c79206973207a65726f000060648201526084016109e7565b8115611da857806123d96001600160801b0384613be9565b6123e39190613b42565b6009546123f09190613afe565b60095560405182815233907fdf29796aad820e4bb192f3a8d631b76519bcd2cbe77cc85af20e9df53cece0869060200160405180910390a25050565b6001600160a01b038281166000908152600660205260408120549091169061245384611023565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612315828483612be5565b600063ffffffff821115611fe75760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016109e7565b600081831061252f5781610ea8565b5090919050565b60008183101561252f5781610ea8565b6125508282612d22565b611da88261255d83611f7d565b611def90613cdb565b6000610ea88383612dac565b6000610cce61257f61209e565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006125d187878787612dd6565b915091506125de81612ec3565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610cce825490565b6000828152600c60205260409020600101546126368133612a0c565b610ed18383612a70565b60008061264c8361103e565b90508015610cce576001600160a01b0383166000908152600b6020526040902054612678908290613afe565b6001600160a01b0384166000818152600b6020526040908190209290925590517f8a43c4352486ec339f487f64af78ca5cbf06cd47833f073d3baf3a193e503161906126c79084815260200190565b60405180910390a292915050565b600061272a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611dc19092919063ffffffff16565b805190915015610ed15780806020019051810190612748919061389a565b610ed15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109e7565b6127b1828261141c565b611da8576000828152600c602090815260408083206001600160a01b03851684529091529020805460ff191660011790556127e93390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461287457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cce565b506000610cce565b6060824710156128dd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016109e7565b843b61292b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109e7565b600080866001600160a01b031685876040516129479190613992565b60006040518083038185875af1925050503d8060008114612984576040519150601f19603f3d011682016040523d82523d6000602084013e612989565b606091505b509150915061299982828661307e565b979650505050505050565b6129ae82826130b7565b612315600861320c83613218565b6009546129c99082613b64565b6001600160a01b0383166000908152600a60205260409020546129ec9190613abd565b6001600160a01b039092166000908152600a602052604090209190915550565b612a16828261141c565b611da857612a2e816001600160a01b03166014613391565b612a39836020613391565b604051602001612a4a9291906139ae565b60408051601f198184030181529082905262461bcd60e51b82526109e791600401613a8a565b612a7a828261141c565b15611da8576000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612bc0576000612afb600183613c08565b8554909150600090612b0f90600190613c08565b9050818114612b74576000866000018281548110612b2f57612b2f613d3a565b9060005260206000200154905080876000018481548110612b5257612b52613d3a565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612b8557612b85613d24565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cce565b6000915050610cce565b6000612bd96002848418613b42565b610ea890848416613afe565b816001600160a01b0316836001600160a01b031614158015612c075750600081115b15610ed1576001600160a01b03831615612c95576001600160a01b03831660009081526007602052604081208190612c429061320c85613218565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612c8a929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615610ed1576001600160a01b03821660009081526007602052604081208190612ccb9061352d85613218565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612d13929190918252602082015260400190565b60405180910390a25050505050565b612d2c8282613539565b6002546001600160e01b031015612d9e5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016109e7565b612315600861352d83613218565b6000826000018281548110612dc357612dc3613d3a565b9060005260206000200154905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612e0d5750600090506003612eba565b8460ff16601b14158015612e2557508460ff16601c14155b15612e365750600090506004612eba565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e8a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612eb357600060019250925050612eba565b9150600090505b94509492505050565b6000816004811115612ed757612ed7613d0e565b1415612ee05750565b6001816004811115612ef457612ef4613d0e565b1415612f425760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109e7565b6002816004811115612f5657612f56613d0e565b1415612fa45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109e7565b6003816004811115612fb857612fb8613d0e565b14156130115760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109e7565b600481600481111561302557613025613d0e565b1415610ff45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109e7565b6060831561308d575081610ea8565b82511561309d5782518084602001fd5b8160405162461bcd60e51b81526004016109e79190613a8a565b6001600160a01b0382166131175760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109e7565b6001600160a01b0382166000908152602081905260409020548181101561318b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109e7565b6001600160a01b03831660009081526020819052604081208383039055600280548492906131ba908490613c08565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3610ed18360008461361c565b6000610ea88284613c08565b8254600090819080156132635785613231600183613c08565b8154811061324157613241613d3a565b60009182526020909120015464010000000090046001600160e01b0316613266565b60005b6001600160e01b0316925061327f83858763ffffffff16565b91506000811180156132bd57504386613299600184613c08565b815481106132a9576132a9613d3a565b60009182526020909120015463ffffffff16145b1561331d576132cb8261364e565b866132d7600184613c08565b815481106132e7576132e7613d3a565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550613388565b856040518060400160405280613332436124bb565b63ffffffff1681526020016133468561364e565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b606060006133a0836002613be9565b6133ab906002613afe565b67ffffffffffffffff8111156133c3576133c3613d50565b6040519080825280601f01601f1916602001820160405280156133ed576020820181803683370190505b509050600360fc1b8160008151811061340857613408613d3a565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061343757613437613d3a565b60200101906001600160f81b031916908160001a905350600061345b846002613be9565b613466906001613afe565b90505b60018111156134de576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061349a5761349a613d3a565b1a60f81b8282815181106134b0576134b0613d3a565b60200101906001600160f81b031916908160001a90535060049490941c936134d781613c74565b9050613469565b508315610ea85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109e7565b6000610ea88284613afe565b6001600160a01b03821661358f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109e7565b80600260008282546135a19190613afe565b90915550506001600160a01b038216600090815260208190526040812080548392906135ce908490613afe565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3611da8600083835b6001600160a01b03838116600090815260066020526040808220548584168352912054610ed192918216911683612be5565b60006001600160e01b03821115611fe75760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016109e7565b80356001600160a01b03811681146136ce57600080fd5b919050565b803560ff811681146136ce57600080fd5b6000602082840312156136f657600080fd5b610ea8826136b7565b6000806040838503121561371257600080fd5b61371b836136b7565b9150613729602084016136b7565b90509250929050565b60008060006060848603121561374757600080fd5b613750846136b7565b925061375e602085016136b7565b9150604084013590509250925092565b600080600080600080600060e0888a03121561378957600080fd5b613792886136b7565b96506137a0602089016136b7565b955060408801359450606088013593506137bc608089016136d3565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156137eb57600080fd5b6137f4836136b7565b946020939093013593505050565b60008060008060008060c0878903121561381b57600080fd5b613824876136b7565b95506020870135945060408701359350613840606088016136d3565b92506080870135915060a087013590509295509295509295565b6000806040838503121561386d57600080fd5b613876836136b7565b9150602083013563ffffffff8116811461388f57600080fd5b809150509250929050565b6000602082840312156138ac57600080fd5b81518015158114610ea857600080fd5b6000602082840312156138ce57600080fd5b5035919050565b600080604083850312156138e857600080fd5b82359150613729602084016136b7565b6000806040838503121561390b57600080fd5b50508035926020909101359150565b60006020828403121561392c57600080fd5b81356001600160e01b031981168114610ea857600080fd5b60006020828403121561395657600080fd5b5051919050565b60008060006060848603121561397257600080fd5b8335925060208401359150613989604085016136b7565b90509250925092565b600082516139a4818460208701613c48565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516139e6816017850160208801613c48565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613a17816028840160208801613c48565b01602801949350505050565b602080825282518282018190526000919060409081850190868401855b82811015613a7d578151805185528681015167ffffffffffffffff9081168887015290860151168585015260609093019290850190600101613a40565b5091979650505050505050565b6020815260008251806020840152613aa9816040850160208701613c48565b601f01601f19169190910160400192915050565b600080821280156001600160ff1b0384900385131615613adf57613adf613cf8565b600160ff1b8390038412811615613af857613af8613cf8565b50500190565b60008219821115613b1157613b11613cf8565b500190565b600067ffffffffffffffff808316818516808303821115613b3957613b39613cf8565b01949350505050565b600082613b5f57634e487b7160e01b600052601260045260246000fd5b500490565b60006001600160ff1b0381841382841380821686840486111615613b8a57613b8a613cf8565b600160ff1b6000871282811687830589121615613ba957613ba9613cf8565b60008712925087820587128484161615613bc557613bc5613cf8565b87850587128184161615613bdb57613bdb613cf8565b505050929093029392505050565b6000816000190483118215151615613c0357613c03613cf8565b500290565b600082821015613c1a57613c1a613cf8565b500390565b600067ffffffffffffffff83811690831681811015613c4057613c40613cf8565b039392505050565b60005b83811015613c63578181015183820152602001613c4b565b838111156123155750506000910152565b600081613c8357613c83613cf8565b506000190190565b600181811c90821680613c9f57607f821691505b6020821081141561260a57634e487b7160e01b600052602260045260246000fd5b6000600019821415613cd457613cd4613cf8565b5060010190565b6000600160ff1b821415613cf157613cf1613cf8565b5060000390565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220279bd24b6f8ad704565bc54e3d78cdcd007212e4e6e51caf11c05f68fe132f0e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5700000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000000000000000000a457363726f77506f6f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054553435257000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EscrowPool
Arg [1] : _symbol (string): ESCRW
Arg [2] : _depositToken (address): 0x71Fc1F555a39E0B698653AB0b475488EC3c34D57
Arg [3] : _rewardToken (address): 0x71Fc1F555a39E0B698653AB0b475488EC3c34D57
Arg [4] : _escrowPool (address): 0x0000000000000000000000000000000000000000
Arg [5] : _escrowPortion (uint256): 0
Arg [6] : _escrowDuration (uint256): 0
Arg [7] : _maxBonus (uint256): 0
Arg [8] : _maxLockDuration (uint256): 31536000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d57
Arg [3] : 00000000000000000000000071fc1f555a39e0b698653ab0b475488ec3c34d57
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000001e13380
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 457363726f77506f6f6c00000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 4553435257000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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