ETH Price: $3,363.56 (-1.56%)
Gas: 7 Gwei

Token

POLKER (PKR)
 

Overview

Max Total Supply

1,000,000,000 PKR

Holders

5,020 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-2.47%)

Onchain Market Cap

$1,393,880.00

Circulating Supply Market Cap

$772,369.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
der.eth
Balance
71,296.920626203453464886 PKR

Value
$99.38 ( ~0.0295460591775304 Eth) [0.0071%]
0xA31DBF0435aF02F3B68eC7f985c9388E8AB1e47B
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A blockchain online poker game that uses Unreal Engine 4 for immersive and powerful gameplay while utilizing a provably fair system for truly transparent gameplay.

Market

Volume (24H):$1,366.44
Market Capitalization:$772,369.00
Circulating Supply:553,077,352.00 PKR
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Polker

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: PKR-ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC20.sol";
import "ERC20Burnable.sol";
import "ERC20Pausable.sol";
import "AccessControlEnumerable.sol";
import "Context.sol";

/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract Polker is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 1 of 14: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev 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 Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

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

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

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

        _revokeRole(role, account);
    }

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

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

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

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

File 2 of 14: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "AccessControl.sol";
import "EnumerableSet.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * 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 override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @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 override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

File 3 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 14: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * 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;

            if (lastIndex != toDeleteIndex) {
                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] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // 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) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

File 5 of 14: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 6 of 14: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 += amount;
        _balances[account] += 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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= 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 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 7 of 14: ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC20.sol";
