Token Omlira
Overview ERC20
Price
$0.02 @ 0.000861 AVAX
Fully Diluted Market Cap
Total Supply:
418,322.192432 OML
Holders:
34 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Omlira aims to provide smart contracts as a service and allow businesses to utilize blockchain technology using open-source libraries provided by Omlira.Market
Volume (24H) | : | $114,586.00 |
Market Capitalization | : | $0.00 |
Circulating Supply | : | 0.00 OML |
Market Data Source: Coinmarketcap |
Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-03-07
*/
// SPDX-License-Identifier: aGPL-3.0
// File: node_modules\@openzeppelin\contracts\access\IAccessControl.sol
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @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) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @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) external;
/**
* @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) external;
/**
* @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) external;
}
// File: node_modules\@openzeppelin\contracts\utils\Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: node_modules\@openzeppelin\contracts\utils\Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin\contracts\access\AccessControl.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* 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, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @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 override 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 override onlyRole(getRoleAdmin(role)) {
_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 override onlyRole(getRoleAdmin(role)) {
_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 override {
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 {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
function _grantRole(bytes32 role, address account) private {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}
// File: contracts\abstract\Guarded.sol
pragma solidity ^0.8.7;
/**
* @dev Guard contract that adds extra functionality to the {AccessControl} contract
*
* Defines `ADMIN_ROLE`, `MINTER_ROLE`, `BURNER_ROLE`
* adds `onlyOwner`, `onlyAdmin`, `onlyMinter`, `onlyBurner`, `nonPaused`, `paused` modifiers
*
* */
abstract contract Guarded is AccessControl{
bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
address private _owner;
bool private _paused;
modifier onlyOwner ()
{
require(_owner == _msgSender(), "Guard: not owner");
_;
}
modifier onlyAdmin ()
{
require(hasRole(ADMIN_ROLE, _msgSender()), "Guard: not admin");
_;
}
modifier onlyMinter () {
require(hasRole(MINTER_ROLE, _msgSender()), "Guard: not minter");
_;
}
modifier nonPaused () {
require(!_paused, "Guard: contract paused");
_;
}
modifier paused () {
require(_paused, "Guard: contract is not paused");
_;
}
constructor()
{
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(ADMIN_ROLE, _msgSender());
_owner = _msgSender();
_paused = false;
}
function pause() public onlyAdmin nonPaused returns (bool) {
_paused = true;
emit ContractPaused(block.number,_msgSender());
return true;
}
function unpause() public onlyAdmin paused returns (bool) {
_paused = false;
emit ContractUnpaused(block.number,_msgSender());
return true;
}
function isPaused() public view returns (bool) {
return _paused;
}
function transferOwner (address owner) public onlyOwner returns (bool) {
grantRole(DEFAULT_ADMIN_ROLE, owner);
grantRole(ADMIN_ROLE, owner);
revokeRole(DEFAULT_ADMIN_ROLE,_owner);
revokeRole(ADMIN_ROLE,_owner);
emit OwnerChanged(_owner,owner);
_owner = owner;
return true;
}
function setRoleAdmin(bytes32 role, bytes32 adminRole) public onlyOwner {
_setRoleAdmin(role,adminRole);
}
event ContractPaused(uint256 blockHeight, address admin);
event ContractUnpaused(uint256 blockHeight, address admin);
event OwnerChanged(address previousOwner, address currentOwner);
}
// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: node_modules\@openzeppelin\contracts\utils\Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
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");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin\contracts\token\ERC20\utils\SafeERC20.sol
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using 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));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts\abstract\TokenRecover.sol
pragma solidity ^0.8.7;
abstract contract TokenRecover is Guarded {
using SafeERC20 for IERC20;
function recoverERC20(address token, address recipient, uint256 amount) public onlyOwner() returns (bool)
{
IERC20(token).safeTransfer(recipient,amount);
emit ERC20Recovered(token,recipient,amount);
return true;
}
event ERC20Recovered(address token, address recipient, uint256 amount);
}
// File: contracts\abstract\Blacklistable.sol
pragma solidity ^0.8.7;
/**
* @dev Blacklist module that allows receivers or transaction senders
* to be blacklisted.
*/
abstract contract Blacklistable is Guarded {
address public _blacklister;
mapping(address => bool) internal _blacklisted;
/**
* @dev Modifier that checks the msg.sender for blacklisting related operations
*/
modifier onlyBlacklister() {
require(_blacklister == _msgSender(),"Blacklistable: account is not blacklister");
_;
}
/**
* @dev Modifier that checks the account is not blacklisted
* @param account The address to be checked
*/
modifier notBlacklisted(address account) {
require(!_blacklisted[account],"Blacklistable: account is blacklisted");
_;
}
/**
* @dev Function that checks if an address is blacklisted
* @param account The address to be checked
* @return bool, true if account is blacklisted, false if not
*/
function isBlacklisted(address account) public view returns (bool) {
return _blacklisted[account];
}
/**
* @dev Function that blacklists an account
* Emits {Blacklisted} event.
*
* @notice can only be called by blacklister
* @param account The address to be blacklisted
*/
function blacklist(address account) public onlyBlacklister {
_blacklisted[account] = true;
emit Blacklisted(account);
}
/**
* @dev Function that removes an address from blacklist
* Emits {UnBlacklisted} event
*
* @notice can only be called by blacklister
* @param account to be unblacklisted
*/
function unBlacklist(address account) public onlyBlacklister {
_blacklisted[account] = false;
emit UnBlacklisted(account);
}
/**
* @dev Function that updates the current blacklister account
* Emits {BlacklisterChanged} event
*
* @notice can only be called by the owner of the contract
* @param newBlacklister address that will be the new blacklister
*/
function updateBlacklister(address newBlacklister) external onlyOwner {
require(
newBlacklister != address(0),
"Blacklistable: new blacklister is the zero address"
);
_blacklister = newBlacklister;
emit BlacklisterChanged(newBlacklister);
}
event Blacklisted(address indexed account);
event UnBlacklisted(address indexed account);
event BlacklisterChanged(address indexed newBlacklister);
}
// File: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin\contracts\token\ERC20\ERC20.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* 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 ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual 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.
*/
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);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
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] + 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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This 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);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(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:
*
* - `account` 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 += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), 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);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This 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 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 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:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// File: contracts\interfaces\ILToken.sol
pragma solidity ^0.8.7;
// Author: Osman Kuzucu
// https://github.com/open-money
// [email protected]
interface ILToken is IERC20 {
function masterMint(address account, uint256 amount) external returns (bool);
function mintTo (address account, uint256 amount) external returns (bool);
function burnFrom (address account, uint256 amount) external returns (bool);
event TokenMinted(address account, uint256 amount);
event TokenBurned(address account, uint256 amount);
}
// File: contracts\tokens\LToken.sol
pragma solidity ^0.8.7;
contract LToken is Guarded, TokenRecover, Blacklistable, ERC20, ILToken {
uint8 private _decimals;
constructor(string memory name, string memory symbol, uint8 decimals_) TokenRecover() ERC20(name, symbol) {
_decimals = decimals_;
_blacklister = msg.sender;
}
function decimals() public view override returns (uint8) {
return _decimals;
}
function masterMint(address account, uint256 amount) public override onlyOwner returns (bool) {
_mint(account,amount);
emit TokenMinted(account,amount);
return true;
}
function mintTo (address account, uint256 amount) public override onlyMinter nonPaused notBlacklisted(account) returns (bool) {
_mint(account,amount);
emit TokenMinted(account,amount);
return true;
}
function burnFrom (address account, uint256 amount) public override nonPaused returns (bool) {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
unchecked {
_approve(account, _msgSender(), currentAllowance - amount);
}
_burn(account, amount);
emit TokenBurned(account,amount);
return true;
}
function transfer(address recipient, uint256 amount) public override(ERC20, IERC20) nonPaused returns (bool) {
require((!isBlacklisted(recipient) && !isBlacklisted(msg.sender)),"LToken: receiver or sender blacklisted");
return ERC20.transfer(recipient,amount);
}
function transferFrom(address sender, address recipient, uint256 amount) public override(ERC20, IERC20) nonPaused returns (bool) {
require((!isBlacklisted(recipient) && !isBlacklisted(msg.sender) && !isBlacklisted(sender)),"LToken: receiver or sender blacklisted");
return ERC20.transferFrom(sender,recipient,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":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"blockHeight","type":"uint256"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"ContractUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"internalType":"address","name":"currentOwner","type":"address"}],"name":"OwnerChanged","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenMinted","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":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_blacklister","outputs":[{"internalType":"address","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":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"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":"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":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"masterMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"bytes32","name":"adminRole","type":"bytes32"}],"name":"setRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"transferOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002492380380620024928339810160408190526200003491620002ec565b828262000043600033620000df565b6200006f7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177533620000df565b600180546001600160a81b031916331790558151620000969060079060208501906200018f565b508051620000ac9060089060208401906200018f565b50506009805460ff90931660ff19909316929092179091555050600280546001600160a01b0319163317905550620003c4565b620000eb8282620000ef565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620000eb576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200014b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200019d9062000371565b90600052602060002090601f016020900481019282620001c157600085556200020c565b82601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b5b808211156200021a57600081556001016200021f565b600082601f8301126200024757600080fd5b81516001600160401b0380821115620002645762000264620003ae565b604051601f8301601f19908116603f011681019082821181831017156200028f576200028f620003ae565b81604052838152602092508683858801011115620002ac57600080fd5b600091505b83821015620002d05785820183015181830184015290820190620002b1565b83821115620002e25760008385830101525b9695505050505050565b6000806000606084860312156200030257600080fd5b83516001600160401b03808211156200031a57600080fd5b620003288783880162000235565b945060208601519150808211156200033f57600080fd5b506200034e8682870162000235565b925050604084015160ff811681146200036657600080fd5b809150509250925092565b600181811c908216806200038657607f821691505b60208210811415620003a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6120be80620003d46000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a578063a457c2d7116100ad578063d53913931161007c578063d53913931461045f578063d547741f14610486578063dd62ed3e14610499578063f9f92be4146104d2578063fe575a87146104e557600080fd5b8063a457c2d714610414578063a9059cbb14610427578063ad38bf221461043a578063b187bd261461044d57600080fd5b806391b4af05116100e957806391b4af05146103c657806391d14854146103f157806395d89b4114610404578063a217fddf1461040c57600080fd5b806370a082311461036d57806375b238fc1461039657806379cc6790146103ab5780638456cb59146103be57600080fd5b806323b872dd1161019d57806336568abe1161016c57806336568abe14610319578063395093511461032c5780633f4ba83a1461033f578063449a52f8146103475780634fb2e45d1461035a57600080fd5b806323b872dd146102bb578063248a9ca3146102ce5780632f2ff15d146102f1578063313ce5671461030457600080fd5b806318160ddd116101d957806318160ddd1461026e5780631a895266146102805780631b96b2f9146102955780631e4e0091146102a857600080fd5b806301ffc9a71461020b57806306fdde0314610233578063095ea7b3146102485780631171bda91461025b575b600080fd5b61021e610219366004611d83565b6104f8565b60405190151581526020015b60405180910390f35b61023b61052f565b60405161022a9190611e3e565b61021e610256366004611cd9565b6105c1565b61021e610269366004611c9d565b6105d7565b6006545b60405190815260200161022a565b61029361028e366004611c4f565b610678565b005b61021e6102a3366004611cd9565b6106eb565b6102936102b6366004611d61565b61076d565b61021e6102c9366004611c9d565b6107a5565b6102726102dc366004611d25565b60009081526020819052604090206001015490565b6102936102ff366004611d3e565b61082f565b60095460405160ff909116815260200161022a565b610293610327366004611d3e565b61085a565b61021e61033a366004611cd9565b6108d4565b61021e610910565b61021e610355366004611cd9565b610a19565b61021e610368366004611c4f565b610b7e565b61027261037b366004611c4f565b6001600160a01b031660009081526004602052604090205490565b61027260008051602061206983398151915281565b61021e6103b9366004611cd9565b610c74565b61021e610d62565b6002546103d9906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b61021e6103ff366004611d3e565b610e21565b61023b610e4a565b610272600081565b61021e610422366004611cd9565b610e59565b61021e610435366004611cd9565b610ef2565b610293610448366004611c4f565b610f61565b600154600160a01b900460ff1661021e565b6102727f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610293610494366004611d3e565b611046565b6102726104a7366004611c6a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6102936104e0366004611c4f565b61106c565b61021e6104f3366004611c4f565b6110e2565b60006001600160e01b03198216637965db0b60e01b148061052957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606007805461053e90611feb565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611feb565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b60006105ce338484611100565b50600192915050565b6001546000906001600160a01b0316331461060d5760405162461bcd60e51b815260040161060490611f30565b60405180910390fd5b6106216001600160a01b0385168484611224565b604080516001600160a01b038087168252851660208201529081018390527faca8fb252cde442184e5f10e0f2e6e4029e8cd7717cae63559079610702436aa906060015b60405180910390a15060015b9392505050565b6002546001600160a01b031633146106a25760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b6001546000906001600160a01b031633146107185760405162461bcd60e51b815260040161060490611f30565b6107228383611276565b604080516001600160a01b0385168152602081018490527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a150600192915050565b6001546001600160a01b031633146107975760405162461bcd60e51b815260040161060490611f30565b6107a18282611355565b5050565b600154600090600160a01b900460ff16156107d25760405162461bcd60e51b815260040161060490611e71565b6107db836110e2565b1580156107ee57506107ec336110e2565b155b801561080057506107fe846110e2565b155b61081c5760405162461bcd60e51b815260040161060490611eea565b6108278484846113a0565b949350505050565b60008281526020819052604090206001015461084b8133611447565b61085583836114ab565b505050565b6001600160a01b03811633146108ca5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610604565b6107a1828261152f565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ce91859061090b908690611f5a565b611100565b600061092a60008051602061206983398151915233610e21565b6109695760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff166109c25760405162461bcd60e51b815260206004820152601d60248201527f47756172643a20636f6e7472616374206973206e6f74207061757365640000006044820152606401610604565b6001805460ff60a01b191690557f1e7a7234ad01ed7353bf129217f5c162773639a6cb22773e84bcd5a2b0ef362e43335b604080519283526001600160a01b0390911660208301520160405180910390a150600190565b6000610a457f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610e21565b610a855760405162461bcd60e51b815260206004820152601160248201527023bab0b9321d103737ba1036b4b73a32b960791b6044820152606401610604565b600154600160a01b900460ff1615610aaf5760405162461bcd60e51b815260040161060490611e71565b6001600160a01b038316600090815260036020526040902054839060ff1615610b285760405162461bcd60e51b815260206004820152602560248201527f426c61636b6c69737461626c653a206163636f756e7420697320626c61636b6c6044820152641a5cdd195960da1b6064820152608401610604565b610b328484611276565b604080516001600160a01b0386168152602081018590527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a15060019392505050565b6001546000906001600160a01b03163314610bab5760405162461bcd60e51b815260040161060490611f30565b610bb660008361082f565b610bce6000805160206120698339815191528361082f565b600154610be6906000906001600160a01b0316611046565b600154610c0b90600080516020612069833981519152906001600160a01b0316611046565b600154604080516001600160a01b03928316815291841660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a150600180546001600160a01b0319166001600160a01b0383161781555b919050565b600154600090600160a01b900460ff1615610ca15760405162461bcd60e51b815260040161060490611e71565b6000610cad84336104a7565b905082811015610d0b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610604565b610d1984335b858403611100565b610d238484611594565b604080516001600160a01b0386168152602081018590527f1af5163f80e79b5e554f61e1d052084d3a3fe1166e42a265798c4e2ddce8ffa29101610665565b6000610d7c60008051602061206983398151915233610e21565b610dbb5760405162461bcd60e51b815260206004820152601060248201526f23bab0b9321d103737ba1030b236b4b760811b6044820152606401610604565b600154600160a01b900460ff1615610de55760405162461bcd60e51b815260040161060490611e71565b6001805460ff60a01b1916600160a01b1790557fd8c9c5623123df8e137854c59a08f9084b75609fe24584228d44ffdce5ab920a436109f33390565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b60606008805461053e90611feb565b3360009081526005602090815260408083206001600160a01b038616845290915281205482811015610edb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610604565b610ee83385858403611100565b5060019392505050565b600154600090600160a01b900460ff1615610f1f5760405162461bcd60e51b815260040161060490611e71565b610f28836110e2565b158015610f3b5750610f39336110e2565b155b610f575760405162461bcd60e51b815260040161060490611eea565b61067183836116e2565b6001546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161060490611f30565b6001600160a01b038116610ffc5760405162461bcd60e51b815260206004820152603260248201527f426c61636b6c69737461626c653a206e657720626c61636b6c697374657220696044820152717320746865207a65726f206164647265737360701b6064820152608401610604565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b6000828152602081905260409020600101546110628133611447565b610855838361152f565b6002546001600160a01b031633146110965760405162461bcd60e51b815260040161060490611ea1565b6001600160a01b038116600081815260036020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b031660009081526003602052604090205460ff1690565b6001600160a01b0383166111625760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610604565b6001600160a01b0382166111c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610604565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108559084906116ef565b6001600160a01b0382166112cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610604565b80600660008282546112de9190611f5a565b90915550506001600160a01b0382166000908152600460205260408120805483929061130b908490611f5a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b60006113ad8484846117c1565b6001600160a01b0384166000908152600560209081526040808320338452909152902054828110156114325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610604565b61143c8533610d11565b506001949350505050565b6114518282610e21565b6107a157611469816001600160a01b03166014611991565b611474836020611991565b604051602001611485929190611dc9565b60408051601f198184030181529082905262461bcd60e51b825261060491600401611e3e565b6114b58282610e21565b6107a1576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556114eb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6115398282610e21565b156107a1576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166115f45760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610604565b6001600160a01b038216600090815260046020526040902054818110156116685760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610604565b6001600160a01b0383166000908152600460205260408120838303905560068054849290611697908490611f91565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006105ce3384846117c1565b6000611744826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611b2d9092919063ffffffff16565b80519091501561085557808060200190518101906117629190611d03565b6108555760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610604565b6001600160a01b0383166118255760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610604565b6001600160a01b0382166118875760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610604565b6001600160a01b038316600090815260046020526040902054818110156118ff5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610604565b6001600160a01b03808516600090815260046020526040808220858503905591851681529081208054849290611936908490611f5a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161198291815260200190565b60405180910390a35b50505050565b606060006119a0836002611f72565b6119ab906002611f5a565b67ffffffffffffffff8111156119c3576119c3612052565b6040519080825280601f01601f1916602001820160405280156119ed576020820181803683370190505b509050600360fc1b81600081518110611a0857611a0861203c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a3757611a3761203c565b60200101906001600160f81b031916908160001a9053506000611a5b846002611f72565b611a66906001611f5a565b90505b6001811115611ade576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a9a57611a9a61203c565b1a60f81b828281518110611ab057611ab061203c565b60200101906001600160f81b031916908160001a90535060049490941c93611ad781611fd4565b9050611a69565b5083156106715760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610604565b6060610827848460008585843b611b865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610604565b600080866001600160a01b03168587604051611ba29190611dad565b60006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5091509150611bf4828286611bff565b979650505050505050565b60608315611c0e575081610671565b825115611c1e5782518084602001fd5b8160405162461bcd60e51b81526004016106049190611e3e565b80356001600160a01b0381168114610c6f57600080fd5b600060208284031215611c6157600080fd5b61067182611c38565b60008060408385031215611c7d57600080fd5b611c8683611c38565b9150611c9460208401611c38565b90509250929050565b600080600060608486031215611cb257600080fd5b611cbb84611c38565b9250611cc960208501611c38565b9150604084013590509250925092565b60008060408385031215611cec57600080fd5b611cf583611c38565b946020939093013593505050565b600060208284031215611d1557600080fd5b8151801515811461067157600080fd5b600060208284031215611d3757600080fd5b5035919050565b60008060408385031215611d5157600080fd5b82359150611c9460208401611c38565b60008060408385031215611d7457600080fd5b50508035926020909101359150565b600060208284031215611d9557600080fd5b81356001600160e01b03198116811461067157600080fd5b60008251611dbf818460208701611fa8565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611e01816017850160208801611fa8565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611e32816028840160208801611fa8565b01602801949350505050565b6020815260008251806020840152611e5d816040850160208701611fa8565b601f01601f19169190910160400192915050565b60208082526016908201527511dd585c990e8818dbdb9d1c9858dd081c185d5cd95960521b604082015260600190565b60208082526029908201527f426c61636b6c69737461626c653a206163636f756e74206973206e6f7420626c60408201526830b1b5b634b9ba32b960b91b606082015260800190565b60208082526026908201527f4c546f6b656e3a207265636569766572206f722073656e64657220626c61636b6040820152651b1a5cdd195960d21b606082015260800190565b60208082526010908201526f23bab0b9321d103737ba1037bbb732b960811b604082015260600190565b60008219821115611f6d57611f6d612026565b500190565b6000816000190483118215151615611f8c57611f8c612026565b500290565b600082821015611fa357611fa3612026565b500390565b60005b83811015611fc3578181015183820152602001611fab565b8381111561198b5750506000910152565b600081611fe357611fe3612026565b506000190190565b600181811c90821680611fff57607f821691505b6020821081141561202057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122032b10d7d553dc34bc33c49e41d6fd73eae18c0a2b740640491ac05423e107c0b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000064f6d6c697261000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4d4c0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000064f6d6c697261000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4d4c0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Omlira
Arg [1] : symbol (string): OML
Arg [2] : decimals_ (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4f6d6c6972610000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4f4d4c0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
47959:1957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10315:204;;;;;;:::i;:::-;;:::i;:::-;;;4921:14:1;;4914:22;4896:41;;4884:2;4869:18;10315:204:0;;;;;;;;37356:100;;;:::i;:::-;;;;;;;:::i;39523:169::-;;;;;;:::i;:::-;;:::i;31608:250::-;;;;;;:::i;:::-;;:::i;38476:108::-;38564:12;;38476:108;;;5094:25:1;;;5082:2;5067:18;38476:108:0;4948:177:1;33709:147:0;;;;;;:::i;:::-;;:::i;:::-;;48362:199;;;;;;:::i;:::-;;:::i;17108:120::-;;;;;;:::i;:::-;;:::i;49569:342::-;;;;;;:::i;:::-;;:::i;11726:123::-;;;;;;:::i;:::-;11792:7;11819:12;;;;;;;;;;:22;;;;11726:123;12111:147;;;;;;:::i;:::-;;:::i;48262:92::-;48337:9;;48262:92;;48337:9;;;;15871:36:1;;15859:2;15844:18;48262:92:0;15729:184:1;13159:218:0;;;;;;:::i;:::-;;:::i;41075:215::-;;;;;;:::i;:::-;;:::i;16481:173::-;;;:::i;48569:231::-;;;;;;:::i;:::-;;:::i;16750:350::-;;;;;;:::i;:::-;;:::i;38647:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38748:18:0;38721:7;38748:18;;;:9;:18;;;;;;;38647:127;15325:60;;-1:-1:-1;;;;;;;;;;;15325:60:0;;48808:460;;;;;;:::i;:::-;;:::i;16302:171::-;;;:::i;32185:27::-;;;;;-1:-1:-1;;;;;32185:27:0;;;;;;-1:-1:-1;;;;;3744:32:1;;;3726:51;;3714:2;3699:18;32185:27:0;3580:203:1;10611:139:0;;;;;;:::i;:::-;;:::i;37575:104::-;;;:::i;9702:49::-;;9747:4;9702:49;;41793:413;;;;;;:::i;:::-;;:::i;49276:285::-;;;;;;:::i;:::-;;:::i;34134:307::-;;;;;;:::i;:::-;;:::i;16662:80::-;16727:7;;-1:-1:-1;;;16727:7:0;;;;16662:80;;15392:62;;15430:24;15392:62;;12503:149;;;;;;:::i;:::-;;:::i;39225:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;39341:18:0;;;39314:7;39341:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39225:151;33342:142;;;;;;:::i;:::-;;:::i;33006:114::-;;;;;;:::i;:::-;;:::i;10315:204::-;10400:4;-1:-1:-1;;;;;;10424:47:0;;-1:-1:-1;;;10424:47:0;;:87;;-1:-1:-1;;;;;;;;;;7745:40:0;;;10475:36;10417:94;10315:204;-1:-1:-1;;10315:204:0:o;37356:100::-;37410:13;37443:5;37436:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37356:100;:::o;39523:169::-;39606:4;39623:39;3746:10;39646:7;39655:6;39623:8;:39::i;:::-;-1:-1:-1;39680:4:0;39523:169;;;;:::o;31608:250::-;15571:6;;31708:4;;-1:-1:-1;;;;;15571:6:0;3746:10;15571:22;15563:51;;;;-1:-1:-1;;;15563:51:0;;;;;;;:::i;:::-;;;;;;;;;31730:44:::1;-1:-1:-1::0;;;;;31730:26:0;::::1;31757:9:::0;31767:6;31730:26:::1;:44::i;:::-;31790:38;::::0;;-1:-1:-1;;;;;4355:15:1;;;4337:34;;4407:15;;4402:2;4387:18;;4380:43;4439:18;;;4432:34;;;31790:38:0::1;::::0;4287:2:1;4272:18;31790:38:0::1;;;;;;;;-1:-1:-1::0;31846:4:0::1;15625:1;31608:250:::0;;;;;:::o;33709:147::-;32425:12;;-1:-1:-1;;;;;32425:12:0;3746:10;32425:28;32417:81;;;;-1:-1:-1;;;32417:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33781:21:0;::::1;33805:5;33781:21:::0;;;:12:::1;:21;::::0;;;;;:29;;-1:-1:-1;;33781:29:0::1;::::0;;33826:22;::::1;::::0;33805:5;33826:22:::1;33709:147:::0;:::o;48362:199::-;15571:6;;48450:4;;-1:-1:-1;;;;;15571:6:0;3746:10;15571:22;15563:51;;;;-1:-1:-1;;;15563:51:0;;;;;;;:::i;:::-;48467:21:::1;48473:7;48481:6;48467:5;:21::i;:::-;48504:27;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;48504:27:0::1;::::0;4624:18:1;48504:27:0::1;;;;;;;-1:-1:-1::0;48549:4:0::1;48362:199:::0;;;;:::o;17108:120::-;15571:6;;-1:-1:-1;;;;;15571:6:0;3746:10;15571:22;15563:51;;;;-1:-1:-1;;;15563:51:0;;;;;;;:::i;:::-;17191:29:::1;17205:4;17210:9;17191:13;:29::i;:::-;17108:120:::0;;:::o;49569:342::-;15938:7;;49692:4;;-1:-1:-1;;;15938:7:0;;;;15937:8;15929:43;;;;-1:-1:-1;;;15929:43:0;;;;;;;:::i;:::-;49719:24:::1;49733:9;49719:13;:24::i;:::-;49718:25;:55;;;;;49748:25;49762:10;49748:13;:25::i;:::-;49747:26;49718:55;:81;;;;;49778:21;49792:6;49778:13;:21::i;:::-;49777:22;49718:81;49709:133;;;;-1:-1:-1::0;;;49709:133:0::1;;;;;;;:::i;:::-;49860:43;49879:6;49886:9;49896:6;49860:18;:43::i;:::-;49853:50:::0;49569:342;-1:-1:-1;;;;49569:342:0:o;12111:147::-;11792:7;11819:12;;;;;;;;;;:22;;;10193:30;10204:4;3746:10;10193;:30::i;:::-;12225:25:::1;12236:4;12242:7;12225:10;:25::i;:::-;12111:147:::0;;;:::o;13159:218::-;-1:-1:-1;;;;;13255:23:0;;3746:10;13255:23;13247:83;;;;-1:-1:-1;;;13247:83:0;;14694:2:1;13247:83:0;;;14676:21:1;14733:2;14713:18;;;14706:30;14772:34;14752:18;;;14745:62;-1:-1:-1;;;14823:18:1;;;14816:45;14878:19;;13247:83:0;14492:411:1;13247:83:0;13343:26;13355:4;13361:7;13343:11;:26::i;41075:215::-;3746:10;41163:4;41212:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;41212:34:0;;;;;;;;;;41163:4;;41180:80;;41203:7;;41212:47;;41249:10;;41212:47;:::i;:::-;41180:8;:80::i;16481:173::-;16533:4;15688:33;-1:-1:-1;;;;;;;;;;;3746:10:0;10611:139;:::i;15688:33::-;15680:62;;;;-1:-1:-1;;;15680:62:0;;8756:2:1;15680:62:0;;;8738:21:1;8795:2;8775:18;;;8768:30;-1:-1:-1;;;8814:18:1;;;8807:46;8870:18;;15680:62:0;8554:340:1;15680:62:0;16038:7:::1;::::0;-1:-1:-1;;;16038:7:0;::::1;;;16030:49;;;::::0;-1:-1:-1;;;16030:49:0;;5720:2:1;16030:49:0::1;::::0;::::1;5702:21:1::0;5759:2;5739:18;;;5732:30;5798:31;5778:18;;;5771:59;5847:18;;16030:49:0::1;5518:353:1::0;16030:49:0::1;16550:7:::2;:15:::0;;-1:-1:-1;;;;16550:15:0::2;::::0;;16581:43:::2;16598:12;3746:10:::0;16611:12:::2;16581:43;::::0;;15624:25:1;;;-1:-1:-1;;;;;15685:32:1;;;15680:2;15665:18;;15658:60;15597:18;16581:43:0::2;;;;;;;-1:-1:-1::0;16642:4:0::2;16481:173:::0;:::o;48569:231::-;48689:4;15812:34;15430:24;3746:10;10611:139;:::i;15812:34::-;15804:64;;;;-1:-1:-1;;;15804:64:0;;8007:2:1;15804:64:0;;;7989:21:1;8046:2;8026:18;;;8019:30;-1:-1:-1;;;8065:18:1;;;8058:47;8122:18;;15804:64:0;7805:341:1;15804:64:0;15938:7:::1;::::0;-1:-1:-1;;;15938:7:0;::::1;;;15937:8;15929:43;;;;-1:-1:-1::0;;;15929:43:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32719:21:0;::::2;;::::0;;;:12:::2;:21;::::0;;;;;48671:7;;32719:21:::2;;32718:22;32710:71;;;::::0;-1:-1:-1;;;32710:71:0;;13882:2:1;32710:71:0::2;::::0;::::2;13864:21:1::0;13921:2;13901:18;;;13894:30;13960:34;13940:18;;;13933:62;-1:-1:-1;;;14011:18:1;;;14004:35;14056:19;;32710:71:0::2;13680:401:1::0;32710:71:0::2;48706:21:::3;48712:7;48720:6;48706:5;:21::i;:::-;48743:27;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;48743:27:0::3;::::0;4624:18:1;48743:27:0::3;;;;;;;-1:-1:-1::0;48788:4:0::3;::::0;48569:231;-1:-1:-1;;;48569:231:0:o;16750:350::-;15571:6;;16815:4;;-1:-1:-1;;;;;15571:6:0;3746:10;15571:22;15563:51;;;;-1:-1:-1;;;15563:51:0;;;;;;;:::i;:::-;16832:36:::1;9747:4;16862:5:::0;16832:9:::1;:36::i;:::-;16879:28;-1:-1:-1::0;;;;;;;;;;;16901:5:0::1;16879:9;:28::i;:::-;16950:6;::::0;16920:37:::1;::::0;9747:4:::1;::::0;-1:-1:-1;;;;;16950:6:0::1;16920:10;:37::i;:::-;16990:6;::::0;16968:29:::1;::::0;-1:-1:-1;;;;;;;;;;;15362:23:0;-1:-1:-1;;;;;16990:6:0::1;16968:10;:29::i;:::-;17028:6;::::0;17015:26:::1;::::0;;-1:-1:-1;;;;;17028:6:0;;::::1;4000:34:1::0;;4070:15;;;4065:2;4050:18;;4043:43;17015:26:0::1;::::0;3935:18:1;17015:26:0::1;;;;;;;-1:-1:-1::0;17054:6:0::1;:14:::0;;-1:-1:-1;;;;;;17054:14:0::1;-1:-1:-1::0;;;;;17054:14:0;::::1;;::::0;;15625:1:::1;16750:350:::0;;;:::o;48808:460::-;15938:7;;48895:4;;-1:-1:-1;;;15938:7:0;;;;15937:8;15929:43;;;;-1:-1:-1;;;15929:43:0;;;;;;;:::i;:::-;48912:24:::1;48939:32;48949:7:::0;3746:10;39225:151;:::i;48939:32::-:1;48912:59;;49010:6;48990:16;:26;;48982:75;;;::::0;-1:-1:-1;;;48982:75:0;;10731:2:1;48982:75:0::1;::::0;::::1;10713:21:1::0;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:34;10904:19;;48982:75:0::1;10529:400:1::0;48982:75:0::1;49093:58;49102:7:::0;3746:10;49111:12:::1;49144:6;49125:16;:25;49093:8;:58::i;:::-;49173:22;49179:7;49188:6;49173:5;:22::i;:::-;49211:27;::::0;;-1:-1:-1;;;;;4669:32:1;;4651:51;;4733:2;4718:18;;4711:34;;;49211:27:0::1;::::0;4624:18:1;49211:27:0::1;4477:274:1::0;16302:171:0;16355:4;15688:33;-1:-1:-1;;;;;;;;;;;3746:10:0;10611:139;:::i;15688:33::-;15680:62;;;;-1:-1:-1;;;15680:62:0;;8756:2:1;15680:62:0;;;8738:21:1;8795:2;8775:18;;;8768:30;-1:-1:-1;;;8814:18:1;;;8807:46;8870:18;;15680:62:0;8554:340:1;15680:62:0;15938:7:::1;::::0;-1:-1:-1;;;15938:7:0;::::1;;;15937:8;15929:43;;;;-1:-1:-1::0;;;15929:43:0::1;;;;;;;:::i;:::-;16382:4:::2;16372:14:::0;;-1:-1:-1;;;;16372:14:0::2;-1:-1:-1::0;;;16372:14:0::2;::::0;;16402:41:::2;16417:12;16430;3746:10:::0;;3666:98;10611:139;10689:4;10713:12;;;;;;;;;;;-1:-1:-1;;;;;10713:29:0;;;;;;;;;;;;;;;10611:139::o;37575:104::-;37631:13;37664:7;37657:14;;;;;:::i;41793:413::-;3746:10;41886:4;41930:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;41930:34:0;;;;;;;;;;41983:35;;;;41975:85;;;;-1:-1:-1;;;41975:85:0;;14288:2:1;41975:85:0;;;14270:21:1;14327:2;14307:18;;;14300:30;14366:34;14346:18;;;14339:62;-1:-1:-1;;;14417:18:1;;;14410:35;14462:19;;41975:85:0;14086:401:1;41975:85:0;42096:67;3746:10;42119:7;42147:15;42128:16;:34;42096:8;:67::i;:::-;-1:-1:-1;42194:4:0;;41793:413;-1:-1:-1;;;41793:413:0:o;49276:285::-;15938:7;;49379:4;;-1:-1:-1;;;15938:7:0;;;;15937:8;15929:43;;;;-1:-1:-1;;;15929:43:0;;;;;;;:::i;:::-;49406:24:::1;49420:9;49406:13;:24::i;:::-;49405:25;:55;;;;;49435:25;49449:10;49435:13;:25::i;:::-;49434:26;49405:55;49396:107;;;;-1:-1:-1::0;;;49396:107:0::1;;;;;;;:::i;:::-;49521:32;49536:9;49546:6;49521:14;:32::i;34134:307::-:0;15571:6;;-1:-1:-1;;;;;15571:6:0;3746:10;15571:22;15563:51;;;;-1:-1:-1;;;15563:51:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34237:28:0;::::1;34215:128;;;::::0;-1:-1:-1;;;34215:128:0;;13463:2:1;34215:128:0::1;::::0;::::1;13445:21:1::0;13502:2;13482:18;;;13475:30;13541:34;13521:18;;;13514:62;-1:-1:-1;;;13592:18:1;;;13585:48;13650:19;;34215:128:0::1;13261:414:1::0;34215:128:0::1;34354:12;:29:::0;;-1:-1:-1;;;;;;34354:29:0::1;-1:-1:-1::0;;;;;34354:29:0;::::1;::::0;;::::1;::::0;;;34399:34:::1;::::0;::::1;::::0;-1:-1:-1;;34399:34:0::1;34134:307:::0;:::o;12503:149::-;11792:7;11819:12;;;;;;;;;;:22;;;10193:30;10204:4;3746:10;10193;:30::i;:::-;12618:26:::1;12630:4;12636:7;12618:11;:26::i;33342:142::-:0;32425:12;;-1:-1:-1;;;;;32425:12:0;3746:10;32425:28;32417:81;;;;-1:-1:-1;;;32417:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33412:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:28;;-1:-1:-1;;33412:28:0::1;33436:4;33412:28;::::0;;33456:20;::::1;::::0;33412:21;33456:20:::1;33342:142:::0;:::o;33006:114::-;-1:-1:-1;;;;;33091:21:0;33067:4;33091:21;;;:12;:21;;;;;;;;;33006:114::o;45477:380::-;-1:-1:-1;;;;;45613:19:0;;45605:68;;;;-1:-1:-1;;;45605:68:0;;12289:2:1;45605:68:0;;;12271:21:1;12328:2;12308:18;;;12301:30;12367:34;12347:18;;;12340:62;-1:-1:-1;;;12418:18:1;;;12411:34;12462:19;;45605:68:0;12087:400:1;45605:68:0;-1:-1:-1;;;;;45692:21:0;;45684:68;;;;-1:-1:-1;;;45684:68:0;;8353:2:1;45684:68:0;;;8335:21:1;8392:2;8372:18;;;8365:30;8431:34;8411:18;;;8404:62;-1:-1:-1;;;8482:18:1;;;8475:32;8524:19;;45684:68:0;8151:398:1;45684:68:0;-1:-1:-1;;;;;45765:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;45817:32;;5094:25:1;;;45817:32:0;;5067:18:1;45817:32:0;;;;;;;45477:380;;;:::o;29030:211::-;29174:58;;;-1:-1:-1;;;;;4669:32:1;;29174:58:0;;;4651:51:1;4718:18;;;;4711:34;;;29174:58:0;;;;;;;;;;4624:18:1;;;;29174:58:0;;;;;;;;-1:-1:-1;;;;;29174:58:0;-1:-1:-1;;;29174:58:0;;;29147:86;;29167:5;;29147:19;:86::i;43716:399::-;-1:-1:-1;;;;;43800:21:0;;43792:65;;;;-1:-1:-1;;;43792:65:0;;15110:2:1;43792:65:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:33;15168:18;;;15161:61;15239:18;;43792:65:0;14908:355:1;43792:65:0;43948:6;43932:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;43965:18:0;;;;;;:9;:18;;;;;:28;;43987:6;;43965:18;:28;;43987:6;;43965:28;:::i;:::-;;;;-1:-1:-1;;44009:37:0;;5094:25:1;;;-1:-1:-1;;;;;44009:37:0;;;44026:1;;44009:37;;5082:2:1;5067:18;44009:37:0;;;;;;;17108:120;;:::o;14204:251::-;14288:25;11819:12;;;;;;;;;;;:22;;;;14345:34;;;;14395:52;;11819:22;;14345:34;;11819:22;;:12;;14395:52;;14288:25;14395:52;14277:178;14204:251;;:::o;40174:492::-;40314:4;40331:36;40341:6;40349:9;40360:6;40331:9;:36::i;:::-;-1:-1:-1;;;;;40407:19:0;;40380:24;40407:19;;;:11;:19;;;;;;;;3746:10;40407:33;;;;;;;;40459:26;;;;40451:79;;;;-1:-1:-1;;;40451:79:0;;10322:2:1;40451:79:0;;;10304:21:1;10361:2;10341:18;;;10334:30;10400:34;10380:18;;;10373:62;-1:-1:-1;;;10451:18:1;;;10444:38;10499:19;;40451:79:0;10120:404:1;40451:79:0;40566:57;40575:6;3746:10;40583:12;3666:98;40566:57;-1:-1:-1;40654:4:0;;40174:492;-1:-1:-1;;;;40174:492:0:o;11040:497::-;11121:22;11129:4;11135:7;11121;:22::i;:::-;11116:414;;11309:41;11337:7;-1:-1:-1;;;;;11309:41:0;11347:2;11309:19;:41::i;:::-;11423:38;11451:4;11458:2;11423:19;:38::i;:::-;11214:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11214:270:0;;;;;;;;;;-1:-1:-1;;;11160:358:0;;;;;;;:::i;14463:229::-;14538:22;14546:4;14552:7;14538;:22::i;:::-;14533:152;;14577:6;:12;;;;;;;;;;;-1:-1:-1;;;;;14577:29:0;;;;;;;;;:36;;-1:-1:-1;;14577:36:0;14609:4;14577:36;;;14660:12;3746:10;;3666:98;14660:12;-1:-1:-1;;;;;14633:40:0;14651:7;-1:-1:-1;;;;;14633:40:0;14645:4;14633:40;;;;;;;;;;14463:229;;:::o;14700:230::-;14775:22;14783:4;14789:7;14775;:22::i;:::-;14771:152;;;14846:5;14814:12;;;;;;;;;;;-1:-1:-1;;;;;14814:29:0;;;;;;;;;;:37;;-1:-1:-1;;14814:37:0;;;14871:40;3746:10;;14814:12;;14871:40;;14846:5;14871:40;14700:230;;:::o;44448:591::-;-1:-1:-1;;;;;44532:21:0;;44524:67;;;;-1:-1:-1;;;44524:67:0;;11136:2:1;44524:67:0;;;11118:21:1;11175:2;11155:18;;;11148:30;11214:34;11194:18;;;11187:62;-1:-1:-1;;;11265:18:1;;;11258:31;11306:19;;44524:67:0;10934:397:1;44524:67:0;-1:-1:-1;;;;;44691:18:0;;44666:22;44691:18;;;:9;:18;;;;;;44728:24;;;;44720:71;;;;-1:-1:-1;;;44720:71:0;;7194:2:1;44720:71:0;;;7176:21:1;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;-1:-1:-1;;;7323:18:1;;;7316:32;7365:19;;44720:71:0;6992:398:1;44720:71:0;-1:-1:-1;;;;;44827:18:0;;;;;;:9;:18;;;;;44848:23;;;44827:44;;44893:12;:22;;44865:6;;44827:18;44893:22;;44865:6;;44893:22;:::i;:::-;;;;-1:-1:-1;;44933:37:0;;5094:25:1;;;44959:1:0;;-1:-1:-1;;;;;44933:37:0;;;;;5082:2:1;5067:18;44933:37:0;;;;;;;12111:147;;;:::o;38987:175::-;39073:4;39090:42;3746:10;39114:9;39125:6;39090:9;:42::i;30718:716::-;31142:23;31168:69;31196:4;31168:69;;;;;;;;;;;;;;;;;31176:5;-1:-1:-1;;;;;31168:27:0;;;:69;;;;;:::i;:::-;31252:17;;31142:95;;-1:-1:-1;31252:21:0;31248:179;;31349:10;31338:30;;;;;;;;;;;;:::i;:::-;31330:85;;;;-1:-1:-1;;;31330:85:0;;13052:2:1;31330:85:0;;;13034:21:1;13091:2;13071:18;;;13064:30;13130:34;13110:18;;;13103:62;-1:-1:-1;;;13181:18:1;;;13174:40;13231:19;;31330:85:0;12850:406:1;42696:733:0;-1:-1:-1;;;;;42836:20:0;;42828:70;;;;-1:-1:-1;;;42828:70:0;;11538:2:1;42828:70:0;;;11520:21:1;11577:2;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;-1:-1:-1;;;11667:18:1;;;11660:35;11712:19;;42828:70:0;11336:401:1;42828:70:0;-1:-1:-1;;;;;42917:23:0;;42909:71;;;;-1:-1:-1;;;42909:71:0;;6439:2:1;42909:71:0;;;6421:21:1;6478:2;6458:18;;;6451:30;6517:34;6497:18;;;6490:62;-1:-1:-1;;;6568:18:1;;;6561:33;6611:19;;42909:71:0;6237:399:1;42909:71:0;-1:-1:-1;;;;;43077:17:0;;43053:21;43077:17;;;:9;:17;;;;;;43113:23;;;;43105:74;;;;-1:-1:-1;;;43105:74:0;;9101:2:1;43105:74:0;;;9083:21:1;9140:2;9120:18;;;9113:30;9179:34;9159:18;;;9152:62;-1:-1:-1;;;9230:18:1;;;9223:36;9276:19;;43105:74:0;8899:402:1;43105:74:0;-1:-1:-1;;;;;43215:17:0;;;;;;;:9;:17;;;;;;43235:22;;;43215:42;;43279:20;;;;;;;;:30;;43251:6;;43215:17;43279:30;;43251:6;;43279:30;:::i;:::-;;;;;;;;43344:9;-1:-1:-1;;;;;43327:35:0;43336:6;-1:-1:-1;;;;;43327:35:0;;43355:6;43327:35;;;;5094:25:1;;5082:2;5067:18;;4948:177;43327:35:0;;;;;;;;43375:46;42817:612;42696:733;;;:::o;5505:451::-;5580:13;5606:19;5638:10;5642:6;5638:1;:10;:::i;:::-;:14;;5651:1;5638:14;:::i;:::-;5628:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5628:25:0;;5606:47;;-1:-1:-1;;;5664:6:0;5671:1;5664:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5664:15:0;;;;;;;;;-1:-1:-1;;;5690:6:0;5697:1;5690:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5690:15:0;;;;;;;;-1:-1:-1;5721:9:0;5733:10;5737:6;5733:1;:10;:::i;:::-;:14;;5746:1;5733:14;:::i;:::-;5721:26;;5716:135;5753:1;5749;:5;5716:135;;;-1:-1:-1;;;5801:5:0;5809:3;5801:11;5788:25;;;;;;;:::i;:::-;;;;5776:6;5783:1;5776:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;5776:37:0;;;;;;;;-1:-1:-1;5838:1:0;5828:11;;;;;5756:3;;;:::i;:::-;;;5716:135;;;-1:-1:-1;5869:10:0;;5861:55;;;;-1:-1:-1;;;5861:55:0;;6078:2:1;5861:55:0;;;6060:21:1;;;6097:18;;;6090:30;6156:34;6136:18;;;6129:62;6208:18;;5861:55:0;5876:356:1;23876:229:0;24013:12;24045:52;24067:6;24075:4;24081:1;24084:12;24013;21393:20;;25283:60;;;;-1:-1:-1;;;25283:60:0;;12694:2:1;25283:60:0;;;12676:21:1;12733:2;12713:18;;;12706:30;12772:31;12752:18;;;12745:59;12821:18;;25283:60:0;12492:353:1;25283:60:0;25357:12;25371:23;25398:6;-1:-1:-1;;;;;25398:11:0;25417:5;25424:4;25398:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:73;;;;25447:51;25464:7;25473:10;25485:12;25447:16;:51::i;:::-;25440:58;24996:510;-1:-1:-1;;;;;;;24996:510:0:o;27682:712::-;27832:12;27861:7;27857:530;;;-1:-1:-1;27892:10:0;27885:17;;27857:530;28006:17;;:21;28002:374;;28204:10;28198:17;28265:15;28252:10;28248:2;28244:19;28237:44;28002:374;28347:12;28340:20;;-1:-1:-1;;;28340:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:60;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;-1:-1:-1;1673:23:1;;1522:180;-1:-1:-1;1522:180:1:o;1707:254::-;1775:6;1783;1836:2;1824:9;1815:7;1811:23;1807:32;1804:52;;;1852:1;1849;1842:12;1804:52;1888:9;1875:23;1865:33;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;1966:248::-;2034:6;2042;2095:2;2083:9;2074:7;2070:23;2066:32;2063:52;;;2111:1;2108;2101:12;2063:52;-1:-1:-1;;2134:23:1;;;2204:2;2189:18;;;2176:32;;-1:-1:-1;1966:248:1:o;2219:286::-;2277:6;2330:2;2318:9;2309:7;2305:23;2301:32;2298:52;;;2346:1;2343;2336:12;2298:52;2372:23;;-1:-1:-1;;;;;;2424:32:1;;2414:43;;2404:71;;2471:1;2468;2461:12;2510:274;2639:3;2677:6;2671:13;2693:53;2739:6;2734:3;2727:4;2719:6;2715:17;2693:53;:::i;:::-;2762:16;;;;;2510:274;-1:-1:-1;;2510:274:1:o;2789:786::-;3200:25;3195:3;3188:38;3170:3;3255:6;3249:13;3271:62;3326:6;3321:2;3316:3;3312:12;3305:4;3297:6;3293:17;3271:62;:::i;:::-;-1:-1:-1;;;3392:2:1;3352:16;;;3384:11;;;3377:40;3442:13;;3464:63;3442:13;3513:2;3505:11;;3498:4;3486:17;;3464:63;:::i;:::-;3547:17;3566:2;3543:26;;2789:786;-1:-1:-1;;;;2789:786:1:o;5130:383::-;5279:2;5268:9;5261:21;5242:4;5311:6;5305:13;5354:6;5349:2;5338:9;5334:18;5327:34;5370:66;5429:6;5424:2;5413:9;5409:18;5404:2;5396:6;5392:15;5370:66;:::i;:::-;5497:2;5476:15;-1:-1:-1;;5472:29:1;5457:45;;;;5504:2;5453:54;;5130:383;-1:-1:-1;;5130:383:1:o;6641:346::-;6843:2;6825:21;;;6882:2;6862:18;;;6855:30;-1:-1:-1;;;6916:2:1;6901:18;;6894:52;6978:2;6963:18;;6641:346::o;7395:405::-;7597:2;7579:21;;;7636:2;7616:18;;;7609:30;7675:34;7670:2;7655:18;;7648:62;-1:-1:-1;;;7741:2:1;7726:18;;7719:39;7790:3;7775:19;;7395:405::o;9713:402::-;9915:2;9897:21;;;9954:2;9934:18;;;9927:30;9993:34;9988:2;9973:18;;9966:62;-1:-1:-1;;;10059:2:1;10044:18;;10037:36;10105:3;10090:19;;9713:402::o;11742:340::-;11944:2;11926:21;;;11983:2;11963:18;;;11956:30;-1:-1:-1;;;12017:2:1;12002:18;;11995:46;12073:2;12058:18;;11742:340::o;15918:128::-;15958:3;15989:1;15985:6;15982:1;15979:13;15976:39;;;15995:18;;:::i;:::-;-1:-1:-1;16031:9:1;;15918:128::o;16051:168::-;16091:7;16157:1;16153;16149:6;16145:14;16142:1;16139:21;16134:1;16127:9;16120:17;16116:45;16113:71;;;16164:18;;:::i;:::-;-1:-1:-1;16204:9:1;;16051:168::o;16224:125::-;16264:4;16292:1;16289;16286:8;16283:34;;;16297:18;;:::i;:::-;-1:-1:-1;16334:9:1;;16224:125::o;16354:258::-;16426:1;16436:113;16450:6;16447:1;16444:13;16436:113;;;16526:11;;;16520:18;16507:11;;;16500:39;16472:2;16465:10;16436:113;;;16567:6;16564:1;16561:13;16558:48;;;-1:-1:-1;;16602:1:1;16584:16;;16577:27;16354:258::o;16617:136::-;16656:3;16684:5;16674:39;;16693:18;;:::i;:::-;-1:-1:-1;;;16729:18:1;;16617:136::o;16758:380::-;16837:1;16833:12;;;;16880;;;16901:61;;16955:4;16947:6;16943:17;16933:27;;16901:61;17008:2;17000:6;16997:14;16977:18;16974:38;16971:161;;;17054:10;17049:3;17045:20;17042:1;17035:31;17089:4;17086:1;17079:15;17117:4;17114:1;17107:15;16971:161;;16758:380;;;:::o;17143:127::-;17204:10;17199:3;17195:20;17192:1;17185:31;17235:4;17232:1;17225:15;17259:4;17256:1;17249:15;17275:127;17336:10;17331:3;17327:20;17324:1;17317:31;17367:4;17364:1;17357:15;17391:4;17388:1;17381:15;17407:127;17468:10;17463:3;17459:20;17456:1;17449:31;17499:4;17496:1;17489:15;17523:4;17520:1;17513:15
Swarm Source
ipfs://32b10d7d553dc34bc33c49e41d6fd73eae18c0a2b740640491ac05423e107c0b