ETH Price: $2,629.23 (-0.25%)
Gas: 2 Gwei

Token

Wrapped Monero (WXMR)
 

Overview

Max Total Supply

7,000.00000000000000011 WXMR

Holders

185

Market

Price

$153.73 @ 0.058469 ETH (-0.02%)

Onchain Market Cap

$1,076,101.98

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.741156385519452917 WXMR

Value
$113.94 ( ~0.0433359059287088 Eth) [0.0106%]
0x3B199445567B454707345126E75788acc29b6F63
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Wrapped Monero, brings XMR to the Ethereum network with all the flexibility of an ERC-20 token. Wrapped Monero (WXMR) is backed 1:1 by Monero and secured by crypto custodian BTSE.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WXMR

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-27
*/

// File: openzeppelin-solidity/contracts/utils/EnumerableSet.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;



/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: openzeppelin-solidity/contracts/utils/Address.sol





/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: openzeppelin-solidity/contracts/GSN/Context.sol





/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/access/AccessControl.sol








/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: openzeppelin-solidity/contracts/utils/Pausable.sol






/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol





/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol





/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol








/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Pausable.sol







/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol







/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}


/* main implementation starts here */

contract WXMR is  ERC20,ERC20Pausable,ERC20Burnable,AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
 
    mapping (address => bool) public isBlackListed;
    
    constructor() public  ERC20("Wrapped Monero","WXMR")   {
        
        address adminAddress = 0x2c3D23d31f43dCd75D9623254CAA62e5C9dF7351;
        _setupRole(DEFAULT_ADMIN_ROLE, adminAddress);
        _setupRole(MINTER_ROLE, adminAddress);
        _setupRole(PAUSER_ROLE, adminAddress);
        _setupRole(BURNER_ROLE, adminAddress);
    }
    function addBlackList (address _evilUser) public  {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "must have admin to blacklist"); 
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
      
    }

    function removeBlackList (address _clearedUser) public  {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "must have admin to remove blacklist"); 
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function burn(uint256 amount) public  override {
        require(hasRole(BURNER_ROLE, msg.sender), "must have burner role to burn"); 
        _burn( msg.sender, amount);
    }

     function burnFrom(address from, uint256 amount) public  override {
        require(hasRole(BURNER_ROLE, msg.sender), "must have burner role to burn"); 
        _burn(from, amount);
    }
 
    function mint(address to, uint256 amount) public{
        require(hasRole(MINTER_ROLE, msg.sender), "must have minter role to mint");
        _mint(to, amount);
    }

    function pause() public {
        require(hasRole(PAUSER_ROLE, msg.sender), "must have pauser role to pause");
        _pause();
    }

    function unpause() public {
        require(hasRole(PAUSER_ROLE, msg.sender), "must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override (ERC20,ERC20Pausable) {
        require(!isBlackListed[from], "Sender address is blacklisted");
        require(!isBlackListed[to], "Receiver address is blacklisted");
        super._beforeTokenTransfer(from, to, amount);
    }
    
    event AddedBlackList(address _user);
    event RemovedBlackList(address _user);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_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":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600e81526d57726170706564204d6f6e65726f60901b6020808301918252835180850190945260048452632bac26a960e11b908401528151919291620000649160039162000254565b5080516200007a90600490602084019062000254565b50506005805461ff001960ff1990911660121716905550732c3d23d31f43dcd75d9623254caa62e5c9df7351620000b36000826200013e565b620000df7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200013e565b6200010b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a826200013e565b620001377f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848826200013e565b50620002f0565b6200014a82826200014e565b5050565b60008281526006602090815260409091206200017591839062000f7e620001c9821b17901c565b156200014a5762000185620001e9565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620001e0836001600160a01b038416620001ed565b90505b92915050565b3390565b6000620001fb83836200023c565b6200023357508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001e3565b506000620001e3565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200029757805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c7578251825591602001919060010190620002aa565b50620002d5929150620002d9565b5090565b5b80821115620002d55760008155600101620002da565b611cec80620003006000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146105bd578063e47d6060146105eb578063e4997dc514610611578063e63ab1e914610637576101e5565b8063a9059cbb14610540578063ca15c8731461056c578063d539139314610589578063d547741f14610591576101e5565b806391d14854116100de57806391d14854146104d857806395d89b4114610504578063a217fddf1461050c578063a457c2d714610514576101e5565b806370a082311461043f57806379cc6790146104655780638456cb59146104915780639010d07c14610499576101e5565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146103e657806340c10f19146103ee57806342966c681461041a5780635c975abb14610437576101e5565b80632f2ff15d14610344578063313ce5671461037057806336568abe1461038e57806339509351146103ba576101e5565b806318160ddd116101c357806318160ddd146102cf57806323b872dd146102e9578063248a9ca31461031f578063282c51f31461033c576101e5565b806306fdde03146101ea578063095ea7b3146102675780630ecb93c0146102a7575b600080fd5b6101f261063f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356106f3565b604080519115158252519081900360200190f35b6102cd600480360360208110156102bd57600080fd5b50356001600160a01b0316610711565b005b6102d76107e6565b60408051918252519081900360200190f35b610293600480360360608110156102ff57600080fd5b506001600160a01b038135811691602081013590911690604001356107ec565b6102d76004803603602081101561033557600080fd5b5035610873565b6102d7610888565b6102cd6004803603604081101561035a57600080fd5b50803590602001356001600160a01b03166108ac565b610378610918565b6040805160ff9092168252519081900360200190f35b6102cd600480360360408110156103a457600080fd5b50803590602001356001600160a01b0316610921565b610293600480360360408110156103d057600080fd5b506001600160a01b038135169060200135610982565b6102cd6109d0565b6102cd6004803603604081101561040457600080fd5b506001600160a01b038135169060200135610a55565b6102cd6004803603602081101561043057600080fd5b5035610ada565b610293610b62565b6102d76004803603602081101561045557600080fd5b50356001600160a01b0316610b70565b6102cd6004803603604081101561047b57600080fd5b506001600160a01b038135169060200135610b8b565b6102cd610c10565b6104bc600480360360408110156104af57600080fd5b5080359060200135610c93565b604080516001600160a01b039092168252519081900360200190f35b610293600480360360408110156104ee57600080fd5b50803590602001356001600160a01b0316610cb2565b6101f2610cca565b6102d7610d49565b6102936004803603604081101561052a57600080fd5b506001600160a01b038135169060200135610d4e565b6102936004803603604081101561055657600080fd5b506001600160a01b038135169060200135610db6565b6102d76004803603602081101561058257600080fd5b5035610dca565b6102d7610de1565b6102cd600480360360408110156105a757600080fd5b50803590602001356001600160a01b0316610e05565b6102d7600480360360408110156105d357600080fd5b506001600160a01b0381358116916020013516610e5e565b6102936004803603602081101561060157600080fd5b50356001600160a01b0316610e89565b6102cd6004803603602081101561062757600080fd5b50356001600160a01b0316610e9e565b6102d7610f5a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b6000610707610700610f93565b8484610f97565b5060015b92915050565b61071c600033610cb2565b61076d576040805162461bcd60e51b815260206004820152601c60248201527f6d75737420686176652061646d696e20746f20626c61636b6c69737400000000604482015290519081900360640190fd5b6001600160a01b03811660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b60006107f9848484611083565b61086984610805610f93565b61086485604051806060016040528060288152602001611b84602891396001600160a01b038a16600090815260016020526040812090610843610f93565b6001600160a01b0316815260208101919091526040016000205491906111de565b610f97565b5060019392505050565b60009081526006602052604090206002015490565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6000828152600660205260409020600201546108cf906108ca610f93565b610cb2565b61090a5760405162461bcd60e51b815260040180806020018281038252602f815260200180611abb602f913960400191505060405180910390fd5b6109148282611275565b5050565b60055460ff1690565b610929610f93565b6001600160a01b0316816001600160a01b0316146109785760405162461bcd60e51b815260040180806020018281038252602f815260200180611c5e602f913960400191505060405180910390fd5b61091482826112de565b600061070761098f610f93565b8461086485600160006109a0610f93565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611347565b6109fa7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610cb2565b610a4b576040805162461bcd60e51b815260206004820181905260248201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365604482015290519081900360640190fd5b610a536113a1565b565b610a7f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610cb2565b610ad0576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000604482015290519081900360640190fd5b610914828261146b565b610b047f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610cb2565b610b55576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206275726e657220726f6c6520746f206275726e000000604482015290519081900360640190fd5b610b5f338261155b565b50565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b610bb57f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610cb2565b610c06576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206275726e657220726f6c6520746f206275726e000000604482015290519081900360640190fd5b610914828261155b565b610c3a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610cb2565b610c8b576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000604482015290519081900360640190fd5b610a53611657565b6000828152600660205260408120610cab9083611709565b9392505050565b6000828152600660205260408120610cab9083611715565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e95780601f106106be576101008083540402835291602001916106e9565b600081565b6000610707610d5b610f93565b8461086485604051806060016040528060258152602001611c396025913960016000610d85610f93565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111de565b6000610707610dc3610f93565b8484611083565b600081815260066020526040812061070b9061172a565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b600082815260066020526040902060020154610e23906108ca610f93565b6109785760405162461bcd60e51b8152600401808060200182810382526030815260200180611b546030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60076020526000908152604090205460ff1681565b610ea9600033610cb2565b610ee45760405162461bcd60e51b8152600401808060200182810382526023815260200180611bac6023913960400191505060405180910390fd5b6001600160a01b03811660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000610cab836001600160a01b038416611735565b3390565b6001600160a01b038316610fdc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c156024913960400191505060405180910390fd5b6001600160a01b0382166110215760405162461bcd60e51b8152600401808060200182810382526022815260200180611b0c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110c85760405162461bcd60e51b8152600401808060200182810382526025815260200180611bf06025913960400191505060405180910390fd5b6001600160a01b03821661110d5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a986023913960400191505060405180910390fd5b61111883838361177f565b61115581604051806060016040528060268152602001611b2e602691396001600160a01b03861660009081526020819052604090205491906111de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111849082611347565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561126d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561123257818101518382015260200161121a565b50505050905090810190601f16801561125f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082815260066020526040902061128d9082610f7e565b156109145761129a610f93565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206112f6908261186b565b1561091457611303610f93565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610cab576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff166113fd576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61144e610f93565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166114c6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114d26000838361177f565b6002546114df9082611347565b6002556001600160a01b0382166000908152602081905260409020546115059082611347565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166115a05760405162461bcd60e51b8152600401808060200182810382526021815260200180611bcf6021913960400191505060405180910390fd5b6115ac8260008361177f565b6115e981604051806060016040528060228152602001611aea602291396001600160a01b03851660009081526020819052604090205491906111de565b6001600160a01b03831660009081526020819052604090205560025461160f9082611880565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600554610100900460ff16156116b4576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861144e610f93565b6000610cab83836118c2565b6000610cab836001600160a01b038416611926565b600061070b8261193e565b60006117418383611926565b6117775750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561070b565b50600061070b565b6001600160a01b03831660009081526007602052604090205460ff16156117ed576040805162461bcd60e51b815260206004820152601d60248201527f53656e646572206164647265737320697320626c61636b6c6973746564000000604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205460ff161561185b576040805162461bcd60e51b815260206004820152601f60248201527f5265636569766572206164647265737320697320626c61636b6c697374656400604482015290519081900360640190fd5b611866838383611942565b505050565b6000610cab836001600160a01b038416611991565b6000610cab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111de565b815460009082106119045760405162461bcd60e51b8152600401808060200182810382526022815260200180611a766022913960400191505060405180910390fd5b82600001828154811061191357fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b61194d838383611866565b611955610b62565b156118665760405162461bcd60e51b815260040180806020018281038252602a815260200180611c8d602a913960400191505060405180910390fd5b60008181526001830160205260408120548015611a6b5783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106119e257fe5b90600052602060002001549050808760000184815481106119ff57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611a2f57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061070b565b600091505061070b56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656d75737420686176652061646d696e20746f2072656d6f766520626c61636b6c69737445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220c1e7af31112074a8738a15d34a16bf275c95a3fd2382c85753fa5d1145f990ca64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146105bd578063e47d6060146105eb578063e4997dc514610611578063e63ab1e914610637576101e5565b8063a9059cbb14610540578063ca15c8731461056c578063d539139314610589578063d547741f14610591576101e5565b806391d14854116100de57806391d14854146104d857806395d89b4114610504578063a217fddf1461050c578063a457c2d714610514576101e5565b806370a082311461043f57806379cc6790146104655780638456cb59146104915780639010d07c14610499576101e5565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146103e657806340c10f19146103ee57806342966c681461041a5780635c975abb14610437576101e5565b80632f2ff15d14610344578063313ce5671461037057806336568abe1461038e57806339509351146103ba576101e5565b806318160ddd116101c357806318160ddd146102cf57806323b872dd146102e9578063248a9ca31461031f578063282c51f31461033c576101e5565b806306fdde03146101ea578063095ea7b3146102675780630ecb93c0146102a7575b600080fd5b6101f261063f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356106f3565b604080519115158252519081900360200190f35b6102cd600480360360208110156102bd57600080fd5b50356001600160a01b0316610711565b005b6102d76107e6565b60408051918252519081900360200190f35b610293600480360360608110156102ff57600080fd5b506001600160a01b038135811691602081013590911690604001356107ec565b6102d76004803603602081101561033557600080fd5b5035610873565b6102d7610888565b6102cd6004803603604081101561035a57600080fd5b50803590602001356001600160a01b03166108ac565b610378610918565b6040805160ff9092168252519081900360200190f35b6102cd600480360360408110156103a457600080fd5b50803590602001356001600160a01b0316610921565b610293600480360360408110156103d057600080fd5b506001600160a01b038135169060200135610982565b6102cd6109d0565b6102cd6004803603604081101561040457600080fd5b506001600160a01b038135169060200135610a55565b6102cd6004803603602081101561043057600080fd5b5035610ada565b610293610b62565b6102d76004803603602081101561045557600080fd5b50356001600160a01b0316610b70565b6102cd6004803603604081101561047b57600080fd5b506001600160a01b038135169060200135610b8b565b6102cd610c10565b6104bc600480360360408110156104af57600080fd5b5080359060200135610c93565b604080516001600160a01b039092168252519081900360200190f35b610293600480360360408110156104ee57600080fd5b50803590602001356001600160a01b0316610cb2565b6101f2610cca565b6102d7610d49565b6102936004803603604081101561052a57600080fd5b506001600160a01b038135169060200135610d4e565b6102936004803603604081101561055657600080fd5b506001600160a01b038135169060200135610db6565b6102d76004803603602081101561058257600080fd5b5035610dca565b6102d7610de1565b6102cd600480360360408110156105a757600080fd5b50803590602001356001600160a01b0316610e05565b6102d7600480360360408110156105d357600080fd5b506001600160a01b0381358116916020013516610e5e565b6102936004803603602081101561060157600080fd5b50356001600160a01b0316610e89565b6102cd6004803603602081101561062757600080fd5b50356001600160a01b0316610e9e565b6102d7610f5a565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e95780601f106106be576101008083540402835291602001916106e9565b820191906000526020600020905b8154815290600101906020018083116106cc57829003601f168201915b5050505050905090565b6000610707610700610f93565b8484610f97565b5060015b92915050565b61071c600033610cb2565b61076d576040805162461bcd60e51b815260206004820152601c60248201527f6d75737420686176652061646d696e20746f20626c61636b6c69737400000000604482015290519081900360640190fd5b6001600160a01b03811660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b60006107f9848484611083565b61086984610805610f93565b61086485604051806060016040528060288152602001611b84602891396001600160a01b038a16600090815260016020526040812090610843610f93565b6001600160a01b0316815260208101919091526040016000205491906111de565b610f97565b5060019392505050565b60009081526006602052604090206002015490565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6000828152600660205260409020600201546108cf906108ca610f93565b610cb2565b61090a5760405162461bcd60e51b815260040180806020018281038252602f815260200180611abb602f913960400191505060405180910390fd5b6109148282611275565b5050565b60055460ff1690565b610929610f93565b6001600160a01b0316816001600160a01b0316146109785760405162461bcd60e51b815260040180806020018281038252602f815260200180611c5e602f913960400191505060405180910390fd5b61091482826112de565b600061070761098f610f93565b8461086485600160006109a0610f93565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611347565b6109fa7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610cb2565b610a4b576040805162461bcd60e51b815260206004820181905260248201527f6d75737420686176652070617573657220726f6c6520746f20756e7061757365604482015290519081900360640190fd5b610a536113a1565b565b610a7f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610cb2565b610ad0576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206d696e74657220726f6c6520746f206d696e74000000604482015290519081900360640190fd5b610914828261146b565b610b047f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610cb2565b610b55576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206275726e657220726f6c6520746f206275726e000000604482015290519081900360640190fd5b610b5f338261155b565b50565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b610bb57f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610cb2565b610c06576040805162461bcd60e51b815260206004820152601d60248201527f6d7573742068617665206275726e657220726f6c6520746f206275726e000000604482015290519081900360640190fd5b610914828261155b565b610c3a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610cb2565b610c8b576040805162461bcd60e51b815260206004820152601e60248201527f6d75737420686176652070617573657220726f6c6520746f2070617573650000604482015290519081900360640190fd5b610a53611657565b6000828152600660205260408120610cab9083611709565b9392505050565b6000828152600660205260408120610cab9083611715565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e95780601f106106be576101008083540402835291602001916106e9565b600081565b6000610707610d5b610f93565b8461086485604051806060016040528060258152602001611c396025913960016000610d85610f93565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111de565b6000610707610dc3610f93565b8484611083565b600081815260066020526040812061070b9061172a565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b600082815260066020526040902060020154610e23906108ca610f93565b6109785760405162461bcd60e51b8152600401808060200182810382526030815260200180611b546030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60076020526000908152604090205460ff1681565b610ea9600033610cb2565b610ee45760405162461bcd60e51b8152600401808060200182810382526023815260200180611bac6023913960400191505060405180910390fd5b6001600160a01b03811660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000610cab836001600160a01b038416611735565b3390565b6001600160a01b038316610fdc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c156024913960400191505060405180910390fd5b6001600160a01b0382166110215760405162461bcd60e51b8152600401808060200182810382526022815260200180611b0c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110c85760405162461bcd60e51b8152600401808060200182810382526025815260200180611bf06025913960400191505060405180910390fd5b6001600160a01b03821661110d5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a986023913960400191505060405180910390fd5b61111883838361177f565b61115581604051806060016040528060268152602001611b2e602691396001600160a01b03861660009081526020819052604090205491906111de565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111849082611347565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561126d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561123257818101518382015260200161121a565b50505050905090810190601f16801561125f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082815260066020526040902061128d9082610f7e565b156109145761129a610f93565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206112f6908261186b565b1561091457611303610f93565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600082820183811015610cab576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600554610100900460ff166113fd576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61144e610f93565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166114c6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114d26000838361177f565b6002546114df9082611347565b6002556001600160a01b0382166000908152602081905260409020546115059082611347565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166115a05760405162461bcd60e51b8152600401808060200182810382526021815260200180611bcf6021913960400191505060405180910390fd5b6115ac8260008361177f565b6115e981604051806060016040528060228152602001611aea602291396001600160a01b03851660009081526020819052604090205491906111de565b6001600160a01b03831660009081526020819052604090205560025461160f9082611880565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600554610100900460ff16156116b4576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861144e610f93565b6000610cab83836118c2565b6000610cab836001600160a01b038416611926565b600061070b8261193e565b60006117418383611926565b6117775750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561070b565b50600061070b565b6001600160a01b03831660009081526007602052604090205460ff16156117ed576040805162461bcd60e51b815260206004820152601d60248201527f53656e646572206164647265737320697320626c61636b6c6973746564000000604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205460ff161561185b576040805162461bcd60e51b815260206004820152601f60248201527f5265636569766572206164647265737320697320626c61636b6c697374656400604482015290519081900360640190fd5b611866838383611942565b505050565b6000610cab836001600160a01b038416611991565b6000610cab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111de565b815460009082106119045760405162461bcd60e51b8152600401808060200182810382526022815260200180611a766022913960400191505060405180910390fd5b82600001828154811061191357fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b61194d838383611866565b611955610b62565b156118665760405162461bcd60e51b815260040180806020018281038252602a815260200180611c8d602a913960400191505060405180910390fd5b60008181526001830160205260408120548015611a6b5783547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80830191908101906000908790839081106119e257fe5b90600052602060002001549050808760000184815481106119ff57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611a2f57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061070b565b600091505061070b56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63656d75737420686176652061646d696e20746f2072656d6f766520626c61636b6c69737445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220c1e7af31112074a8738a15d34a16bf275c95a3fd2382c85753fa5d1145f990ca64736f6c634300060c0033

Deployed Bytecode Sourcemap

48656:2472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37764:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39870:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39870:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49352:236;;;;;;;;;;;;;;;;-1:-1:-1;49352:236:0;-1:-1:-1;;;;;49352:236:0;;:::i;:::-;;38839:100;;;:::i;:::-;;;;;;;;;;;;;;;;40521:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40521:321:0;;;;;;;;;;;;;;;;;:::i;21996:114::-;;;;;;;;;;;;;;;;-1:-1:-1;21996:114:0;;:::i;48867:62::-;;;:::i;22372:227::-;;;;;;;;;;;;;;;;-1:-1:-1;22372:227:0;;;;;;-1:-1:-1;;;;;22372:227:0;;:::i;38691:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23581:209;;;;;;;;;;;;;;;;-1:-1:-1;23581:209:0;;;;;;-1:-1:-1;;;;;23581:209:0;;:::i;41251:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41251:218:0;;;;;;;;:::i;50561:143::-;;;:::i;50239:169::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50239:169:0;;;;;;;;:::i;49854:178::-;;;;;;;;;;;;;;;;-1:-1:-1;49854:178:0;;:::i;26285:78::-;;;:::i;39002:119::-;;;;;;;;;;;;;;;;-1:-1:-1;39002:119:0;-1:-1:-1;;;;;39002:119:0;;:::i;50041:189::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50041:189:0;;;;;;;;:::i;50416:137::-;;;:::i;21669:138::-;;;;;;;;;;;;;;;;-1:-1:-1;21669:138:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;21669:138:0;;;;;;;;;;;;;;20630:139;;;;;;;;;;;;;;;;-1:-1:-1;20630:139:0;;;;;;-1:-1:-1;;;;;20630:139:0;;:::i;37966:87::-;;;:::i;19375:49::-;;;:::i;41972:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41972:269:0;;;;;;;;:::i;39334:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39334:175:0;;;;;;;;:::i;20943:127::-;;;;;;;;;;;;;;;;-1:-1:-1;20943:127:0;;:::i;48729:62::-;;;:::i;22844:230::-;;;;;;;;;;;;;;;;-1:-1:-1;22844:230:0;;;;;;-1:-1:-1;;;;;22844:230:0;;:::i;39572:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39572:151:0;;;;;;;;;;:::i;48939:46::-;;;;;;;;;;;;;;;;-1:-1:-1;48939:46:0;-1:-1:-1;;;;;48939:46:0;;:::i;49596:250::-;;;;;;;;;;;;;;;;-1:-1:-1;49596:250:0;-1:-1:-1;;;;;49596:250:0;;:::i;48798:62::-;;;:::i;37764:83::-;37834:5;37827:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37801:13;;37827:12;;37834:5;;37827:12;;37834:5;37827:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37764:83;:::o;39870:169::-;39953:4;39970:39;39979:12;:10;:12::i;:::-;39993:7;40002:6;39970:8;:39::i;:::-;-1:-1:-1;40027:4:0;39870:169;;;;;:::o;49352:236::-;49421:39;19420:4;49449:10;49421:7;:39::i;:::-;49413:80;;;;;-1:-1:-1;;;49413:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49505:24:0;;;;;;:13;:24;;;;;;;;;:31;;;;49532:4;49505:31;;;49547:25;;;;;;;;;;;;;;;;;49352:236;:::o;38839:100::-;38919:12;;38839:100;:::o;40521:321::-;40627:4;40644:36;40654:6;40662:9;40673:6;40644:9;:36::i;:::-;40691:121;40700:6;40708:12;:10;:12::i;:::-;40722:89;40760:6;40722:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40722:19:0;;;;;;:11;:19;;;;;;40742:12;:10;:12::i;:::-;-1:-1:-1;;;;;40722:33:0;;;;;;;;;;;;-1:-1:-1;40722:33:0;;;:89;:37;:89::i;:::-;40691:8;:121::i;:::-;-1:-1:-1;40830:4:0;40521:321;;;;;:::o;21996:114::-;22053:7;22080:12;;;:6;:12;;;;;:22;;;;21996:114::o;48867:62::-;48905:24;48867:62;:::o;22372:227::-;22464:12;;;;:6;:12;;;;;:22;;;22456:45;;22488:12;:10;:12::i;:::-;22456:7;:45::i;:::-;22448:105;;;;-1:-1:-1;;;22448:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22566:25;22577:4;22583:7;22566:10;:25::i;:::-;22372:227;;:::o;38691:83::-;38757:9;;;;38691:83;:::o;23581:209::-;23679:12;:10;:12::i;:::-;-1:-1:-1;;;;;23668:23:0;:7;-1:-1:-1;;;;;23668:23:0;;23660:83;;;;-1:-1:-1;;;23660:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23756:26;23768:4;23774:7;23756:11;:26::i;41251:218::-;41339:4;41356:83;41365:12;:10;:12::i;:::-;41379:7;41388:50;41427:10;41388:11;:25;41400:12;:10;:12::i;:::-;-1:-1:-1;;;;;41388:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;41388:25:0;;;:34;;;;;;;;;;;:38;:50::i;50561:143::-;50606:32;48836:24;50627:10;50606:7;:32::i;:::-;50598:77;;;;;-1:-1:-1;;;50598:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50686:10;:8;:10::i;:::-;50561:143::o;50239:169::-;50306:32;48767:24;50327:10;50306:7;:32::i;:::-;50298:74;;;;;-1:-1:-1;;;50298:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50383:17;50389:2;50393:6;50383:5;:17::i;49854:178::-;49920:32;48905:24;49941:10;49920:7;:32::i;:::-;49912:74;;;;;-1:-1:-1;;;49912:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;49998:26;50005:10;50017:6;49998:5;:26::i;:::-;49854:178;:::o;26285:78::-;26348:7;;;;;;;;26285:78::o;39002:119::-;-1:-1:-1;;;;;39095:18:0;39068:7;39095:18;;;;;;;;;;;;39002:119::o;50041:189::-;50125:32;48905:24;50146:10;50125:7;:32::i;:::-;50117:74;;;;;-1:-1:-1;;;50117:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50203:19;50209:4;50215:6;50203:5;:19::i;50416:137::-;50459:32;48836:24;50480:10;50459:7;:32::i;:::-;50451:75;;;;;-1:-1:-1;;;50451:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50537:8;:6;:8::i;21669:138::-;21742:7;21769:12;;;:6;:12;;;;;:30;;21793:5;21769:23;:30::i;:::-;21762:37;21669:138;-1:-1:-1;;;21669:138:0:o;20630:139::-;20699:4;20723:12;;;:6;:12;;;;;:38;;20753:7;20723:29;:38::i;37966:87::-;38038:7;38031:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38005:13;;38031:14;;38038:7;;38031:14;;38038:7;38031:14;;;;;;;;;;;;;;;;;;;;;;;;19375:49;19420:4;19375:49;:::o;41972:269::-;42065:4;42082:129;42091:12;:10;:12::i;:::-;42105:7;42114:96;42153:15;42114:96;;;;;;;;;;;;;;;;;:11;:25;42126:12;:10;:12::i;:::-;-1:-1:-1;;;;;42114:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;42114:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;39334:175::-;39420:4;39437:42;39447:12;:10;:12::i;:::-;39461:9;39472:6;39437:9;:42::i;20943:127::-;21006:7;21033:12;;;:6;:12;;;;;:29;;:27;:29::i;48729:62::-;48767:24;48729:62;:::o;22844:230::-;22937:12;;;;:6;:12;;;;;:22;;;22929:45;;22961:12;:10;:12::i;22929:45::-;22921:106;;;;-1:-1:-1;;;22921:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39572:151;-1:-1:-1;;;;;39688:18:0;;;39661:7;39688:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39572:151::o;48939:46::-;;;;;;;;;;;;;;;:::o;49596:250::-;49671:39;19420:4;49699:10;49671:7;:39::i;:::-;49663:87;;;;-1:-1:-1;;;49663:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49762:27:0;;49792:5;49762:27;;;:13;:27;;;;;;;;;:35;;;;;;49808:30;;;;;;;;;;;;;;;;;49596:250;:::o;48798:62::-;48836:24;48798:62;:::o;6692:143::-;6762:4;6786:41;6791:3;-1:-1:-1;;;;;6811:14:0;;6786:4;:41::i;17331:106::-;17419:10;17331:106;:::o;45119:346::-;-1:-1:-1;;;;;45221:19:0;;45213:68;;;;-1:-1:-1;;;45213:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45300:21:0;;45292:68;;;;-1:-1:-1;;;45292:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45373:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;45425:32;;;;;;;;;;;;;;;;;45119:346;;;:::o;42731:539::-;-1:-1:-1;;;;;42837:20:0;;42829:70;;;;-1:-1:-1;;;42829:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42918:23:0;;42910:71;;;;-1:-1:-1;;;42910:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42994:47;43015:6;43023:9;43034:6;42994:20;:47::i;:::-;43074:71;43096:6;43074:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43074:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;43054:17:0;;;:9;:17;;;;;;;;;;;:91;;;;43179:20;;;;;;;:32;;43204:6;43179:24;:32::i;:::-;-1:-1:-1;;;;;43156:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;43227:35;;;;;;;43156:20;;43227:35;;;;;;;;;;;;;42731:539;;;:::o;32062:192::-;32148:7;32184:12;32176:6;;;;32168:29;;;;-1:-1:-1;;;32168:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;32220:5:0;;;32062:192::o;24824:188::-;24898:12;;;;:6;:12;;;;;:33;;24923:7;24898:24;:33::i;:::-;24894:111;;;24980:12;:10;:12::i;:::-;-1:-1:-1;;;;;24953:40:0;24971:7;-1:-1:-1;;;;;24953:40:0;24965:4;24953:40;;;;;;;;;;24824:188;;:::o;25020:192::-;25095:12;;;;:6;:12;;;;;:36;;25123:7;25095:27;:36::i;:::-;25091:114;;;25180:12;:10;:12::i;:::-;-1:-1:-1;;;;;25153:40:0;25171:7;-1:-1:-1;;;;;25153:40:0;25165:4;25153:40;;;;;;;;;;25020:192;;:::o;31159:181::-;31217:7;31249:5;;;31273:6;;;;31265:46;;;;;-1:-1:-1;;;31265:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;27334:120;26879:7;;;;;;;26871:40;;;;;-1:-1:-1;;;26871:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27393:7:::1;:15:::0;;;::::1;::::0;;27424:22:::1;27433:12;:10;:12::i;:::-;27424:22;::::0;;-1:-1:-1;;;;;27424:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;27334:120::o:0;43552:378::-;-1:-1:-1;;;;;43636:21:0;;43628:65;;;;;-1:-1:-1;;;43628:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;43706:49;43735:1;43739:7;43748:6;43706:20;:49::i;:::-;43783:12;;:24;;43800:6;43783:16;:24::i;:::-;43768:12;:39;-1:-1:-1;;;;;43839:18:0;;:9;:18;;;;;;;;;;;:30;;43862:6;43839:22;:30::i;:::-;-1:-1:-1;;;;;43818:18:0;;:9;:18;;;;;;;;;;;:51;;;;43885:37;;;;;;;43818:18;;:9;;43885:37;;;;;;;;;;43552:378;;:::o;44263:418::-;-1:-1:-1;;;;;44347:21:0;;44339:67;;;;-1:-1:-1;;;44339:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44419:49;44440:7;44457:1;44461:6;44419:20;:49::i;:::-;44502:68;44525:6;44502:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44502:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;44481:18:0;;:9;:18;;;;;;;;;;:89;44596:12;;:24;;44613:6;44596:16;:24::i;:::-;44581:12;:39;44636:37;;;;;;;;44662:1;;-1:-1:-1;;;;;44636:37:0;;;;;;;;;;;;44263:418;;:::o;27075:118::-;26603:7;;;;;;;26602:8;26594:37;;;;;-1:-1:-1;;;26594:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27135:7:::1;:14:::0;;;::::1;;;::::0;;27165:20:::1;27172:12;:10;:12::i;7951:149::-:0;8025:7;8068:22;8072:3;8084:5;8068:3;:22::i;7246:158::-;7326:4;7350:46;7360:3;-1:-1:-1;;;;;7380:14:0;;7350:9;:46::i;7490:117::-;7553:7;7580:19;7588:3;7580:7;:19::i;1756:414::-;1819:4;1841:21;1851:3;1856:5;1841:9;:21::i;:::-;1836:327;;-1:-1:-1;1879:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2062:18;;2040:19;;;:12;;;:19;;;;;;:40;;;;2095:11;;1836:327;-1:-1:-1;2146:5:0;2139:12;;50712:321;-1:-1:-1;;;;;50844:19:0;;;;;;:13;:19;;;;;;;;50843:20;50835:62;;;;;-1:-1:-1;;;50835:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50917:17:0;;;;;;:13;:17;;;;;;;;50916:18;50908:62;;;;;-1:-1:-1;;;50908:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50981:44;51008:4;51014:2;51018:6;50981:26;:44::i;:::-;50712:321;;;:::o;7011:149::-;7084:4;7108:44;7116:3;-1:-1:-1;;;;;7136:14:0;;7108:7;:44::i;31623:136::-;31681:7;31708:43;31712:1;31715;31708:43;;;;;;;;;;;;;;;;;:3;:43::i;4644:204::-;4739:18;;4711:7;;4739:26;-1:-1:-1;4731:73:0;;;;-1:-1:-1;;;4731:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4822:3;:11;;4834:5;4822:18;;;;;;;;;;;;;;;;4815:25;;4644:204;;;;:::o;3976:129::-;4049:4;4073:19;;;:12;;;;;:19;;;;;;:24;;;3976:129::o;4191:109::-;4274:18;;4191:109::o;47156:238::-;47265:44;47292:4;47298:2;47302:6;47265:26;:44::i;:::-;47331:8;:6;:8::i;:::-;47330:9;47322:64;;;;-1:-1:-1;;;47322:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2346:1544;2412:4;2551:19;;;:12;;;:19;;;;;;2587:15;;2583:1300;;3022:18;;2973:14;;;;;3022:22;;;;2949:21;;3022:3;;:22;;3309;;;;;;;;;;;;;;3289:42;;3455:9;3426:3;:11;;3438:13;3426:26;;;;;;;;;;;;;;;;;;;:38;;;;3532:23;;;3574:1;3532:12;;;:23;;;;;;3558:17;;;3532:43;;3684:17;;3532:3;;3684:17;;;;;;;;;;;;;;;;;;;;;;3779:3;:12;;:19;3792:5;3779:19;;;;;;;;;;;3772:26;;;3822:4;3815:11;;;;;;;;2583:1300;3866:5;3859:12;;;;

Swarm Source

ipfs://c1e7af31112074a8738a15d34a16bf275c95a3fd2382c85753fa5d1145f990ca
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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