import "Context.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 {
    /**
     * @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 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 8 of 14: ERC20Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC20.sol";
import "Pausable.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 9 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 10 of 14: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @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 11 of 14: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 12 of 14: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Context.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 () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual 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 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003b0238038062003b028339818101604052810190620000379190620004ee565b8181816005908051906020019062000051929190620003cc565b5080600690805190602001906200006a929190620003cc565b5050506000600760006101000a81548160ff021916908315150217905550620000ac6000801b620000a06200013660201b60201c565b6200013e60201b60201c565b620000ed7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000e16200013660201b60201c565b6200013e60201b60201c565b6200012e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001226200013660201b60201c565b6200013e60201b60201c565b5050620006d1565b600033905090565b6200015582826200018660201b62000efb1760201c565b6200018181600160008581526020019081526020016000206200019c60201b62000f091790919060201c565b505050565b620001988282620001d460201b60201c565b5050565b6000620001cc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002c560201b60201c565b905092915050565b620001e682826200033f60201b60201c565b620002c157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002666200013660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002d98383620003a960201b60201c565b6200033457826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000339565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003da90620005f6565b90600052602060002090601f016020900481019282620003fe57600085556200044a565b82601f106200041957805160ff19168380011785556200044a565b828001600101855582156200044a579182015b82811115620004495782518255916020019190600101906200042c565b5b5090506200045991906200045d565b5090565b5b80821115620004785760008160009055506001016200045e565b5090565b6000620004936200048d846200058a565b62000561565b905082815260208101848484011115620004ac57600080fd5b620004b9848285620005c0565b509392505050565b600082601f830112620004d357600080fd5b8151620004e58482602086016200047c565b91505092915050565b600080604083850312156200050257600080fd5b600083015167ffffffffffffffff8111156200051d57600080fd5b6200052b85828601620004c1565b925050602083015167ffffffffffffffff8111156200054957600080fd5b6200055785828601620004c1565b9150509250929050565b60006200056d62000580565b90506200057b82826200062c565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a762000691565b5b620005b382620006c0565b9050602081019050919050565b60005b83811015620005e0578082015181840152602081019050620005c3565b83811115620005f0576000848401525b50505050565b600060028204905060018216806200060f57607f821691505b6020821081141562000626576200062562000662565b5b50919050565b6200063782620006c0565b810181811067ffffffffffffffff8211171562000659576200065862000691565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61342180620006e16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061243b565b6105b5565b6040516101f09190612876565b60405180910390f35b61020161062f565b60405161020e91906128ac565b60405180910390f35b610231600480360381019061022c919061235e565b6106c1565b60405161023e9190612876565b60405180910390f35b61024f6106df565b60405161025c9190612b2e565b60405180910390f35b61027f600480360381019061027a919061230f565b6106e9565b60405161028c9190612876565b60405180910390f35b6102af60048036038101906102aa919061239a565b6107ea565b6040516102bc9190612891565b60405180910390f35b6102df60048036038101906102da91906123c3565b610809565b005b6102e961083d565b6040516102f69190612b49565b60405180910390f35b610319600480360381019061031491906123c3565b610846565b005b6103356004803603810190610330919061235e565b61087a565b6040516103429190612876565b60405180910390f35b610353610926565b005b61036f600480360381019061036a919061235e565b6109a0565b005b61038b60048036038101906103869190612464565b610a1e565b005b610395610a32565b6040516103a29190612876565b60405180910390f35b6103c560048036038101906103c091906122aa565b610a49565b6040516103d29190612b2e565b60405180910390f35b6103f560048036038101906103f0919061235e565b610a92565b005b6103ff610b16565b005b61041b600480360381019061041691906123ff565b610b90565b604051610428919061285b565b60405180910390f35b61044b600480360381019061044691906123c3565b610bbf565b6040516104589190612876565b60405180910390f35b610469610c29565b60405161047691906128ac565b60405180910390f35b610487610cbb565b6040516104949190612891565b60405180910390f35b6104b760048036038101906104b2919061235e565b610cc2565b6040516104c49190612876565b60405180910390f35b6104e760048036038101906104e2919061235e565b610db6565b6040516104f49190612876565b60405180910390f35b6105176004803603810190610512919061239a565b610dd4565b6040516105249190612b2e565b60405180910390f35b610535610df8565b6040516105429190612891565b60405180910390f35b610565600480360381019061056091906123c3565b610e1c565b005b610581600480360381019061057c91906122d3565b610e50565b60405161058e9190612b2e565b60405180910390f35b61059f610ed7565b6040516105ac9190612891565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f39565b5b9050919050565b60606005805461063e90612d57565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612d57565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106d56106ce610fb3565b8484610fbb565b6001905092915050565b6000600454905090565b60006106f6848484611186565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610741610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906129ce565b60405180910390fd5b6107de856107cd610fb3565b85846107d99190612c3b565b610fbb565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108138282611408565b6108388160016000858152602001908152602001600020610f0990919063ffffffff16565b505050565b60006012905090565b6108508282611431565b61087581600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b600061091c610887610fb3565b848460036000610895610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109179190612b8b565b610fbb565b6001905092915050565b6109577f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610952610fb3565b610bbf565b610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d9061294e565b60405180910390fd5b61099e6114e4565b565b6109d17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109cc610fb3565b610bbf565b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a07906129ee565b60405180910390fd5b610a1a8282611586565b5050565b610a2f610a29610fb3565b826116db565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610aa583610aa0610fb3565b610e50565b905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612a0e565b60405180910390fd5b610b0783610af6610fb3565b8484610b029190612c3b565b610fbb565b610b1183836116db565b505050565b610b477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b42610fb3565b610bbf565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612a8e565b60405180910390fd5b610b8e6118b1565b565b6000610bb7826001600086815260200190815260200160002061195490919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c3890612d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612d57565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b5050505050905090565b6000801b81565b60008060036000610cd1610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590612aae565b60405180910390fd5b610dab610d99610fb3565b858584610da69190612c3b565b610fbb565b600191505092915050565b6000610dca610dc3610fb3565b8484611186565b6001905092915050565b6000610df16001600084815260200190815260200160002061196e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e268282611983565b610e4b81600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f0582826119ac565b5050565b6000610f31836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a8c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fac5750610fab82611afc565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061296e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111799190612b2e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612a4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906128ee565b60405180910390fd5b611271838383611b66565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef9061298e565b60405180910390fd5b81816113049190612c3b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612b8b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190612b2e565b60405180910390a350505050565b611411826107ea565b6114228161141d610fb3565b611b76565b61142c83836119ac565b505050565b611439610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612ace565b60405180910390fd5b6114b08282611c13565b5050565b60006114dc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611cf4565b905092915050565b6114ec610a32565b61152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061290e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61156f610fb3565b60405161157c919061285b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612aee565b60405180910390fd5b61160260008383611b66565b80600460008282546116149190612b8b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166a9190612b8b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116cf9190612b2e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612a2e565b60405180910390fd5b61175782600083611b66565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d59061292e565b60405180910390fd5b81816117ea9190612c3b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461183f9190612c3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a49190612b2e565b60405180910390a3505050565b6118b9610a32565b156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906129ae565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861193d610fb3565b60405161194a919061285b565b60405180910390a1565b60006119638360000183611e7a565b60001c905092915050565b600061197c82600001611ecb565b9050919050565b61198c826107ea565b61199d81611998610fb3565b611b76565b6119a78383611c13565b505050565b6119b68282610bbf565b611a8857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2d610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a988383611edc565b611af1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611af6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b71838383611eff565b505050565b611b808282610bbf565b611c0f57611ba58173ffffffffffffffffffffffffffffffffffffffff166014611f57565b611bb38360001c6020611f57565b604051602001611bc4929190612821565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0691906128ac565b60405180910390fd5b5050565b611c1d8282610bbf565b15611cf057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c95610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611e6e576000600182611d269190612c3b565b9050600060018660000180549050611d3e9190612c3b565b9050818114611df9576000866000018281548110611d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611e74565b60009150505b92915050565b6000826000018281548110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611f0a838383612251565b611f12610a32565b15611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990612b0e565b60405180910390fd5b505050565b606060006002836002611f6a9190612be1565b611f749190612b8b565b67ffffffffffffffff811115611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261210d9190612be1565b6121179190612b8b565b90505b6001811115612203577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106121bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121fc90612d2d565b905061211a565b5060008414612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906128ce565b60405180910390fd5b8091505092915050565b505050565b6000813590506122658161338f565b92915050565b60008135905061227a816133a6565b92915050565b60008135905061228f816133bd565b92915050565b6000813590506122a4816133d4565b92915050565b6000602082840312156122bc57600080fd5b60006122ca84828501612256565b91505092915050565b600080604083850312156122e657600080fd5b60006122f485828601612256565b925050602061230585828601612256565b9150509250929050565b60008060006060848603121561232457600080fd5b600061233286828701612256565b935050602061234386828701612256565b925050604061235486828701612295565b9150509250925092565b6000806040838503121561237157600080fd5b600061237f85828601612256565b925050602061239085828601612295565b9150509250929050565b6000602082840312156123ac57600080fd5b60006123ba8482850161226b565b91505092915050565b600080604083850312156123d657600080fd5b60006123e48582860161226b565b92505060206123f585828601612256565b9150509250929050565b6000806040838503121561241257600080fd5b60006124208582860161226b565b925050602061243185828601612295565b9150509250929050565b60006020828403121561244d57600080fd5b600061245b84828501612280565b91505092915050565b60006020828403121561247657600080fd5b600061248484828501612295565b91505092915050565b61249681612c6f565b82525050565b6124a581612c81565b82525050565b6124b481612c8d565b82525050565b60006124c582612b64565b6124cf8185612b6f565b93506124df818560208601612cfa565b6124e881612de7565b840191505092915050565b60006124fe82612b64565b6125088185612b80565b9350612518818560208601612cfa565b80840191505092915050565b6000612531602083612b6f565b915061253c82612df8565b602082019050919050565b6000612554602383612b6f565b915061255f82612e21565b604082019050919050565b6000612577601483612b6f565b915061258282612e70565b602082019050919050565b600061259a602283612b6f565b91506125a582612e99565b604082019050919050565b60006125bd603983612b6f565b91506125c882612ee8565b604082019050919050565b60006125e0602283612b6f565b91506125eb82612f37565b604082019050919050565b6000612603602683612b6f565b915061260e82612f86565b604082019050919050565b6000612626601083612b6f565b915061263182612fd5565b602082019050919050565b6000612649602883612b6f565b915061265482612ffe565b604082019050919050565b600061266c603683612b6f565b91506126778261304d565b604082019050919050565b600061268f602483612b6f565b915061269a8261309c565b604082019050919050565b60006126b2602183612b6f565b91506126bd826130eb565b604082019050919050565b60006126d5602583612b6f565b91506126e08261313a565b604082019050919050565b60006126f8602483612b6f565b915061270382613189565b604082019050919050565b600061271b603783612b6f565b9150612726826131d8565b604082019050919050565b600061273e601783612b80565b915061274982613227565b601782019050919050565b6000612761602583612b6f565b915061276c82613250565b604082019050919050565b6000612784601183612b80565b915061278f8261329f565b601182019050919050565b60006127a7602f83612b6f565b91506127b2826132c8565b604082019050919050565b60006127ca601f83612b6f565b91506127d582613317565b602082019050919050565b60006127ed602a83612b6f565b91506127f882613340565b604082019050919050565b61280c81612ce3565b82525050565b61281b81612ced565b82525050565b600061282c82612731565b915061283882856124f3565b915061284382612777565b915061284f82846124f3565b91508190509392505050565b6000602082019050612870600083018461248d565b92915050565b600060208201905061288b600083018461249c565b92915050565b60006020820190506128a660008301846124ab565b92915050565b600060208201905081810360008301526128c681846124ba565b905092915050565b600060208201905081810360008301526128e781612524565b9050919050565b6000602082019050818103600083015261290781612547565b9050919050565b600060208201905081810360008301526129278161256a565b9050919050565b600060208201905081810360008301526129478161258d565b9050919050565b60006020820190508181036000830152612967816125b0565b9050919050565b60006020820190508181036000830152612987816125d3565b9050919050565b600060208201905081810360008301526129a7816125f6565b9050919050565b600060208201905081810360008301526129c781612619565b9050919050565b600060208201905081810360008301526129e78161263c565b9050919050565b60006020820190508181036000830152612a078161265f565b9050919050565b60006020820190508181036000830152612a2781612682565b9050919050565b60006020820190508181036000830152612a47816126a5565b9050919050565b60006020820190508181036000830152612a67816126c8565b9050919050565b60006020820190508181036000830152612a87816126eb565b9050919050565b60006020820190508181036000830152612aa78161270e565b9050919050565b60006020820190508181036000830152612ac781612754565b9050919050565b60006020820190508181036000830152612ae78161279a565b9050919050565b60006020820190508181036000830152612b07816127bd565b9050919050565b60006020820190508181036000830152612b27816127e0565b9050919050565b6000602082019050612b436000830184612803565b92915050565b6000602082019050612b5e6000830184612812565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b9682612ce3565b9150612ba183612ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd657612bd5612d89565b5b828201905092915050565b6000612bec82612ce3565b9150612bf783612ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3057612c2f612d89565b5b828202905092915050565b6000612c4682612ce3565b9150612c5183612ce3565b925082821015612c6457612c63612d89565b5b828203905092915050565b6000612c7a82612cc3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d18578082015181840152602081019050612cfd565b83811115612d27576000848401525b50505050565b6000612d3882612ce3565b91506000821415612d4c57612d4b612d89565b5b600182039050919050565b60006002820490506001821680612d6f57607f821691505b60208210811415612d8357612d82612db8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61339881612c6f565b81146133a357600080fd5b50565b6133af81612c8d565b81146133ba57600080fd5b50565b6133c681612c97565b81146133d157600080fd5b50565b6133dd81612ce3565b81146133e857600080fd5b5056fea26469706673582212207c5d37929f05c46ba20f2fe943f65ad06bb1ce082b7da9eb9e567ed9dce9044864736f6c63430008010033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006504f4c4b455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504b520000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061243b565b6105b5565b6040516101f09190612876565b60405180910390f35b61020161062f565b60405161020e91906128ac565b60405180910390f35b610231600480360381019061022c919061235e565b6106c1565b60405161023e9190612876565b60405180910390f35b61024f6106df565b60405161025c9190612b2e565b60405180910390f35b61027f600480360381019061027a919061230f565b6106e9565b60405161028c9190612876565b60405180910390f35b6102af60048036038101906102aa919061239a565b6107ea565b6040516102bc9190612891565b60405180910390f35b6102df60048036038101906102da91906123c3565b610809565b005b6102e961083d565b6040516102f69190612b49565b60405180910390f35b610319600480360381019061031491906123c3565b610846565b005b6103356004803603810190610330919061235e565b61087a565b6040516103429190612876565b60405180910390f35b610353610926565b005b61036f600480360381019061036a919061235e565b6109a0565b005b61038b60048036038101906103869190612464565b610a1e565b005b610395610a32565b6040516103a29190612876565b60405180910390f35b6103c560048036038101906103c091906122aa565b610a49565b6040516103d29190612b2e565b60405180910390f35b6103f560048036038101906103f0919061235e565b610a92565b005b6103ff610b16565b005b61041b600480360381019061041691906123ff565b610b90565b604051610428919061285b565b60405180910390f35b61044b600480360381019061044691906123c3565b610bbf565b6040516104589190612876565b60405180910390f35b610469610c29565b60405161047691906128ac565b60405180910390f35b610487610cbb565b6040516104949190612891565b60405180910390f35b6104b760048036038101906104b2919061235e565b610cc2565b6040516104c49190612876565b60405180910390f35b6104e760048036038101906104e2919061235e565b610db6565b6040516104f49190612876565b60405180910390f35b6105176004803603810190610512919061239a565b610dd4565b6040516105249190612b2e565b60405180910390f35b610535610df8565b6040516105429190612891565b60405180910390f35b610565600480360381019061056091906123c3565b610e1c565b005b610581600480360381019061057c91906122d3565b610e50565b60405161058e9190612b2e565b60405180910390f35b61059f610ed7565b6040516105ac9190612891565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f39565b5b9050919050565b60606005805461063e90612d57565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612d57565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106d56106ce610fb3565b8484610fbb565b6001905092915050565b6000600454905090565b60006106f6848484611186565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610741610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906129ce565b60405180910390fd5b6107de856107cd610fb3565b85846107d99190612c3b565b610fbb565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108138282611408565b6108388160016000858152602001908152602001600020610f0990919063ffffffff16565b505050565b60006012905090565b6108508282611431565b61087581600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b600061091c610887610fb3565b848460036000610895610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109179190612b8b565b610fbb565b6001905092915050565b6109577f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610952610fb3565b610bbf565b610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d9061294e565b60405180910390fd5b61099e6114e4565b565b6109d17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109cc610fb3565b610bbf565b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a07906129ee565b60405180910390fd5b610a1a8282611586565b5050565b610a2f610a29610fb3565b826116db565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610aa583610aa0610fb3565b610e50565b905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612a0e565b60405180910390fd5b610b0783610af6610fb3565b8484610b029190612c3b565b610fbb565b610b1183836116db565b505050565b610b477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b42610fb3565b610bbf565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612a8e565b60405180910390fd5b610b8e6118b1565b565b6000610bb7826001600086815260200190815260200160002061195490919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c3890612d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612d57565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b5050505050905090565b6000801b81565b60008060036000610cd1610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590612aae565b60405180910390fd5b610dab610d99610fb3565b858584610da69190612c3b565b610fbb565b600191505092915050565b6000610dca610dc3610fb3565b8484611186565b6001905092915050565b6000610df16001600084815260200190815260200160002061196e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e268282611983565b610e4b81600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f0582826119ac565b5050565b6000610f31836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a8c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fac5750610fab82611afc565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061296e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111799190612b2e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612a4e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906128ee565b60405180910390fd5b611271838383611b66565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef9061298e565b60405180910390fd5b81816113049190612c3b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612b8b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190612b2e565b60405180910390a350505050565b611411826107ea565b6114228161141d610fb3565b611b76565b61142c83836119ac565b505050565b611439610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612ace565b60405180910390fd5b6114b08282611c13565b5050565b60006114dc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611cf4565b905092915050565b6114ec610a32565b61152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061290e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61156f610fb3565b60405161157c919061285b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612aee565b60405180910390fd5b61160260008383611b66565b80600460008282546116149190612b8b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166a9190612b8b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116cf9190612b2e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612a2e565b60405180910390fd5b61175782600083611b66565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d59061292e565b60405180910390fd5b81816117ea9190612c3b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461183f9190612c3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a49190612b2e565b60405180910390a3505050565b6118b9610a32565b156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906129ae565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861193d610fb3565b60405161194a919061285b565b60405180910390a1565b60006119638360000183611e7a565b60001c905092915050565b600061197c82600001611ecb565b9050919050565b61198c826107ea565b61199d81611998610fb3565b611b76565b6119a78383611c13565b505050565b6119b68282610bbf565b611a8857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2d610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a988383611edc565b611af1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611af6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b71838383611eff565b505050565b611b808282610bbf565b611c0f57611ba58173ffffffffffffffffffffffffffffffffffffffff166014611f57565b611bb38360001c6020611f57565b604051602001611bc4929190612821565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0691906128ac565b60405180910390fd5b5050565b611c1d8282610bbf565b15611cf057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c95610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611e6e576000600182611d269190612c3b565b9050600060018660000180549050611d3e9190612c3b565b9050818114611df9576000866000018281548110611d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611e74565b60009150505b92915050565b6000826000018281548110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611f0a838383612251565b611f12610a32565b15611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990612b0e565b60405180910390fd5b505050565b606060006002836002611f6a9190612be1565b611f749190612b8b565b67ffffffffffffffff811115611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261210d9190612be1565b6121179190612b8b565b90505b6001811115612203577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106121bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121fc90612d2d565b905061211a565b5060008414612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906128ce565b60405180910390fd5b8091505092915050565b505050565b6000813590506122658161338f565b92915050565b60008135905061227a816133a6565b92915050565b60008135905061228f816133bd565b92915050565b6000813590506122a4816133d4565b92915050565b6000602082840312156122bc57600080fd5b60006122ca84828501612256565b91505092915050565b600080604083850312156122e657600080fd5b60006122f485828601612256565b925050602061230585828601612256565b9150509250929050565b60008060006060848603121561232457600080fd5b600061233286828701612256565b935050602061234386828701612256565b925050604061235486828701612295565b9150509250925092565b6000806040838503121561237157600080fd5b600061237f85828601612256565b925050602061239085828601612295565b9150509250929050565b6000602082840312156123ac57600080fd5b60006123ba8482850161226b565b91505092915050565b600080604083850312156123d657600080fd5b60006123e48582860161226b565b92505060206123f585828601612256565b9150509250929050565b6000806040838503121561241257600080fd5b60006124208582860161226b565b925050602061243185828601612295565b9150509250929050565b60006020828403121561244d57600080fd5b600061245b84828501612280565b91505092915050565b60006020828403121561247657600080fd5b600061248484828501612295565b91505092915050565b61249681612c6f565b82525050565b6124a581612c81565b82525050565b6124b481612c8d565b82525050565b60006124c582612b64565b6124cf8185612b6f565b93506124df818560208601612cfa565b6124e881612de7565b840191505092915050565b60006124fe82612b64565b6125088185612b80565b9350612518818560208601612cfa565b80840191505092915050565b6000612531602083612b6f565b915061253c82612df8565b602082019050919050565b6000612554602383612b6f565b915061255f82612e21565b604082019050919050565b6000612577601483612b6f565b915061258282612e70565b602082019050919050565b600061259a602283612b6f565b91506125a582612e99565b604082019050919050565b60006125bd603983612b6f565b91506125c882612ee8565b604082019050919050565b60006125e0602283612b6f565b91506125eb82612f37565b604082019050919050565b6000612603602683612b6f565b915061260e82612f86565b604082019050919050565b6000612626601083612b6f565b915061263182612fd5565b602082019050919050565b6000612649602883612b6f565b915061265482612ffe565b604082019050919050565b600061266c603683612b6f565b91506126778261304d565b604082019050919050565b600061268f602483612b6f565b915061269a8261309c565b604082019050919050565b60006126b2602183612b6f565b91506126bd826130eb565b604082019050919050565b60006126d5602583612b6f565b91506126e08261313a565b604082019050919050565b60006126f8602483612b6f565b915061270382613189565b604082019050919050565b600061271b603783612b6f565b9150612726826131d8565b604082019050919050565b600061273e601783612b80565b915061274982613227565b601782019050919050565b6000612761602583612b6f565b915061276c82613250565b604082019050919050565b6000612784601183612b80565b915061278f8261329f565b601182019050919050565b60006127a7602f83612b6f565b91506127b2826132c8565b604082019050919050565b60006127ca601f83612b6f565b91506127d582613317565b602082019050919050565b60006127ed602a83612b6f565b91506127f882613340565b604082019050919050565b61280c81612ce3565b82525050565b61281b81612ced565b82525050565b600061282c82612731565b915061283882856124f3565b915061284382612777565b915061284f82846124f3565b91508190509392505050565b6000602082019050612870600083018461248d565b92915050565b600060208201905061288b600083018461249c565b92915050565b60006020820190506128a660008301846124ab565b92915050565b600060208201905081810360008301526128c681846124ba565b905092915050565b600060208201905081810360008301526128e781612524565b9050919050565b6000602082019050818103600083015261290781612547565b9050919050565b600060208201905081810360008301526129278161256a565b9050919050565b600060208201905081810360008301526129478161258d565b9050919050565b60006020820190508181036000830152612967816125b0565b9050919050565b60006020820190508181036000830152612987816125d3565b9050919050565b600060208201905081810360008301526129a7816125f6565b9050919050565b600060208201905081810360008301526129c781612619565b9050919050565b600060208201905081810360008301526129e78161263c565b9050919050565b60006020820190508181036000830152612a078161265f565b9050919050565b60006020820190508181036000830152612a2781612682565b9050919050565b60006020820190508181036000830152612a47816126a5565b9050919050565b60006020820190508181036000830152612a67816126c8565b9050919050565b60006020820190508181036000830152612a87816126eb565b9050919050565b60006020820190508181036000830152612aa78161270e565b9050919050565b60006020820190508181036000830152612ac781612754565b9050919050565b60006020820190508181036000830152612ae78161279a565b9050919050565b60006020820190508181036000830152612b07816127bd565b9050919050565b60006020820190508181036000830152612b27816127e0565b9050919050565b6000602082019050612b436000830184612803565b92915050565b6000602082019050612b5e6000830184612812565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b9682612ce3565b9150612ba183612ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd657612bd5612d89565b5b828201905092915050565b6000612bec82612ce3565b9150612bf783612ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3057612c2f612d89565b5b828202905092915050565b6000612c4682612ce3565b9150612c5183612ce3565b925082821015612c6457612c63612d89565b5b828203905092915050565b6000612c7a82612cc3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d18578082015181840152602081019050612cfd565b83811115612d27576000848401525b50505050565b6000612d3882612ce3565b91506000821415612d4c57612d4b612d89565b5b600182039050919050565b60006002820490506001821680612d6f57607f821691505b60208210811415612d8357612d82612db8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f20756e706175736500000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f7665206d696e74657220726f6c6520746f206d696e7400000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305072657365744d696e7465725061757365723a206d75737420686160008201527f76652070617573657220726f6c6520746f207061757365000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61339881612c6f565b81146133a357600080fd5b50565b6133af81612c8d565b81146133ba57600080fd5b50565b6133c681612c97565b81146133d157600080fd5b50565b6133dd81612ce3565b81146133e857600080fd5b5056fea26469706673582212207c5d37929f05c46ba20f2fe943f65ad06bb1ce082b7da9eb9e567ed9dce9044864736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006504f4c4b455200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504b520000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): POLKER
Arg [1] : symbol (string): PKR

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 504f4c4b45520000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 504b520000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

786:2028:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:227:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2109:100:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4276:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4927:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5455:123:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2195:165:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3071:93:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2718:174:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5758:215:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2442:178:11;;;:::i;:::-;;1633:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;487:91:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1071:86:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3400:127:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;897:332:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2052:172:11;;;:::i;:::-;;1650:145:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4453:139:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2328:104:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2418:49:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6476:377:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1969:134:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;875:62:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2453:170:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3978:151:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;944:62:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;824:227:1;909:4;948:42;933:57;;;:11;:57;;;;:110;;;;1007:36;1031:11;1007:23;:36::i;:::-;933:110;926:117;;824:227;;;:::o;2109:100:4:-;2163:13;2196:5;2189:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2109:100;:::o;4276:169::-;4359:4;4376:39;4385:12;:10;:12::i;:::-;4399:7;4408:6;4376:8;:39::i;:::-;4433:4;4426:11;;4276:169;;;;:::o;3229:108::-;3290:7;3317:12;;3310:19;;3229:108;:::o;4927:422::-;5033:4;5050:36;5060:6;5068:9;5079:6;5050:9;:36::i;:::-;5099:24;5126:11;:19;5138:6;5126:19;;;;;;;;;;;;;;;:33;5146:12;:10;:12::i;:::-;5126:33;;;;;;;;;;;;;;;;5099:60;;5198:6;5178:16;:26;;5170:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5260:57;5269:6;5277:12;:10;:12::i;:::-;5310:6;5291:16;:25;;;;:::i;:::-;5260:8;:57::i;:::-;5337:4;5330:11;;;4927:422;;;;;:::o;5455:123:0:-;5521:7;5548:6;:12;5555:4;5548:12;;;;;;;;;;;:22;;;5541:29;;5455:123;;;:::o;2195:165:1:-;2280:30;2296:4;2302:7;2280:15;:30::i;:::-;2321:31;2344:7;2321:12;:18;2334:4;2321:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;2195:165;;:::o;3071:93:4:-;3129:5;3154:2;3147:9;;3071:93;:::o;2718:174:1:-;2806:33;2825:4;2831:7;2806:18;:33::i;:::-;2850:34;2876:7;2850:12;:18;2863:4;2850:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2718:174;;:::o;5758:215:4:-;5846:4;5863:80;5872:12;:10;:12::i;:::-;5886:7;5932:10;5895:11;:25;5907:12;:10;:12::i;:::-;5895:25;;;;;;;;;;;;;;;:34;5921:7;5895:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5863:8;:80::i;:::-;5961:4;5954:11;;5758:215;;;;:::o;2442:178:11:-;2495:34;982:24;2516:12;:10;:12::i;:::-;2495:7;:34::i;:::-;2487:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;2602:10;:8;:10::i;:::-;2442:178::o;1633:205::-;1709:34;913:24;1730:12;:10;:12::i;:::-;1709:7;:34::i;:::-;1701:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;1813:17;1819:2;1823:6;1813:5;:17::i;:::-;1633:205;;:::o;487:91:5:-;543:27;549:12;:10;:12::i;:::-;563:6;543:5;:27::i;:::-;487:91;:::o;1071:86:12:-;1118:4;1142:7;;;;;;;;;;;1135:14;;1071:86;:::o;3400:127:4:-;3474:7;3501:9;:18;3511:7;3501:18;;;;;;;;;;;;;;;;3494:25;;3400:127;;;:::o;897:332:5:-;974:24;1001:32;1011:7;1020:12;:10;:12::i;:::-;1001:9;:32::i;:::-;974:59;;1072:6;1052:16;:26;;1044:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1130:58;1139:7;1148:12;:10;:12::i;:::-;1181:6;1162:16;:25;;;;:::i;:::-;1130:8;:58::i;:::-;1199:22;1205:7;1214:6;1199:5;:22::i;:::-;897:332;;;:::o;2052:172:11:-;2103:34;982:24;2124:12;:10;:12::i;:::-;2103:7;:34::i;:::-;2095:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;2208:8;:6;:8::i;:::-;2052:172::o;1650:145:1:-;1732:7;1759:28;1781:5;1759:12;:18;1772:4;1759:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;1752:35;;1650:145;;;;:::o;4453:139:0:-;4531:4;4555:6;:12;4562:4;4555:12;;;;;;;;;;;:20;;:29;4576:7;4555:29;;;;;;;;;;;;;;;;;;;;;;;;;4548:36;;4453:139;;;;:::o;2328:104:4:-;2384:13;2417:7;2410:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2328:104;:::o;2418:49:0:-;2463:4;2418:49;;;:::o;6476:377:4:-;6569:4;6586:24;6613:11;:25;6625:12;:10;:12::i;:::-;6613:25;;;;;;;;;;;;;;;:34;6639:7;6613:34;;;;;;;;;;;;;;;;6586:61;;6686:15;6666:16;:35;;6658:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6754:67;6763:12;:10;:12::i;:::-;6777:7;6805:15;6786:16;:34;;;;:::i;:::-;6754:8;:67::i;:::-;6841:4;6834:11;;;6476:377;;;;:::o;3740:175::-;3826:4;3843:42;3853:12;:10;:12::i;:::-;3867:9;3878:6;3843:9;:42::i;:::-;3903:4;3896:11;;3740:175;;;;:::o;1969:134:1:-;2041:7;2068:27;:12;:18;2081:4;2068:18;;;;;;;;;;;:25;:27::i;:::-;2061:34;;1969:134;;;:::o;875:62:11:-;913:24;875:62;:::o;2453:170:1:-;2539:31;2556:4;2562:7;2539:16;:31::i;:::-;2581:34;2607:7;2581:12;:18;2594:4;2581:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;2453:170;;:::o;3978:151:4:-;4067:7;4094:11;:18;4106:5;4094:18;;;;;;;;;;;;;;;:27;4113:7;4094:27;;;;;;;;;;;;;;;;4087:34;;3978:151;;;;:::o;944:62:11:-;982:24;944:62;:::o;7689:112:0:-;7768:25;7779:4;7785:7;7768:10;:25::i;:::-;7689:112;;:::o;6400:152:7:-;6470:4;6494:50;6499:3;:10;;6535:5;6519:23;;6511:32;;6494:4;:50::i;:::-;6487:57;;6400:152;;;;:::o;4144:217:0:-;4229:4;4268:32;4253:47;;;:11;:47;;;;:100;;;;4317:36;4341:11;4317:23;:36::i;:::-;4253:100;4246:107;;4144:217;;;:::o;601:98:2:-;654:7;681:10;674:17;;601:98;:::o;9832:346:4:-;9951:1;9934:19;;:5;:19;;;;9926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10032:1;10013:21;;:7;:21;;;;10005:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10116:6;10086:11;:18;10098:5;10086:18;;;;;;;;;;;;;;;:27;10105:7;10086:27;;;;;;;;;;;;;;;:36;;;;10154:7;10138:32;;10147:5;10138:32;;;10163:6;10138:32;;;;;;:::i;:::-;;;;;;;;9832:346;;;:::o;7343:604::-;7467:1;7449:20;;:6;:20;;;;7441:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7551:1;7530:23;;:9;:23;;;;7522:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7606:47;7627:6;7635:9;7646:6;7606:20;:47::i;:::-;7666:21;7690:9;:17;7700:6;7690:17;;;;;;;;;;;;;;;;7666:41;;7743:6;7726:13;:23;;7718:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7839:6;7823:13;:22;;;;:::i;:::-;7803:9;:17;7813:6;7803:17;;;;;;;;;;;;;;;:42;;;;7880:6;7856:9;:20;7866:9;7856:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7921:9;7904:35;;7913:6;7904:35;;;7932:6;7904:35;;;;;;:::i;:::-;;;;;;;;7343:604;;;;:::o;5840:147:0:-;5923:18;5936:4;5923:12;:18::i;:::-;4022:30;4033:4;4039:12;:10;:12::i;:::-;4022:10;:30::i;:::-;5954:25:::1;5965:4;5971:7;5954:10;:25::i;:::-;5840:147:::0;;;:::o;6888:218::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:23;;;6976:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;7072:26;7084:4;7090:7;7072:11;:26::i;:::-;6888:218;;:::o;6728:158:7:-;6801:4;6825:53;6833:3;:10;;6869:5;6853:23;;6845:32;;6825:7;:53::i;:::-;6818:60;;6728:158;;;;:::o;2130:120:12:-;1674:8;:6;:8::i;:::-;1666:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2199:5:::1;2189:7;;:15;;;;;;;;;;;;;;;;;;2220:22;2229:12;:10;:12::i;:::-;2220:22;;;;;;:::i;:::-;;;;;;;;2130:120::o:0;8229:338:4:-;8332:1;8313:21;;:7;:21;;;;8305:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8383:49;8412:1;8416:7;8425:6;8383:20;:49::i;:::-;8461:6;8445:12;;:22;;;;;;;:::i;:::-;;;;;;;;8500:6;8478:9;:18;8488:7;8478:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8543:7;8522:37;;8539:1;8522:37;;;8552:6;8522:37;;;;;;:::i;:::-;;;;;;;;8229:338;;:::o;8900:494::-;9003:1;8984:21;;:7;:21;;;;8976:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9056:49;9077:7;9094:1;9098:6;9056:20;:49::i;:::-;9118:22;9143:9;:18;9153:7;9143:18;;;;;;;;;;;;;;;;9118:43;;9198:6;9180:14;:24;;9172:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9292:6;9275:14;:23;;;;:::i;:::-;9254:9;:18;9264:7;9254:18;;;;;;;;;;;;;;;:44;;;;9325:6;9309:12;;:22;;;;;;;:::i;:::-;;;;;;;;9375:1;9349:37;;9358:7;9349:37;;;9379:6;9349:37;;;;;;:::i;:::-;;;;;;;;8900:494;;;:::o;1871:118:12:-;1397:8;:6;:8::i;:::-;1396:9;1388:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1941:4:::1;1931:7;;:14;;;;;;;;;;;;;;;;;;1961:20;1968:12;:10;:12::i;:::-;1961:20;;;;;;:::i;:::-;;;;;;;;1871:118::o:0;7686:158:7:-;7760:7;7811:22;7815:3;:10;;7827:5;7811:3;:22::i;:::-;7803:31;;7780:56;;7686:158;;;;:::o;7225:117::-;7288:7;7315:19;7323:3;:10;;7315:7;:19::i;:::-;7308:26;;7225:117;;;:::o;6232:149:0:-;6316:18;6329:4;6316:12;:18::i;:::-;4022:30;4033:4;4039:12;:10;:12::i;:::-;4022:10;:30::i;:::-;6347:26:::1;6359:4;6365:7;6347:11;:26::i;:::-;6232:149:::0;;;:::o;8136:229::-;8211:22;8219:4;8225:7;8211;:22::i;:::-;8206:152;;8282:4;8250:6;:12;8257:4;8250:12;;;;;;;;;;;:20;;:29;8271:7;8250:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;8333:12;:10;:12::i;:::-;8306:40;;8324:7;8306:40;;8318:4;8306:40;;;;;;;;;;8206:152;8136:229;;:::o;1685:414:7:-;1748:4;1770:21;1780:3;1785:5;1770:9;:21::i;:::-;1765:327;;1808:3;:11;;1825:5;1808:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1991:3;:11;;:18;;;;1969:3;:12;;:19;1982:5;1969:19;;;;;;;;;;;:40;;;;2031:4;2024:11;;;;1765:327;2075:5;2068:12;;1685:414;;;;;:::o;785:157:3:-;870:4;909:25;894:40;;;:11;:40;;;;887:47;;785:157;;;:::o;2628:183:11:-;2759:44;2786:4;2792:2;2796:6;2759:26;:44::i;:::-;2628:183;;;:::o;4882:384:0:-;4962:22;4970:4;4976:7;4962;:22::i;:::-;4958:301;;5094:41;5122:7;5094:41;;5132:2;5094:19;:41::i;:::-;5192:38;5220:4;5212:13;;5227:2;5192:19;:38::i;:::-;5015:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5001:246;;;;;;;;;;;:::i;:::-;;;;;;;;4958:301;4882:384;;:::o;8373:230::-;8448:22;8456:4;8462:7;8448;:22::i;:::-;8444:152;;;8519:5;8487:6;:12;8494:4;8487:12;;;;;;;;;;;:20;;:29;8508:7;8487:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;8571:12;:10;:12::i;:::-;8544:40;;8562:7;8544:40;;8556:4;8544:40;;;;;;;;;;8444:152;8373:230;;:::o;2275:1407:7:-;2341:4;2459:18;2480:3;:12;;:19;2493:5;2480:19;;;;;;;;;;;;2459:40;;2530:1;2516:10;:15;2512:1163;;2878:21;2915:1;2902:10;:14;;;;:::i;:::-;2878:38;;2931:17;2972:1;2951:3;:11;;:18;;;;:22;;;;:::i;:::-;2931:42;;3007:13;2994:9;:26;2990:405;;3041:17;3061:3;:11;;3073:9;3061:22;;;;;;;;;;;;;;;;;;;;;;;;3041:42;;3215:9;3186:3;:11;;3198:13;3186:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3326:10;3300:3;:12;;:23;3313:9;3300:23;;;;;;;;;;;:36;;;;2990:405;;3476:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3571:3;:12;;:19;3584:5;3571:19;;;;;;;;;;;3564:26;;;3614:4;3607:11;;;;;;;2512:1163;3658:5;3651:12;;;2275:1407;;;;;:::o;4436:120::-;4503:7;4530:3;:11;;4542:5;4530:18;;;;;;;;;;;;;;;;;;;;;;;;4523:25;;4436:120;;;;:::o;3983:109::-;4039:7;4066:3;:11;;:18;;;;4059:25;;3983:109;;;:::o;3768:129::-;3841:4;3888:1;3865:3;:12;;:19;3878:5;3865:19;;;;;;;;;;;;:24;;3858:31;;3768:129;;;;:::o;590:238:6:-;699:44;726:4;732:2;736:6;699:26;:44::i;:::-;765:8;:6;:8::i;:::-;764:9;756:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;590:238;;;:::o;1585:447:13:-;1660:13;1686:19;1731:1;1722:6;1718:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1708:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1686:47;;1744:15;:6;1751:1;1744:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1770;:6;1777:1;1770:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;1801:9;1826:1;1817:6;1813:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1801:26;;1796:131;1833:1;1829;:5;1796:131;;;1868:8;1885:3;1877:5;:11;1868:21;;;;;;;;;;;;;;;;;;1856:6;1863:1;1856:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;1914:1;1904:11;;;;;1836:3;;;;:::i;:::-;;;1796:131;;;;1954:1;1945:5;:10;1937:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2017:6;2003:21;;;1585:447;;;;:::o;10781:92:4:-;;;;:::o;7:139:14:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:137::-;;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;;;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;;;;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;;;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;;;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;;;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:366::-;;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5220:93;5309:3;5220:93;:::i;:::-;5338:2;5333:3;5329:12;5322:19;;5127:220;;;:::o;5353:366::-;;5516:67;5580:2;5575:3;5516:67;:::i;:::-;5509:74;;5592:93;5681:3;5592:93;:::i;:::-;5710:2;5705:3;5701:12;5694:19;;5499:220;;;:::o;5725:366::-;;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5964:93;6053:3;5964:93;:::i;:::-;6082:2;6077:3;6073:12;6066:19;;5871:220;;;:::o;6097:366::-;;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6336:93;6425:3;6336:93;:::i;:::-;6454:2;6449:3;6445:12;6438:19;;6243:220;;;:::o;6469:366::-;;6632:67;6696:2;6691:3;6632:67;:::i;:::-;6625:74;;6708:93;6797:3;6708:93;:::i;:::-;6826:2;6821:3;6817:12;6810:19;;6615:220;;;:::o;6841:366::-;;7004:67;7068:2;7063:3;7004:67;:::i;:::-;6997:74;;7080:93;7169:3;7080:93;:::i;:::-;7198:2;7193:3;7189:12;7182:19;;6987:220;;;:::o;7213:366::-;;7376:67;7440:2;7435:3;7376:67;:::i;:::-;7369:74;;7452:93;7541:3;7452:93;:::i;:::-;7570:2;7565:3;7561:12;7554:19;;7359:220;;;:::o;7585:366::-;;7748:67;7812:2;7807:3;7748:67;:::i;:::-;7741:74;;7824:93;7913:3;7824:93;:::i;:::-;7942:2;7937:3;7933:12;7926:19;;7731:220;;;:::o;7957:366::-;;8120:67;8184:2;8179:3;8120:67;:::i;:::-;8113:74;;8196:93;8285:3;8196:93;:::i;:::-;8314:2;8309:3;8305:12;8298:19;;8103:220;;;:::o;8329:366::-;;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:366::-;;9236:67;9300:2;9295:3;9236:67;:::i;:::-;9229:74;;9312:93;9401:3;9312:93;:::i;:::-;9430:2;9425:3;9421:12;9414:19;;9219:220;;;:::o;9445:366::-;;9608:67;9672:2;9667:3;9608:67;:::i;:::-;9601:74;;9684:93;9773:3;9684:93;:::i;:::-;9802:2;9797:3;9793:12;9786:19;;9591:220;;;:::o;9817:366::-;;9980:67;10044:2;10039:3;9980:67;:::i;:::-;9973:74;;10056:93;10145:3;10056:93;:::i;:::-;10174:2;10169:3;10165:12;10158:19;;9963:220;;;:::o;10189:366::-;;10352:67;10416:2;10411:3;10352:67;:::i;:::-;10345:74;;10428:93;10517:3;10428:93;:::i;:::-;10546:2;10541:3;10537:12;10530:19;;10335:220;;;:::o;10561:402::-;;10742:85;10824:2;10819:3;10742:85;:::i;:::-;10735:92;;10836:93;10925:3;10836:93;:::i;:::-;10954:2;10949:3;10945:12;10938:19;;10725:238;;;:::o;10969:366::-;;11132:67;11196:2;11191:3;11132:67;:::i;:::-;11125:74;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11115:220;;;:::o;11341:402::-;;11522:85;11604:2;11599:3;11522:85;:::i;:::-;11515:92;;11616:93;11705:3;11616:93;:::i;:::-;11734:2;11729:3;11725:12;11718:19;;11505:238;;;:::o;11749:366::-;;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11895:220;;;:::o;12121:366::-;;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12267:220;;;:::o;12493:366::-;;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12639:220;;;:::o;12865:118::-;12952:24;12970:5;12952:24;:::i;:::-;12947:3;12940:37;12930:53;;:::o;12989:112::-;13072:22;13088:5;13072:22;:::i;:::-;13067:3;13060:35;13050:51;;:::o;13107:967::-;;13511:148;13655:3;13511:148;:::i;:::-;13504:155;;13676:95;13767:3;13758:6;13676:95;:::i;:::-;13669:102;;13788:148;13932:3;13788:148;:::i;:::-;13781:155;;13953:95;14044:3;14035:6;13953:95;:::i;:::-;13946:102;;14065:3;14058:10;;13493:581;;;;;:::o;14080:222::-;;14211:2;14200:9;14196:18;14188:26;;14224:71;14292:1;14281:9;14277:17;14268:6;14224:71;:::i;:::-;14178:124;;;;:::o;14308:210::-;;14433:2;14422:9;14418:18;14410:26;;14446:65;14508:1;14497:9;14493:17;14484:6;14446:65;:::i;:::-;14400:118;;;;:::o;14524:222::-;;14655:2;14644:9;14640:18;14632:26;;14668:71;14736:1;14725:9;14721:17;14712:6;14668:71;:::i;:::-;14622:124;;;;:::o;14752:313::-;;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:78;15053:4;15044:6;14980:78;:::i;:::-;14972:86;;14870:195;;;;:::o;15071:419::-;;15275:2;15264:9;15260:18;15252:26;;15324:9;15318:4;15314:20;15310:1;15299:9;15295:17;15288:47;15352:131;15478:4;15352:131;:::i;:::-;15344:139;;15242:248;;;:::o;15496:419::-;;15700:2;15689:9;15685:18;15677:26;;15749:9;15743:4;15739:20;15735:1;15724:9;15720:17;15713:47;15777:131;15903:4;15777:131;:::i;:::-;15769:139;;15667:248;;;:::o;15921:419::-;;16125:2;16114:9;16110:18;16102:26;;16174:9;16168:4;16164:20;16160:1;16149:9;16145:17;16138:47;16202:131;16328:4;16202:131;:::i;:::-;16194:139;;16092:248;;;:::o;16346:419::-;;16550:2;16539:9;16535:18;16527:26;;16599:9;16593:4;16589:20;16585:1;16574:9;16570:17;16563:47;16627:131;16753:4;16627:131;:::i;:::-;16619:139;;16517:248;;;:::o;16771:419::-;;16975:2;16964:9;16960:18;16952:26;;17024:9;17018:4;17014:20;17010:1;16999:9;16995:17;16988:47;17052:131;17178:4;17052:131;:::i;:::-;17044:139;;16942:248;;;:::o;17196:419::-;;17400:2;17389:9;17385:18;17377:26;;17449:9;17443:4;17439:20;17435:1;17424:9;17420:17;17413:47;17477:131;17603:4;17477:131;:::i;:::-;17469:139;;17367:248;;;:::o;17621:419::-;;17825:2;17814:9;17810:18;17802:26;;17874:9;17868:4;17864:20;17860:1;17849:9;17845:17;17838:47;17902:131;18028:4;17902:131;:::i;:::-;17894:139;;17792:248;;;:::o;18046:419::-;;18250:2;18239:9;18235:18;18227:26;;18299:9;18293:4;18289:20;18285:1;18274:9;18270:17;18263:47;18327:131;18453:4;18327:131;:::i;:::-;18319:139;;18217:248;;;:::o;18471:419::-;;18675:2;18664:9;18660:18;18652:26;;18724:9;18718:4;18714:20;18710:1;18699:9;18695:17;18688:47;18752:131;18878:4;18752:131;:::i;:::-;18744:139;;18642:248;;;:::o;18896:419::-;;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;19067:248;;;:::o;19321:419::-;;19525:2;19514:9;19510:18;19502:26;;19574:9;19568:4;19564:20;19560:1;19549:9;19545:17;19538:47;19602:131;19728:4;19602:131;:::i;:::-;19594:139;;19492:248;;;:::o;19746:419::-;;19950:2;19939:9;19935:18;19927:26;;19999:9;19993:4;19989:20;19985:1;19974:9;19970:17;19963:47;20027:131;20153:4;20027:131;:::i;:::-;20019:139;;19917:248;;;:::o;20171:419::-;;20375:2;20364:9;20360:18;20352:26;;20424:9;20418:4;20414:20;20410:1;20399:9;20395:17;20388:47;20452:131;20578:4;20452:131;:::i;:::-;20444:139;;20342:248;;;:::o;20596:419::-;;20800:2;20789:9;20785:18;20777:26;;20849:9;20843:4;20839:20;20835:1;20824:9;20820:17;20813:47;20877:131;21003:4;20877:131;:::i;:::-;20869:139;;20767:248;;;:::o;21021:419::-;;21225:2;21214:9;21210:18;21202:26;;21274:9;21268:4;21264:20;21260:1;21249:9;21245:17;21238:47;21302:131;21428:4;21302:131;:::i;:::-;21294:139;;21192:248;;;:::o;21446:419::-;;21650:2;21639:9;21635:18;21627:26;;21699:9;21693:4;21689:20;21685:1;21674:9;21670:17;21663:47;21727:131;21853:4;21727:131;:::i;:::-;21719:139;;21617:248;;;:::o;21871:419::-;;22075:2;22064:9;22060:18;22052:26;;22124:9;22118:4;22114:20;22110:1;22099:9;22095:17;22088:47;22152:131;22278:4;22152:131;:::i;:::-;22144:139;;22042:248;;;:::o;22296:419::-;;22500:2;22489:9;22485:18;22477:26;;22549:9;22543:4;22539:20;22535:1;22524:9;22520:17;22513:47;22577:131;22703:4;22577:131;:::i;:::-;22569:139;;22467:248;;;:::o;22721:419::-;;22925:2;22914:9;22910:18;22902:26;;22974:9;22968:4;22964:20;22960:1;22949:9;22945:17;22938:47;23002:131;23128:4;23002:131;:::i;:::-;22994:139;;22892:248;;;:::o;23146:222::-;;23277:2;23266:9;23262:18;23254:26;;23290:71;23358:1;23347:9;23343:17;23334:6;23290:71;:::i;:::-;23244:124;;;;:::o;23374:214::-;;23501:2;23490:9;23486:18;23478:26;;23514:67;23578:1;23567:9;23563:17;23554:6;23514:67;:::i;:::-;23468:120;;;;:::o;23594:99::-;;23680:5;23674:12;23664:22;;23653:40;;;:::o;23699:169::-;;23817:6;23812:3;23805:19;23857:4;23852:3;23848:14;23833:29;;23795:73;;;;:::o;23874:148::-;;24013:3;23998:18;;23988:34;;;;:::o;24028:305::-;;24087:20;24105:1;24087:20;:::i;:::-;24082:25;;24121:20;24139:1;24121:20;:::i;:::-;24116:25;;24275:1;24207:66;24203:74;24200:1;24197:81;24194:2;;;24281:18;;:::i;:::-;24194:2;24325:1;24322;24318:9;24311:16;;24072:261;;;;:::o;24339:348::-;;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24624:1;24556:66;24552:74;24549:1;24546:81;24541:1;24534:9;24527:17;24523:105;24520:2;;;24631:18;;:::i;:::-;24520:2;24679:1;24676;24672:9;24661:20;;24387:300;;;;:::o;24693:191::-;;24753:20;24771:1;24753:20;:::i;:::-;24748:25;;24787:20;24805:1;24787:20;:::i;:::-;24782:25;;24826:1;24823;24820:8;24817:2;;;24831:18;;:::i;:::-;24817:2;24876:1;24873;24869:9;24861:17;;24738:146;;;;:::o;24890:96::-;;24956:24;24974:5;24956:24;:::i;:::-;24945:35;;24935:51;;;:::o;24992:90::-;;25069:5;25062:13;25055:21;25044:32;;25034:48;;;:::o;25088:77::-;;25154:5;25143:16;;25133:32;;;:::o;25171:149::-;;25247:66;25240:5;25236:78;25225:89;;25215:105;;;:::o;25326:126::-;;25403:42;25396:5;25392:54;25381:65;;25371:81;;;:::o;25458:77::-;;25524:5;25513:16;;25503:32;;;:::o;25541:86::-;;25616:4;25609:5;25605:16;25594:27;;25584:43;;;:::o;25633:307::-;25701:1;25711:113;25725:6;25722:1;25719:13;25711:113;;;25810:1;25805:3;25801:11;25795:18;25791:1;25786:3;25782:11;25775:39;25747:2;25744:1;25740:10;25735:15;;25711:113;;;25842:6;25839:1;25836:13;25833:2;;;25922:1;25913:6;25908:3;25904:16;25897:27;25833:2;25682:258;;;;:::o;25946:171::-;;26008:24;26026:5;26008:24;:::i;:::-;25999:33;;26054:4;26047:5;26044:15;26041:2;;;26062:18;;:::i;:::-;26041:2;26109:1;26102:5;26098:13;26091:20;;25989:128;;;:::o;26123:320::-;;26204:1;26198:4;26194:12;26184:22;;26251:1;26245:4;26241:12;26272:18;26262:2;;26328:4;26320:6;26316:17;26306:27;;26262:2;26390;26382:6;26379:14;26359:18;26356:38;26353:2;;;26409:18;;:::i;:::-;26353:2;26174:269;;;;:::o;26449:180::-;26497:77;26494:1;26487:88;26594:4;26591:1;26584:15;26618:4;26615:1;26608:15;26635:180;26683:77;26680:1;26673:88;26780:4;26777:1;26770:15;26804:4;26801:1;26794:15;26821:102;;26913:2;26909:7;26904:2;26897:5;26893:14;26889:28;26879:38;;26869:54;;;:::o;26929:182::-;27069:34;27065:1;27057:6;27053:14;27046:58;27035:76;:::o;27117:222::-;27257:34;27253:1;27245:6;27241:14;27234:58;27326:5;27321:2;27313:6;27309:15;27302:30;27223:116;:::o;27345:170::-;27485:22;27481:1;27473:6;27469:14;27462:46;27451:64;:::o;27521:221::-;27661:34;27657:1;27649:6;27645:14;27638:58;27730:4;27725:2;27717:6;27713:15;27706:29;27627:115;:::o;27748:244::-;27888:34;27884:1;27876:6;27872:14;27865:58;27957:27;27952:2;27944:6;27940:15;27933:52;27854:138;:::o;27998:221::-;28138:34;28134:1;28126:6;28122:14;28115:58;28207:4;28202:2;28194:6;28190:15;28183:29;28104:115;:::o;28225:225::-;28365:34;28361:1;28353:6;28349:14;28342:58;28434:8;28429:2;28421:6;28417:15;28410:33;28331:119;:::o;28456:166::-;28596:18;28592:1;28584:6;28580:14;28573:42;28562:60;:::o;28628:227::-;28768:34;28764:1;28756:6;28752:14;28745:58;28837:10;28832:2;28824:6;28820:15;28813:35;28734:121;:::o;28861:241::-;29001:34;28997:1;28989:6;28985:14;28978:58;29070:24;29065:2;29057:6;29053:15;29046:49;28967:135;:::o;29108:223::-;29248:34;29244:1;29236:6;29232:14;29225:58;29317:6;29312:2;29304:6;29300:15;29293:31;29214:117;:::o;29337:220::-;29477:34;29473:1;29465:6;29461:14;29454:58;29546:3;29541:2;29533:6;29529:15;29522:28;29443:114;:::o;29563:224::-;29703:34;29699:1;29691:6;29687:14;29680:58;29772:7;29767:2;29759:6;29755:15;29748:32;29669:118;:::o;29793:223::-;29933:34;29929:1;29921:6;29917:14;29910:58;30002:6;29997:2;29989:6;29985:15;29978:31;29899:117;:::o;30022:242::-;30162:34;30158:1;30150:6;30146:14;30139:58;30231:25;30226:2;30218:6;30214:15;30207:50;30128:136;:::o;30270:173::-;30410:25;30406:1;30398:6;30394:14;30387:49;30376:67;:::o;30449:224::-;30589:34;30585:1;30577:6;30573:14;30566:58;30658:7;30653:2;30645:6;30641:15;30634:32;30555:118;:::o;30679:167::-;30819:19;30815:1;30807:6;30803:14;30796:43;30785:61;:::o;30852:234::-;30992:34;30988:1;30980:6;30976:14;30969:58;31061:17;31056:2;31048:6;31044:15;31037:42;30958:128;:::o;31092:181::-;31232:33;31228:1;31220:6;31216:14;31209:57;31198:75;:::o;31279:229::-;31419:34;31415:1;31407:6;31403:14;31396:58;31488:12;31483:2;31475:6;31471:15;31464:37;31385:123;:::o;31514:122::-;31587:24;31605:5;31587:24;:::i;:::-;31580:5;31577:35;31567:2;;31626:1;31623;31616:12;31567:2;31557:79;:::o;31642:122::-;31715:24;31733:5;31715:24;:::i;:::-;31708:5;31705:35;31695:2;;31754:1;31751;31744:12;31695:2;31685:79;:::o;31770:120::-;31842:23;31859:5;31842:23;:::i;:::-;31835:5;31832:34;31822:2;;31880:1;31877;31870:12;31822:2;31812:78;:::o;31896:122::-;31969:24;31987:5;31969:24;:::i;:::-;31962:5;31959:35;31949:2;;32008:1;32005;31998:12;31949:2;31939:79;:::o

Swarm Source

ipfs://7c5d37929f05c46ba20f2fe943f65ad06bb1ce082b7da9eb9e567ed9dce90448
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.