Overview
Max Total Supply
42,262.361515459665403408 ELENA
Holders
227 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000006561787075 ELENAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ElenaShareToken
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-18 */ //SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; // ==================================================================== // ________ _______ // / ____/ /__ ____ ____ _ / ____(_)___ ____ _____ ________ // / __/ / / _ \/ __ \/ __ `/ / /_ / / __ \/ __ `/ __ \/ ___/ _ \ // / /___/ / __/ / / / /_/ / / __/ / / / / / /_/ / / / / /__/ __/ // /_____/_/\___/_/ /_/\__,_(_)_/ /_/_/ /_/\__,_/_/ /_/\___/\___/ // // ==================================================================== // ====================== Elena Protocol (USE) ======================== // ==================================================================== // Dapp : https://elena.finance // Twitter : https://twitter.com/ElenaProtocol // Telegram: https://t.me/ElenaFinance // ==================================================================== // File: contracts\@openzeppelin\contracts\math\SafeMath.sol // License: MIT /** * @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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts\@openzeppelin\contracts\GSN\Context.sol // License: MIT /* * @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: contracts\@openzeppelin\contracts\access\Ownable.sol // License: MIT /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts\@openzeppelin\contracts\utils\EnumerableSet.sol // License: MIT /** * @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.0.0, only sets of type `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]; } // 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(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(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(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(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: contracts\@openzeppelin\contracts\utils\Address.sol // License: MIT /** * @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 in 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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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: contracts\@openzeppelin\contracts\access\AccessControl.sol // License: MIT /** * @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\@openzeppelin\contracts\token\ERC20\IERC20.sol // License: MIT /** * @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: contracts\@openzeppelin\contracts\token\ERC20\SafeERC20.sol // License: MIT /** * @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: contracts\Common\ITradeMining.sol // License: MIT interface ITradeMining { function tradeMining(address sender, address receiver, address operator, uint256 amount) external; } // File: contracts\Common\ERC20Custom.sol // License: MIT // Due to compiling issues, _name, _symbol, and _decimals were removed /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Custom is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for `accounts`'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal virtual { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of `from`'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts\Oracle\IUniswapPairOracle.sol // License: MIT // Fixed window oracle that recomputes the average price for the entire period once every period // Note that the price average is only guaranteed to be over at least 1 period, but may be over a longer period interface IUniswapPairOracle { function getPairToken(address token) external view returns(address); function containsToken(address token) external view returns(bool); function getSwapTokenReserve(address token) external view returns(uint256); function update() external returns(bool); // Note this will always return 0 before update has been called successfully for the first time. function consult(address token, uint amountIn) external view returns (uint amountOut); } // File: contracts\USE\IUSEStablecoin.sol // License: MIT interface IUSEStablecoin { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); function owner_address() external returns (address); function creator_address() external returns (address); function timelock_address() external returns (address); function genesis_supply() external returns (uint256); function refresh_cooldown() external returns (uint256); function price_target() external returns (uint256); function price_band() external returns (uint256); function DEFAULT_ADMIN_ADDRESS() external returns (address); function COLLATERAL_RATIO_PAUSER() external returns (bytes32); function collateral_ratio_paused() external returns (bool); function last_call_time() external returns (uint256); function USEDAIOracle() external returns (IUniswapPairOracle); function USESharesOracle() external returns (IUniswapPairOracle); /* ========== VIEWS ========== */ function use_pools(address a) external view returns (bool); function global_collateral_ratio() external view returns (uint256); function use_price() external view returns (uint256); function share_price() external view returns (uint256); function share_price_in_use() external view returns (uint256); function globalCollateralValue() external view returns (uint256); /* ========== PUBLIC FUNCTIONS ========== */ function refreshCollateralRatio() external; function swapCollateralAmount() external view returns(uint256); function pool_mint(address m_address, uint256 m_amount) external; function pool_burn_from(address b_address, uint256 b_amount) external; function burn(uint256 amount) external; } // File: contracts\Share\ElenaShareToken.sol // License: MIT contract ElenaShareToken is ERC20Custom, AccessControl { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ string public symbol; string public name; uint8 public constant decimals = 18; uint256 public supply_cap = 1000000e18; // total supply 1M uint256 public SHARES_DAO_min = 10e18; // Minimum SHARES required to join DAO groups address public owner_address; address public timelock_address; // Governance timelock address IUSEStablecoin public USE; ITradeMining public shares_trade_mining; bool public trackingVotes = true; // Tracking votes (only change if need to disable votes) // A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } // A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; // The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /* ========== MODIFIERS ========== */ modifier onlyPools() { require(USE.use_pools(msg.sender) == true, "Only USE pools can mint new SHARES"); _; } modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address, "You are not an owner or the governance timelock"); _; } /* ========== CONSTRUCTOR ========== */ constructor( string memory _name, string memory _symbol, address _timelock_address, address _use_address ) public { name = _name; symbol = _symbol; owner_address = _msgSender(); timelock_address = _timelock_address; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); USE = IUSEStablecoin(_use_address); _mint(owner_address,1e18); _writeCheckpoint(owner_address, 0, 0,1e18); } /* ========== RESTRICTED FUNCTIONS ========== */ function setTimelock(address new_timelock) external onlyByOwnerOrGovernance { timelock_address = new_timelock; } function setUSEAddress(address use_contract_address) external onlyByOwnerOrGovernance { USE = IUSEStablecoin(use_contract_address); } function setSharesTradeMiningPool(address _shares_trade_mining) external onlyByOwnerOrGovernance { shares_trade_mining = ITradeMining(_shares_trade_mining); } function setSharesDAOMin(uint256 min_shares) external onlyByOwnerOrGovernance { SHARES_DAO_min = min_shares; } function setSupplyCap(uint256 _cap) external onlyByOwnerOrGovernance { supply_cap = _cap; } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } function mint(address to, uint256 amount) public onlyPools { require(totalSupply() <= supply_cap,"!cap"); _mint(to, amount); } // This function is what other USE pools will call to mint new SHARES (similar to the USE mint) function pool_mint(address m_address, uint256 m_amount) external onlyPools { if(trackingVotes){ uint32 srcRepNum = numCheckpoints[address(this)]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[address(this)][srcRepNum - 1].votes : 0; uint96 srcRepNew = add96(srcRepOld, uint96(m_amount), "pool_mint new votes overflows"); _writeCheckpoint(address(this), srcRepNum, srcRepOld, srcRepNew); // mint new votes trackVotes(address(this), m_address, uint96(m_amount)); } require(totalSupply() <= supply_cap,"!cap"); super._mint(m_address, m_amount); emit SharesMinted(address(this), m_address, m_amount); } // This function is what other USE pools will call to burn SHARES function pool_burn_from(address b_address, uint256 b_amount) external onlyPools { if(trackingVotes){ trackVotes(b_address, address(this), uint96(b_amount)); uint32 srcRepNum = numCheckpoints[address(this)]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[address(this)][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, uint96(b_amount), "pool_burn_from new votes underflows"); _writeCheckpoint(address(this), srcRepNum, srcRepOld, srcRepNew); // burn votes } super._burnFrom(b_address, b_amount); emit SharesBurned(b_address, address(this), b_amount); } function toggleVotes() external onlyByOwnerOrGovernance { trackingVotes = !trackingVotes; } /* ========== OVERRIDDEN PUBLIC FUNCTIONS ========== */ function _transfer(address sender,address recipient, uint256 amount) internal override { super._transfer(sender, recipient, amount); if (address(shares_trade_mining) != address(0)) { shares_trade_mining.tradeMining(sender, recipient, msg.sender, amount); } } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if(trackingVotes){ // Transfer votes trackVotes(_msgSender(), recipient, uint96(amount)); } _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { if(trackingVotes){ // Transfer votes trackVotes(sender, recipient, uint96(amount)); } _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /* ========== PUBLIC FUNCTIONS ========== */ /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { require(blockNumber < block.number, "Elena::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } /* ========== INTERNAL FUNCTIONS ========== */ // From compound's _moveDelegates // Keep track of votes. "Delegates" is a misnomer here function trackVotes(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "Elena::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "Elena::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address voter, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "Elena::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[voter][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[voter][nCheckpoints - 1].votes = newVotes; } else { checkpoints[voter][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[voter] = nCheckpoints + 1; } emit VoterVotesChanged(voter, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /* ========== EVENTS ========== */ /// @notice An event thats emitted when a voters account's vote balance changes event VoterVotesChanged(address indexed voter, uint previousBalance, uint newBalance); // Track SHARES burned event SharesBurned(address indexed from, address indexed to, uint256 amount); // Track SHARES minted event SharesMinted(address indexed from, address indexed to, uint256 amount); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_timelock_address","type":"address"},{"internalType":"address","name":"_use_address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SharesBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SharesMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"VoterVotesChanged","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARES_DAO_min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USE","outputs":[{"internalType":"contract IUSEStablecoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"b_address","type":"address"},{"internalType":"uint256","name":"b_amount","type":"uint256"}],"name":"pool_burn_from","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"m_address","type":"address"},{"internalType":"uint256","name":"m_amount","type":"uint256"}],"name":"pool_mint","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_owner_address","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"min_shares","type":"uint256"}],"name":"setSharesDAOMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_shares_trade_mining","type":"address"}],"name":"setSharesTradeMiningPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cap","type":"uint256"}],"name":"setSupplyCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_timelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"use_contract_address","type":"address"}],"name":"setUSEAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shares_trade_mining","outputs":[{"internalType":"contract ITradeMining","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply_cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackingVotes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405269d3c21bcecceda1000000600655678ac7230489e80000600755600b805460ff60a01b1916600160a01b1790553480156200003e57600080fd5b5060405162003078380380620030788339810160408190526200006191620006e3565b835162000076906005906020870190620005a8565b5082516200008c906004906020860190620005a8565b50620000a06001600160e01b036200015c16565b600880546001600160a01b03199081166001600160a01b039384161790915560098054909116918416919091179055620000ee6000620000df6200015c565b6001600160e01b036200016116565b600a80546001600160a01b0319166001600160a01b0383811691909117909155600854620001269116670de0b6b3a76400006200017a565b60085462000152906001600160a01b0316600080670de0b6b3a76400006001600160e01b036200026f16565b505050506200086a565b335b90565b6200017682826001600160e01b036200042b16565b5050565b6001600160a01b038216620001ac5760405162461bcd60e51b8152600401620001a390620007dd565b60405180910390fd5b620001c3600083836001600160e01b03620004af16565b620001df81600254620004b460201b620014031790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200021291839062001403620004b4821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200026390859062000814565b60405180910390a35050565b60006200029f4360405180606001604052806035815260200162003043603591396001600160e01b03620004e516565b905060008463ffffffff16118015620002e957506001600160a01b0385166000908152600c6020908152604080832063ffffffff6000198901811685529252909120548282169116145b1562000345576001600160a01b0385166000908152600c60209081526040808320600019880163ffffffff16845290915290208054600160201b600160801b0319166401000000006001600160601b03851602179055620003df565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600c83528781208c87168252835287812096518754945190951664010000000002600160201b600160801b031995871663ffffffff19958616179590951694909417909555938252600d90935292909220805460018801909316929091169190911790555b846001600160a01b03167f3eaa1c4be29b4a4c60e00300b5a17a8ec6c982b5b0ad5870cc84ebdc3b24d68e84846040516200041c9291906200081d565b60405180910390a25050505050565b6000828152600360209081526040909120620004529183906200142862000518821b17901c565b1562000176576200046b6001600160e01b036200015c16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b505050565b600082820183811015620004dc5760405162461bcd60e51b8152600401620001a390620007a6565b90505b92915050565b6000816401000000008410620005105760405162461bcd60e51b8152600401620001a3919062000771565b509192915050565b6000620004dc836001600160a01b0384166001600160e01b036200053816565b60006200054f83836001600160e01b036200059016565b6200058757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620004df565b506000620004df565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005eb57805160ff19168380011785556200061b565b828001600101855582156200061b579182015b828111156200061b578251825591602001919060010190620005fe565b50620006299291506200062d565b5090565b6200015e91905b8082111562000629576000815560010162000634565b80516001600160a01b0381168114620004df57600080fd5b600082601f83011262000673578081fd5b81516001600160401b03808211156200068a578283fd5b604051601f8301601f191681016020018281118282101715620006ab578485fd5b604052828152925082848301602001861015620006c757600080fd5b620006da83602083016020880162000837565b50505092915050565b60008060008060808587031215620006f9578384fd5b84516001600160401b038082111562000710578586fd5b6200071e8883890162000662565b9550602087015191508082111562000734578485fd5b50620007438782880162000662565b9350506200075586604087016200064a565b91506200076686606087016200064a565b905092959194509250565b60006020825282518060208401526200079281604085016020870162000837565b601f01601f19169190910160400192915050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b6001600160601b0392831681529116602082015260400190565b60005b83811015620008545781810151838201526020016200083a565b8381111562000864576000848401525b50505050565b6127c9806200087a6000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c8063782d6fe111610146578063a9059cbb116100c3578063ca15c87311610087578063ca15c873146104fc578063d547741f1461050f578063dc6663c714610522578063dd62ed3e1461052a578063eaac77ea1461053d578063f1127ed8146105455761025e565b8063a9059cbb1461049d578063b4b5ea57146104b0578063b4f56b26146104c3578063b6a3f59a146104d6578063bdacb303146104e95761025e565b806395d89b411161010a57806395d89b4114610454578063a10078051461045c578063a217fddf1461046f578063a457c2d714610477578063a8a778ae1461048a5761025e565b8063782d6fe1146103f357806379cc67901461041357806380edef8e146104265780639010d07c1461042e57806391d14854146104415761025e565b8063313ce567116101df57806345791d19116101a357806345791d191461038857806345d34a931461039057806359671450146103a557806364e628c1146103ad5780636fcfff45146103c057806370a08231146103e05761025e565b8063313ce5671461032757806336568abe1461033c578063395093511461034f57806340c10f191461036257806342966c68146103755761025e565b806323b872dd1161022657806323b872dd146102de578063248a9ca3146102f157806328a4aeaa146103045780632f2ff15d1461030c5780633052fe151461031f5761025e565b80630236c4111461026357806306fdde0314610278578063095ea7b31461029657806313af4035146102b657806318160ddd146102c9575b600080fd5b610276610271366004611fb2565b610566565b005b6102806105d0565b60405161028d9190612179565b60405180910390f35b6102a96102a4366004612041565b61065e565b60405161028d9190612165565b6102766102c4366004611fb2565b61067c565b6102d16106dd565b60405161028d9190612170565b6102a96102ec366004612001565b6106e3565b6102d16102ff3660046120ca565b61078e565b6102a96107a3565b61027661031a3660046120e2565b6107b3565b6102d16107fb565b61032f610801565b60405161028d91906125e0565b61027661034a3660046120e2565b610806565b6102a961035d366004612041565b610848565b610276610370366004612041565b61089c565b6102766103833660046120ca565b610970565b610276610984565b6103986109e4565b60405161028d9190612127565b6103986109f3565b6102766103bb366004611fb2565b610a02565b6103d36103ce366004611fb2565b610a63565b60405161028d91906125b0565b6102d16103ee366004611fb2565b610a7b565b610406610401366004612041565b610a96565b60405161028d91906125ee565b610276610421366004612041565b610ca4565b610398610cff565b61039861043c366004612106565b610d0e565b6102a961044f3660046120e2565b610d33565b610280610d51565b61027661046a3660046120ca565b610dac565b6102d1610df0565b6102a9610485366004612041565b610df5565b610276610498366004612041565b610e63565b6102a96104ab366004612041565b61100c565b6104066104be366004611fb2565b611045565b6102766104d1366004612041565b6110b5565b6102766104e43660046120ca565b611298565b6102766104f7366004611fb2565b6112dc565b6102d161050a3660046120ca565b61133d565b61027661051d3660046120e2565b611354565b61039861138e565b6102d1610538366004611fcd565b61139d565b6102d16113c8565b61055861055336600461206b565b6113ce565b60405161028d9291906125c1565b6008546001600160a01b031633148061058957506009546001600160a01b031633145b6105ae5760405162461bcd60e51b81526004016105a5906124db565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b505050505081565b600061067261066b61143d565b8484611441565b5060015b92915050565b6008546001600160a01b031633148061069f57506009546001600160a01b031633145b6106bb5760405162461bcd60e51b81526004016105a5906124db565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b600b54600090600160a01b900460ff1615610703576107038484846114f5565b61070e84848461168f565b6107848461071a61143d565b61077f856040518060600160405280602881526020016126fa602891396001600160a01b038a1660009081526001602052604081209061075861143d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61171816565b611441565b5060019392505050565b60009081526003602052604090206002015490565b600b54600160a01b900460ff1681565b6000828152600360205260409020600201546107d19061044f61143d565b6107ed5760405162461bcd60e51b81526004016105a590612251565b6107f78282611744565b5050565b60075481565b601281565b61080e61143d565b6001600160a01b0316816001600160a01b03161461083e5760405162461bcd60e51b81526004016105a59061252a565b6107f782826117b3565b600061067261085561143d565b8461077f856001600061086661143d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61140316565b600a5460405163d958357960e01b81526001600160a01b039091169063d9583579906108cc903390600401612127565b60206040518083038186803b1580156108e457600080fd5b505afa1580156108f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091c91906120aa565b151560011461093d5760405162461bcd60e51b81526004016105a5906123cf565b6006546109486106dd565b11156109665760405162461bcd60e51b81526004016105a5906123b1565b6107f78282611822565b61098161097b61143d565b826118e2565b50565b6008546001600160a01b03163314806109a757506009546001600160a01b031633145b6109c35760405162461bcd60e51b81526004016105a5906124db565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031681565b600b546001600160a01b031681565b6008546001600160a01b0316331480610a2557506009546001600160a01b031633145b610a415760405162461bcd60e51b81526004016105a5906124db565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600d6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b6000438210610ab75760405162461bcd60e51b81526004016105a590612319565b6001600160a01b0383166000908152600d602052604090205463ffffffff1680610ae5576000915050610676565b6001600160a01b0384166000908152600c6020908152604080832063ffffffff600019860181168552925290912054168310610b61576001600160a01b0384166000908152600c602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610676565b6001600160a01b0384166000908152600c6020908152604080832083805290915290205463ffffffff16831015610b9c576000915050610676565b600060001982015b8163ffffffff168163ffffffff161115610c5f57600282820363ffffffff16048103610bce611f84565b506001600160a01b0387166000908152600c6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610c3a576020015194506106769350505050565b805163ffffffff16871115610c5157819350610c58565b6001820392505b5050610ba4565b506001600160a01b0385166000908152600c6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b6000610cdc8260405180606001604052806024815260200161272260249139610ccf8661053861143d565b919063ffffffff61171816565b9050610cf083610cea61143d565b83611441565b610cfa83836118e2565b505050565b6008546001600160a01b031681565b6000828152600360205260408120610d2c908363ffffffff6119c416565b9392505050565b6000828152600360205260408120610d2c908363ffffffff6119d016565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106565780601f1061062b57610100808354040283529160200191610656565b6008546001600160a01b0316331480610dcf57506009546001600160a01b031633145b610deb5760405162461bcd60e51b81526004016105a5906124db565b600755565b600081565b6000610672610e0261143d565b8461077f8560405180606001604052806025815260200161276f6025913960016000610e2c61143d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61171816565b600a5460405163d958357960e01b81526001600160a01b039091169063d958357990610e93903390600401612127565b60206040518083038186803b158015610eab57600080fd5b505afa158015610ebf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee391906120aa565b1515600114610f045760405162461bcd60e51b81526004016105a5906123cf565b600b54600160a01b900460ff1615610fb357610f218230836114f5565b306000908152600d602052604081205463ffffffff169081610f44576000610f7a565b306000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000610fa1828560405180606001604052806023815260200161267c602391396119e5565b9050610faf30848484611a1c565b5050505b610fbd8282611bd1565b306001600160a01b0316826001600160a01b03167f29a9947f5ad2b258848ebb47db1163807ef482fc520b12a84cf707970b9a9cf8836040516110009190612170565b60405180910390a35050565b600b54600090600160a01b900460ff16156110335761103361102c61143d565b84846114f5565b61067261103e61143d565b848461168f565b6001600160a01b0381166000908152600d602052604081205463ffffffff1680611070576000610d2c565b6001600160a01b0383166000908152600c60209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b600a5460405163d958357960e01b81526001600160a01b039091169063d9583579906110e5903390600401612127565b60206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906120aa565b15156001146111565760405162461bcd60e51b81526004016105a5906123cf565b600b54600160a01b900460ff161561122257306000908152600d602052604081205463ffffffff16908161118b5760006111c1565b306000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061120582856040518060400160405280601d81526020017f706f6f6c5f6d696e74206e657720766f746573206f766572666c6f7773000000815250611c25565b905061121330848484611a1c565b61121e3086866114f5565b5050505b60065461122d6106dd565b111561124b5760405162461bcd60e51b81526004016105a5906123b1565b6112558282611822565b816001600160a01b0316306001600160a01b03167fce70d7984524b7f89f54f1c6461ff7b9094a9fde46eed05a711dbe104d2cac46836040516110009190612170565b6008546001600160a01b03163314806112bb57506009546001600160a01b031633145b6112d75760405162461bcd60e51b81526004016105a5906124db565b600655565b6008546001600160a01b03163314806112ff57506009546001600160a01b031633145b61131b5760405162461bcd60e51b81526004016105a5906124db565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260036020526040812061067690611c61565b6000828152600360205260409020600201546113729061044f61143d565b61083e5760405162461bcd60e51b81526004016105a590612361565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065481565b600c60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600082820183811015610d2c5760405162461bcd60e51b81526004016105a5906122e2565b6000610d2c836001600160a01b038416611c6c565b3390565b6001600160a01b0383166114675760405162461bcd60e51b81526004016105a590612497565b6001600160a01b03821661148d5760405162461bcd60e51b81526004016105a5906122a0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906114e8908590612170565b60405180910390a3505050565b816001600160a01b0316836001600160a01b03161415801561152057506000816001600160601b0316115b15610cfa576001600160a01b038316156115d8576001600160a01b0383166000908152600d602052604081205463ffffffff16908161156057600061159f565b6001600160a01b0385166000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115c68285604051806060016040528060298152602001612746602991396119e5565b90506115d486848484611a1c565b5050505b6001600160a01b03821615610cfa576001600160a01b0382166000908152600d602052604081205463ffffffff169081611613576000611652565b6001600160a01b0384166000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611679828560405180606001604052806028815260200161265460289139611c25565b905061168785848484611a1c565b505050505050565b61169a838383611cb6565b600b546001600160a01b031615610cfa57600b546040516347fdb0d560e11b81526001600160a01b0390911690638ffb61aa906116e190869086903390879060040161213b565b600060405180830381600087803b1580156116fb57600080fd5b505af115801561170f573d6000803e3d6000fd5b50505050505050565b6000818484111561173c5760405162461bcd60e51b81526004016105a59190612179565b505050900390565b6000828152600360205260409020611762908263ffffffff61142816565b156107f75761176f61143d565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526003602052604090206117d1908263ffffffff611dd716565b156107f7576117de61143d565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0382166118485760405162461bcd60e51b81526004016105a590612579565b61185460008383610cfa565b600254611867908263ffffffff61140316565b6002556001600160a01b038216600090815260208190526040902054611893908263ffffffff61140316565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611000908590612170565b6001600160a01b0382166119085760405162461bcd60e51b81526004016105a590612411565b61191482600083610cfa565b61195781604051806060016040528060228152602001612632602291396001600160a01b038516600090815260208190526040902054919063ffffffff61171816565b6001600160a01b038316600090815260208190526040902055600254611983908263ffffffff611dec16565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611000908590612170565b6000610d2c8383611e2e565b6000610d2c836001600160a01b038416611e73565b6000836001600160601b0316836001600160601b03161115829061173c5760405162461bcd60e51b81526004016105a59190612179565b6000611a40436040518060600160405280603581526020016126c560359139611e8b565b905060008463ffffffff16118015611a8957506001600160a01b0385166000908152600c6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611ae8576001600160a01b0385166000908152600c60209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611b87565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600c83528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600d90935292909220805460018801909316929091169190911790555b846001600160a01b03167f3eaa1c4be29b4a4c60e00300b5a17a8ec6c982b5b0ad5870cc84ebdc3b24d68e8484604051611bc2929190612602565b60405180910390a25050505050565b611bdb82826118e2565b6107f782611be761143d565b61077f84604051806060016040528060248152602001612722602491396001600160a01b03881660009081526001602052604081209061075861143d565b6000838301826001600160601b038087169083161015611c585760405162461bcd60e51b81526004016105a59190612179565b50949350505050565b600061067682611eba565b6000611c788383611e73565b611cae57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610676565b506000610676565b6001600160a01b038316611cdc5760405162461bcd60e51b81526004016105a590612452565b6001600160a01b038216611d025760405162461bcd60e51b81526004016105a59061220e565b611d0d838383610cfa565b611d508160405180606001604052806026815260200161269f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61171816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d85908263ffffffff61140316565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114e8908590612170565b6000610d2c836001600160a01b038416611ebe565b6000610d2c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611718565b81546000908210611e515760405162461bcd60e51b81526004016105a5906121cc565b826000018281548110611e6057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b600081600160201b8410611eb25760405162461bcd60e51b81526004016105a59190612179565b509192915050565b5490565b60008181526001830160205260408120548015611f7a5783546000198083019190810190600090879083908110611ef157fe5b9060005260206000200154905080876000018481548110611f0e57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611f3e57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610676565b6000915050610676565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461067657600080fd5b600060208284031215611fc3578081fd5b610d2c8383611f9b565b60008060408385031215611fdf578081fd5b611fe98484611f9b565b9150611ff88460208501611f9b565b90509250929050565b600080600060608486031215612015578081fd5b83356120208161261c565b925060208401356120308161261c565b929592945050506040919091013590565b60008060408385031215612053578182fd5b61205d8484611f9b565b946020939093013593505050565b6000806040838503121561207d578182fd5b6120878484611f9b565b9150602083013563ffffffff8116811461209f578182fd5b809150509250929050565b6000602082840312156120bb578081fd5b81518015158114610d2c578182fd5b6000602082840312156120db578081fd5b5035919050565b600080604083850312156120f4578182fd5b82359150602083013561209f8161261c565b60008060408385031215612118578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156121a557858101830151858201604001528201612189565b818111156121b65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526028908201527f456c656e613a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252600490820152630216361760e41b604082015260600190565b60208082526022908201527f4f6e6c792055534520706f6f6c732063616e206d696e74206e65772053484152604082015261455360f01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602f908201527f596f7520617265206e6f7420616e206f776e6572206f722074686520676f766560408201526e726e616e63652074696d656c6f636b60881b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461098157600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365456c656e613a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773706f6f6c5f6275726e5f66726f6d206e657720766f74657320756e646572666c6f777345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365456c656e613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365456c656e613a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cff30d2e1a3fcadf70c582e91c456b1ff3306ef406f7dca0cfed83d9532b2ea964736f6c634300060b0033456c656e613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae6000000000000000000000000147e3d644d53adadd18a28201b91e2b98aeb7f94000000000000000000000000000000000000000000000000000000000000000e456c656e612050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005454c454e41000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c8063782d6fe111610146578063a9059cbb116100c3578063ca15c87311610087578063ca15c873146104fc578063d547741f1461050f578063dc6663c714610522578063dd62ed3e1461052a578063eaac77ea1461053d578063f1127ed8146105455761025e565b8063a9059cbb1461049d578063b4b5ea57146104b0578063b4f56b26146104c3578063b6a3f59a146104d6578063bdacb303146104e95761025e565b806395d89b411161010a57806395d89b4114610454578063a10078051461045c578063a217fddf1461046f578063a457c2d714610477578063a8a778ae1461048a5761025e565b8063782d6fe1146103f357806379cc67901461041357806380edef8e146104265780639010d07c1461042e57806391d14854146104415761025e565b8063313ce567116101df57806345791d19116101a357806345791d191461038857806345d34a931461039057806359671450146103a557806364e628c1146103ad5780636fcfff45146103c057806370a08231146103e05761025e565b8063313ce5671461032757806336568abe1461033c578063395093511461034f57806340c10f191461036257806342966c68146103755761025e565b806323b872dd1161022657806323b872dd146102de578063248a9ca3146102f157806328a4aeaa146103045780632f2ff15d1461030c5780633052fe151461031f5761025e565b80630236c4111461026357806306fdde0314610278578063095ea7b31461029657806313af4035146102b657806318160ddd146102c9575b600080fd5b610276610271366004611fb2565b610566565b005b6102806105d0565b60405161028d9190612179565b60405180910390f35b6102a96102a4366004612041565b61065e565b60405161028d9190612165565b6102766102c4366004611fb2565b61067c565b6102d16106dd565b60405161028d9190612170565b6102a96102ec366004612001565b6106e3565b6102d16102ff3660046120ca565b61078e565b6102a96107a3565b61027661031a3660046120e2565b6107b3565b6102d16107fb565b61032f610801565b60405161028d91906125e0565b61027661034a3660046120e2565b610806565b6102a961035d366004612041565b610848565b610276610370366004612041565b61089c565b6102766103833660046120ca565b610970565b610276610984565b6103986109e4565b60405161028d9190612127565b6103986109f3565b6102766103bb366004611fb2565b610a02565b6103d36103ce366004611fb2565b610a63565b60405161028d91906125b0565b6102d16103ee366004611fb2565b610a7b565b610406610401366004612041565b610a96565b60405161028d91906125ee565b610276610421366004612041565b610ca4565b610398610cff565b61039861043c366004612106565b610d0e565b6102a961044f3660046120e2565b610d33565b610280610d51565b61027661046a3660046120ca565b610dac565b6102d1610df0565b6102a9610485366004612041565b610df5565b610276610498366004612041565b610e63565b6102a96104ab366004612041565b61100c565b6104066104be366004611fb2565b611045565b6102766104d1366004612041565b6110b5565b6102766104e43660046120ca565b611298565b6102766104f7366004611fb2565b6112dc565b6102d161050a3660046120ca565b61133d565b61027661051d3660046120e2565b611354565b61039861138e565b6102d1610538366004611fcd565b61139d565b6102d16113c8565b61055861055336600461206b565b6113ce565b60405161028d9291906125c1565b6008546001600160a01b031633148061058957506009546001600160a01b031633145b6105ae5760405162461bcd60e51b81526004016105a5906124db565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106565780601f1061062b57610100808354040283529160200191610656565b820191906000526020600020905b81548152906001019060200180831161063957829003601f168201915b505050505081565b600061067261066b61143d565b8484611441565b5060015b92915050565b6008546001600160a01b031633148061069f57506009546001600160a01b031633145b6106bb5760405162461bcd60e51b81526004016105a5906124db565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b600b54600090600160a01b900460ff1615610703576107038484846114f5565b61070e84848461168f565b6107848461071a61143d565b61077f856040518060600160405280602881526020016126fa602891396001600160a01b038a1660009081526001602052604081209061075861143d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61171816565b611441565b5060019392505050565b60009081526003602052604090206002015490565b600b54600160a01b900460ff1681565b6000828152600360205260409020600201546107d19061044f61143d565b6107ed5760405162461bcd60e51b81526004016105a590612251565b6107f78282611744565b5050565b60075481565b601281565b61080e61143d565b6001600160a01b0316816001600160a01b03161461083e5760405162461bcd60e51b81526004016105a59061252a565b6107f782826117b3565b600061067261085561143d565b8461077f856001600061086661143d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61140316565b600a5460405163d958357960e01b81526001600160a01b039091169063d9583579906108cc903390600401612127565b60206040518083038186803b1580156108e457600080fd5b505afa1580156108f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091c91906120aa565b151560011461093d5760405162461bcd60e51b81526004016105a5906123cf565b6006546109486106dd565b11156109665760405162461bcd60e51b81526004016105a5906123b1565b6107f78282611822565b61098161097b61143d565b826118e2565b50565b6008546001600160a01b03163314806109a757506009546001600160a01b031633145b6109c35760405162461bcd60e51b81526004016105a5906124db565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a546001600160a01b031681565b600b546001600160a01b031681565b6008546001600160a01b0316331480610a2557506009546001600160a01b031633145b610a415760405162461bcd60e51b81526004016105a5906124db565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600d6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b6000438210610ab75760405162461bcd60e51b81526004016105a590612319565b6001600160a01b0383166000908152600d602052604090205463ffffffff1680610ae5576000915050610676565b6001600160a01b0384166000908152600c6020908152604080832063ffffffff600019860181168552925290912054168310610b61576001600160a01b0384166000908152600c602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610676565b6001600160a01b0384166000908152600c6020908152604080832083805290915290205463ffffffff16831015610b9c576000915050610676565b600060001982015b8163ffffffff168163ffffffff161115610c5f57600282820363ffffffff16048103610bce611f84565b506001600160a01b0387166000908152600c6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610c3a576020015194506106769350505050565b805163ffffffff16871115610c5157819350610c58565b6001820392505b5050610ba4565b506001600160a01b0385166000908152600c6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b6000610cdc8260405180606001604052806024815260200161272260249139610ccf8661053861143d565b919063ffffffff61171816565b9050610cf083610cea61143d565b83611441565b610cfa83836118e2565b505050565b6008546001600160a01b031681565b6000828152600360205260408120610d2c908363ffffffff6119c416565b9392505050565b6000828152600360205260408120610d2c908363ffffffff6119d016565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106565780601f1061062b57610100808354040283529160200191610656565b6008546001600160a01b0316331480610dcf57506009546001600160a01b031633145b610deb5760405162461bcd60e51b81526004016105a5906124db565b600755565b600081565b6000610672610e0261143d565b8461077f8560405180606001604052806025815260200161276f6025913960016000610e2c61143d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61171816565b600a5460405163d958357960e01b81526001600160a01b039091169063d958357990610e93903390600401612127565b60206040518083038186803b158015610eab57600080fd5b505afa158015610ebf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee391906120aa565b1515600114610f045760405162461bcd60e51b81526004016105a5906123cf565b600b54600160a01b900460ff1615610fb357610f218230836114f5565b306000908152600d602052604081205463ffffffff169081610f44576000610f7a565b306000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000610fa1828560405180606001604052806023815260200161267c602391396119e5565b9050610faf30848484611a1c565b5050505b610fbd8282611bd1565b306001600160a01b0316826001600160a01b03167f29a9947f5ad2b258848ebb47db1163807ef482fc520b12a84cf707970b9a9cf8836040516110009190612170565b60405180910390a35050565b600b54600090600160a01b900460ff16156110335761103361102c61143d565b84846114f5565b61067261103e61143d565b848461168f565b6001600160a01b0381166000908152600d602052604081205463ffffffff1680611070576000610d2c565b6001600160a01b0383166000908152600c60209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b600a5460405163d958357960e01b81526001600160a01b039091169063d9583579906110e5903390600401612127565b60206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906120aa565b15156001146111565760405162461bcd60e51b81526004016105a5906123cf565b600b54600160a01b900460ff161561122257306000908152600d602052604081205463ffffffff16908161118b5760006111c1565b306000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061120582856040518060400160405280601d81526020017f706f6f6c5f6d696e74206e657720766f746573206f766572666c6f7773000000815250611c25565b905061121330848484611a1c565b61121e3086866114f5565b5050505b60065461122d6106dd565b111561124b5760405162461bcd60e51b81526004016105a5906123b1565b6112558282611822565b816001600160a01b0316306001600160a01b03167fce70d7984524b7f89f54f1c6461ff7b9094a9fde46eed05a711dbe104d2cac46836040516110009190612170565b6008546001600160a01b03163314806112bb57506009546001600160a01b031633145b6112d75760405162461bcd60e51b81526004016105a5906124db565b600655565b6008546001600160a01b03163314806112ff57506009546001600160a01b031633145b61131b5760405162461bcd60e51b81526004016105a5906124db565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260036020526040812061067690611c61565b6000828152600360205260409020600201546113729061044f61143d565b61083e5760405162461bcd60e51b81526004016105a590612361565b6009546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60065481565b600c60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b600082820183811015610d2c5760405162461bcd60e51b81526004016105a5906122e2565b6000610d2c836001600160a01b038416611c6c565b3390565b6001600160a01b0383166114675760405162461bcd60e51b81526004016105a590612497565b6001600160a01b03821661148d5760405162461bcd60e51b81526004016105a5906122a0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906114e8908590612170565b60405180910390a3505050565b816001600160a01b0316836001600160a01b03161415801561152057506000816001600160601b0316115b15610cfa576001600160a01b038316156115d8576001600160a01b0383166000908152600d602052604081205463ffffffff16908161156057600061159f565b6001600160a01b0385166000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006115c68285604051806060016040528060298152602001612746602991396119e5565b90506115d486848484611a1c565b5050505b6001600160a01b03821615610cfa576001600160a01b0382166000908152600d602052604081205463ffffffff169081611613576000611652565b6001600160a01b0384166000908152600c60209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b90506000611679828560405180606001604052806028815260200161265460289139611c25565b905061168785848484611a1c565b505050505050565b61169a838383611cb6565b600b546001600160a01b031615610cfa57600b546040516347fdb0d560e11b81526001600160a01b0390911690638ffb61aa906116e190869086903390879060040161213b565b600060405180830381600087803b1580156116fb57600080fd5b505af115801561170f573d6000803e3d6000fd5b50505050505050565b6000818484111561173c5760405162461bcd60e51b81526004016105a59190612179565b505050900390565b6000828152600360205260409020611762908263ffffffff61142816565b156107f75761176f61143d565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526003602052604090206117d1908263ffffffff611dd716565b156107f7576117de61143d565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0382166118485760405162461bcd60e51b81526004016105a590612579565b61185460008383610cfa565b600254611867908263ffffffff61140316565b6002556001600160a01b038216600090815260208190526040902054611893908263ffffffff61140316565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611000908590612170565b6001600160a01b0382166119085760405162461bcd60e51b81526004016105a590612411565b61191482600083610cfa565b61195781604051806060016040528060228152602001612632602291396001600160a01b038516600090815260208190526040902054919063ffffffff61171816565b6001600160a01b038316600090815260208190526040902055600254611983908263ffffffff611dec16565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611000908590612170565b6000610d2c8383611e2e565b6000610d2c836001600160a01b038416611e73565b6000836001600160601b0316836001600160601b03161115829061173c5760405162461bcd60e51b81526004016105a59190612179565b6000611a40436040518060600160405280603581526020016126c560359139611e8b565b905060008463ffffffff16118015611a8957506001600160a01b0385166000908152600c6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611ae8576001600160a01b0385166000908152600c60209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611b87565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600c83528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600d90935292909220805460018801909316929091169190911790555b846001600160a01b03167f3eaa1c4be29b4a4c60e00300b5a17a8ec6c982b5b0ad5870cc84ebdc3b24d68e8484604051611bc2929190612602565b60405180910390a25050505050565b611bdb82826118e2565b6107f782611be761143d565b61077f84604051806060016040528060248152602001612722602491396001600160a01b03881660009081526001602052604081209061075861143d565b6000838301826001600160601b038087169083161015611c585760405162461bcd60e51b81526004016105a59190612179565b50949350505050565b600061067682611eba565b6000611c788383611e73565b611cae57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610676565b506000610676565b6001600160a01b038316611cdc5760405162461bcd60e51b81526004016105a590612452565b6001600160a01b038216611d025760405162461bcd60e51b81526004016105a59061220e565b611d0d838383610cfa565b611d508160405180606001604052806026815260200161269f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61171816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611d85908263ffffffff61140316565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114e8908590612170565b6000610d2c836001600160a01b038416611ebe565b6000610d2c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611718565b81546000908210611e515760405162461bcd60e51b81526004016105a5906121cc565b826000018281548110611e6057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b600081600160201b8410611eb25760405162461bcd60e51b81526004016105a59190612179565b509192915050565b5490565b60008181526001830160205260408120548015611f7a5783546000198083019190810190600090879083908110611ef157fe5b9060005260206000200154905080876000018481548110611f0e57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611f3e57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610676565b6000915050610676565b604080518082019091526000808252602082015290565b80356001600160a01b038116811461067657600080fd5b600060208284031215611fc3578081fd5b610d2c8383611f9b565b60008060408385031215611fdf578081fd5b611fe98484611f9b565b9150611ff88460208501611f9b565b90509250929050565b600080600060608486031215612015578081fd5b83356120208161261c565b925060208401356120308161261c565b929592945050506040919091013590565b60008060408385031215612053578182fd5b61205d8484611f9b565b946020939093013593505050565b6000806040838503121561207d578182fd5b6120878484611f9b565b9150602083013563ffffffff8116811461209f578182fd5b809150509250929050565b6000602082840312156120bb578081fd5b81518015158114610d2c578182fd5b6000602082840312156120db578081fd5b5035919050565b600080604083850312156120f4578182fd5b82359150602083013561209f8161261c565b60008060408385031215612118578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156121a557858101830151858201604001528201612189565b818111156121b65783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526028908201527f456c656e613a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252600490820152630216361760e41b604082015260600190565b60208082526022908201527f4f6e6c792055534520706f6f6c732063616e206d696e74206e65772053484152604082015261455360f01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602f908201527f596f7520617265206e6f7420616e206f776e6572206f722074686520676f766560408201526e726e616e63652074696d656c6f636b60881b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b6001600160a01b038116811461098157600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365456c656e613a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773706f6f6c5f6275726e5f66726f6d206e657720766f74657320756e646572666c6f777345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365456c656e613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365456c656e613a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cff30d2e1a3fcadf70c582e91c456b1ff3306ef406f7dca0cfed83d9532b2ea964736f6c634300060b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae6000000000000000000000000147e3d644d53adadd18a28201b91e2b98aeb7f94000000000000000000000000000000000000000000000000000000000000000e456c656e612050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005454c454e41000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Elena Protocol
Arg [1] : _symbol (string): ELENA
Arg [2] : _timelock_address (address): 0x292B1Cae42D10D4Ef3f16944E7623E06CaB9EAe6
Arg [3] : _use_address (address): 0x147E3d644d53ADadD18a28201b91e2B98aEB7f94
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000292b1cae42d10d4ef3f16944e7623e06cab9eae6
Arg [3] : 000000000000000000000000147e3d644d53adadd18a28201b91e2b98aeb7f94
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 456c656e612050726f746f636f6c000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 454c454e41000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
51150:10965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53322:147;;;;;;:::i;:::-;;:::i;:::-;;51321:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40632:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53894:124::-;;;;;;:::i;:::-;;:::i;39569:100::-;;;:::i;:::-;;;;;;;:::i;56556:451::-;;;;;;:::i;:::-;;:::i;28059:114::-;;;;;;:::i;:::-;;:::i;51727:32::-;;;:::i;28433:225::-;;;;;;:::i;:::-;;:::i;51454:37::-;;;:::i;51346:35::-;;;:::i;:::-;;;;;;;:::i;29634:207::-;;;;;;:::i;:::-;;:::i;41999:218::-;;;;;;:::i;:::-;;:::i;54024:149::-;;;;;;:::i;:::-;;:::i;44777:91::-;;;;;;:::i;:::-;;:::i;55758:105::-;;;:::i;51649:25::-;;;:::i;:::-;;;;;;;:::i;51681:39::-;;;:::i;53475:172::-;;;;;;:::i;:::-;;:::i;52166:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39730:119::-;;;;;;:::i;:::-;;:::i;57907:1211::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45183:293::-;;;;;;:::i;:::-;;:::i;51545:28::-;;;:::i;27734:138::-;;;;;;:::i;:::-;;:::i;26699:139::-;;;;;;:::i;:::-;;:::i;51294:20::-;;;:::i;53653:124::-;;;;;;:::i;:::-;;:::i;25452:49::-;;;:::i;42718:269::-;;;;;;:::i;:::-;;:::i;55081:671::-;;;;;;:::i;:::-;;:::i;56239:311::-;;;;;;:::i;:::-;;:::i;57256:222::-;;;;;;:::i;:::-;;:::i;54281:722::-;;;;;;:::i;:::-;;:::i;53783:105::-;;;;;;:::i;:::-;;:::i;53190:126::-;;;;;;:::i;:::-;;:::i;27010:127::-;;;;;;:::i;:::-;;:::i;28901:228::-;;;;;;:::i;:::-;;:::i;51580:31::-;;;:::i;40296:151::-;;;;;;:::i;:::-;;:::i;51389:38::-;;;:::i;52038:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;53322:147::-;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;;;;;;;;;53419:3:::1;:42:::0;;-1:-1:-1;;;;;;53419:42:0::1;-1:-1:-1::0;;;;;53419:42:0;;;::::1;::::0;;;::::1;::::0;;53322:147::o;51321:18::-;;;;;;;;;;;;;;;-1:-1:-1;;51321:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40632:169::-;40715:4;40732:39;40741:12;:10;:12::i;:::-;40755:7;40764:6;40732:8;:39::i;:::-;-1:-1:-1;40789:4:0;40632:169;;;;;:::o;53894:124::-;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;53980:13:::1;:30:::0;;-1:-1:-1;;;;;;53980:30:0::1;-1:-1:-1::0;;;;;53980:30:0;;;::::1;::::0;;;::::1;::::0;;53894:124::o;39569:100::-;39649:12;;39569:100;:::o;56556:451::-;56682:13;;56662:4;;-1:-1:-1;;;56682:13:0;;;;56679:120;;;56742:45;56753:6;56761:9;56779:6;56742:10;:45::i;:::-;56809:36;56819:6;56827:9;56838:6;56809:9;:36::i;:::-;56856:121;56865:6;56873:12;:10;:12::i;:::-;56887:89;56925:6;56887:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56887:19:0;;;;;;:11;:19;;;;;;56907:12;:10;:12::i;:::-;-1:-1:-1;;;;;56887:33:0;;;;;;;;;;;;-1:-1:-1;56887:33:0;;;:89;;:37;:89;:::i;:::-;56856:8;:121::i;:::-;-1:-1:-1;56995:4:0;56556:451;;;;;:::o;28059:114::-;28116:7;28143:12;;;:6;:12;;;;;:22;;;;28059:114::o;51727:32::-;;;-1:-1:-1;;;51727:32:0;;;;;:::o;28433:225::-;28525:12;;;;:6;:12;;;;;:22;;;28517:45;;28549:12;:10;:12::i;28517:45::-;28509:105;;;;-1:-1:-1;;;28509:105:0;;;;;;;:::i;:::-;28625:25;28636:4;28642:7;28625:10;:25::i;:::-;28433:225;;:::o;51454:37::-;;;;:::o;51346:35::-;51379:2;51346:35;:::o;29634:207::-;29732:12;:10;:12::i;:::-;-1:-1:-1;;;;;29721:23:0;:7;-1:-1:-1;;;;;29721:23:0;;29713:83;;;;-1:-1:-1;;;29713:83:0;;;;;;;:::i;:::-;29807:26;29819:4;29825:7;29807:11;:26::i;41999:218::-;42087:4;42104:83;42113:12;:10;:12::i;:::-;42127:7;42136:50;42175:10;42136:11;:25;42148:12;:10;:12::i;:::-;-1:-1:-1;;;;;42136:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;42136:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;54024:149::-;52304:3;;:25;;-1:-1:-1;;;52304:25:0;;-1:-1:-1;;;;;52304:3:0;;;;:13;;:25;;52318:10;;52304:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;52333:4;52304:33;52296:80;;;;-1:-1:-1;;;52296:80:0;;;;;;;:::i;:::-;54119:10:::1;;54102:13;:11;:13::i;:::-;:27;;54094:43;;;;-1:-1:-1::0;;;54094:43:0::1;;;;;;;:::i;:::-;54148:17;54154:2;54158:6;54148:5;:17::i;44777:91::-:0;44833:27;44839:12;:10;:12::i;:::-;44853:6;44833:5;:27::i;:::-;44777:91;:::o;55758:105::-;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;55842:13:::1;::::0;;-1:-1:-1;;;;55825:30:0;::::1;-1:-1:-1::0;;;55842:13:0;;;::::1;;;55841:14;55825:30:::0;;::::1;;::::0;;55758:105::o;51649:25::-;;;-1:-1:-1;;;;;51649:25:0;;:::o;51681:39::-;;;-1:-1:-1;;;;;51681:39:0;;:::o;53475:172::-;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;53583:19:::1;:56:::0;;-1:-1:-1;;;;;;53583:56:0::1;-1:-1:-1::0;;;;;53583:56:0;;;::::1;::::0;;;::::1;::::0;;53475:172::o;52166:49::-;;;;;;;;;;;;;;;:::o;39730:119::-;-1:-1:-1;;;;;39823:18:0;39796:7;39823:18;;;;;;;;;;;;39730:119::o;57907:1211::-;57986:6;58027:12;58013:11;:26;58005:79;;;;-1:-1:-1;;;58005:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;58117:23:0;;58095:19;58117:23;;;:14;:23;;;;;;;;58155:17;58151:58;;58196:1;58189:8;;;;;58151:58;-1:-1:-1;;;;;58267:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;58288:16:0;;58267:38;;;;;;;;;:48;;:63;-1:-1:-1;58263:147:0;;-1:-1:-1;;;;;58354:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;58375:16:0;;;;58354:38;;;;;;;;:44;-1:-1:-1;;;58354:44:0;;-1:-1:-1;;;;;58354:44:0;;-1:-1:-1;58347:51:0;;58263:147;-1:-1:-1;;;;;58469:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;58465:88:0;;;58540:1;58533:8;;;;;58465:88;58563:12;-1:-1:-1;;58605:16:0;;58632:428;58647:5;58639:13;;:5;:13;;;58632:428;;;58711:1;58694:13;;;58693:19;;;58685:27;;58754:20;;:::i;:::-;-1:-1:-1;;;;;;58777:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;58754:51;;;;;;;;;;;;;;;-1:-1:-1;;;58754:51:0;;;-1:-1:-1;;;;;58754:51:0;;;;;;;;;58824:27;;58820:229;;;58879:8;;;;-1:-1:-1;58872:15:0;;-1:-1:-1;;;;58872:15:0;58820:229;58913:12;;:26;;;-1:-1:-1;58909:140:0;;;58968:6;58960:14;;58909:140;;;59032:1;59023:6;:10;59015:18;;58909:140;58632:428;;;;;-1:-1:-1;;;;;;59077:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;59077:33:0;;;;;-1:-1:-1;;57907:1211:0;;;;:::o;45183:293::-;45260:26;45289:84;45326:6;45289:84;;;;;;;;;;;;;;;;;:32;45299:7;45308:12;:10;:12::i;45289:32::-;:36;:84;;:36;:84;:::i;:::-;45260:113;;45384:51;45393:7;45402:12;:10;:12::i;:::-;45416:18;45384:8;:51::i;:::-;45446:22;45452:7;45461:6;45446:5;:22::i;:::-;45183:293;;;:::o;51545:28::-;;;-1:-1:-1;;;;;51545:28:0;;:::o;27734:138::-;27807:7;27834:12;;;:6;:12;;;;;:30;;27858:5;27834:30;:23;:30;:::i;:::-;27827:37;27734:138;-1:-1:-1;;;27734:138:0:o;26699:139::-;26768:4;26792:12;;;:6;:12;;;;;:38;;26822:7;26792:38;:29;:38;:::i;51294:20::-;;;;;;;;;;;;;;;-1:-1:-1;;51294:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53653:124;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;53742:14:::1;:27:::0;53653:124::o;25452:49::-;25497:4;25452:49;:::o;42718:269::-;42811:4;42828:129;42837:12;:10;:12::i;:::-;42851:7;42860:96;42899:15;42860:96;;;;;;;;;;;;;;;;;:11;:25;42872:12;:10;:12::i;:::-;-1:-1:-1;;;;;42860:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;42860:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;55081:671::-;52304:3;;:25;;-1:-1:-1;;;52304:25:0;;-1:-1:-1;;;;;52304:3:0;;;;:13;;:25;;52318:10;;52304:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;52333:4;52304:33;52296:80;;;;-1:-1:-1;;;52296:80:0;;;;;;;:::i;:::-;55175:13:::1;::::0;-1:-1:-1;;;55175:13:0;::::1;;;55172:462;;;55204:54;55215:9;55234:4;55248:8;55204:10;:54::i;:::-;55315:4;55273:16;55292:29:::0;;;:14:::1;:29;::::0;;;;;::::1;;::::0;55355:13;:67:::1;;55421:1;55355:67;;;55391:4;55371:26;::::0;;;:11:::1;:26;::::0;;;;;;;-1:-1:-1;;55398:13:0;;55371:41:::1;;::::0;;;;;;;:47;-1:-1:-1;;;55371:47:0;::::1;-1:-1:-1::0;;;;;55371:47:0::1;55355:67;55336:86;;55437:16;55456:73;55462:9;55480:8;55456:73;;;;;;;;;;;;;;;;;:5;:73::i;:::-;55437:92;;55544:64;55569:4;55576:9;55587;55598;55544:16;:64::i;:::-;55172:462;;;;55644:36;55660:9;55671:8;55644:15;:36::i;:::-;55728:4;-1:-1:-1::0;;;;;55696:48:0::1;55709:9;-1:-1:-1::0;;;;;55696:48:0::1;;55735:8;55696:48;;;;;;:::i;:::-;;;;;;;;55081:671:::0;;:::o;56239:311::-;56345:13;;56325:4;;-1:-1:-1;;;56345:13:0;;;;56342:126;;;56405:51;56416:12;:10;:12::i;:::-;56430:9;56448:6;56405:10;:51::i;:::-;56478:42;56488:12;:10;:12::i;:::-;56502:9;56513:6;56478:9;:42::i;57256:222::-;-1:-1:-1;;;;;57362:23:0;;57321:6;57362:23;;;:14;:23;;;;;;;;57403:16;:67;;57469:1;57403:67;;;-1:-1:-1;;;;;57422:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;57443:16:0;;57422:38;;;;;;;;;:44;-1:-1:-1;;;57422:44:0;;-1:-1:-1;;;;;57422:44:0;57396:74;57256:222;-1:-1:-1;;;57256:222:0:o;54281:722::-;52304:3;;:25;;-1:-1:-1;;;52304:25:0;;-1:-1:-1;;;;;52304:3:0;;;;:13;;:25;;52318:10;;52304:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;52333:4;52304:33;52296:80;;;;-1:-1:-1;;;52296:80:0;;;;;;;:::i;:::-;54378:13:::1;::::0;-1:-1:-1;;;54378:13:0;::::1;;;54375:460;;;54449:4;54407:16;54426:29:::0;;;:14:::1;:29;::::0;;;;;::::1;;::::0;54489:13;:67:::1;;54555:1;54489:67;;;54525:4;54505:26;::::0;;;:11:::1;:26;::::0;;;;;;;-1:-1:-1;;54532:13:0;;54505:41:::1;;::::0;;;;;;;:47;-1:-1:-1;;;54505:47:0;::::1;-1:-1:-1::0;;;;;54505:47:0::1;54489:67;54470:86;;54571:16;54590:67;54596:9;54614:8;54590:67;;;;;;;;;;;;;;;;::::0;:5:::1;:67::i;:::-;54571:86;;54672:64;54697:4;54704:9;54715;54726;54672:16;:64::i;:::-;54769:54;54788:4;54795:9;54813:8;54769:10;:54::i;:::-;54375:460;;;;54870:10;;54853:13;:11;:13::i;:::-;:27;;54845:43;;;;-1:-1:-1::0;;;54845:43:0::1;;;;;;;:::i;:::-;54899:32;54911:9;54922:8;54899:11;:32::i;:::-;54975:9;-1:-1:-1::0;;;;;54947:48:0::1;54968:4;-1:-1:-1::0;;;;;54947:48:0::1;;54986:8;54947:48;;;;;;:::i;53783:105::-:0;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;53863:10:::1;:17:::0;53783:105::o;53190:126::-;52471:13;;-1:-1:-1;;;;;52471:13:0;52457:10;:27;;:61;;-1:-1:-1;52502:16:0;;-1:-1:-1;;;;;52502:16:0;52488:10;:30;52457:61;52449:121;;;;-1:-1:-1;;;52449:121:0;;;;;;;:::i;:::-;53277:16:::1;:31:::0;;-1:-1:-1;;;;;;53277:31:0::1;-1:-1:-1::0;;;;;53277:31:0;;;::::1;::::0;;;::::1;::::0;;53190:126::o;27010:127::-;27073:7;27100:12;;;:6;:12;;;;;:29;;:27;:29::i;28901:228::-;28994:12;;;;:6;:12;;;;;:22;;;28986:45;;29018:12;:10;:12::i;28986:45::-;28978:106;;;;-1:-1:-1;;;28978:106:0;;;;;;;:::i;51580:31::-;;;-1:-1:-1;;;;;51580:31:0;;:::o;40296:151::-;-1:-1:-1;;;;;40412:18:0;;;40385:7;40412:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;40296:151::o;51389:38::-;;;;:::o;52038:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52038:70:0;;-1:-1:-1;;;;;52038:70:0;;:::o;2057:179::-;2115:7;2147:5;;;2171:6;;;;2163:46;;;;-1:-1:-1;;;2163:46:0;;;;;;;:::i;14742:143::-;14812:4;14836:41;14841:3;-1:-1:-1;;;;;14861:14:0;;14836:4;:41::i;7115:106::-;7203:10;7115:106;:::o;46658:344::-;-1:-1:-1;;;;;46760:19:0;;46752:68;;;;-1:-1:-1;;;46752:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46839:21:0;;46831:68;;;;-1:-1:-1;;;46831:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46910:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;46962:32;;;;;46940:6;;46962:32;:::i;:::-;;;;;;;;46658:344;;;:::o;59275:935::-;59376:6;-1:-1:-1;;;;;59366:16:0;:6;-1:-1:-1;;;;;59366:16:0;;;:30;;;;;59395:1;59386:6;-1:-1:-1;;;;;59386:10:0;;59366:30;59362:841;;;-1:-1:-1;;;;;59417:20:0;;;59413:383;;-1:-1:-1;;;;;59477:22:0;;59458:16;59477:22;;;:14;:22;;;;;;;;;59537:13;:60;;59596:1;59537:60;;;-1:-1:-1;;;;;59553:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;59573:13:0;;59553:34;;;;;;;;;:40;-1:-1:-1;;;59553:40:0;;-1:-1:-1;;;;;59553:40:0;59537:60;59518:79;;59616:16;59635:69;59641:9;59652:6;59635:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;59616:88;;59723:57;59740:6;59748:9;59759;59770;59723:16;:57::i;:::-;59413:383;;;;-1:-1:-1;;;;;59814:20:0;;;59810:382;;-1:-1:-1;;;;;59874:22:0;;59855:16;59874:22;;;:14;:22;;;;;;;;;59934:13;:60;;59993:1;59934:60;;;-1:-1:-1;;;;;59950:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;59970:13:0;;59950:34;;;;;;;;;:40;-1:-1:-1;;;59950:40:0;;-1:-1:-1;;;;;59950:40:0;59934:60;59915:79;;60013:16;60032:68;60038:9;60049:6;60032:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;60013:87;;60119:57;60136:6;60144:9;60155;60166;60119:16;:57::i;:::-;59810:382;;;59275:935;;;:::o;55930:303::-;56028:42;56044:6;56052:9;56063:6;56028:15;:42::i;:::-;56093:19;;-1:-1:-1;;;;;56093:19:0;56085:42;56081:145;;56144:19;;:70;;-1:-1:-1;;;56144:70:0;;-1:-1:-1;;;;;56144:19:0;;;;:31;;:70;;56176:6;;56184:9;;56195:10;;56207:6;;56144:70;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55930:303;;;:::o;2954:190::-;3040:7;3076:12;3068:6;;;;3060:29;;;;-1:-1:-1;;;3060:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;3112:5:0;;;2954:190::o;30869:188::-;30943:12;;;;:6;:12;;;;;:33;;30968:7;30943:33;:24;:33;:::i;:::-;30939:111;;;31025:12;:10;:12::i;:::-;-1:-1:-1;;;;;30998:40:0;31016:7;-1:-1:-1;;;;;30998:40:0;31010:4;30998:40;;;;;;;;;;30869:188;;:::o;31063:192::-;31138:12;;;;:6;:12;;;;;:36;;31166:7;31138:36;:27;:36;:::i;:::-;31134:114;;;31223:12;:10;:12::i;:::-;-1:-1:-1;;;;;31196:40:0;31214:7;-1:-1:-1;;;;;31196:40:0;31208:4;31196:40;;;;;;;;;;31063:192;;:::o;44289:374::-;-1:-1:-1;;;;;44373:21:0;;44365:65;;;;-1:-1:-1;;;44365:65:0;;;;;;;:::i;:::-;44441:49;44470:1;44474:7;44483:6;44441:20;:49::i;:::-;44516:12;;:24;;44533:6;44516:24;:16;:24;:::i;:::-;44501:12;:39;-1:-1:-1;;;;;44572:18:0;;:9;:18;;;;;;;;;;;:30;;44595:6;44572:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;44551:18:0;;:9;:18;;;;;;;;;;;:51;;;;44618:37;;44551:18;;:9;44618:37;;;;44648:6;;44618:37;:::i;45806:414::-;-1:-1:-1;;;;;45890:21:0;;45882:67;;;;-1:-1:-1;;;45882:67:0;;;;;;;:::i;:::-;45960:49;45981:7;45998:1;46002:6;45960:20;:49::i;:::-;46041:68;46064:6;46041:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46041:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;46020:18:0;;:9;:18;;;;;;;;;;:89;46135:12;;:24;;46152:6;46135:24;:16;:24;:::i;:::-;46120:12;:39;46175:37;;46201:1;;-1:-1:-1;;;;;46175:37:0;;;;;;;46205:6;;46175:37;:::i;15993:149::-;16067:7;16110:22;16114:3;16126:5;16110:3;:22::i;15292:158::-;15372:4;15396:46;15406:3;-1:-1:-1;;;;;15426:14:0;;15396:9;:46::i;61349:165::-;61435:6;61467:1;-1:-1:-1;;;;;61462:6:0;:1;-1:-1:-1;;;;;61462:6:0;;;61470:12;61454:29;;;;;-1:-1:-1;;;61454:29:0;;;;;;;;:::i;60216:599::-;60330:18;60351:77;60358:12;60351:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;60330:98;;60456:1;60441:12;:16;;;:81;;;;-1:-1:-1;;;;;;60461:18:0;;;;;;:11;:18;;;;;;;;:61;-1:-1:-1;;60480:16:0;;60461:36;;;;;;;;;:46;:61;;;:46;;:61;60441:81;60437:313;;;-1:-1:-1;;;;;60537:18:0;;;;;;:11;:18;;;;;;;;-1:-1:-1;;60556:16:0;;60537:36;;;;;;;;;:53;;-1:-1:-1;;60537:53:0;-1:-1:-1;;;;;;;;60537:53:0;;;;;;60437:313;;;60654:33;;;;;;;;;;;;;;-1:-1:-1;;;;;60654:33:0;;;;;;;;;;-1:-1:-1;;;;;60619:18:0;;-1:-1:-1;60619:18:0;;;:11;:18;;;;;:32;;;;;;;;;;:68;;;;;;;;;-1:-1:-1;;;60619:68:0;-1:-1:-1;;60619:68:0;;;-1:-1:-1;;60619:68:0;;;;;;;;;;;;;;;60700:21;;;:14;:21;;;;;;;:40;;60619:68;60724:16;;60700:40;;;;;;;;;;;;;60437:313;60781:5;-1:-1:-1;;;;;60763:44:0;;60788:8;60798;60763:44;;;;;;;:::i;:::-;;;;;;;;60216:599;;;;;:::o;47186:240::-;47266:22;47272:7;47281:6;47266:5;:22::i;:::-;47299:119;47308:7;47317:12;:10;:12::i;:::-;47331:86;47370:6;47331:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47331:20:0;;;;;;:11;:20;;;;;;47352:12;:10;:12::i;61155:188::-;61241:6;61271:5;;;61303:12;-1:-1:-1;;;;;61295:6:0;;;;;;;;61287:29;;;;-1:-1:-1;;;61287:29:0;;;;;;;;:::i;:::-;-1:-1:-1;61334:1:0;61155:188;-1:-1:-1;;;;61155:188:0:o;15534:117::-;15597:7;15624:19;15632:3;15624:7;:19::i;11426:414::-;11489:4;11511:21;11521:3;11526:5;11511:9;:21::i;:::-;11506:327;;-1:-1:-1;11549:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;11732:18;;11710:19;;;:12;;;:19;;;;;;:40;;;;11765:11;;11506:327;-1:-1:-1;11816:5:0;11809:12;;43475:535;-1:-1:-1;;;;;43581:20:0;;43573:70;;;;-1:-1:-1;;;43573:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43662:23:0;;43654:71;;;;-1:-1:-1;;;43654:71:0;;;;;;;:::i;:::-;43736:47;43757:6;43765:9;43776:6;43736:20;:47::i;:::-;43814:71;43836:6;43814:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43814:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;43794:17:0;;;:9;:17;;;;;;;;;;;:91;;;;43919:20;;;;;;;:32;;43944:6;43919:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;43896:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;43967:35;;;;;;;;;;43995:6;;43967:35;:::i;15059:149::-;15132:4;15156:44;15164:3;-1:-1:-1;;;;;15184:14:0;;15156:7;:44::i;2517:136::-;2575:7;2602:43;2606:1;2609;2602:43;;;;;;;;;;;;;;;;;:3;:43::i;14290:204::-;14385:18;;14357:7;;14385:26;-1:-1:-1;14377:73:0;;;;-1:-1:-1;;;14377:73:0;;;;;;;:::i;:::-;14468:3;:11;;14480:5;14468:18;;;;;;;;;;;;;;;;14461:25;;14290:204;;;;:::o;13626:129::-;13699:4;13723:19;;;:12;;;;;:19;;;;;;:24;;;13626:129::o;60821:161::-;60896:6;60934:12;-1:-1:-1;;;60923:9:0;;60915:32;;;;-1:-1:-1;;;60915:32:0;;;;;;;;:::i;:::-;-1:-1:-1;60972:1:0;;60821:161;-1:-1:-1;;60821:161:0:o;13839:109::-;13922:18;;13839:109::o;12014:1528::-;12080:4;12219:19;;;:12;;;:19;;;;;;12253:15;;12249:1286;;12686:18;;-1:-1:-1;;12637:14:0;;;;12686:22;;;;12613:21;;12686:3;;:22;;12969;;;;;;;;;;;;;;12949:42;;13113:9;13084:3;:11;;13096:13;13084:26;;;;;;;;;;;;;;;;;;;:38;;;;13190:23;;;13232:1;13190:12;;;:23;;;;;;13216:17;;;13190:43;;13340:17;;13190:3;;13340:17;;;;;;;;;;;;;;;;;;;;;;13433:3;:12;;:19;13446:5;13433:19;;;;;;;;;;;13426:26;;;13474:4;13467:11;;;;;;;;12249:1286;13518:5;13511:12;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;22381:54;;24371:35;;24361:2;;24420:1;;24410:12;686:241;;790:2;778:9;769:7;765:23;761:32;758:2;;;-1:-1;;796:12;758:2;858:53;903:7;879:22;858:53;:::i;934:366::-;;;1055:2;1043:9;1034:7;1030:23;1026:32;1023:2;;;-1:-1;;1061:12;1023:2;1123:53;1168:7;1144:22;1123:53;:::i;:::-;1113:63;;1231:53;1276:7;1213:2;1256:9;1252:22;1231:53;:::i;:::-;1221:63;;1017:283;;;;;:::o;1307:491::-;;;;1445:2;1433:9;1424:7;1420:23;1416:32;1413:2;;;-1:-1;;1451:12;1413:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1503:63;-1:-1;1603:2;1642:22;;72:20;97:33;72:20;97:33;:::i;:::-;1407:391;;1611:63;;-1:-1;;;1711:2;1750:22;;;;481:20;;1407:391::o;1805:366::-;;;1926:2;1914:9;1905:7;1901:23;1897:32;1894:2;;;-1:-1;;1932:12;1894:2;1994:53;2039:7;2015:22;1994:53;:::i;:::-;1984:63;2084:2;2123:22;;;;481:20;;-1:-1;;;1888:283::o;2178:364::-;;;2298:2;2286:9;2277:7;2273:23;2269:32;2266:2;;;-1:-1;;2304:12;2266:2;2366:53;2411:7;2387:22;2366:53;:::i;:::-;2356:63;;2456:2;2498:9;2494:22;617:20;22598:10;24887:5;22587:22;24863:5;24860:34;24850:2;;-1:-1;;24898:12;24850:2;2464:62;;;;2260:282;;;;;:::o;2549:257::-;;2661:2;2649:9;2640:7;2636:23;2632:32;2629:2;;;-1:-1;;2667:12;2629:2;223:6;217:13;24517:5;22214:13;22207:21;24495:5;24492:32;24482:2;;-1:-1;;24528:12;2813:241;;2917:2;2905:9;2896:7;2892:23;2888:32;2885:2;;;-1:-1;;2923:12;2885:2;-1:-1;344:20;;2879:175;-1:-1;2879:175::o;3061:366::-;;;3182:2;3170:9;3161:7;3157:23;3153:32;3150:2;;;-1:-1;;3188:12;3150:2;357:6;344:20;3240:63;;3340:2;3383:9;3379:22;72:20;97:33;124:5;97:33;:::i;3434:366::-;;;3555:2;3543:9;3534:7;3530:23;3526:32;3523:2;;;-1:-1;;3561:12;3523:2;-1:-1;;344:20;;;3713:2;3752:22;;;481:20;;-1:-1;3517:283::o;11474:222::-;-1:-1;;;;;22381:54;;;;4275:37;;11601:2;11586:18;;11572:124::o;11948:572::-;-1:-1;;;;;22381:54;;;4275:37;;22381:54;;;12332:2;12317:18;;4275:37;22381:54;;12423:2;12408:18;;4134:58;12506:2;12491:18;;4506:37;;;;12167:3;12152:19;;12138:382::o;12527:210::-;22214:13;;22207:21;4389:34;;12648:2;12633:18;;12619:118::o;12744:222::-;4506:37;;;12871:2;12856:18;;12842:124::o;13519:310::-;;13666:2;;13687:17;13680:47;5054:5;21837:12;21994:6;13666:2;13655:9;13651:18;21982:19;-1:-1;24003:101;24017:6;24014:1;24011:13;24003:101;;;24084:11;;;;;24078:18;24065:11;;;22022:14;24065:11;24058:39;24032:10;;24003:101;;;24119:6;24116:1;24113:13;24110:2;;;-1:-1;22022:14;24175:6;13655:9;24166:16;;24159:27;24110:2;-1:-1;24291:7;24275:14;-1:-1;;24271:28;5212:39;;;;22022:14;5212:39;;13637:192;-1:-1;;;13637:192::o;13836:416::-;14036:2;14050:47;;;5488:2;14021:18;;;21982:19;5524:34;22022:14;;;5504:55;-1:-1;;;5579:12;;;5572:26;5617:12;;;14007:245::o;14259:416::-;14459:2;14473:47;;;5868:2;14444:18;;;21982:19;5904:34;22022:14;;;5884:55;-1:-1;;;5959:12;;;5952:27;5998:12;;;14430:245::o;14682:416::-;14882:2;14896:47;;;6249:2;14867:18;;;21982:19;6285:34;22022:14;;;6265:55;-1:-1;;;6340:12;;;6333:39;6391:12;;;14853:245::o;15105:416::-;15305:2;15319:47;;;6642:2;15290:18;;;21982:19;6678:34;22022:14;;;6658:55;-1:-1;;;6733:12;;;6726:26;6771:12;;;15276:245::o;15528:416::-;15728:2;15742:47;;;7022:2;15713:18;;;21982:19;7058:29;22022:14;;;7038:50;7107:12;;;15699:245::o;15951:416::-;16151:2;16165:47;;;7358:2;16136:18;;;21982:19;7394:34;22022:14;;;7374:55;-1:-1;;;7449:12;;;7442:32;7493:12;;;16122:245::o;16374:416::-;16574:2;16588:47;;;7744:2;16559:18;;;21982:19;7780:34;22022:14;;;7760:55;-1:-1;;;7835:12;;;7828:40;7887:12;;;16545:245::o;16797:416::-;16997:2;17011:47;;;8138:1;16982:18;;;21982:19;-1:-1;;;22022:14;;;8153:27;8199:12;;;16968:245::o;17220:416::-;17420:2;17434:47;;;8450:2;17405:18;;;21982:19;8486:34;22022:14;;;8466:55;-1:-1;;;8541:12;;;8534:26;8579:12;;;17391:245::o;17643:416::-;17843:2;17857:47;;;8830:2;17828:18;;;21982:19;8866:34;22022:14;;;8846:55;-1:-1;;;8921:12;;;8914:25;8958:12;;;17814:245::o;18066:416::-;18266:2;18280:47;;;9209:2;18251:18;;;21982:19;9245:34;22022:14;;;9225:55;-1:-1;;;9300:12;;;9293:29;9341:12;;;18237:245::o;18489:416::-;18689:2;18703:47;;;9592:2;18674:18;;;21982:19;9628:34;22022:14;;;9608:55;-1:-1;;;9683:12;;;9676:28;9723:12;;;18660:245::o;18912:416::-;19112:2;19126:47;;;9974:2;19097:18;;;21982:19;10010:34;22022:14;;;9990:55;-1:-1;;;10065:12;;;10058:39;10116:12;;;19083:245::o;19335:416::-;19535:2;19549:47;;;10367:2;19520:18;;;21982:19;10403:34;22022:14;;;10383:55;-1:-1;;;10458:12;;;10451:39;10509:12;;;19506:245::o;19758:416::-;19958:2;19972:47;;;10760:2;19943:18;;;21982:19;10796:33;22022:14;;;10776:54;10849:12;;;19929:245::o;20410:218::-;22598:10;22587:22;;;;11064:36;;20535:2;20520:18;;20506:122::o;20635:325::-;22598:10;22587:22;;;;11064:36;;-1:-1;;;;;22770:38;20946:2;20931:18;;11426:36;20786:2;20771:18;;20757:203::o;20967:214::-;22692:4;22681:16;;;;11179:35;;21090:2;21075:18;;21061:120::o;21188:218::-;-1:-1;;;;;22770:38;;;;11426:36;;21313:2;21298:18;;21284:122::o;21413:329::-;-1:-1;;;;;22770:38;;;11296:49;;22770:38;;21728:2;21713:18;;11296:49;21566:2;21551:18;;21537:205::o;24312:117::-;-1:-1;;;;;22381:54;;24371:35;;24361:2;;24420:1;;24410:12
Swarm Source
ipfs://cff30d2e1a3fcadf70c582e91c456b1ff3306ef406f7dca0cfed83d9532b2ea9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.