Source Code
Overview
BTT Balance
Token Holdings
More Info
ContractCreator
Latest 25 from a total of 763 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw BTT | 34866169 | 338 days ago | IN | 19,998,000 BTT | 439.767 | ||||
Withdraw To | 34771028 | 340 days ago | IN | 0 BTT | 674.64 | ||||
Withdraw To | 34758297 | 341 days ago | IN | 0 BTT | 786.771 | ||||
Withdraw BTT | 34497271 | 347 days ago | IN | 124,000 BTT | 439.767 | ||||
Withdraw BTT | 34420263 | 349 days ago | IN | 1,000 BTT | 439.659 | ||||
Withdraw BTT | 34416590 | 349 days ago | IN | 222 BTT | 439.659 | ||||
Withdraw BTT | 34416570 | 349 days ago | IN | 111 BTT | 439.659 | ||||
Withdraw BTT | 33962223 | 360 days ago | IN | 1,000,000 BTT | 439.659 | ||||
Withdraw To | 33872605 | 362 days ago | IN | 0 BTT | 766.53 | ||||
Withdraw BTT | 33424484 | 372 days ago | IN | 7,999,580 BTT | 439.875 | ||||
Withdraw BTT | 33424445 | 372 days ago | IN | 998,766.037 BTT | 439.875 | ||||
Withdraw BTT | 33370689 | 374 days ago | IN | 100,000 BTT | 439.767 | ||||
Withdraw BTT | 33101716 | 380 days ago | IN | 20,998,552.161 BTT | 439.983 | ||||
Withdraw To | 32269917 | 400 days ago | IN | 0 BTT | 766.206 | ||||
Withdraw To | 32269891 | 400 days ago | IN | 0 BTT | 766.206 | ||||
Withdraw To | 32269862 | 400 days ago | IN | 0 BTT | 766.206 | ||||
Withdraw To | 32269841 | 400 days ago | IN | 0 BTT | 766.206 | ||||
Withdraw BTT | 31363869 | 422 days ago | IN | 10,000 BTT | 439.767 | ||||
Withdraw BTT | 30954261 | 431 days ago | IN | 1 BTT | 439.551 | ||||
Withdraw To | 30952471 | 431 days ago | IN | 0 BTT | 787.311 | ||||
Withdraw BTT | 30948962 | 431 days ago | IN | 98,740.945 BTT | 439.875 | ||||
Withdraw BTT | 30937728 | 432 days ago | IN | 5,999,999 BTT | 439.875 | ||||
Withdraw To | 30882427 | 433 days ago | IN | 0 BTT | 787.203 | ||||
Withdraw BTT | 30882324 | 433 days ago | IN | 1,985,758.9 BTT | 439.875 | ||||
Withdraw BTT | 30882215 | 433 days ago | IN | 0 BTT | 789.948 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
34866169 | 338 days ago | 0 BTT | ||||
34866169 | 338 days ago | 19,998,000 BTT | ||||
34785365 | 340 days ago | 0 BTT | ||||
34785365 | 340 days ago | 580,736.995589 BTT | ||||
34785365 | 340 days ago | 580,736.995589 BTT | ||||
34784164 | 340 days ago | 0 BTT | ||||
34784164 | 340 days ago | 3,680,736.995589 BTT | ||||
34784164 | 340 days ago | 3,680,736.995589 BTT | ||||
34784070 | 340 days ago | 0 BTT | ||||
34784070 | 340 days ago | 4,680,736.995589 BTT | ||||
34784070 | 340 days ago | 4,680,736.995589 BTT | ||||
34771028 | 340 days ago | 0 BTT | ||||
34771028 | 340 days ago | 0 BTT | ||||
34771028 | 340 days ago | 0 BTT | ||||
34771028 | 340 days ago | 0 BTT | ||||
34771028 | 340 days ago | 0 BTT | ||||
34758297 | 341 days ago | 0 BTT | ||||
34758297 | 341 days ago | 0 BTT | ||||
34758297 | 341 days ago | 0 BTT | ||||
34758297 | 341 days ago | 0 BTT | ||||
34758297 | 341 days ago | 0 BTT | ||||
34758268 | 341 days ago | 86,614,614.511841 BTT | ||||
34758268 | 341 days ago | 86,614,614.511841 BTT | ||||
34758268 | 341 days ago | 0 BTT | ||||
34758268 | 341 days ago | 0 BTT |
Loading...
Loading
Contract Name:
ChildERC20Exit
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at testnet.bttcscan.com on 2022-05-05 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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 SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/AccessControl.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @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 {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @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) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts/common/AccessControlMixin.sol pragma solidity 0.6.6; contract AccessControlMixin is AccessControl { string private _revertMsg; function _setupContractId(string memory contractId) internal { _revertMsg = string(abi.encodePacked(contractId, ": INSUFFICIENT_PERMISSIONS")); } modifier only(bytes32 role) { require( hasRole(role, _msgSender()), _revertMsg ); _; } } // File: contracts/common/Initializable.sol pragma solidity 0.6.6; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } } // File: contracts/common/EIP712Base.sol pragma solidity 0.6.6; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contractsa that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public pure returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } } // File: contracts/common/NativeMetaTransaction.sol pragma solidity 0.6.6; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, msg.sender, functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } } // File: contracts/common/ContextMixin.sol pragma solidity 0.6.6; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = msg.sender; } return sender; } } // File: contracts/child/ChildToken/ChildERC20Exit/IChildToken.sol pragma solidity 0.6.6; interface IChildToken is IERC20 { event WithdrawTo(address indexed from, address indexed to, uint256 amount); function deposit(address user, bytes calldata depositData) external; function withdrawTo(address to, uint256 amount) payable external; } // File: contracts/child/ChildToken/ChildERC20Exit/IChildTokenForExchange.sol pragma solidity 0.6.6; interface IChildTokenForExchange is IChildToken { function swapIn(uint256 amount) external; function swapOut(uint256 amount) external; } // File: contracts/child/ChildToken/ChildERC20Exit/IChildERC20Exit.sol pragma solidity 0.6.6; interface IChildERC20Exit { event ExitTokenTo(address indexed from, address indexed to, address fromToken, address indexed toToken, uint256 amount); function addMapping(IChildToken originToken, IChildTokenForExchange tokenA,IChildTokenForExchange tokenB) external; function withdrawTo(address to, IChildToken tokenWithdraw, IChildToken tokenExit, uint256 amount) external; function withdrawBTT(address to,IChildToken tokenWithdraw, IChildToken tokenExit, uint256 amount) payable external; } // File: contracts/child/ChildToken/ChildERC20Exit/IWBTTForExchange.sol pragma solidity 0.6.6; interface IWBTTForExchange is IChildToken { function swapIn() payable external; function swapOut(uint256 amount) external; } // File: contracts/child/ChildToken/ChildERC20Exit/ChildERC20Exit.sol pragma solidity 0.6.6; contract ChildERC20Exit is AccessControlMixin, NativeMetaTransaction, ContextMixin, IChildERC20Exit { using SafeERC20 for IERC20; mapping(IChildToken => IChildToken) tokenToOrigin; bool public isOpen = true; bytes32 public constant MAPPER_ROLE = keccak256("MAPPER_ROLE"); constructor( address admin, address mapper ) public { _setupContractId("ChildERC20Exit"); _setupRole(DEFAULT_ADMIN_ROLE, admin); _setupRole(MAPPER_ROLE, mapper); _initializeEIP712("ChildERC20Exit"); } modifier open() { require(isOpen, "The contract is not open"); _; } function setOpen(bool flag) external only(DEFAULT_ADMIN_ROLE) { isOpen = flag; } function addMapping(IChildToken originToken, IChildTokenForExchange tokenA, IChildTokenForExchange tokenB) external override only(MAPPER_ROLE) { require(address(tokenToOrigin[originToken]) == address(0), "token mapping only add once"); require(address(tokenToOrigin[tokenA]) == address(0), "token mapping only add once"); require(address(tokenToOrigin[tokenB]) == address(0), "token mapping only add once"); tokenToOrigin[tokenA] = originToken; tokenToOrigin[tokenB] = originToken; tokenToOrigin[originToken] = originToken; } /** * @notice function to swap and withdraw ERC20 token automatically except btt interrelated token * @param to token receive address * @param tokenWithdraw token to withdraw * @param tokenExit token to exit * @param amount token amount */ function withdrawTo(address to, IChildToken tokenWithdraw, IChildToken tokenExit, uint256 amount) external override open() { emit ExitTokenTo(msg.sender, to, address(tokenWithdraw), address(tokenExit), amount); IERC20(tokenWithdraw).safeTransferFrom(msgSender(), address(this), amount); if (tokenWithdraw == tokenExit) { tokenExit.withdrawTo(to, amount); return; } IChildToken originToken = tokenToOrigin[tokenWithdraw]; require(address(originToken) != address(0), "originToken can't be zero"); if (tokenWithdraw != originToken) { IChildTokenForExchange(address(tokenWithdraw)).swapOut(amount); tokenWithdraw = originToken; } if (tokenExit == originToken) { tokenExit.withdrawTo(to, amount); return; } IERC20(tokenWithdraw).safeIncreaseAllowance(address(tokenExit), amount); IChildTokenForExchange(address(tokenExit)).swapIn(amount); tokenExit.withdrawTo(to, amount); } /** * @notice function to swap and withdraw btt interrelated token automatically,it can receive * call value, if token to withdraw is btt, msg value can't be less than amount * @param to token receive address * @param tokenWithdraw token to withdraw * @param tokenExit token to exit * @param amount token amount */ function withdrawBTT(address to,IChildToken tokenWithdraw, IChildToken tokenExit, uint256 amount) payable external override open() { emit ExitTokenTo(msg.sender, to, address(tokenWithdraw), address(tokenExit), amount); if (address(tokenWithdraw) == address(0x1010)) { require(msg.value >= amount, "msg value can't be less than amount"); if (address(tokenExit) == address(0x1010)) { tokenWithdraw.withdrawTo{value:amount}(to, amount); } else { IWBTTForExchange(address(tokenExit)).swapIn{value:amount}(); tokenExit.withdrawTo(to, amount); } if (msg.value > amount) { msg.sender.transfer(msg.value - amount); } return; } IERC20(tokenWithdraw).safeTransferFrom(msgSender(), address(this), amount); if (address(tokenExit) == address(0x1010)) { IWBTTForExchange(address(tokenWithdraw)).swapOut(amount); tokenExit.withdrawTo{value:amount}(to, amount); return; } if (tokenWithdraw != tokenExit) { IWBTTForExchange(address(tokenWithdraw)).swapOut(amount); IWBTTForExchange(address(tokenExit)).swapIn{value:amount}(); } tokenExit.withdrawTo(to, amount); } receive() external payable { } function originToken(IChildToken token) external view returns(IChildToken) { return tokenToOrigin[token]; } }
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"mapper","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"fromToken","type":"address"},{"indexed":true,"internalType":"address","name":"toToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExitTokenTo","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAPPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IChildToken","name":"originToken","type":"address"},{"internalType":"contract IChildTokenForExchange","name":"tokenA","type":"address"},{"internalType":"contract IChildTokenForExchange","name":"tokenB","type":"address"}],"name":"addMapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","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":"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":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IChildToken","name":"token","type":"address"}],"name":"originToken","outputs":[{"internalType":"contract IChildToken","name":"","type":"address"}],"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":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"contract IChildToken","name":"tokenWithdraw","type":"address"},{"internalType":"contract IChildToken","name":"tokenExit","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawBTT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"contract IChildToken","name":"tokenWithdraw","type":"address"},{"internalType":"contract IChildToken","name":"tokenExit","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526002805460ff199081169091556006805490911660011790553480156200002a57600080fd5b506040516200270b3803806200270b833981810160405260408110156200005057600080fd5b50805160209182015160408051808201909152600e81526d10da1a5b19115490cc8c115e1a5d60921b93810193909352909162000096906001600160e01b036200012216565b620000ac6000836001600160e01b03620001c816565b604080516a4d41505045525f524f4c4560a81b8152905190819003600b019020620000e190826001600160e01b03620001c816565b60408051808201909152600e81526d10da1a5b19115490cc8c115e1a5d60921b60208201526200011a906001600160e01b03620001dd16565b5050620004d9565b806040516020018082805190602001908083835b60208310620001575780518252601f19909201916020918201910162000136565b51815160209384036101000a60001901801990921691161790527f3a20494e53554646494349454e545f5045524d495353494f4e530000000000009190930190815260408051808303600519018152601a90920190528051620001c4955060019450920191905062000437565b5050565b620001c482826001600160e01b036200024b16565b60025460ff161562000227576040805162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015290519081900360640190fd5b6200023b816001600160e01b03620002cd16565b506002805460ff19166001179055565b6000828152602081815260409091206200027091839062001bee62000395821b17901c565b15620001c457620002896001600160e01b03620003be16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6040518060800160405280604f8152602001620026bc604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc630620003446001600160e01b03620003c316565b604080516020808201979097528082019590955260608501939093526001600160a01b03909116608084015260a0808401919091528151808403909101815260c09092019052805191012060035550565b6000620003b5836001600160a01b0384166001600160e01b03620003c716565b90505b92915050565b335b90565b4690565b6000620003de83836001600160e01b036200041f16565b6200041657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003b8565b506000620003b8565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200047a57805160ff1916838001178555620004aa565b82800160010185558215620004aa579182015b82811115620004aa5782518255916020019190600101906200048d565b50620004b8929150620004bc565b5090565b620003c091905b80821115620004b85760008155600101620004c3565b6121d380620004e96000396000f3fe6080604052600436106101235760003560e01c806347535d7b116100a05780639010d07c116100645780639010d07c1461050d57806391d148541461053d578063a217fddf14610576578063ca15c8731461058b578063d547741f146105b55761012a565b806347535d7b146104225780634bf6143b1461044b578063568b80b51461049057806366fb3c38146104a55780636fdca5e0146104e15761012a565b8063248a9ca3116100e7578063248a9ca31461033e5780632d0335ab146103685780632f2ff15d1461039b5780633408e470146103d457806336568abe146103e95761012a565b806303bea50c1461012f57806306c0b3cc1461017e5780630c53c51c146101c95780630f7e59701461030257806320379ee5146103175761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101626004803603602081101561015257600080fd5b50356001600160a01b03166105ee565b604080516001600160a01b039092168252519081900360200190f35b34801561018a57600080fd5b506101c7600480360360808110156101a157600080fd5b506001600160a01b0381358116916020810135821691604082013516906060013561060c565b005b61028d600480360360a08110156101df57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561020a57600080fd5b82018360208201111561021c57600080fd5b8035906020019184600183028401116401000000008311171561023e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550508235935050506020810135906040013560ff166109dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c75781810151838201526020016102af565b50505050905090810190601f1680156102f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030e57600080fd5b5061028d610ce0565b34801561032357600080fd5b5061032c610cfd565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061032c6004803603602081101561036157600080fd5b5035610d03565b34801561037457600080fd5b5061032c6004803603602081101561038b57600080fd5b50356001600160a01b0316610d18565b3480156103a757600080fd5b506101c7600480360360408110156103be57600080fd5b50803590602001356001600160a01b0316610d33565b3480156103e057600080fd5b5061032c610d9f565b3480156103f557600080fd5b506101c76004803603604081101561040c57600080fd5b50803590602001356001600160a01b0316610da3565b34801561042e57600080fd5b50610437610e04565b604080519115158252519081900360200190f35b34801561045757600080fd5b506101c76004803603606081101561046e57600080fd5b506001600160a01b038135811691602081013582169160409091013516610e0d565b34801561049c57600080fd5b5061032c611074565b6101c7600480360360808110156104bb57600080fd5b506001600160a01b03813581169160208101358216916040820135169060600135611097565b3480156104ed57600080fd5b506101c76004803603602081101561050457600080fd5b5035151561153a565b34801561051957600080fd5b506101626004803603604081101561053057600080fd5b50803590602001356115c3565b34801561054957600080fd5b506104376004803603604081101561056057600080fd5b50803590602001356001600160a01b03166115ea565b34801561058257600080fd5b5061032c611608565b34801561059757600080fd5b5061032c600480360360208110156105ae57600080fd5b503561160d565b3480156105c157600080fd5b506101c7600480360360408110156105d857600080fd5b50803590602001356001600160a01b0316611624565b6001600160a01b039081166000908152600560205260409020541690565b60065460ff1661065e576040805162461bcd60e51b81526020600482015260186024820152772a34329031b7b73a3930b1ba1034b9903737ba1037b832b760411b604482015290519081900360640190fd5b604080516001600160a01b038581168252602082018490528251818616939188169233927f29aad86b46fcfbc8552c55f312a1420a2f563f94aa18e923f292f04f8d0b320a92918290030190a46106ce6106b661167d565b6001600160a01b03851690308463ffffffff6116db16565b816001600160a01b0316836001600160a01b0316141561076557816001600160a01b031663205c287885836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561074857600080fd5b505af115801561075c573d6000803e3d6000fd5b505050506109d7565b6001600160a01b0380841660009081526005602052604090205416806107d2576040805162461bcd60e51b815260206004820152601960248201527f6f726967696e546f6b656e2063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b806001600160a01b0316846001600160a01b03161461084d57836001600160a01b03166374d945d9836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561083157600080fd5b505af1158015610845573d6000803e3d6000fd5b505050508093505b806001600160a01b0316836001600160a01b031614156108e557826001600160a01b031663205c287886846040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156108c757600080fd5b505af11580156108db573d6000803e3d6000fd5b50505050506109d7565b6108ff6001600160a01b038516848463ffffffff61173516565b826001600160a01b031663759c7265836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561094557600080fd5b505af1158015610959573d6000803e3d6000fd5b50505050826001600160a01b031663205c287886846040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156109bd57600080fd5b505af11580156109d1573d6000803e3d6000fd5b50505050505b50505050565b60606109e7611fc7565b50604080516060810182526001600160a01b03881660008181526004602090815290849020548352820152908101869052610a25878287878761181b565b610a605760405162461bcd60e51b81526004018080602001828103825260218152602001806121016021913960400191505060405180910390fd5b6001600160a01b038716600090815260046020526040902054610a8a90600163ffffffff6118f816565b6001600160a01b03881660008181526004602090815260408083209490945583519283523383820181905260609484018581528b51958501959095528a517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b958d9592948d94919260808501928601918190849084905b83811015610b19578181015183820152602001610b01565b50505050905090810190601f168015610b465780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160006060306001600160a01b0316888a6040516020018083805190602001908083835b60208310610b975780518252601f199092019160209182019101610b78565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b03166001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b60208310610c165780518252601f199092019160209182019101610bf7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c78576040519150601f19603f3d011682016040523d82523d6000602084013e610c7d565b606091505b509150915081610cd4576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60035490565b60009081526020819052604090206002015490565b6001600160a01b031660009081526004602052604090205490565b600082815260208190526040902060020154610d5690610d51611952565b6115ea565b610d915760405162461bcd60e51b815260040180806020018281038252602f815260200180612014602f913960400191505060405180910390fd5b610d9b8282611956565b5050565b4690565b610dab611952565b6001600160a01b0316816001600160a01b031614610dfa5760405162461bcd60e51b815260040180806020018281038252602f81526020018061216f602f913960400191505060405180910390fd5b610d9b82826119c5565b60065460ff1681565b604080516a4d41505045525f524f4c4560a81b8152905190819003600b019020610e3981610d51611952565b600190610ed95760405162461bcd60e51b8152602060048201908152825460026000196101006001841615020190911604602483018190529091829160449091019084908015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b50509250505060405180910390fd5b506001600160a01b038481166000908152600560205260409020541615610f47576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b6001600160a01b038381166000908152600560205260409020541615610fb4576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600560205260409020541615611021576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b506001600160a01b0391821660009081526005602052604080822080549585166001600160a01b031996871681179091559290931681528281208054851683179055818152919091208054909216179055565b604080516a4d41505045525f524f4c4560a81b8152905190819003600b01902081565b60065460ff166110e9576040805162461bcd60e51b81526020600482015260186024820152772a34329031b7b73a3930b1ba1034b9903737ba1037b832b760411b604482015290519081900360640190fd5b604080516001600160a01b038581168252602082018490528251818616939188169233927f29aad86b46fcfbc8552c55f312a1420a2f563f94aa18e923f292f04f8d0b320a92918290030190a46001600160a01b038316611010141561131457803410156111885760405162461bcd60e51b81526004018080602001828103825260238152602001806121226023913960400191505060405180910390fd5b6001600160a01b038216611010141561121957826001600160a01b031663205c28788286846040518463ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001828152602001925050506000604051808303818588803b1580156111fb57600080fd5b505af115801561120f573d6000803e3d6000fd5b50505050506112d6565b816001600160a01b03166322cd3cbc826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561125457600080fd5b505af1158015611268573d6000803e3d6000fd5b50506040805163040b850f60e31b81526001600160a01b038981166004830152602482018790529151918716945063205c28789350604480820193506000929182900301818387803b1580156112bd57600080fd5b505af11580156112d1573d6000803e3d6000fd5b505050505b8034111561130f5760405133903483900380156108fc02916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b505b6109d7565b61131f6106b661167d565b6001600160a01b03821661101014156113f057826001600160a01b03166374d945d9826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561137857600080fd5b505af115801561138c573d6000803e3d6000fd5b50505050816001600160a01b031663205c28788286846040518463ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001828152602001925050506000604051808303818588803b1580156108c757600080fd5b816001600160a01b0316836001600160a01b0316146114bc57826001600160a01b03166374d945d9826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561144f57600080fd5b505af1158015611463573d6000803e3d6000fd5b50505050816001600160a01b03166322cd3cbc826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156114a257600080fd5b505af11580156114b6573d6000803e3d6000fd5b50505050505b816001600160a01b031663205c287885836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561151c57600080fd5b505af1158015611530573d6000803e3d6000fd5b5050505050505050565b600061154881610d51611952565b6001906115ae5760405162461bcd60e51b8152602060048201908152825460026000196101006001841615020190911604602483018190529091829160449091019084908015610eca5780601f10610e9f57610100808354040283529160200191610eca565b50506006805460ff1916911515919091179055565b60008281526020819052604081206115e1908363ffffffff611a3416565b90505b92915050565b60008281526020819052604081206115e1908363ffffffff611a4016565b600081565b60008181526020819052604081206115e490611a55565b60008281526020819052604090206002015461164290610d51611952565b610dfa5760405162461bcd60e51b81526004018080602001828103825260308152602001806120ac6030913960400191505060405180910390fd5b6000333014156116d55760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506116d89050565b50335b90565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526109d7908590611a60565b60408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291516000926117c69285929188169163dd62ed3e91604480820192602092909190829003018186803b15801561178e57600080fd5b505afa1580156117a2573d6000803e3d6000fd5b505050506040513d60208110156117b857600080fd5b50519063ffffffff6118f816565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790529091506109d7908590611a60565b60006001600160a01b0386166118625760405162461bcd60e51b81526004018080602001828103825260258152602001806120dc6025913960400191505060405180910390fd5b600161187561187087611b16565b611ba2565b83868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156118cf573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000828201838110156115e1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6000828152602081905260409020611974908263ffffffff611bee16565b15610d9b57611981611952565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206119e3908263ffffffff611c0316565b15610d9b576119f0611952565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006115e18383611c18565b60006115e1836001600160a01b038416611c7c565b60006115e482611c94565b6060611ab5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c989092919063ffffffff16565b805190915015611b1157808060200190516020811015611ad457600080fd5b5051611b115760405162461bcd60e51b815260040180806020018281038252602a815260200180612145602a913960400191505060405180910390fd5b505050565b600060405180608001604052806043815260200161204360439139805190602001208260000151836020015184604001518051906020012060405160200180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b6000611bac610cfd565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60006115e1836001600160a01b038416611cb1565b60006115e1836001600160a01b038416611cfb565b81546000908210611c5a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ff26022913960400191505060405180910390fd5b826000018281548110611c6957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6060611ca78484600085611dc1565b90505b9392505050565b6000611cbd8383611c7c565b611cf3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556115e4565b5060006115e4565b60008181526001830160205260408120548015611db75783546000198083019190810190600090879083908110611d2e57fe5b9060005260206000200154905080876000018481548110611d4b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611d7b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506115e4565b60009150506115e4565b606082471015611e025760405162461bcd60e51b81526004018080602001828103825260268152602001806120866026913960400191505060405180910390fd5b611e0b85611f1d565b611e5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611e9b5780518252601f199092019160209182019101611e7c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611efd576040519150601f19603f3d011682016040523d82523d6000602084013e611f02565b606091505b5091509150611f12828286611f23565b979650505050505050565b3b151590565b60608315611f32575081611caa565b825115611f425782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f8c578181015183820152602001611f74565b50505050905090810190601f168015611fb95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60405180606001604052806000815260200160006001600160a01b0316815260200160608152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45525369676e657220616e64207369676e617475726520646f206e6f74206d617463686d73672076616c75652063616e2774206265206c657373207468616e20616d6f756e745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122010fceae633b54f0a41311f2c24b29e5ea3e9d7121df61da5c3262c4d741b991264736f6c63430006060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b81900000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b819
Deployed Bytecode
0x6080604052600436106101235760003560e01c806347535d7b116100a05780639010d07c116100645780639010d07c1461050d57806391d148541461053d578063a217fddf14610576578063ca15c8731461058b578063d547741f146105b55761012a565b806347535d7b146104225780634bf6143b1461044b578063568b80b51461049057806366fb3c38146104a55780636fdca5e0146104e15761012a565b8063248a9ca3116100e7578063248a9ca31461033e5780632d0335ab146103685780632f2ff15d1461039b5780633408e470146103d457806336568abe146103e95761012a565b806303bea50c1461012f57806306c0b3cc1461017e5780630c53c51c146101c95780630f7e59701461030257806320379ee5146103175761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b506101626004803603602081101561015257600080fd5b50356001600160a01b03166105ee565b604080516001600160a01b039092168252519081900360200190f35b34801561018a57600080fd5b506101c7600480360360808110156101a157600080fd5b506001600160a01b0381358116916020810135821691604082013516906060013561060c565b005b61028d600480360360a08110156101df57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561020a57600080fd5b82018360208201111561021c57600080fd5b8035906020019184600183028401116401000000008311171561023e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550508235935050506020810135906040013560ff166109dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c75781810151838201526020016102af565b50505050905090810190601f1680156102f45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030e57600080fd5b5061028d610ce0565b34801561032357600080fd5b5061032c610cfd565b60408051918252519081900360200190f35b34801561034a57600080fd5b5061032c6004803603602081101561036157600080fd5b5035610d03565b34801561037457600080fd5b5061032c6004803603602081101561038b57600080fd5b50356001600160a01b0316610d18565b3480156103a757600080fd5b506101c7600480360360408110156103be57600080fd5b50803590602001356001600160a01b0316610d33565b3480156103e057600080fd5b5061032c610d9f565b3480156103f557600080fd5b506101c76004803603604081101561040c57600080fd5b50803590602001356001600160a01b0316610da3565b34801561042e57600080fd5b50610437610e04565b604080519115158252519081900360200190f35b34801561045757600080fd5b506101c76004803603606081101561046e57600080fd5b506001600160a01b038135811691602081013582169160409091013516610e0d565b34801561049c57600080fd5b5061032c611074565b6101c7600480360360808110156104bb57600080fd5b506001600160a01b03813581169160208101358216916040820135169060600135611097565b3480156104ed57600080fd5b506101c76004803603602081101561050457600080fd5b5035151561153a565b34801561051957600080fd5b506101626004803603604081101561053057600080fd5b50803590602001356115c3565b34801561054957600080fd5b506104376004803603604081101561056057600080fd5b50803590602001356001600160a01b03166115ea565b34801561058257600080fd5b5061032c611608565b34801561059757600080fd5b5061032c600480360360208110156105ae57600080fd5b503561160d565b3480156105c157600080fd5b506101c7600480360360408110156105d857600080fd5b50803590602001356001600160a01b0316611624565b6001600160a01b039081166000908152600560205260409020541690565b60065460ff1661065e576040805162461bcd60e51b81526020600482015260186024820152772a34329031b7b73a3930b1ba1034b9903737ba1037b832b760411b604482015290519081900360640190fd5b604080516001600160a01b038581168252602082018490528251818616939188169233927f29aad86b46fcfbc8552c55f312a1420a2f563f94aa18e923f292f04f8d0b320a92918290030190a46106ce6106b661167d565b6001600160a01b03851690308463ffffffff6116db16565b816001600160a01b0316836001600160a01b0316141561076557816001600160a01b031663205c287885836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561074857600080fd5b505af115801561075c573d6000803e3d6000fd5b505050506109d7565b6001600160a01b0380841660009081526005602052604090205416806107d2576040805162461bcd60e51b815260206004820152601960248201527f6f726967696e546f6b656e2063616e2774206265207a65726f00000000000000604482015290519081900360640190fd5b806001600160a01b0316846001600160a01b03161461084d57836001600160a01b03166374d945d9836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561083157600080fd5b505af1158015610845573d6000803e3d6000fd5b505050508093505b806001600160a01b0316836001600160a01b031614156108e557826001600160a01b031663205c287886846040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156108c757600080fd5b505af11580156108db573d6000803e3d6000fd5b50505050506109d7565b6108ff6001600160a01b038516848463ffffffff61173516565b826001600160a01b031663759c7265836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561094557600080fd5b505af1158015610959573d6000803e3d6000fd5b50505050826001600160a01b031663205c287886846040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156109bd57600080fd5b505af11580156109d1573d6000803e3d6000fd5b50505050505b50505050565b60606109e7611fc7565b50604080516060810182526001600160a01b03881660008181526004602090815290849020548352820152908101869052610a25878287878761181b565b610a605760405162461bcd60e51b81526004018080602001828103825260218152602001806121016021913960400191505060405180910390fd5b6001600160a01b038716600090815260046020526040902054610a8a90600163ffffffff6118f816565b6001600160a01b03881660008181526004602090815260408083209490945583519283523383820181905260609484018581528b51958501959095528a517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b958d9592948d94919260808501928601918190849084905b83811015610b19578181015183820152602001610b01565b50505050905090810190601f168015610b465780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a160006060306001600160a01b0316888a6040516020018083805190602001908083835b60208310610b975780518252601f199092019160209182019101610b78565b6001836020036101000a038019825116818451168082178552505050505050905001826001600160a01b03166001600160a01b031660601b8152601401925050506040516020818303038152906040526040518082805190602001908083835b60208310610c165780518252601f199092019160209182019101610bf7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c78576040519150601f19603f3d011682016040523d82523d6000602084013e610c7d565b606091505b509150915081610cd4576040805162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015290519081900360640190fd5b98975050505050505050565b604051806040016040528060018152602001603160f81b81525081565b60035490565b60009081526020819052604090206002015490565b6001600160a01b031660009081526004602052604090205490565b600082815260208190526040902060020154610d5690610d51611952565b6115ea565b610d915760405162461bcd60e51b815260040180806020018281038252602f815260200180612014602f913960400191505060405180910390fd5b610d9b8282611956565b5050565b4690565b610dab611952565b6001600160a01b0316816001600160a01b031614610dfa5760405162461bcd60e51b815260040180806020018281038252602f81526020018061216f602f913960400191505060405180910390fd5b610d9b82826119c5565b60065460ff1681565b604080516a4d41505045525f524f4c4560a81b8152905190819003600b019020610e3981610d51611952565b600190610ed95760405162461bcd60e51b8152602060048201908152825460026000196101006001841615020190911604602483018190529091829160449091019084908015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b50509250505060405180910390fd5b506001600160a01b038481166000908152600560205260409020541615610f47576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b6001600160a01b038381166000908152600560205260409020541615610fb4576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600560205260409020541615611021576040805162461bcd60e51b815260206004820152601b60248201527f746f6b656e206d617070696e67206f6e6c7920616464206f6e63650000000000604482015290519081900360640190fd5b506001600160a01b0391821660009081526005602052604080822080549585166001600160a01b031996871681179091559290931681528281208054851683179055818152919091208054909216179055565b604080516a4d41505045525f524f4c4560a81b8152905190819003600b01902081565b60065460ff166110e9576040805162461bcd60e51b81526020600482015260186024820152772a34329031b7b73a3930b1ba1034b9903737ba1037b832b760411b604482015290519081900360640190fd5b604080516001600160a01b038581168252602082018490528251818616939188169233927f29aad86b46fcfbc8552c55f312a1420a2f563f94aa18e923f292f04f8d0b320a92918290030190a46001600160a01b038316611010141561131457803410156111885760405162461bcd60e51b81526004018080602001828103825260238152602001806121226023913960400191505060405180910390fd5b6001600160a01b038216611010141561121957826001600160a01b031663205c28788286846040518463ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001828152602001925050506000604051808303818588803b1580156111fb57600080fd5b505af115801561120f573d6000803e3d6000fd5b50505050506112d6565b816001600160a01b03166322cd3cbc826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561125457600080fd5b505af1158015611268573d6000803e3d6000fd5b50506040805163040b850f60e31b81526001600160a01b038981166004830152602482018790529151918716945063205c28789350604480820193506000929182900301818387803b1580156112bd57600080fd5b505af11580156112d1573d6000803e3d6000fd5b505050505b8034111561130f5760405133903483900380156108fc02916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b505b6109d7565b61131f6106b661167d565b6001600160a01b03821661101014156113f057826001600160a01b03166374d945d9826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561137857600080fd5b505af115801561138c573d6000803e3d6000fd5b50505050816001600160a01b031663205c28788286846040518463ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001828152602001925050506000604051808303818588803b1580156108c757600080fd5b816001600160a01b0316836001600160a01b0316146114bc57826001600160a01b03166374d945d9826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561144f57600080fd5b505af1158015611463573d6000803e3d6000fd5b50505050816001600160a01b03166322cd3cbc826040518263ffffffff1660e01b81526004016000604051808303818588803b1580156114a257600080fd5b505af11580156114b6573d6000803e3d6000fd5b50505050505b816001600160a01b031663205c287885836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561151c57600080fd5b505af1158015611530573d6000803e3d6000fd5b5050505050505050565b600061154881610d51611952565b6001906115ae5760405162461bcd60e51b8152602060048201908152825460026000196101006001841615020190911604602483018190529091829160449091019084908015610eca5780601f10610e9f57610100808354040283529160200191610eca565b50506006805460ff1916911515919091179055565b60008281526020819052604081206115e1908363ffffffff611a3416565b90505b92915050565b60008281526020819052604081206115e1908363ffffffff611a4016565b600081565b60008181526020819052604081206115e490611a55565b60008281526020819052604090206002015461164290610d51611952565b610dfa5760405162461bcd60e51b81526004018080602001828103825260308152602001806120ac6030913960400191505060405180910390fd5b6000333014156116d55760606000368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506116d89050565b50335b90565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526109d7908590611a60565b60408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291516000926117c69285929188169163dd62ed3e91604480820192602092909190829003018186803b15801561178e57600080fd5b505afa1580156117a2573d6000803e3d6000fd5b505050506040513d60208110156117b857600080fd5b50519063ffffffff6118f816565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790529091506109d7908590611a60565b60006001600160a01b0386166118625760405162461bcd60e51b81526004018080602001828103825260258152602001806120dc6025913960400191505060405180910390fd5b600161187561187087611b16565b611ba2565b83868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa1580156118cf573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000828201838110156115e1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6000828152602081905260409020611974908263ffffffff611bee16565b15610d9b57611981611952565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206119e3908263ffffffff611c0316565b15610d9b576119f0611952565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006115e18383611c18565b60006115e1836001600160a01b038416611c7c565b60006115e482611c94565b6060611ab5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c989092919063ffffffff16565b805190915015611b1157808060200190516020811015611ad457600080fd5b5051611b115760405162461bcd60e51b815260040180806020018281038252602a815260200180612145602a913960400191505060405180910390fd5b505050565b600060405180608001604052806043815260200161204360439139805190602001208260000151836020015184604001518051906020012060405160200180858152602001848152602001836001600160a01b03166001600160a01b03168152602001828152602001945050505050604051602081830303815290604052805190602001209050919050565b6000611bac610cfd565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60006115e1836001600160a01b038416611cb1565b60006115e1836001600160a01b038416611cfb565b81546000908210611c5a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611ff26022913960400191505060405180910390fd5b826000018281548110611c6957fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6060611ca78484600085611dc1565b90505b9392505050565b6000611cbd8383611c7c565b611cf3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556115e4565b5060006115e4565b60008181526001830160205260408120548015611db75783546000198083019190810190600090879083908110611d2e57fe5b9060005260206000200154905080876000018481548110611d4b57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611d7b57fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506115e4565b60009150506115e4565b606082471015611e025760405162461bcd60e51b81526004018080602001828103825260268152602001806120866026913960400191505060405180910390fd5b611e0b85611f1d565b611e5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611e9b5780518252601f199092019160209182019101611e7c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611efd576040519150601f19603f3d011682016040523d82523d6000602084013e611f02565b606091505b5091509150611f12828286611f23565b979650505050505050565b3b151590565b60608315611f32575081611caa565b825115611f425782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f8c578181015183820152602001611f74565b50505050905090810190601f168015611fb95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b60405180606001604052806000815260200160006001600160a01b0316815260200160608152509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b654e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5349474e45525369676e657220616e64207369676e617475726520646f206e6f74206d617463686d73672076616c75652063616e2774206265206c657373207468616e20616d6f756e745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122010fceae633b54f0a41311f2c24b29e5ea3e9d7121df61da5c3262c4d741b991264736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b81900000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b819
-----Decoded View---------------
Arg [0] : admin (address): 0x60F68C9B9e505946cf5102378fB55F07b812b819
Arg [1] : mapper (address): 0x60F68C9B9e505946cf5102378fB55F07b812b819
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b819
Arg [1] : 00000000000000000000000060f68c9b9e505946cf5102378fb55f07b812b819
Deployed Bytecode Sourcemap
48910:4708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;53492:121:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53492:121:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53492:121:0;-1:-1:-1;;;;;53492:121:0;;:::i;:::-;;;;-1:-1:-1;;;;;53492:121:0;;;;;;;;;;;;;;50610:1085;;5:9:-1;2:2;;;27:1;24;17:12;2:2;50610:1085:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;50610:1085:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44338:1142;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;44338:1142:0;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;44338:1142:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44338:1142:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44338:1142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44338:1142:0;;-1:-1:-1;;44338:1142:0;;;-1:-1:-1;;;44338:1142:0;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44338:1142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41517:43;;5:9:-1;2:2;;;27:1;24;17:12;2:2;41517:43:0;;;:::i;42527:101::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42527:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;37304:114;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37304:114:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37304:114:0;;:::i;45906:107::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45906:107:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;45906:107:0;-1:-1:-1;;;;;45906:107:0;;:::i;37680:227::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37680:227:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;37680:227:0;;;;;;-1:-1:-1;;;;;37680:227:0;;:::i;42636:161::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42636:161:0;;;:::i;38889:209::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38889:209:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38889:209:0;;;;;;-1:-1:-1;;;;;38889:209:0;;:::i;49131:25::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49131:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;49708:613;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49708:613:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;49708:613:0;;;;;;;;;;;;;;;;;;;:::i;49165:62::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49165:62:0;;;:::i;52066:1373::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;;52066:1373:0;;;;;;;;;;;;;;;;;;;;;;:::i;49606:94::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49606:94:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;49606:94:0;;;;:::i;36977:138::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36977:138:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36977:138:0;;;;;;;:::i;35938:139::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35938:139:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35938:139:0;;;;;;-1:-1:-1;;;;;35938:139:0;;:::i;34683:49::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34683:49:0;;;:::i;36251:127::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36251:127:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36251:127:0;;:::i;38152:230::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;38152:230:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38152:230:0;;;;;;-1:-1:-1;;;;;38152:230:0;;:::i;53492:121::-;-1:-1:-1;;;;;53585:20:0;;;53554:11;53585:20;;;:13;:20;;;;;;;;53492:121::o;50610:1085::-;49543:6;;;;49535:43;;;;;-1:-1:-1;;;49535:43:0;;;;;;;;;;;;-1:-1:-1;;;49535:43:0;;;;;;;;;;;;;;;50763:79:::1;::::0;;-1:-1:-1;;;;;50763:79:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;50775:10:::1;::::0;50763:79:::1;::::0;;;;;;;::::1;50855:74;50894:11;:9;:11::i;:::-;-1:-1:-1::0;;;;;50855:38:0;::::1;::::0;50915:4:::1;50922:6:::0;50855:74:::1;:38;:74;:::i;:::-;50961:9;-1:-1:-1::0;;;;;50944:26:0::1;:13;-1:-1:-1::0;;;;;50944:26:0::1;;50940:112;;;50987:9;-1:-1:-1::0;;;;;50987:20:0::1;;51008:2;51012:6;50987:32;;;;;;;;;;;;;-1:-1:-1::0;;;;;50987:32:0::1;-1:-1:-1::0;;;;;50987:32:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;50987:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;50987:32:0;;;;51034:7;;50940:112;-1:-1:-1::0;;;;;51088:28:0;;::::1;51062:23;51088:28:::0;;;:13:::1;:28;::::0;;;;;::::1;51135:34:::0;51127:72:::1;;;::::0;;-1:-1:-1;;;51127:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;51231:11;-1:-1:-1::0;;;;;51214:28:0::1;:13;-1:-1:-1::0;;;;;51214:28:0::1;;51210:165;;51290:13;-1:-1:-1::0;;;;;51259:54:0::1;;51314:6;51259:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;51259:62:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;51259:62:0;;;;51352:11;51336:27;;51210:165;51402:11;-1:-1:-1::0;;;;;51389:24:0::1;:9;-1:-1:-1::0;;;;;51389:24:0::1;;51385:110;;;51430:9;-1:-1:-1::0;;;;;51430:20:0::1;;51451:2;51455:6;51430:32;;;;;;;;;;;;;-1:-1:-1::0;;;;;51430:32:0::1;-1:-1:-1::0;;;;;51430:32:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;51430:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;51430:32:0;;;;51477:7;;;51385:110;51505:71;-1:-1:-1::0;;;;;51505:43:0;::::1;51557:9:::0;51569:6;51505:71:::1;:43;:71;:::i;:::-;51618:9;-1:-1:-1::0;;;;;51587:49:0::1;;51637:6;51587:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;51587:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;51587:57:0;;;;51655:9;-1:-1:-1::0;;;;;51655:20:0::1;;51676:2;51680:6;51655:32;;;;;;;;;;;;;-1:-1:-1::0;;;;;51655:32:0::1;-1:-1:-1::0;;;;;51655:32:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;51655:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;51655:32:0;;;;49589:1;;50610:1085:::0;;;;:::o;44338:1142::-;44539:12;44564:29;;:::i;:::-;-1:-1:-1;44596:152:0;;;;;;;;-1:-1:-1;;;;;44634:19:0;;-1:-1:-1;44634:19:0;;;:6;:19;;;;;;;;;44596:152;;;;;;;;;;;44783:45;44641:11;44596:152;44811:4;44817;44823;44783:6;:45::i;:::-;44761:128;;;;-1:-1:-1;;;44761:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44978:19:0;;;;;;:6;:19;;;;;;:26;;45002:1;44978:26;:23;:26;:::i;:::-;-1:-1:-1;;;;;44956:19:0;;;;;;:6;:19;;;;;;;;:48;;;;45022:117;;;;;45086:10;45022:117;;;;;;;;;;;;;;;;;;;;;;;;;;44963:11;;45086:10;;45111:17;;45022:117;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;45022:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45250:12;45264:23;45299:4;-1:-1:-1;;;;;45291:18:0;45341:17;45360:11;45324:48;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;45324:48:0;;;;;;;-1:-1:-1;;;;;45324:48:0;-1:-1:-1;;;;;45324:48:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;45324:48:0;;;45291:92;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;45291:92:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;45249:134:0;;;;45402:7;45394:48;;;;;-1:-1:-1;;;45394:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;45462:10;44338:1142;-1:-1:-1;;;;;;;;44338:1142:0:o;41517:43::-;;;;;;;;;;;;;;-1:-1:-1;;;41517:43:0;;;;:::o;42527:101::-;42605:15;;42527:101;:::o;37304:114::-;37361:7;37388:12;;;;;;;;;;:22;;;;37304:114::o;45906:107::-;-1:-1:-1;;;;;45993:12:0;45959:13;45993:12;;;:6;:12;;;;;;;45906:107::o;37680:227::-;37772:6;:12;;;;;;;;;;:22;;;37764:45;;37796:12;:10;:12::i;:::-;37764:7;:45::i;:::-;37756:105;;;;-1:-1:-1;;;37756:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37874:25;37885:4;37891:7;37874:10;:25::i;:::-;37680:227;;:::o;42636:161::-;42750:9;42636:161;:::o;38889:209::-;38987:12;:10;:12::i;:::-;-1:-1:-1;;;;;38976:23:0;:7;-1:-1:-1;;;;;38976:23:0;;38968:83;;;;-1:-1:-1;;;38968:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39064:26;39076:4;39082:7;39064:11;:26::i;49131:25::-;;;;;;:::o;49708:613::-;49203:24;;;-1:-1:-1;;;49203:24:0;;;;;;;;;;;;40919:27;49203:24;40933:12;:10;:12::i;40919:27::-;40961:10;40897:85;;;;;-1:-1:-1;;;40897:85:0;;;;;;;;;;;;-1:-1:-1;;40897:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49907:26:0;;::::1;49946:1;49907:26:::0;;;:13:::1;:26;::::0;;;;;::::1;49899:49:::0;49891:89:::1;;;::::0;;-1:-1:-1;;;49891:89:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;50007:21:0;;::::1;50041:1;50007:21:::0;;;:13:::1;:21;::::0;;;;;::::1;49999:44:::0;49991:84:::1;;;::::0;;-1:-1:-1;;;49991:84:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;50102:21:0;;::::1;50136:1;50102:21:::0;;;:13:::1;:21;::::0;;;;;::::1;50094:44:::0;50086:84:::1;;;::::0;;-1:-1:-1;;;50086:84:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;50181:21:0;;::::1;;::::0;;;:13:::1;:21;::::0;;;;;:35;;;;::::1;-1:-1:-1::0;;;;;;50181:35:0;;::::1;::::0;::::1;::::0;;;50227:21;;;::::1;::::0;;;;;:35;;;::::1;::::0;::::1;::::0;;50273:26;;;;;;;:40;;;;::::1;;::::0;;49708:613::o;49165:62::-;49203:24;;;-1:-1:-1;;;49203:24:0;;;;;;;;;;;;49165:62;:::o;52066:1373::-;49543:6;;;;49535:43;;;;;-1:-1:-1;;;49535:43:0;;;;;;;;;;;;-1:-1:-1;;;49535:43:0;;;;;;;;;;;;;;;52228:79:::1;::::0;;-1:-1:-1;;;;;52228:79:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;::::1;::::0;52240:10:::1;::::0;52228:79:::1;::::0;;;;;;;::::1;-1:-1:-1::0;;;;;52324:41:0;::::1;52358:6;52324:41;52320:567;;;52403:6;52390:9;:19;;52382:67;;;;-1:-1:-1::0;;;52382:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;52468:37:0;::::1;52498:6;52468:37;52464:279;;;52526:13;-1:-1:-1::0;;;;;52526:24:0::1;;52557:6;52565:2;52569:6;52526:50;;;;;;;;;;;;;-1:-1:-1::0;;;;;52526:50:0::1;-1:-1:-1::0;;;;;52526:50:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;52526:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52526:50:0;;;;;52464:279;;;52642:9;-1:-1:-1::0;;;;;52617:43:0::1;;52667:6;52617:59;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;52617:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;52695:32:0::1;::::0;;-1:-1:-1;;;52695:32:0;;-1:-1:-1;;;;;52695:32:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:20;;::::1;::::0;-1:-1:-1;52695:20:0::1;::::0;-1:-1:-1;52695:32:0;;;;;-1:-1:-1;;;52695:32:0;;;;;;-1:-1:-1;52695:20:0;:32;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;52695:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52695:32:0;;;;52464:279;52773:6;52761:9;:18;52757:98;;;52800:39;::::0;:10:::1;::::0;52820:9:::1;:18:::0;;::::1;52800:39:::0;::::1;;;::::0;::::1;::::0;;;52820:18;52800:10;:39;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;52800:39:0;52757:98;52869:7;;52320:567;52897:74;52936:11;:9;:11::i;52897:74::-;-1:-1:-1::0;;;;;52986:37:0;::::1;53016:6;52986:37;52982:208;;;53065:13;-1:-1:-1::0;;;;;53040:48:0::1;;53089:6;53040:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53040:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;53040:56:0;;;;53111:9;-1:-1:-1::0;;;;;53111:20:0::1;;53138:6;53146:2;53150:6;53111:46;;;;;;;;;;;;;-1:-1:-1::0;;;;;53111:46:0::1;-1:-1:-1::0;;;;;53111:46:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;52982:208:0;53221:9;-1:-1:-1::0;;;;;53204:26:0::1;:13;-1:-1:-1::0;;;;;53204:26:0::1;;53200:189;;53272:13;-1:-1:-1::0;;;;;53247:48:0::1;;53296:6;53247:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53247:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;53247:56:0;;;;53343:9;-1:-1:-1::0;;;;;53318:43:0::1;;53368:6;53318:59;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53318:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;53318:59:0;;;;;53200:189;53399:9;-1:-1:-1::0;;;;;53399:20:0::1;;53420:2;53424:6;53399:32;;;;;;;;;;;;;-1:-1:-1::0;;;;;53399:32:0::1;-1:-1:-1::0;;;;;53399:32:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;53399:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;53399:32:0;;;;52066:1373:::0;;;;:::o;49606:94::-;34728:4;40919:27;34728:4;40933:12;:10;:12::i;40919:27::-;40961:10;40897:85;;;;;-1:-1:-1;;;40897:85:0;;;;;;;;;;;;-1:-1:-1;;40897:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49679:6:0::1;:13:::0;;-1:-1:-1;;49679:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49606:94::o;36977:138::-;37050:7;37077:12;;;;;;;;;;:30;;37101:5;37077:30;:23;:30;:::i;:::-;37070:37;;36977:138;;;;;:::o;35938:139::-;36007:4;36031:12;;;;;;;;;;:38;;36061:7;36031:38;:29;:38;:::i;34683:49::-;34728:4;34683:49;:::o;36251:127::-;36314:7;36341:12;;;;;;;;;;:29;;:27;:29::i;38152:230::-;38245:6;:12;;;;;;;;;;:22;;;38237:45;;38269:12;:10;:12::i;38237:45::-;38229:106;;;;-1:-1:-1;;;38229:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46624:641;46695:22;46739:10;46761:4;46739:27;46735:499;;;46783:18;46804:8;;46783:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;;;46843:8:0;47054:17;47048:24;-1:-1:-1;;;;;47022:134:0;;-1:-1:-1;46882:289:0;;-1:-1:-1;46882:289:0;;-1:-1:-1;47212:10:0;46735:499;46624:641;:::o;19283:205::-;19411:68;;;-1:-1:-1;;;;;19411:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;19411:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;19384:96:0;;19404:5;;19384:19;:96::i;20387:286::-;20507:39;;;-1:-1:-1;;;20507:39:0;;20531:4;20507:39;;;;-1:-1:-1;;;;;20507:39:0;;;;;;;;;20484:20;;20507:50;;20551:5;;20507:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;2:2:-1;;;;27:1;24;17:12;2:2;20507:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20507:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20507:39:0;;:50;:43;:50;:::i;:::-;20595:69;;;-1:-1:-1;;;;;20595:69:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;20595:69:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;20484:73:0;;-1:-1:-1;20568:97:0;;20588:5;;20568:19;:97::i;46021:486::-;46199:4;-1:-1:-1;;;;;46224:20:0;;46216:70;;;;-1:-1:-1;;;46216:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340:159;46368:47;46387:27;46407:6;46387:19;:27::i;:::-;46368:18;:47::i;:::-;46434:4;46457;46480;46340:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46340:159:0;;;;;;;;-1:-1:-1;;;;;46317:182:0;:6;-1:-1:-1;;;;;46317:182:0;;46297:202;;46021:486;;;;;;;:::o;5670:179::-;5728:7;5760:5;;;5784:6;;;;5776:46;;;;;-1:-1:-1;;;5776:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;32585:106;32673:10;32585:106;:::o;40132:188::-;40206:6;:12;;;;;;;;;;:33;;40231:7;40206:33;:24;:33;:::i;:::-;40202:111;;;40288:12;:10;:12::i;:::-;-1:-1:-1;;;;;40261:40:0;40279:7;-1:-1:-1;;;;;40261:40:0;40273:4;40261:40;;;;;;;;;;40132:188;;:::o;40328:192::-;40403:6;:12;;;;;;;;;;:36;;40431:7;40403:36;:27;:36;:::i;:::-;40399:114;;;40488:12;:10;:12::i;:::-;-1:-1:-1;;;;;40461:40:0;40479:7;-1:-1:-1;;;;;40461:40:0;40473:4;40461:40;;;;;;;;;;40328:192;;:::o;30146:158::-;30220:7;30271:22;30275:3;30287:5;30271:3;:22::i;29432:167::-;29512:4;29536:55;29546:3;-1:-1:-1;;;;;29566:23:0;;29536:9;:55::i;29685:117::-;29748:7;29775:19;29783:3;29775:7;:19::i;21403:761::-;21827:23;21853:69;21881:4;21853:69;;;;;;;;;;;;;;;;;21861:5;-1:-1:-1;;;;;21853:27:0;;;:69;;;;;:::i;:::-;21937:17;;21827:95;;-1:-1:-1;21937:21:0;21933:224;;22079:10;22068:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22068:30:0;22060:85;;;;-1:-1:-1;;;22060:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21403:761;;;:::o;45488:410::-;45598:7;43674:100;;;;;;;;;;;;;;;;;43654:127;;;;;;45752:6;:12;;;45787:6;:11;;;45831:6;:24;;;45821:35;;;;;;45671:204;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45671:204:0;-1:-1:-1;;;;;45671:204:0;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;45671:204:0;;;45643:247;;;;;;45623:267;;45488:410;;;:::o;43166:258::-;43265:7;43367:20;:18;:20::i;:::-;43389:11;43338:63;;;;;;-1:-1:-1;;;43338:63:0;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;43338:63:0;;;43310:106;;;;;;43290:126;;43166:258;;;:::o;28860:152::-;28930:4;28954:50;28959:3;-1:-1:-1;;;;;28979:23:0;;28954:4;:50::i;29188:158::-;29261:4;29285:53;29293:3;-1:-1:-1;;;;;29313:23:0;;29285:7;:53::i;26812:204::-;26907:18;;26879:7;;26907:26;-1:-1:-1;26899:73:0;;;;-1:-1:-1;;;26899:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26990:3;:11;;27002:5;26990:18;;;;;;;;;;;;;;;;26983:25;;26812:204;;;;:::o;26144:129::-;26217:4;26241:19;;;:12;;;;;:19;;;;;;:24;;;26144:129::o;26359:109::-;26442:18;;26359:109::o;14060:195::-;14163:12;14195:52;14217:6;14225:4;14231:1;14234:12;14195:21;:52::i;:::-;14188:59;;14060:195;;;;;;:::o;23924:414::-;23987:4;24009:21;24019:3;24024:5;24009:9;:21::i;:::-;24004:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;24047:11:0;:23;;;;;;;;;;;;;24230:18;;24208:19;;;:12;;;:19;;;;;;:40;;;;24263:11;;24004:327;-1:-1:-1;24314:5:0;24307:12;;24514:1544;24580:4;24719:19;;;:12;;;:19;;;;;;24755:15;;24751:1300;;25190:18;;-1:-1:-1;;25141:14:0;;;;25190:22;;;;25117:21;;25190:3;;:22;;25477;;;;;;;;;;;;;;25457:42;;25623:9;25594:3;:11;;25606:13;25594:26;;;;;;;;;;;;;;;;;;;:38;;;;25700:23;;;25742:1;25700:12;;;:23;;;;;;25726:17;;;25700:43;;25852:17;;25700:3;;25852:17;;;;;;;;;;;;;;;;;;;;;;25947:3;:12;;:19;25960:5;25947:19;;;;;;;;;;;25940:26;;;25990:4;25983:11;;;;;;;;24751:1300;26034:5;26027:12;;;;;15112:530;15239:12;15297:5;15272:21;:30;;15264:81;;;;-1:-1:-1;;;15264:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15364:18;15375:6;15364:10;:18::i;:::-;15356:60;;;;;-1:-1:-1;;;15356:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15490:12;15504:23;15531:6;-1:-1:-1;;;;;15531:11:0;15551:5;15559:4;15531:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;15531:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;15489:75:0;;;;15582:52;15600:7;15609:10;15621:12;15582:17;:52::i;:::-;15575:59;15112:530;-1:-1:-1;;;;;;;15112:530:0:o;11142:422::-;11509:20;11548:8;;;11142:422::o;17652:742::-;17767:12;17796:7;17792:595;;;-1:-1:-1;17827:10:0;17820:17;;17792:595;17941:17;;:21;17937:439;;18204:10;18198:17;18265:15;18252:10;18248:2;18244:19;18237:44;18152:148;18347:12;18340:20;;-1:-1:-1;;;18340:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18340:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48910:4708;;;;;;;;;;;;;;;-1:-1:-1;;;;;48910:4708:0;;;;;;;;;;:::o
Swarm Source
ipfs://10fceae633b54f0a41311f2c24b29e5ea3e9d7121df61da5c3262c4d741b9912
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.