ETH Price: $1,979.70 (-1.69%)

Transaction Decoder

Block:
11498015 at Dec-21-2020 05:01:17 PM +UTC
Transaction Fee:
0.009332085 ETH $18.47
Gas Used:
266,631 Gas / 35 Gwei

Emitted Events:

208 MONA.Transfer( from=0x0000000000000000000000000000000000000000, to=[Receiver] DigitalaxGenesisStaking, value=476897150664413518 )
209 MONA.Transfer( from=0x0000000000000000000000000000000000000000, to=DigitalaxNFTStaking, value=63794019122275108 )
210 MONA.Transfer( from=0x0000000000000000000000000000000000000000, to=DigitalaxLPStaking, value=174421264075744612 )
211 MONA.Transfer( from=[Receiver] DigitalaxGenesisStaking, to=[Sender] 0xc8c9ed9720264604714c9431efdf652354db7eb3, value=80181904008753274 )
212 DigitalaxGenesisStaking.RewardPaid( user=[Sender] 0xc8c9ed9720264604714c9431efdf652354db7eb3, reward=80181904008753274 )

Account State Difference:

  Address   Before After State Difference Code
0x275f5Ad0...a42D9412A
0xa202D5B0...49B8AE096
0xC155DDd8...A3EEc942f
0xC8C9eD97...354Db7eB3
0.078177035156122821 Eth
Nonce: 97
0.068844950156122821 Eth
Nonce: 98
0.009332085
(Ethermine)
910.62765526967526547 Eth910.63698735467526547 Eth0.009332085

Execution Trace

DigitalaxGenesisStaking.claimReward( _user=0xC8C9eD9720264604714C9431Efdf652354Db7eB3 )
  • DigitalaxRewards.CALL( )
    • DigitalaxGenesisStaking.STATICCALL( )
    • DigitalaxNFTStaking.STATICCALL( )
    • DigitalaxLPStaking.STATICCALL( )
      • UniswapV2Pair.STATICCALL( )
      • UniswapV2Pair.STATICCALL( )
      • MONA.mint( tokenOwner=0xa202D5B0892f2981bA86C981884cebA49B8AE096, tokens=476897150664413518 ) => ( success=True )
        • DigitalaxAccessControls.hasMinterRole( _address=0xC155DDd8aA737aA53bBCea9EA62CAC0A3EEc942f ) => ( True )
        • MONA.mint( tokenOwner=0xc802912c379a1EF995a23c07346bD8373049fa39, tokens=63794019122275108 ) => ( success=True )
          • DigitalaxAccessControls.hasMinterRole( _address=0xC155DDd8aA737aA53bBCea9EA62CAC0A3EEc942f ) => ( True )
          • MONA.mint( tokenOwner=0xA0d1345244C89b5574ba50bd6530d4EBd237e826, tokens=174421264075744612 ) => ( success=True )
            • DigitalaxAccessControls.hasMinterRole( _address=0xC155DDd8aA737aA53bBCea9EA62CAC0A3EEc942f ) => ( True )
            • DigitalaxRewards.genesisRewards( _from=1608569195, _to=1608570077 ) => ( rewards=486269695821980027 )
            • MONA.transfer( to=0xC8C9eD9720264604714C9431Efdf652354Db7eB3, tokens=80181904008753274 ) => ( success=True )
              File 1 of 7: DigitalaxGenesisStaking
              // File @openzeppelin/contracts/math/SafeMath.sol@v3.2.0
              
              // SPDX-License-Identifier: GPLv2
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Wrappers over Solidity's arithmetic operations with added overflow
               * checks.
               *
               * Arithmetic operations in Solidity wrap on overflow. This can easily result
               * in bugs, because programmers usually assume that an overflow raises an
               * error, which is the standard behavior in high level programming languages.
               * `SafeMath` restores this intuition by reverting the transaction when an
               * operation overflows.
               *
               * Using this library instead of the unchecked operations eliminates an entire
               * class of bugs, so it's recommended to use it always.
               */
              library SafeMath {
                  /**
                   * @dev Returns the addition of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `+` operator.
                   *
                   * Requirements:
                   *
                   * - Addition cannot overflow.
                   */
                  function add(uint256 a, uint256 b) internal pure returns (uint256) {
                      uint256 c = a + b;
                      require(c >= a, "SafeMath: addition overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                      return sub(a, b, "SafeMath: subtraction overflow");
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b <= a, errorMessage);
                      uint256 c = a - b;
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the multiplication of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `*` operator.
                   *
                   * Requirements:
                   *
                   * - Multiplication cannot overflow.
                   */
                  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                      // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                      // benefit is lost if 'b' is also tested.
                      // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                      if (a == 0) {
                          return 0;
                      }
              
                      uint256 c = a * b;
                      require(c / a == b, "SafeMath: multiplication overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b) internal pure returns (uint256) {
                      return div(a, b, "SafeMath: division by zero");
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b > 0, errorMessage);
                      uint256 c = a / b;
                      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                      return mod(a, b, "SafeMath: modulo by zero");
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts with custom message when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b != 0, errorMessage);
                      return a % b;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }
              
              
              // File @openzeppelin/contracts/introspection/IERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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 @openzeppelin/contracts/token/ERC721/IERC721.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Required interface of an ERC721 compliant contract.
               */
              interface IERC721 is IERC165 {
                  /**
                   * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
                   */
                  event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
                   */
                  event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
                   */
                  event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
              
                  /**
                   * @dev Returns the number of tokens in ``owner``'s account.
                   */
                  function balanceOf(address owner) external view returns (uint256 balance);
              
                  /**
                   * @dev Returns the owner of the `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function ownerOf(uint256 tokenId) external view returns (address owner);
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Transfers `tokenId` token from `from` to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Gives permission to `to` to transfer `tokenId` token to another account.
                   * The approval is cleared when the token is transferred.
                   *
                   * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
                   *
                   * Requirements:
                   *
                   * - The caller must own the token or be an approved operator.
                   * - `tokenId` must exist.
                   *
                   * Emits an {Approval} event.
                   */
                  function approve(address to, uint256 tokenId) external;
              
                  /**
                   * @dev Returns the account approved for `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function getApproved(uint256 tokenId) external view returns (address operator);
              
                  /**
                   * @dev Approve or remove `operator` as an operator for the caller.
                   * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
                   *
                   * Requirements:
                   *
                   * - The `operator` cannot be the caller.
                   *
                   * Emits an {ApprovalForAll} event.
                   */
                  function setApprovalForAll(address operator, bool _approved) external;
              
                  /**
                   * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
                   *
                   * See {setApprovalForAll}
                   */
                  function isApprovedForAll(address owner, address operator) external view returns (bool);
              
                  /**
                    * @dev Safely transfers `tokenId` token from `from` to `to`.
                    *
                    * Requirements:
                    *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                    * - `tokenId` token must exist and be owned by `from`.
                    * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                    * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                    *
                    * Emits a {Transfer} event.
                    */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Metadata is IERC721 {
              
                  /**
                   * @dev Returns the token collection name.
                   */
                  function name() external view returns (string memory);
              
                  /**
                   * @dev Returns the token collection symbol.
                   */
                  function symbol() external view returns (string memory);
              
                  /**
                   * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
                   */
                  function tokenURI(uint256 tokenId) external view returns (string memory);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Enumerable is IERC721 {
              
                  /**
                   * @dev Returns the total amount of tokens stored by the contract.
                   */
                  function totalSupply() external view returns (uint256);
              
                  /**
                   * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
                   * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
              
                  /**
                   * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
                   * Use along with {totalSupply} to enumerate all tokens.
                   */
                  function tokenByIndex(uint256 index) external view returns (uint256);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @title ERC721 token receiver interface
               * @dev Interface for any contract that wants to support safeTransfers
               * from ERC721 asset contracts.
               */
              interface IERC721Receiver {
                  /**
                   * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
                   * by `operator` from `from`, this function is called.
                   *
                   * It must return its Solidity selector to confirm the token transfer.
                   * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
                   *
                   * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
                   */
                  function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
                  external returns (bytes4);
              }
              
              
              // File @openzeppelin/contracts/introspection/ERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Implementation of the {IERC165} interface.
               *
               * Contracts may inherit from this and call {_registerInterface} to declare
               * their support of an interface.
               */
              contract ERC165 is IERC165 {
                  /*
                   * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
                   */
                  bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
              
                  /**
                   * @dev Mapping of interface ids to whether or not it's supported.
                   */
                  mapping(bytes4 => bool) private _supportedInterfaces;
              
                  constructor () internal {
                      // Derived contracts need only register support for their own interfaces,
                      // we register support for ERC165 itself here
                      _registerInterface(_INTERFACE_ID_ERC165);
                  }
              
                  /**
                   * @dev See {IERC165-supportsInterface}.
                   *
                   * Time complexity O(1), guaranteed to always use less than 30 000 gas.
                   */
                  function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
                      return _supportedInterfaces[interfaceId];
                  }
              
                  /**
                   * @dev Registers the contract as an implementer of the interface defined by
                   * `interfaceId`. Support of the actual ERC165 interface is automatic and
                   * registering its interface id is not required.
                   *
                   * See {IERC165-supportsInterface}.
                   *
                   * Requirements:
                   *
                   * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
                   */
                  function _registerInterface(bytes4 interfaceId) internal virtual {
                      require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
                      _supportedInterfaces[interfaceId] = true;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableMap.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Library for managing an enumerable variant of Solidity's
               * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
               * type.
               *
               * Maps have the following properties:
               *
               * - Entries are added, removed, and checked for existence in constant time
               * (O(1)).
               * - Entries are enumerated in O(n). No guarantees are made on the ordering.
               *
               * ```
               * contract Example {
               *     // Add the library methods
               *     using EnumerableMap for EnumerableMap.UintToAddressMap;
               *
               *     // Declare a set state variable
               *     EnumerableMap.UintToAddressMap private myMap;
               * }
               * ```
               *
               * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
               * supported.
               */
              library EnumerableMap {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Map type with
                  // bytes32 keys and values.
                  // The Map implementation uses private functions, and user-facing
                  // implementations (such as Uint256ToAddressMap) are just wrappers around
                  // the underlying Map.
                  // This means that we can only create new EnumerableMaps for types that fit
                  // in bytes32.
              
                  struct MapEntry {
                      bytes32 _key;
                      bytes32 _value;
                  }
              
                  struct Map {
                      // Storage of map keys and values
                      MapEntry[] _entries;
              
                      // Position of the entry defined by a key in the `entries` array, plus 1
                      // because index 0 means a key is not in the map.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex == 0) { // Equivalent to !contains(map, key)
                          map._entries.push(MapEntry({ _key: key, _value: value }));
                          // The entry is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          map._indexes[key] = map._entries.length;
                          return true;
                      } else {
                          map._entries[keyIndex - 1]._value = value;
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a key-value pair from a map. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function _remove(Map storage map, bytes32 key) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex != 0) { // Equivalent to contains(map, key)
                          // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
                          // in the array, and then remove the last entry (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = keyIndex - 1;
                          uint256 lastIndex = map._entries.length - 1;
              
                          // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          MapEntry storage lastEntry = map._entries[lastIndex];
              
                          // Move the last entry to the index where the entry to delete is
                          map._entries[toDeleteIndex] = lastEntry;
                          // Update the index for the moved entry
                          map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved entry was stored
                          map._entries.pop();
              
                          // Delete the index for the deleted slot
                          delete map._indexes[key];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function _contains(Map storage map, bytes32 key) private view returns (bool) {
                      return map._indexes[key] != 0;
                  }
              
                  /**
                   * @dev Returns the number of key-value pairs in the map. O(1).
                   */
                  function _length(Map storage map) private view returns (uint256) {
                      return map._entries.length;
                  }
              
                 /**
                  * @dev Returns the key-value pair stored at position `index` in the map. O(1).
                  *
                  * Note that there are no guarantees on the ordering of entries inside the
                  * array, and it may change when more entries are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
                      require(map._entries.length > index, "EnumerableMap: index out of bounds");
              
                      MapEntry storage entry = map._entries[index];
                      return (entry._key, entry._value);
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function _get(Map storage map, bytes32 key) private view returns (bytes32) {
                      return _get(map, key, "EnumerableMap: nonexistent key");
                  }
              
                  /**
                   * @dev Same as {_get}, with a custom error message when `key` is not in the map.
                   */
                  function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
                      uint256 keyIndex = map._indexes[key];
                      require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
                      return map._entries[keyIndex - 1]._value; // All indexes are 1-based
                  }
              
                  // UintToAddressMap
              
                  struct UintToAddressMap {
                      Map _inner;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
                      return _set(map._inner, bytes32(key), bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
                      return _remove(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
                      return _contains(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns the number of elements in the map. O(1).
                   */
                  function length(UintToAddressMap storage map) internal view returns (uint256) {
                      return _length(map._inner);
                  }
              
                 /**
                  * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
                      (bytes32 key, bytes32 value) = _at(map._inner, index);
                      return (uint256(key), address(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key))));
                  }
              
                  /**
                   * @dev Same as {get}, with a custom error message when `key` is not in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Strings.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev String operations.
               */
              library Strings {
                  /**
                   * @dev Converts a `uint256` to its ASCII `string` 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);
                      uint256 index = digits - 1;
                      temp = value;
                      while (temp != 0) {
                          buffer[index--] = byte(uint8(48 + temp % 10));
                          temp /= 10;
                      }
                      return string(buffer);
                  }
              }
              
              
              // File contracts/ERC721/ERC721WithSameTokenURIForAllTokens.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              
              
              
              
              /**
               * @title ERC721 Non-Fungible Token Standard basic implementation
               * @dev see https://eips.ethereum.org/EIPS/eip-721
               * @dev This is a modified OZ ERC721 base contract with one change where all tokens have the same token URI
               */
              contract ERC721WithSameTokenURIForAllTokens is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
                  using SafeMath for uint256;
                  using Address for address;
                  using EnumerableSet for EnumerableSet.UintSet;
                  using EnumerableMap for EnumerableMap.UintToAddressMap;
                  using Strings for uint256;
              
                  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
                  // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
                  bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
              
                  // Mapping from holder address to their (enumerable) set of owned tokens
                  mapping (address => EnumerableSet.UintSet) private _holderTokens;
              
                  // Enumerable mapping from token ids to their owners
                  EnumerableMap.UintToAddressMap private _tokenOwners;
              
                  // Mapping from token ID to approved address
                  mapping (uint256 => address) private _tokenApprovals;
              
                  // Mapping from owner to operator approvals
                  mapping (address => mapping (address => bool)) private _operatorApprovals;
              
                  // Token name
                  string private _name;
              
                  // Token symbol
                  string private _symbol;
              
                  // Single token URI for all tokens
                  string public tokenURI_;
              
                  /*
                   *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
                   *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
                   *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
                   *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
                   *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
                   *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
                   *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
                   *
                   *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
                   *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
              
                  /*
                   *     bytes4(keccak256('name()')) == 0x06fdde03
                   *     bytes4(keccak256('symbol()')) == 0x95d89b41
                   *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
                   *
                   *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
              
                  /*
                   *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
                   *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
                   *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
                   *
                   *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
              
                  /**
                   * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
                   */
                  constructor (string memory name, string memory symbol) public {
                      _name = name;
                      _symbol = symbol;
              
                      // register the supported interfaces to conform to ERC721 via ERC165
                      _registerInterface(_INTERFACE_ID_ERC721);
                      _registerInterface(_INTERFACE_ID_ERC721_METADATA);
                      _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
                  }
              
                  /**
                   * @dev See {IERC721-balanceOf}.
                   */
                  function balanceOf(address owner) public view override returns (uint256) {
                      require(owner != address(0), "ERC721: balance query for the zero address");
              
                      return _holderTokens[owner].length();
                  }
              
                  /**
                   * @dev See {IERC721-ownerOf}.
                   */
                  function ownerOf(uint256 tokenId) public view override returns (address) {
                      return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
                  }
              
                  /**
                   * @dev See {IERC721Metadata-name}.
                   */
                  function name() public view override returns (string memory) {
                      return _name;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-symbol}.
                   */
                  function symbol() public view override returns (string memory) {
                      return _symbol;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-tokenURI}.
                   */
                  function tokenURI(uint256 tokenId) public view override returns (string memory) {
                      require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
              
                      return tokenURI_;
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
                      return _holderTokens[owner].at(index);
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-totalSupply}.
                   */
                  function totalSupply() public view override returns (uint256) {
                      // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
                      return _tokenOwners.length();
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenByIndex}.
                   */
                  function tokenByIndex(uint256 index) public view override returns (uint256) {
                      (uint256 tokenId, ) = _tokenOwners.at(index);
                      return tokenId;
                  }
              
                  /**
                   * @dev See {IERC721-approve}.
                   */
                  function approve(address to, uint256 tokenId) public virtual override {
                      address owner = ownerOf(tokenId);
                      require(to != owner, "ERC721: approval to current owner");
              
                      require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
                          "ERC721: approve caller is not owner nor approved for all"
                      );
              
                      _approve(to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-getApproved}.
                   */
                  function getApproved(uint256 tokenId) public view override returns (address) {
                      require(_exists(tokenId), "ERC721: approved query for nonexistent token");
              
                      return _tokenApprovals[tokenId];
                  }
              
                  /**
                   * @dev See {IERC721-setApprovalForAll}.
                   */
                  function setApprovalForAll(address operator, bool approved) public virtual override {
                      require(operator != _msgSender(), "ERC721: approve to caller");
              
                      _operatorApprovals[_msgSender()][operator] = approved;
                      emit ApprovalForAll(_msgSender(), operator, approved);
                  }
              
                  /**
                   * @dev See {IERC721-isApprovedForAll}.
                   */
                  function isApprovedForAll(address owner, address operator) public view override returns (bool) {
                      return _operatorApprovals[owner][operator];
                  }
              
                  /**
                   * @dev See {IERC721-transferFrom}.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) public virtual override {
                      //solhint-disable-next-line max-line-length
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
              
                      _transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
                      safeTransferFrom(from, to, tokenId, "");
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
                      _safeTransfer(from, to, tokenId, _data);
                  }
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * `_data` is additional data, it has no specified format and it is sent in call to `to`.
                   *
                   * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
                   * implement alternative mechanisms to perform token transfer, such as signature-based.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _transfer(from, to, tokenId);
                      require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Returns whether `tokenId` exists.
                   *
                   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
                   *
                   * Tokens start existing when they are minted (`_mint`),
                   * and stop existing when they are burned (`_burn`).
                   */
                  function _exists(uint256 tokenId) internal view returns (bool) {
                      return _tokenOwners.contains(tokenId);
                  }
              
                  /**
                   * @dev Returns whether `spender` is allowed to manage `tokenId`.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
                      require(_exists(tokenId), "ERC721: operator query for nonexistent token");
                      address owner = ownerOf(tokenId);
                      return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
                  }
              
                  /**
                   * @dev Safely mints `tokenId` and transfers it to `to`.
                   *
                   * Requirements:
                   d*
                   * - `tokenId` must not exist.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeMint(address to, uint256 tokenId) internal virtual {
                      _safeMint(to, tokenId, "");
                  }
              
                  /**
                   * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
                   * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
                   */
                  function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _mint(to, tokenId);
                      require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Mints `tokenId` and transfers it to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
                   *
                   * Requirements:
                   *
                   * - `tokenId` must not exist.
                   * - `to` cannot be the zero address.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _mint(address to, uint256 tokenId) internal virtual {
                      require(to != address(0), "ERC721: mint to the zero address");
                      require(!_exists(tokenId), "ERC721: token already minted");
              
                      _beforeTokenTransfer(address(0), to, tokenId);
              
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(address(0), to, tokenId);
                  }
              
                  /**
                   * @dev Destroys `tokenId`.
                   * The approval is cleared when the token is burned.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _burn(uint256 tokenId) internal virtual {
                      address owner = ownerOf(tokenId);
              
                      _beforeTokenTransfer(owner, address(0), tokenId);
              
                      // Clear approvals
                      _approve(address(0), tokenId);
              
                      _holderTokens[owner].remove(tokenId);
              
                      _tokenOwners.remove(tokenId);
              
                      emit Transfer(owner, address(0), tokenId);
                  }
              
                  /**
                   * @dev Transfers `tokenId` from `from` to `to`.
                   *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
                   *
                   * Requirements:
                   *
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _transfer(address from, address to, uint256 tokenId) internal virtual {
                      require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
                      require(to != address(0), "ERC721: transfer to the zero address");
              
                      _beforeTokenTransfer(from, to, tokenId);
              
                      // Clear approvals from the previous owner
                      _approve(address(0), tokenId);
              
                      _holderTokens[from].remove(tokenId);
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
                   * The call is not executed if the target address is not a contract.
                   *
                   * @param from address representing the previous owner of the given token ID
                   * @param to target address that will receive the tokens
                   * @param tokenId uint256 ID of the token to be transferred
                   * @param _data bytes optional data to send along with the call
                   * @return bool whether the call correctly returned the expected magic value
                   */
                  function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
                  private returns (bool)
                  {
                      if (!to.isContract()) {
                          return true;
                      }
                      bytes memory returndata = to.functionCall(abi.encodeWithSelector(
                              IERC721Receiver(to).onERC721Received.selector,
                              _msgSender(),
                              from,
                              tokenId,
                              _data
                          ), "ERC721: transfer to non ERC721Receiver implementer");
                      bytes4 retval = abi.decode(returndata, (bytes4));
                      return (retval == _ERC721_RECEIVED);
                  }
              
                  function _approve(address to, uint256 tokenId) private {
                      _tokenApprovals[tokenId] = to;
                      emit Approval(ownerOf(tokenId), to, tokenId);
                  }
              
                  /**
                   * @dev Hook that is called before any token transfer. This includes minting
                   * and burning.
                   *
                   * Calling conditions:
                   *
                   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
                   * transferred to `to`.
                   * - When `from` is zero, `tokenId` will be minted for `to`.
                   * - When `to` is zero, ``from``'s `tokenId` will be burned.
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   *
                   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
              }
              
              
              // File contracts/DigitalaxGenesisNFT.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              /**
               * @title Digitalax Genesis NFT
               * @dev To facilitate the genesis sale for the Digitialax platform
               */
              contract DigitalaxGenesisNFT is ERC721WithSameTokenURIForAllTokens("DigitalaxGenesis", "DXG") {
                  using SafeMath for uint256;
              
                  // @notice event emitted upon construction of this contract, used to bootstrap external indexers
                  event DigitalaxGenesisNFTContractDeployed();
              
                  // @notice event emitted when a contributor buys a Genesis NFT
                  event GenesisPurchased(
                      address indexed buyer,
                      uint256 indexed tokenId,
                      uint256 contribution
                  );
              
                  // @notice event emitted when a admin mints a Genesis NFT
                  event AdminGenesisMinted(
                      address indexed beneficiary,
                      address indexed admin,
                      uint256 indexed tokenId
                  );
              
                  // @notice event emitted when a contributors amount is increased
                  event ContributionIncreased(
                      address indexed buyer,
                      uint256 contribution
                  );
              
                  // @notice event emitted when end date is changed
                  event GenesisEndUpdated(
                      uint256 genesisEndTimestamp,
                      address indexed admin
                  );
              
                  // @notice event emitted when DigitalaxAccessControls is updated
                  event AccessControlsUpdated(
                      address indexed newAdress
                  );
              
                  // @notice responsible for enforcing admin access
                  DigitalaxAccessControls public accessControls;
              
                  // @notice all funds will be sent to this address pon purchase of a Genesis NFT
                  address payable public fundsMultisig;
              
                  // @notice start date for them the Genesis sale is open to the public, before this data no purchases can be made
                  uint256 public genesisStartTimestamp;
              
                  // @notice end date for them the Genesis sale is closed, no more purchased can be made after this point
                  uint256 public genesisEndTimestamp;
              
                  // @notice set after end time has been changed once, prevents further changes to end timestamp
                  bool public genesisEndTimestampLocked;
              
                  // @notice the minimum amount a buyer can contribute in a single go
                  uint256 public constant minimumContributionAmount = 0.1 ether;
              
                  // @notice the maximum accumulative amount a user can contribute to the genesis sale
                  uint256 public constant maximumContributionAmount = 2 ether;
              
                  // @notice accumulative => contribution total
                  mapping(address => uint256) public contribution;
              
                  // @notice global accumulative contribution amount
                  uint256 public totalContributions;
              
                  // @notice max number of paid contributions to the genesis sale
                  uint256 public constant maxGenesisContributionTokens = 460;
              
                  uint256 public totalAdminMints;
              
                  constructor(
                      DigitalaxAccessControls _accessControls,
                      address payable _fundsMultisig,
                      uint256 _genesisStartTimestamp,
                      uint256 _genesisEndTimestamp,
                      string memory _tokenURI
                  ) public {
                      accessControls = _accessControls;
                      fundsMultisig = _fundsMultisig;
                      genesisStartTimestamp = _genesisStartTimestamp;
                      genesisEndTimestamp = _genesisEndTimestamp;
                      tokenURI_ = _tokenURI;
                      emit DigitalaxGenesisNFTContractDeployed();
                  }
              
                  /**
                   * @dev Proxy method for facilitating a single point of entry to either buy or contribute additional value to the Genesis sale
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   */
                  function buyOrIncreaseContribution() external payable {
                      if (contribution[_msgSender()] == 0) {
                          buy();
                      } else {
                          increaseContribution();
                      }
                  }
              
                  /**
                   * @dev Facilitating the initial purchase of a Genesis NFT
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if already owns an genesis token
                   * @dev Buyer receives a NFT on success
                   * @dev All funds move to fundsMultisig
                   */
                  function buy() public payable {
                      require(contribution[_msgSender()] == 0, "DigitalaxGenesisNFT.buy: You already own a genesis NFT");
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.buy: No genesis are available outside of the genesis window"
                      );
              
                      uint256 _contributionAmount = msg.value;
                      require(
                          _contributionAmount >= minimumContributionAmount,
                          "DigitalaxGenesisNFT.buy: Contribution does not meet minimum requirement"
                      );
              
                      require(
                          _contributionAmount <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.buy: You cannot exceed the maximum contribution amount"
                      );
              
                      require(remainingGenesisTokens() > 0, "DigitalaxGenesisNFT.buy: Total number of genesis token holders reached");
              
                      contribution[_msgSender()] = _contributionAmount;
                      totalContributions = totalContributions.add(_contributionAmount);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _contributionAmount}("");
                      require(fundsTransferSuccess, "DigitalaxGenesisNFT.buy: Unable to send contribution to funds multisig");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_msgSender(), tokenId);
              
                      emit GenesisPurchased(_msgSender(), tokenId, _contributionAmount);
                  }
              
                  /**
                   * @dev Facilitates an owner to increase there contribution
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if caller does not already owns an genesis token
                   * @dev All funds move to fundsMultisig
                   */
                  function increaseContribution() public payable {
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.increaseContribution: No increases are possible outside of the genesis window"
                      );
              
                      require(
                          contribution[_msgSender()] > 0,
                          "DigitalaxGenesisNFT.increaseContribution: You do not own a genesis NFT"
                      );
              
                      uint256 _amountToIncrease = msg.value;
                      contribution[_msgSender()] = contribution[_msgSender()].add(_amountToIncrease);
              
                      require(
                          contribution[_msgSender()] <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.increaseContribution: You cannot exceed the maximum contribution amount"
                      );
              
                      totalContributions = totalContributions.add(_amountToIncrease);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _amountToIncrease}("");
                      require(
                          fundsTransferSuccess,
                          "DigitalaxGenesisNFT.increaseContribution: Unable to send contribution to funds multisig"
                      );
              
                      emit ContributionIncreased(_msgSender(), _amountToIncrease);
                  }
              
                  // Admin
              
                  /**
                   * @dev Allows a whitelisted admin to mint a token and issue it to a beneficiary
                   * @dev One token per holder
                   * @dev All holders contribution as set o zero on creation
                   */
                  function adminBuy(address _beneficiary) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.adminBuy: Sender must be admin"
                      );
                      require(_beneficiary != address(0), "DigitalaxGenesisNFT.adminBuy: Beneficiary cannot be ZERO");
                      require(balanceOf(_beneficiary) == 0, "DigitalaxGenesisNFT.adminBuy: Beneficiary already owns a genesis NFT");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_beneficiary, tokenId);
              
                      // Increase admin mint counts
                      totalAdminMints = totalAdminMints.add(1);
              
                      emit AdminGenesisMinted(_beneficiary, _msgSender(), tokenId);
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the end date of the genesis
                   */
                  function updateGenesisEnd(uint256 _end) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateGenesisEnd: Sender must be admin"
                      );
                      // If already passed, dont allow opening again
                      require(genesisEndTimestamp > _getNow(), "DigitalaxGenesisNFT.updateGenesisEnd: End time already passed");
              
                      // Only allow setting this once
                      require(!genesisEndTimestampLocked, "DigitalaxGenesisNFT.updateGenesisEnd: End time locked");
              
                      genesisEndTimestamp = _end;
              
                      // Lock future end time modifications
                      genesisEndTimestampLocked = true;
              
                      emit GenesisEndUpdated(genesisEndTimestamp, _msgSender());
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the start date of the genesis
                   */
                  function updateAccessControls(DigitalaxAccessControls _accessControls) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateAccessControls: Sender must be admin"
                      );
                      require(address(_accessControls) != address(0), "DigitalaxGenesisNFT.updateAccessControls: Zero Address");
                      accessControls = _accessControls;
              
                      emit AccessControlsUpdated(address(_accessControls));
                  }
              
                  /**
                  * @dev Returns total remaining number of tokens available in the Genesis sale
                  */
                  function remainingGenesisTokens() public view returns (uint256) {
                      return _getMaxGenesisContributionTokens() - (totalSupply() - totalAdminMints);
                  }
              
                  // Internal
              
                  function _getNow() internal virtual view returns (uint256) {
                      return block.timestamp;
                  }
              
                  function _getMaxGenesisContributionTokens() internal virtual view returns (uint256) {
                      return maxGenesisContributionTokens;
                  }
              
                  /**
                   * @dev Before token transfer hook to enforce that no token can be moved to another address until the genesis sale has ended
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
                      if (from != address(0) && _getNow() <= genesisEndTimestamp) {
                          revert("DigitalaxGenesisNFT._beforeTokenTransfer: Transfers are currently locked at this time");
                      }
                  }
              }
              
              
              // File interfaces/IERC20.sol
              
              pragma solidity ^0.6.2;
              
              
              
              interface IERC20 {
                  function name() external view returns (string memory);
                  function symbol() external view returns (string memory);
                  function decimals() external view returns (uint8);
                  function totalSupply() external view returns (uint256);
                  function balanceOf(address owner) external view returns (uint256);
                  function transfer(address to, uint256 amount) external returns (bool);
                  function transferFrom(address from, address to, uint256 amount) external returns (bool);
                  function approve(address spender, uint256 amount) external returns (bool);
                  function allowance(address owner, address spender) external view returns (uint256);
              
                  event Transfer(address indexed from, address indexed to, uint256 amount);
                  event Approval(address indexed owner, address indexed spender, uint256 amount);
              }
              
              
              // File interfaces/IDigitalaxRewards.sol
              
              
              
              pragma solidity 0.6.12;
              
              /// @dev an interface to interact with the Genesis MONA NFT that will 
              interface IDigitalaxRewards {
                  function updateRewards() external returns (bool);
                  function genesisRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function parentRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function LPRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function lastRewardTime() external view returns (uint256);
              }
              
              
              // File interfaces/IDigitalaxGenesisNFT.sol
              
              
              
              pragma solidity 0.6.12;
              
              /// @dev an interface to interact with the Genesis MONA NFT that will 
              interface IDigitalaxGenesisNFT {
                  function contribution(address user) external view returns (uint256);
                  function totalContributions() external view returns (uint256);
                  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
                  function balanceOf(address owner) external view returns (uint256);
                  function safeTransferFrom(address from, address to, uint256 tokenId) external;
              }
              
              
              // File contracts/DigitalaxGenesisStaking.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              /**
               * @title Digitalax Staking
               * @dev Stake NFTs, earn tokens on the Digitialax platform
               * @author Adrian Guerrera (deepyr)
               */
              
              
              contract DigitalaxGenesisStaking {
                  using SafeMath for uint256;
                  bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
              
                  IERC20 public rewardsToken;
                  IDigitalaxGenesisNFT public genesisNFT;
                  DigitalaxAccessControls public accessControls;
                  IDigitalaxRewards public rewardsContract;
              
                  /// @notice all funds will be sent to this address pon purchase of a Genesis NFT
                  address payable public fundsMultisig;
              
                  /// @notice total ethereum staked currently in the gensesis staking contract
                  uint256 public stakedEthTotal;
                  uint256 public lastUpdateTime;
              
                  uint256 public rewardsPerTokenPoints;
                  uint256 public totalUnclaimedRewards;
              
                  uint256 constant pointMultiplier = 10e32;
              
                  /**
                  @notice Struct to track what user is staking which tokens
                  @dev tokenIds are all the tokens staked by the staker
                  @dev balance is the current ether balance of the staker
                  @dev rewardsEarned is the total reward for the staker till now
                  @dev rewardsReleased is how much reward has been paid to the staker
                  */
                  struct Staker {
                      uint256[] tokenIds;
                      mapping (uint256 => uint256) tokenIndex;
                      uint256 balance;
                      uint256 lastRewardPoints;
                      uint256 rewardsEarned;
                      uint256 rewardsReleased;
                  }
              
                  /// @notice mapping of a staker to its current properties
                  mapping (address => Staker) public stakers;
              
                  // Mapping from token ID to owner address
                  mapping (uint256 => address) public tokenOwner;
              
                  /// @notice tokenId => amount contributed
                  mapping (uint256 => uint256) public contribution;
                  uint256 public totalContributions;
                  // @notice the maximum accumulative amount a user can contribute to the genesis sale
                  uint256 public constant maximumContributionAmount = 2 ether;
              
                  /// @notice sets the token to be claimable or not, cannot claim if it set to false
                  bool public tokensClaimable;
                  bool initialised;
              
                  /// @notice event emitted when a user has staked a token
                  event Staked(address owner, uint256 amount);
              
                  /// @notice event emitted when a user has unstaked a token
                  event Unstaked(address owner, uint256 amount);
              
                  /// @notice event emitted when a user claims reward
                  event RewardPaid(address indexed user, uint256 reward);
                  
                  /// @notice Allows reward tokens to be claimed
                  event ClaimableStatusUpdated(bool status);
              
                  /// @notice Emergency unstake tokens without rewards
                  event EmergencyUnstake(address indexed user, uint256 tokenId);
              
                  // @notice event emitted when a contributors amount is increased
                  event ContributionIncreased(
                      uint256 indexed tokenId,
                      uint256 contribution
                  );
              
                  constructor() public {
                  }
                   /**
                   * @dev Single gateway to intialize the staking contract after deploying
                   * @dev Sets the contract with the MONA genesis NFT and MONA reward token 
                   */
                  function initGenesisStaking(
                      address payable _fundsMultisig,
                      IERC20 _rewardsToken,
                      IDigitalaxGenesisNFT _genesisNFT,
                      DigitalaxAccessControls _accessControls
                  )
                      public
                  {
                      require(!initialised, "Already initialised");
                      fundsMultisig = _fundsMultisig;
                      rewardsToken = _rewardsToken;
                      genesisNFT = _genesisNFT;
                      accessControls = _accessControls;
                      lastUpdateTime = block.timestamp;
                      initialised = true;
                  }
              
                  function setRewardsContract(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxGenesisStaking.setRewardsContract: Sender must be admin"
                      );
                      require(_addr != address(0));
                      rewardsContract = IDigitalaxRewards(_addr);
                  }
              
                  function setTokensClaimable(
                      bool _enabled
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxGenesisStaking.setTokensClaimable: Sender must be admin"
                      );
                      tokensClaimable = _enabled;
                      emit ClaimableStatusUpdated(_enabled);
                  }
              
                  /// @dev Getter functions for Staking contract
                  /// @dev Get the tokens staked by a user
                  function getStakedTokens(
                      address _user
                  )
                      external
                      view
                      returns (uint256[] memory tokenIds)
                  {
                      return stakers[_user].tokenIds;
                  }
              
              
                  /// @dev Get the amount a staked nft is valued at ie bought at
                  function getGenesisContribution (
                      uint256 _tokenId
                  ) 
                      public
                      view
                      returns (uint256 amount)
                  {
                      return contribution[_tokenId];
                  }
              
                  /// @notice Stake Genesis MONA NFT and earn reward tokens. 
                  function stake(
                      uint256 tokenId
                  )
                      external
                  {
                      _stake(msg.sender, tokenId);
                  }
              
                   /// @notice Stake multiple MONA NFTs and earn reward tokens. 
                  function stakeBatch(uint256[] memory tokenIds)
                      external
                  {
                      for (uint i = 0; i < tokenIds.length; i++) {
                          _stake(msg.sender, tokenIds[i]);
                      }
                  }
              
                  /// @notice Stake all your MONA NFTs and earn reward tokens. 
                  function stakeAll()
                      external
                  {
                      uint256 balance = genesisNFT.balanceOf(msg.sender);
                      for (uint i = 0; i < balance; i++) {
                          _stake(msg.sender, genesisNFT.tokenOfOwnerByIndex(msg.sender,i));
                      }
                  }
              
              
                  /**
                   * @dev All the staking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they stake the nfts based on ether price
                  */
                  function _stake(
                      address _user,
                      uint256 _tokenId
                  )
                      internal
                  {
                      Staker storage staker = stakers[_user];
              
                      if (staker.balance == 0 && staker.lastRewardPoints == 0 ) {
                        staker.lastRewardPoints = rewardsPerTokenPoints;
                      }
              
                      updateReward(_user);
                      uint256 amount = getGenesisContribution(_tokenId);
                      staker.balance = staker.balance.add(amount);
                      stakedEthTotal = stakedEthTotal.add(amount);
                      staker.tokenIds.push(_tokenId);
                      staker.tokenIndex[staker.tokenIds.length - 1];
                      tokenOwner[_tokenId] = _user;
                      genesisNFT.safeTransferFrom(
                          _user,
                          address(this),
                          _tokenId
                      );
              
                      emit Staked(_user, _tokenId);
                  }
              
                  /// @notice Unstake Genesis MONA NFTs. 
                  function unstake(
                      uint256 _tokenId
                  ) 
                      external 
                  {
                      require(
                          tokenOwner[_tokenId] == msg.sender,
                          "DigitalaxGenesisStaking._unstake: Sender must have staked tokenID"
                      );
                      claimReward(msg.sender);
                      _unstake(msg.sender, _tokenId);
                  }
              
                  /// @notice Stake multiple Genesis NFTs and claim reward tokens. 
                  function unstakeBatch(
                      uint256[] memory tokenIds
                  )
                      external
                  {
                      claimReward(msg.sender);
                      for (uint i = 0; i < tokenIds.length; i++) {
                          if (tokenOwner[i] == msg.sender) {
                              _unstake(msg.sender, tokenIds[i]);
                          }
                      }
                  }
              
              
                   /**
                   * @dev All the unstaking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they unstake the nfts based on ether price
                  */
                  function _unstake(
                      address _user,
                      uint256 _tokenId
                  ) 
                      internal 
                  {
              
                      Staker storage staker = stakers[_user];
              
                      uint256 amount = getGenesisContribution(_tokenId);
                      staker.balance = staker.balance.sub(amount);
                      stakedEthTotal = stakedEthTotal.sub(amount);
              
                      uint256 lastIndex = staker.tokenIds.length - 1;
                      uint256 lastIndexKey = staker.tokenIds[lastIndex];
                      staker.tokenIds[staker.tokenIndex[_tokenId]] = lastIndexKey;
                      if (staker.tokenIds.length > 0) {
                          staker.tokenIds.pop();
                          delete staker.tokenIndex[_tokenId];
                      }
              
                      if (staker.balance == 0) {
                          delete stakers[_user];
                      }
                      delete tokenOwner[_tokenId];
              
                      genesisNFT.safeTransferFrom(
                          address(this),
                          _user,
                          _tokenId
                      );
              
                      emit Unstaked(_user, _tokenId);
              
                  }
              
                  // Unstake without caring about rewards. EMERGENCY ONLY.
                  function emergencyUnstake(uint256 _tokenId) external {
                      require(
                          tokenOwner[_tokenId] == msg.sender,
                          "DigitalaxGenesisStaking._unstake: Sender must have staked tokenID"
                      );
                      _unstake(msg.sender, _tokenId);
                      emit EmergencyUnstake(msg.sender, _tokenId);
              
                  }
              
              
                  /// @dev Updates the amount of rewards owed for each user before any tokens are moved
                  function updateReward(
                      address _user
                  ) 
                      public 
                  {
                      rewardsContract.updateRewards();
                      uint256 genesisRewards = rewardsContract.genesisRewards(lastUpdateTime, block.timestamp);
              
                      if (stakedEthTotal > 0) {
                          rewardsPerTokenPoints = rewardsPerTokenPoints.add(genesisRewards
                                                          .mul(1e18)
                                                          .mul(pointMultiplier)
                                                          .div(stakedEthTotal));
                      }
                      
                      lastUpdateTime = block.timestamp;
                      uint256 rewards = rewardsOwing(_user);
              
                      Staker storage staker = stakers[_user];
                      if (_user != address(0)) {
                          staker.rewardsEarned = staker.rewardsEarned.add(rewards);
                          staker.lastRewardPoints = rewardsPerTokenPoints; 
                      }
                  }
              
              
                  /// @notice Returns the rewards owing for a user
                  /// @dev The rewards are dynamic and normalised from the other pools
                  /// @dev This gets the rewards from each of the periods as one multiplier
                  function rewardsOwing(
                      address _user
                  )
                      public
                      view
                      returns(uint256)
                  {
                      uint256 newRewardPerToken = rewardsPerTokenPoints.sub(stakers[_user].lastRewardPoints);
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards;
                  }
              
              
              
                  /// @notice Lets a user with rewards owing to claim tokens
                  function claimReward(
                      address _user
                  )
                      public
                  {
                      require(
                          tokensClaimable == true,
                          "Tokens cannnot be claimed yet"
                      );
                      updateReward(_user);
              
                      Staker storage staker = stakers[_user];
                  
                      uint256 payableAmount = staker.rewardsEarned.sub(staker.rewardsReleased);
                      staker.rewardsReleased = staker.rewardsReleased.add(payableAmount);
              
                      rewardsToken.transfer(_user, payableAmount);
                      emit RewardPaid(_user, payableAmount);
                  }
              
              
                  /// @notice Returns the about of rewards yet to be claimed
                  function unclaimedRewards(
                      address _user
                  )
                      external
                      view
                      returns(uint256)
                  {
                      if (stakedEthTotal == 0) {
                          return 0;
                      }
              
                      uint256 genesisRewards = rewardsContract.genesisRewards(lastUpdateTime,
                                                                      block.timestamp);
              
                      uint256 newRewardPerToken = rewardsPerTokenPoints.add(genesisRewards
                                                                              .mul(1e18)
                                                                              .mul(pointMultiplier)
                                                                              .div(stakedEthTotal))
                                                                       .sub(stakers[_user].lastRewardPoints);
                                                                       
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards.add(stakers[_user].rewardsEarned).sub(stakers[_user].rewardsReleased);
                  }
              
                  // Set contribution amounts for NFTs
                  ///@dev So the genesis contracts did not have any way to check how much was contributed
                  ///@dev So instead we put in the amounts using this function
                  function setContributions(
                      uint256[] memory tokens,
                      uint256[] memory amounts
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxGenesisStaking.setContributions: Sender must be admin"
                      );
                      for (uint256 i = 0; i < tokens.length; i++) {
                          uint256 token = tokens[i];
                          uint256 amount = amounts[i];
                          contribution[token] = amount;
                          totalContributions = totalContributions.add(amount);
              
                      }
                  }
              
                  /**
                   * @notice Facilitates an owner to increase there contribution
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if caller does not already owns an genesis token
                   * @dev All funds move to fundsMultisig
                   */
                  function increaseContribution(uint256 _tokenId)
                      external
                      payable
                  {
                      updateReward(tokenOwner[_tokenId]);
                      require(
                          contribution[_tokenId] > 0,
                          "DigitalaxGenesisStaking.increaseContribution: genesis NFT was not contribibuted"
                      );
              
                      uint256 _amountToIncrease = msg.value;
                      contribution[_tokenId] = contribution[_tokenId].add(_amountToIncrease);
              
                      require(
                          contribution[_tokenId] <= maximumContributionAmount,
                          "DigitalaxGenesisStaking.increaseContribution: You cannot exceed the maximum contribution amount"
                      );
              
                      totalContributions = totalContributions.add(_amountToIncrease);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _amountToIncrease}("");
                      require(
                          fundsTransferSuccess,
                          "DigitalaxGenesisStaking.increaseContribution: Unable to send contribution to funds multisig"
                      );
                      
                      Staker storage staker = stakers[tokenOwner[_tokenId]];
                      /// @dev Update staked balance
                      if (staker.tokenIds[staker.tokenIndex[_tokenId]] == _tokenId ) {
                          staker.balance = staker.balance.add(_amountToIncrease);
                          stakedEthTotal = stakedEthTotal.add(_amountToIncrease);
                      }
                      emit ContributionIncreased(_tokenId, _amountToIncrease);
                  }
              
              
                  function onERC721Received(
                      address,
                      address,
                      uint256,
                      bytes calldata data
                  )
                      public returns(bytes4)
                  {
                      return _ERC721_RECEIVED;
                  }
              
              
              
              }

              File 2 of 7: MONA
              // File @openzeppelin/contracts/token/ERC20/IERC20.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Interface of the ERC20 standard as defined in the EIP.
               */
              interface IERC20 {
                  /**
                   * @dev Returns the amount of tokens in existence.
                   */
                  function totalSupply() external view returns (uint256);
              
                  /**
                   * @dev Returns the amount of tokens owned by `account`.
                   */
                  function balanceOf(address account) external view returns (uint256);
              
                  /**
                   * @dev Moves `amount` tokens from the caller's account to `recipient`.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transfer(address recipient, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Returns the remaining number of tokens that `spender` will be
                   * allowed to spend on behalf of `owner` through {transferFrom}. This is
                   * zero by default.
                   *
                   * This value changes when {approve} or {transferFrom} are called.
                   */
                  function allowance(address owner, address spender) external view returns (uint256);
              
                  /**
                   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * IMPORTANT: Beware that changing an allowance with this method brings the risk
                   * that someone may use both the old and the new allowance by unfortunate
                   * transaction ordering. One possible solution to mitigate this race
                   * condition is to first reduce the spender's allowance to 0 and set the
                   * desired value afterwards:
                   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
                   *
                   * Emits an {Approval} event.
                   */
                  function approve(address spender, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Moves `amount` tokens from `sender` to `recipient` using the
                   * allowance mechanism. `amount` is then deducted from the caller's
                   * allowance.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Emitted when `value` tokens are moved from one account (`from`) to
                   * another (`to`).
                   *
                   * Note that `value` may be zero.
                   */
                  event Transfer(address indexed from, address indexed to, uint256 value);
              
                  /**
                   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
                   * a call to {approve}. `value` is the new allowance.
                   */
                  event Approval(address indexed owner, address indexed spender, uint256 value);
              }
              
              
              // File @openzeppelin/contracts/math/SafeMath.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Wrappers over Solidity's arithmetic operations with added overflow
               * checks.
               *
               * Arithmetic operations in Solidity wrap on overflow. This can easily result
               * in bugs, because programmers usually assume that an overflow raises an
               * error, which is the standard behavior in high level programming languages.
               * `SafeMath` restores this intuition by reverting the transaction when an
               * operation overflows.
               *
               * Using this library instead of the unchecked operations eliminates an entire
               * class of bugs, so it's recommended to use it always.
               */
              library SafeMath {
                  /**
                   * @dev Returns the addition of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `+` operator.
                   *
                   * Requirements:
                   *
                   * - Addition cannot overflow.
                   */
                  function add(uint256 a, uint256 b) internal pure returns (uint256) {
                      uint256 c = a + b;
                      require(c >= a, "SafeMath: addition overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                      return sub(a, b, "SafeMath: subtraction overflow");
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b <= a, errorMessage);
                      uint256 c = a - b;
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the multiplication of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `*` operator.
                   *
                   * Requirements:
                   *
                   * - Multiplication cannot overflow.
                   */
                  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                      // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                      // benefit is lost if 'b' is also tested.
                      // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                      if (a == 0) {
                          return 0;
                      }
              
                      uint256 c = a * b;
                      require(c / a == b, "SafeMath: multiplication overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b) internal pure returns (uint256) {
                      return div(a, b, "SafeMath: division by zero");
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b > 0, errorMessage);
                      uint256 c = a / b;
                      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                      return mod(a, b, "SafeMath: modulo by zero");
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts with custom message when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b != 0, errorMessage);
                      return a % b;
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }
              
              
              // File contracts/MONA.sol
              
              pragma solidity ^0.6.12;
              
              
              
              
              /**
               * @notice Mona Governance Token = ERC20 + mint + burn.
               * @author Adrian Guerrera (deepyr)
               * @author Attr: BokkyPooBah (c) The Optino Project
               * @dev https://github.com/ogDAO/Governance/
               */
              
              // SPDX-License-Identifier: GPLv2
              contract MONA is Context, IERC20  {
                  using SafeMath for uint;
              
                  string _symbol;
                  string  _name;
                  uint8 _decimals;
                  uint _totalSupply;
                  mapping(address => uint) balances;
              
                  mapping(address => mapping(address => uint)) allowed;
                  uint public cap;
                  bool public freezeCap;
              
                  DigitalaxAccessControls public accessControls;
              
                  event CapUpdated(uint256 cap, bool freezeCap);
              
                  constructor(
                      string memory symbol_,
                      string memory name_,
                      uint8 decimals_,
                      DigitalaxAccessControls accessControls_,
                      address tokenOwner,
                      uint256 initialSupply
                  ) 
                      public 
                  {
                      _symbol = symbol_;
                      _name = name_;
                      _decimals = decimals_;
                      accessControls = accessControls_;
                      balances[tokenOwner] = initialSupply;
                      _totalSupply = initialSupply;
                      emit Transfer(address(0), tokenOwner, _totalSupply);
                  }
              
                  function symbol() external view returns (string memory) {
                      return _symbol;
                  }
                  function name() external view returns (string memory) {
                      return _name;
                  }
                  function decimals() external view returns (uint8) {
                      return _decimals;
                  }
                  function totalSupply() override external view returns (uint) {
                      return _totalSupply.sub(balances[address(0)]);
                  }
                  function balanceOf(address tokenOwner) override external view returns (uint balance) {
                      return balances[tokenOwner];
                  }
                  function transfer(address to, uint tokens) override external returns (bool success) {
                      balances[_msgSender()] = balances[_msgSender()].sub(tokens);
                      balances[to] = balances[to].add(tokens);
                      emit Transfer(_msgSender(), to, tokens);
                      return true;
                  }
                  function approve(address spender, uint tokens) override external returns (bool success) {
                      allowed[_msgSender()][spender] = tokens;
                      emit Approval(_msgSender(), spender, tokens);
                      return true;
                  }
                  function transferFrom(address from, address to, uint tokens) override external returns (bool success) {
                      balances[from] = balances[from].sub(tokens);
                      allowed[from][_msgSender()] = allowed[from][_msgSender()].sub(tokens);
                      balances[to] = balances[to].add(tokens);
                      emit Transfer(from, to, tokens);
                      return true;
                  }
                  function allowance(address tokenOwner, address spender) override external view returns (uint remaining) {
                      return allowed[tokenOwner][spender];
                  }
              
                  function setCap(uint _cap, bool _freezeCap) external  {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "MONA.setCap: Sender must be admin"
                      );
                      require(_freezeCap || _cap >= _totalSupply, "Cap less than totalSupply");
                      require(!freezeCap, "Cap frozen");
                      (cap, freezeCap) = (_cap, _freezeCap);
                      emit CapUpdated(cap, freezeCap);
                  }
              
                  function availableToMint() external view returns (uint tokens) {
                      if (accessControls.hasMinterRole(_msgSender())) {
                          if (cap > 0) {
                              tokens = cap.sub(_totalSupply.sub(balances[address(0)]));
                          } else {
                              tokens = uint(-1);
                          }
                      } 
                  }
              
                  function mint(address tokenOwner, uint tokens) external returns (bool success) {
                      require(
                          accessControls.hasMinterRole(_msgSender()),
                          "MONA.mint: Sender must have permission to mint"
                      );
                      require(cap == 0 || _totalSupply + tokens <= cap, "Cap exceeded");
                      balances[tokenOwner] = balances[tokenOwner].add(tokens);
                      _totalSupply = _totalSupply.add(tokens);
                      emit Transfer(address(0), tokenOwner, tokens);
                      return true;
                  }
                  function burn(uint tokens) external returns (bool success) {
                      balances[_msgSender()] = balances[_msgSender()].sub(tokens);
                      _totalSupply = _totalSupply.sub(tokens);
                      emit Transfer(_msgSender(), address(0), tokens);
                      return true;
                  }
              }

              File 3 of 7: DigitalaxNFTStaking
              // File @openzeppelin/contracts/math/SafeMath.sol@v3.2.0
              
              // SPDX-License-Identifier: GPLv2
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Wrappers over Solidity's arithmetic operations with added overflow
               * checks.
               *
               * Arithmetic operations in Solidity wrap on overflow. This can easily result
               * in bugs, because programmers usually assume that an overflow raises an
               * error, which is the standard behavior in high level programming languages.
               * `SafeMath` restores this intuition by reverting the transaction when an
               * operation overflows.
               *
               * Using this library instead of the unchecked operations eliminates an entire
               * class of bugs, so it's recommended to use it always.
               */
              library SafeMath {
                  /**
                   * @dev Returns the addition of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `+` operator.
                   *
                   * Requirements:
                   *
                   * - Addition cannot overflow.
                   */
                  function add(uint256 a, uint256 b) internal pure returns (uint256) {
                      uint256 c = a + b;
                      require(c >= a, "SafeMath: addition overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                      return sub(a, b, "SafeMath: subtraction overflow");
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b <= a, errorMessage);
                      uint256 c = a - b;
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the multiplication of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `*` operator.
                   *
                   * Requirements:
                   *
                   * - Multiplication cannot overflow.
                   */
                  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                      // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                      // benefit is lost if 'b' is also tested.
                      // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                      if (a == 0) {
                          return 0;
                      }
              
                      uint256 c = a * b;
                      require(c / a == b, "SafeMath: multiplication overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b) internal pure returns (uint256) {
                      return div(a, b, "SafeMath: division by zero");
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b > 0, errorMessage);
                      uint256 c = a / b;
                      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                      return mod(a, b, "SafeMath: modulo by zero");
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts with custom message when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b != 0, errorMessage);
                      return a % b;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }
              
              
              // File @openzeppelin/contracts/introspection/IERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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 @openzeppelin/contracts/token/ERC721/IERC721.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Required interface of an ERC721 compliant contract.
               */
              interface IERC721 is IERC165 {
                  /**
                   * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
                   */
                  event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
                   */
                  event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
                   */
                  event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
              
                  /**
                   * @dev Returns the number of tokens in ``owner``'s account.
                   */
                  function balanceOf(address owner) external view returns (uint256 balance);
              
                  /**
                   * @dev Returns the owner of the `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function ownerOf(uint256 tokenId) external view returns (address owner);
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Transfers `tokenId` token from `from` to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Gives permission to `to` to transfer `tokenId` token to another account.
                   * The approval is cleared when the token is transferred.
                   *
                   * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
                   *
                   * Requirements:
                   *
                   * - The caller must own the token or be an approved operator.
                   * - `tokenId` must exist.
                   *
                   * Emits an {Approval} event.
                   */
                  function approve(address to, uint256 tokenId) external;
              
                  /**
                   * @dev Returns the account approved for `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function getApproved(uint256 tokenId) external view returns (address operator);
              
                  /**
                   * @dev Approve or remove `operator` as an operator for the caller.
                   * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
                   *
                   * Requirements:
                   *
                   * - The `operator` cannot be the caller.
                   *
                   * Emits an {ApprovalForAll} event.
                   */
                  function setApprovalForAll(address operator, bool _approved) external;
              
                  /**
                   * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
                   *
                   * See {setApprovalForAll}
                   */
                  function isApprovedForAll(address owner, address operator) external view returns (bool);
              
                  /**
                    * @dev Safely transfers `tokenId` token from `from` to `to`.
                    *
                    * Requirements:
                    *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                    * - `tokenId` token must exist and be owned by `from`.
                    * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                    * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                    *
                    * Emits a {Transfer} event.
                    */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Metadata is IERC721 {
              
                  /**
                   * @dev Returns the token collection name.
                   */
                  function name() external view returns (string memory);
              
                  /**
                   * @dev Returns the token collection symbol.
                   */
                  function symbol() external view returns (string memory);
              
                  /**
                   * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
                   */
                  function tokenURI(uint256 tokenId) external view returns (string memory);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Enumerable is IERC721 {
              
                  /**
                   * @dev Returns the total amount of tokens stored by the contract.
                   */
                  function totalSupply() external view returns (uint256);
              
                  /**
                   * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
                   * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
              
                  /**
                   * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
                   * Use along with {totalSupply} to enumerate all tokens.
                   */
                  function tokenByIndex(uint256 index) external view returns (uint256);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @title ERC721 token receiver interface
               * @dev Interface for any contract that wants to support safeTransfers
               * from ERC721 asset contracts.
               */
              interface IERC721Receiver {
                  /**
                   * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
                   * by `operator` from `from`, this function is called.
                   *
                   * It must return its Solidity selector to confirm the token transfer.
                   * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
                   *
                   * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
                   */
                  function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
                  external returns (bytes4);
              }
              
              
              // File @openzeppelin/contracts/introspection/ERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Implementation of the {IERC165} interface.
               *
               * Contracts may inherit from this and call {_registerInterface} to declare
               * their support of an interface.
               */
              contract ERC165 is IERC165 {
                  /*
                   * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
                   */
                  bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
              
                  /**
                   * @dev Mapping of interface ids to whether or not it's supported.
                   */
                  mapping(bytes4 => bool) private _supportedInterfaces;
              
                  constructor () internal {
                      // Derived contracts need only register support for their own interfaces,
                      // we register support for ERC165 itself here
                      _registerInterface(_INTERFACE_ID_ERC165);
                  }
              
                  /**
                   * @dev See {IERC165-supportsInterface}.
                   *
                   * Time complexity O(1), guaranteed to always use less than 30 000 gas.
                   */
                  function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
                      return _supportedInterfaces[interfaceId];
                  }
              
                  /**
                   * @dev Registers the contract as an implementer of the interface defined by
                   * `interfaceId`. Support of the actual ERC165 interface is automatic and
                   * registering its interface id is not required.
                   *
                   * See {IERC165-supportsInterface}.
                   *
                   * Requirements:
                   *
                   * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
                   */
                  function _registerInterface(bytes4 interfaceId) internal virtual {
                      require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
                      _supportedInterfaces[interfaceId] = true;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableMap.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Library for managing an enumerable variant of Solidity's
               * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
               * type.
               *
               * Maps have the following properties:
               *
               * - Entries are added, removed, and checked for existence in constant time
               * (O(1)).
               * - Entries are enumerated in O(n). No guarantees are made on the ordering.
               *
               * ```
               * contract Example {
               *     // Add the library methods
               *     using EnumerableMap for EnumerableMap.UintToAddressMap;
               *
               *     // Declare a set state variable
               *     EnumerableMap.UintToAddressMap private myMap;
               * }
               * ```
               *
               * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
               * supported.
               */
              library EnumerableMap {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Map type with
                  // bytes32 keys and values.
                  // The Map implementation uses private functions, and user-facing
                  // implementations (such as Uint256ToAddressMap) are just wrappers around
                  // the underlying Map.
                  // This means that we can only create new EnumerableMaps for types that fit
                  // in bytes32.
              
                  struct MapEntry {
                      bytes32 _key;
                      bytes32 _value;
                  }
              
                  struct Map {
                      // Storage of map keys and values
                      MapEntry[] _entries;
              
                      // Position of the entry defined by a key in the `entries` array, plus 1
                      // because index 0 means a key is not in the map.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex == 0) { // Equivalent to !contains(map, key)
                          map._entries.push(MapEntry({ _key: key, _value: value }));
                          // The entry is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          map._indexes[key] = map._entries.length;
                          return true;
                      } else {
                          map._entries[keyIndex - 1]._value = value;
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a key-value pair from a map. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function _remove(Map storage map, bytes32 key) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex != 0) { // Equivalent to contains(map, key)
                          // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
                          // in the array, and then remove the last entry (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = keyIndex - 1;
                          uint256 lastIndex = map._entries.length - 1;
              
                          // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          MapEntry storage lastEntry = map._entries[lastIndex];
              
                          // Move the last entry to the index where the entry to delete is
                          map._entries[toDeleteIndex] = lastEntry;
                          // Update the index for the moved entry
                          map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved entry was stored
                          map._entries.pop();
              
                          // Delete the index for the deleted slot
                          delete map._indexes[key];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function _contains(Map storage map, bytes32 key) private view returns (bool) {
                      return map._indexes[key] != 0;
                  }
              
                  /**
                   * @dev Returns the number of key-value pairs in the map. O(1).
                   */
                  function _length(Map storage map) private view returns (uint256) {
                      return map._entries.length;
                  }
              
                 /**
                  * @dev Returns the key-value pair stored at position `index` in the map. O(1).
                  *
                  * Note that there are no guarantees on the ordering of entries inside the
                  * array, and it may change when more entries are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
                      require(map._entries.length > index, "EnumerableMap: index out of bounds");
              
                      MapEntry storage entry = map._entries[index];
                      return (entry._key, entry._value);
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function _get(Map storage map, bytes32 key) private view returns (bytes32) {
                      return _get(map, key, "EnumerableMap: nonexistent key");
                  }
              
                  /**
                   * @dev Same as {_get}, with a custom error message when `key` is not in the map.
                   */
                  function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
                      uint256 keyIndex = map._indexes[key];
                      require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
                      return map._entries[keyIndex - 1]._value; // All indexes are 1-based
                  }
              
                  // UintToAddressMap
              
                  struct UintToAddressMap {
                      Map _inner;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
                      return _set(map._inner, bytes32(key), bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
                      return _remove(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
                      return _contains(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns the number of elements in the map. O(1).
                   */
                  function length(UintToAddressMap storage map) internal view returns (uint256) {
                      return _length(map._inner);
                  }
              
                 /**
                  * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
                      (bytes32 key, bytes32 value) = _at(map._inner, index);
                      return (uint256(key), address(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key))));
                  }
              
                  /**
                   * @dev Same as {get}, with a custom error message when `key` is not in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Strings.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev String operations.
               */
              library Strings {
                  /**
                   * @dev Converts a `uint256` to its ASCII `string` 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);
                      uint256 index = digits - 1;
                      temp = value;
                      while (temp != 0) {
                          buffer[index--] = byte(uint8(48 + temp % 10));
                          temp /= 10;
                      }
                      return string(buffer);
                  }
              }
              
              
              // File contracts/ERC721/ERC721WithSameTokenURIForAllTokens.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              
              
              
              
              /**
               * @title ERC721 Non-Fungible Token Standard basic implementation
               * @dev see https://eips.ethereum.org/EIPS/eip-721
               * @dev This is a modified OZ ERC721 base contract with one change where all tokens have the same token URI
               */
              contract ERC721WithSameTokenURIForAllTokens is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
                  using SafeMath for uint256;
                  using Address for address;
                  using EnumerableSet for EnumerableSet.UintSet;
                  using EnumerableMap for EnumerableMap.UintToAddressMap;
                  using Strings for uint256;
              
                  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
                  // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
                  bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
              
                  // Mapping from holder address to their (enumerable) set of owned tokens
                  mapping (address => EnumerableSet.UintSet) private _holderTokens;
              
                  // Enumerable mapping from token ids to their owners
                  EnumerableMap.UintToAddressMap private _tokenOwners;
              
                  // Mapping from token ID to approved address
                  mapping (uint256 => address) private _tokenApprovals;
              
                  // Mapping from owner to operator approvals
                  mapping (address => mapping (address => bool)) private _operatorApprovals;
              
                  // Token name
                  string private _name;
              
                  // Token symbol
                  string private _symbol;
              
                  // Single token URI for all tokens
                  string public tokenURI_;
              
                  /*
                   *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
                   *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
                   *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
                   *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
                   *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
                   *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
                   *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
                   *
                   *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
                   *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
              
                  /*
                   *     bytes4(keccak256('name()')) == 0x06fdde03
                   *     bytes4(keccak256('symbol()')) == 0x95d89b41
                   *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
                   *
                   *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
              
                  /*
                   *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
                   *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
                   *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
                   *
                   *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
              
                  /**
                   * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
                   */
                  constructor (string memory name, string memory symbol) public {
                      _name = name;
                      _symbol = symbol;
              
                      // register the supported interfaces to conform to ERC721 via ERC165
                      _registerInterface(_INTERFACE_ID_ERC721);
                      _registerInterface(_INTERFACE_ID_ERC721_METADATA);
                      _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
                  }
              
                  /**
                   * @dev See {IERC721-balanceOf}.
                   */
                  function balanceOf(address owner) public view override returns (uint256) {
                      require(owner != address(0), "ERC721: balance query for the zero address");
              
                      return _holderTokens[owner].length();
                  }
              
                  /**
                   * @dev See {IERC721-ownerOf}.
                   */
                  function ownerOf(uint256 tokenId) public view override returns (address) {
                      return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
                  }
              
                  /**
                   * @dev See {IERC721Metadata-name}.
                   */
                  function name() public view override returns (string memory) {
                      return _name;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-symbol}.
                   */
                  function symbol() public view override returns (string memory) {
                      return _symbol;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-tokenURI}.
                   */
                  function tokenURI(uint256 tokenId) public view override returns (string memory) {
                      require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
              
                      return tokenURI_;
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
                      return _holderTokens[owner].at(index);
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-totalSupply}.
                   */
                  function totalSupply() public view override returns (uint256) {
                      // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
                      return _tokenOwners.length();
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenByIndex}.
                   */
                  function tokenByIndex(uint256 index) public view override returns (uint256) {
                      (uint256 tokenId, ) = _tokenOwners.at(index);
                      return tokenId;
                  }
              
                  /**
                   * @dev See {IERC721-approve}.
                   */
                  function approve(address to, uint256 tokenId) public virtual override {
                      address owner = ownerOf(tokenId);
                      require(to != owner, "ERC721: approval to current owner");
              
                      require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
                          "ERC721: approve caller is not owner nor approved for all"
                      );
              
                      _approve(to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-getApproved}.
                   */
                  function getApproved(uint256 tokenId) public view override returns (address) {
                      require(_exists(tokenId), "ERC721: approved query for nonexistent token");
              
                      return _tokenApprovals[tokenId];
                  }
              
                  /**
                   * @dev See {IERC721-setApprovalForAll}.
                   */
                  function setApprovalForAll(address operator, bool approved) public virtual override {
                      require(operator != _msgSender(), "ERC721: approve to caller");
              
                      _operatorApprovals[_msgSender()][operator] = approved;
                      emit ApprovalForAll(_msgSender(), operator, approved);
                  }
              
                  /**
                   * @dev See {IERC721-isApprovedForAll}.
                   */
                  function isApprovedForAll(address owner, address operator) public view override returns (bool) {
                      return _operatorApprovals[owner][operator];
                  }
              
                  /**
                   * @dev See {IERC721-transferFrom}.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) public virtual override {
                      //solhint-disable-next-line max-line-length
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
              
                      _transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
                      safeTransferFrom(from, to, tokenId, "");
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
                      _safeTransfer(from, to, tokenId, _data);
                  }
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * `_data` is additional data, it has no specified format and it is sent in call to `to`.
                   *
                   * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
                   * implement alternative mechanisms to perform token transfer, such as signature-based.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _transfer(from, to, tokenId);
                      require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Returns whether `tokenId` exists.
                   *
                   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
                   *
                   * Tokens start existing when they are minted (`_mint`),
                   * and stop existing when they are burned (`_burn`).
                   */
                  function _exists(uint256 tokenId) internal view returns (bool) {
                      return _tokenOwners.contains(tokenId);
                  }
              
                  /**
                   * @dev Returns whether `spender` is allowed to manage `tokenId`.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
                      require(_exists(tokenId), "ERC721: operator query for nonexistent token");
                      address owner = ownerOf(tokenId);
                      return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
                  }
              
                  /**
                   * @dev Safely mints `tokenId` and transfers it to `to`.
                   *
                   * Requirements:
                   d*
                   * - `tokenId` must not exist.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeMint(address to, uint256 tokenId) internal virtual {
                      _safeMint(to, tokenId, "");
                  }
              
                  /**
                   * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
                   * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
                   */
                  function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _mint(to, tokenId);
                      require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Mints `tokenId` and transfers it to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
                   *
                   * Requirements:
                   *
                   * - `tokenId` must not exist.
                   * - `to` cannot be the zero address.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _mint(address to, uint256 tokenId) internal virtual {
                      require(to != address(0), "ERC721: mint to the zero address");
                      require(!_exists(tokenId), "ERC721: token already minted");
              
                      _beforeTokenTransfer(address(0), to, tokenId);
              
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(address(0), to, tokenId);
                  }
              
                  /**
                   * @dev Destroys `tokenId`.
                   * The approval is cleared when the token is burned.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _burn(uint256 tokenId) internal virtual {
                      address owner = ownerOf(tokenId);
              
                      _beforeTokenTransfer(owner, address(0), tokenId);
              
                      // Clear approvals
                      _approve(address(0), tokenId);
              
                      _holderTokens[owner].remove(tokenId);
              
                      _tokenOwners.remove(tokenId);
              
                      emit Transfer(owner, address(0), tokenId);
                  }
              
                  /**
                   * @dev Transfers `tokenId` from `from` to `to`.
                   *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
                   *
                   * Requirements:
                   *
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _transfer(address from, address to, uint256 tokenId) internal virtual {
                      require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
                      require(to != address(0), "ERC721: transfer to the zero address");
              
                      _beforeTokenTransfer(from, to, tokenId);
              
                      // Clear approvals from the previous owner
                      _approve(address(0), tokenId);
              
                      _holderTokens[from].remove(tokenId);
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
                   * The call is not executed if the target address is not a contract.
                   *
                   * @param from address representing the previous owner of the given token ID
                   * @param to target address that will receive the tokens
                   * @param tokenId uint256 ID of the token to be transferred
                   * @param _data bytes optional data to send along with the call
                   * @return bool whether the call correctly returned the expected magic value
                   */
                  function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
                  private returns (bool)
                  {
                      if (!to.isContract()) {
                          return true;
                      }
                      bytes memory returndata = to.functionCall(abi.encodeWithSelector(
                              IERC721Receiver(to).onERC721Received.selector,
                              _msgSender(),
                              from,
                              tokenId,
                              _data
                          ), "ERC721: transfer to non ERC721Receiver implementer");
                      bytes4 retval = abi.decode(returndata, (bytes4));
                      return (retval == _ERC721_RECEIVED);
                  }
              
                  function _approve(address to, uint256 tokenId) private {
                      _tokenApprovals[tokenId] = to;
                      emit Approval(ownerOf(tokenId), to, tokenId);
                  }
              
                  /**
                   * @dev Hook that is called before any token transfer. This includes minting
                   * and burning.
                   *
                   * Calling conditions:
                   *
                   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
                   * transferred to `to`.
                   * - When `from` is zero, `tokenId` will be minted for `to`.
                   * - When `to` is zero, ``from``'s `tokenId` will be burned.
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   *
                   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
              }
              
              
              // File contracts/DigitalaxGenesisNFT.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              /**
               * @title Digitalax Genesis NFT
               * @dev To facilitate the genesis sale for the Digitialax platform
               */
              contract DigitalaxGenesisNFT is ERC721WithSameTokenURIForAllTokens("DigitalaxGenesis", "DXG") {
                  using SafeMath for uint256;
              
                  // @notice event emitted upon construction of this contract, used to bootstrap external indexers
                  event DigitalaxGenesisNFTContractDeployed();
              
                  // @notice event emitted when a contributor buys a Genesis NFT
                  event GenesisPurchased(
                      address indexed buyer,
                      uint256 indexed tokenId,
                      uint256 contribution
                  );
              
                  // @notice event emitted when a admin mints a Genesis NFT
                  event AdminGenesisMinted(
                      address indexed beneficiary,
                      address indexed admin,
                      uint256 indexed tokenId
                  );
              
                  // @notice event emitted when a contributors amount is increased
                  event ContributionIncreased(
                      address indexed buyer,
                      uint256 contribution
                  );
              
                  // @notice event emitted when end date is changed
                  event GenesisEndUpdated(
                      uint256 genesisEndTimestamp,
                      address indexed admin
                  );
              
                  // @notice event emitted when DigitalaxAccessControls is updated
                  event AccessControlsUpdated(
                      address indexed newAdress
                  );
              
                  // @notice responsible for enforcing admin access
                  DigitalaxAccessControls public accessControls;
              
                  // @notice all funds will be sent to this address pon purchase of a Genesis NFT
                  address payable public fundsMultisig;
              
                  // @notice start date for them the Genesis sale is open to the public, before this data no purchases can be made
                  uint256 public genesisStartTimestamp;
              
                  // @notice end date for them the Genesis sale is closed, no more purchased can be made after this point
                  uint256 public genesisEndTimestamp;
              
                  // @notice set after end time has been changed once, prevents further changes to end timestamp
                  bool public genesisEndTimestampLocked;
              
                  // @notice the minimum amount a buyer can contribute in a single go
                  uint256 public constant minimumContributionAmount = 0.1 ether;
              
                  // @notice the maximum accumulative amount a user can contribute to the genesis sale
                  uint256 public constant maximumContributionAmount = 2 ether;
              
                  // @notice accumulative => contribution total
                  mapping(address => uint256) public contribution;
              
                  // @notice global accumulative contribution amount
                  uint256 public totalContributions;
              
                  // @notice max number of paid contributions to the genesis sale
                  uint256 public constant maxGenesisContributionTokens = 460;
              
                  uint256 public totalAdminMints;
              
                  constructor(
                      DigitalaxAccessControls _accessControls,
                      address payable _fundsMultisig,
                      uint256 _genesisStartTimestamp,
                      uint256 _genesisEndTimestamp,
                      string memory _tokenURI
                  ) public {
                      accessControls = _accessControls;
                      fundsMultisig = _fundsMultisig;
                      genesisStartTimestamp = _genesisStartTimestamp;
                      genesisEndTimestamp = _genesisEndTimestamp;
                      tokenURI_ = _tokenURI;
                      emit DigitalaxGenesisNFTContractDeployed();
                  }
              
                  /**
                   * @dev Proxy method for facilitating a single point of entry to either buy or contribute additional value to the Genesis sale
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   */
                  function buyOrIncreaseContribution() external payable {
                      if (contribution[_msgSender()] == 0) {
                          buy();
                      } else {
                          increaseContribution();
                      }
                  }
              
                  /**
                   * @dev Facilitating the initial purchase of a Genesis NFT
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if already owns an genesis token
                   * @dev Buyer receives a NFT on success
                   * @dev All funds move to fundsMultisig
                   */
                  function buy() public payable {
                      require(contribution[_msgSender()] == 0, "DigitalaxGenesisNFT.buy: You already own a genesis NFT");
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.buy: No genesis are available outside of the genesis window"
                      );
              
                      uint256 _contributionAmount = msg.value;
                      require(
                          _contributionAmount >= minimumContributionAmount,
                          "DigitalaxGenesisNFT.buy: Contribution does not meet minimum requirement"
                      );
              
                      require(
                          _contributionAmount <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.buy: You cannot exceed the maximum contribution amount"
                      );
              
                      require(remainingGenesisTokens() > 0, "DigitalaxGenesisNFT.buy: Total number of genesis token holders reached");
              
                      contribution[_msgSender()] = _contributionAmount;
                      totalContributions = totalContributions.add(_contributionAmount);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _contributionAmount}("");
                      require(fundsTransferSuccess, "DigitalaxGenesisNFT.buy: Unable to send contribution to funds multisig");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_msgSender(), tokenId);
              
                      emit GenesisPurchased(_msgSender(), tokenId, _contributionAmount);
                  }
              
                  /**
                   * @dev Facilitates an owner to increase there contribution
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if caller does not already owns an genesis token
                   * @dev All funds move to fundsMultisig
                   */
                  function increaseContribution() public payable {
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.increaseContribution: No increases are possible outside of the genesis window"
                      );
              
                      require(
                          contribution[_msgSender()] > 0,
                          "DigitalaxGenesisNFT.increaseContribution: You do not own a genesis NFT"
                      );
              
                      uint256 _amountToIncrease = msg.value;
                      contribution[_msgSender()] = contribution[_msgSender()].add(_amountToIncrease);
              
                      require(
                          contribution[_msgSender()] <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.increaseContribution: You cannot exceed the maximum contribution amount"
                      );
              
                      totalContributions = totalContributions.add(_amountToIncrease);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _amountToIncrease}("");
                      require(
                          fundsTransferSuccess,
                          "DigitalaxGenesisNFT.increaseContribution: Unable to send contribution to funds multisig"
                      );
              
                      emit ContributionIncreased(_msgSender(), _amountToIncrease);
                  }
              
                  // Admin
              
                  /**
                   * @dev Allows a whitelisted admin to mint a token and issue it to a beneficiary
                   * @dev One token per holder
                   * @dev All holders contribution as set o zero on creation
                   */
                  function adminBuy(address _beneficiary) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.adminBuy: Sender must be admin"
                      );
                      require(_beneficiary != address(0), "DigitalaxGenesisNFT.adminBuy: Beneficiary cannot be ZERO");
                      require(balanceOf(_beneficiary) == 0, "DigitalaxGenesisNFT.adminBuy: Beneficiary already owns a genesis NFT");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_beneficiary, tokenId);
              
                      // Increase admin mint counts
                      totalAdminMints = totalAdminMints.add(1);
              
                      emit AdminGenesisMinted(_beneficiary, _msgSender(), tokenId);
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the end date of the genesis
                   */
                  function updateGenesisEnd(uint256 _end) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateGenesisEnd: Sender must be admin"
                      );
                      // If already passed, dont allow opening again
                      require(genesisEndTimestamp > _getNow(), "DigitalaxGenesisNFT.updateGenesisEnd: End time already passed");
              
                      // Only allow setting this once
                      require(!genesisEndTimestampLocked, "DigitalaxGenesisNFT.updateGenesisEnd: End time locked");
              
                      genesisEndTimestamp = _end;
              
                      // Lock future end time modifications
                      genesisEndTimestampLocked = true;
              
                      emit GenesisEndUpdated(genesisEndTimestamp, _msgSender());
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the start date of the genesis
                   */
                  function updateAccessControls(DigitalaxAccessControls _accessControls) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateAccessControls: Sender must be admin"
                      );
                      require(address(_accessControls) != address(0), "DigitalaxGenesisNFT.updateAccessControls: Zero Address");
                      accessControls = _accessControls;
              
                      emit AccessControlsUpdated(address(_accessControls));
                  }
              
                  /**
                  * @dev Returns total remaining number of tokens available in the Genesis sale
                  */
                  function remainingGenesisTokens() public view returns (uint256) {
                      return _getMaxGenesisContributionTokens() - (totalSupply() - totalAdminMints);
                  }
              
                  // Internal
              
                  function _getNow() internal virtual view returns (uint256) {
                      return block.timestamp;
                  }
              
                  function _getMaxGenesisContributionTokens() internal virtual view returns (uint256) {
                      return maxGenesisContributionTokens;
                  }
              
                  /**
                   * @dev Before token transfer hook to enforce that no token can be moved to another address until the genesis sale has ended
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
                      if (from != address(0) && _getNow() <= genesisEndTimestamp) {
                          revert("DigitalaxGenesisNFT._beforeTokenTransfer: Transfers are currently locked at this time");
                      }
                  }
              }
              
              
              // File interfaces/IERC20.sol
              
              pragma solidity ^0.6.2;
              
              
              
              interface IERC20 {
                  function name() external view returns (string memory);
                  function symbol() external view returns (string memory);
                  function decimals() external view returns (uint8);
                  function totalSupply() external view returns (uint256);
                  function balanceOf(address owner) external view returns (uint256);
                  function transfer(address to, uint256 amount) external returns (bool);
                  function transferFrom(address from, address to, uint256 amount) external returns (bool);
                  function approve(address spender, uint256 amount) external returns (bool);
                  function allowance(address owner, address spender) external view returns (uint256);
              
                  event Transfer(address indexed from, address indexed to, uint256 amount);
                  event Approval(address indexed owner, address indexed spender, uint256 amount);
              }
              
              
              // File interfaces/IDigitalaxRewards.sol
              
              
              
              pragma solidity 0.6.12;
              
              /// @dev an interface to interact with the Genesis MONA NFT that will 
              interface IDigitalaxRewards {
                  function updateRewards() external returns (bool);
                  function genesisRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function parentRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function LPRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function lastRewardTime() external view returns (uint256);
              }
              
              
              // File interfaces/IDigitalaxNFT.sol
              
              
              
              pragma solidity 0.6.12;
              
              /// @dev an interface to interact with the Genesis MONA NFT that will 
              interface IDigitalaxNFT {
                  function primarySalePrice(uint256 tokenId) external view returns (uint256);
                  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
                  function balanceOf(address owner) external view returns (uint256);
                  function safeTransferFrom(address from, address to, uint256 tokenId) external;
              }
              
              
              // File contracts/DigitalaxNFTStaking.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              /**
               * @title Digitalax Staking
               * @dev Stake NFTs, earn tokens on the Digitialax platform
               * @author Adrian Guerrera (deepyr)
               */
              
              contract DigitalaxNFTStaking {
                  using SafeMath for uint256;
                  bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
              
                  IERC20 public rewardsToken;
                  IDigitalaxNFT public parentNFT;
                  DigitalaxAccessControls public accessControls;
                  IDigitalaxRewards public rewardsContract;
              
              
                  /// @notice total ethereum staked currently in the gensesis staking contract
                  uint256 public stakedEthTotal;
                  uint256 public lastUpdateTime;
              
                  uint256 public rewardsPerTokenPoints;
                  uint256 public totalUnclaimedRewards;
              
                  uint256 constant pointMultiplier = 10e18;
              
                  /**
                  @notice Struct to track what user is staking which tokens
                  @dev tokenIds are all the tokens staked by the staker
                  @dev balance is the current ether balance of the staker
                  @dev rewardsEarned is the total reward for the staker till now
                  @dev rewardsReleased is how much reward has been paid to the staker
                  */
                  struct Staker {
                      uint256[] tokenIds;
                      mapping (uint256 => uint256) tokenIndex;
                      uint256 balance;
                      uint256 lastRewardPoints;
                      uint256 rewardsEarned;
                      uint256 rewardsReleased;
                  }
              
                  /// @notice mapping of a staker to its current properties
                  mapping (address => Staker) public stakers;
              
                  // Mapping from token ID to owner address
                  mapping (uint256 => address) public tokenOwner;
              
                  /// @notice sets the token to be claimable or not, cannot claim if it set to false
                  bool public tokensClaimable;
                  bool initialised;
              
                  /// @notice event emitted when a user has staked a token
                  event Staked(address owner, uint256 amount);
              
                  /// @notice event emitted when a user has unstaked a token
                  event Unstaked(address owner, uint256 amount);
              
                  /// @notice event emitted when a user claims reward
                  event RewardPaid(address indexed user, uint256 reward);
                  
                  /// @notice Allows reward tokens to be claimed
                  event ClaimableStatusUpdated(bool status);
              
                  /// @notice Emergency unstake tokens without rewards
                  event EmergencyUnstake(address indexed user, uint256 tokenId);
              
                  /// @notice Admin update of rewards contract
                  event RewardsTokenUpdated(address indexed oldRewardsToken, address newRewardsToken );
              
                  constructor() public {
                  }
                   /**
                   * @dev Single gateway to intialize the staking contract after deploying
                   * @dev Sets the contract with the MONA NFT and MONA reward token 
                   */
                  function initStaking(
                      IERC20 _rewardsToken,
                      IDigitalaxNFT _parentNFT,
                      DigitalaxAccessControls _accessControls
                  )
                      external
                  {
                      require(!initialised, "Already initialised");
                      rewardsToken = _rewardsToken;
                      parentNFT = _parentNFT;
                      accessControls = _accessControls;
                      lastUpdateTime = block.timestamp;
                      initialised = true;
                  }
              
              
                  /// @notice Lets admin set the Rewards Token
                  function setRewardsContract(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxParentStaking.setRewardsContract: Sender must be admin"
                      );
                      require(_addr != address(0));
                      address oldAddr = address(rewardsContract);
                      rewardsContract = IDigitalaxRewards(_addr);
                      emit RewardsTokenUpdated(oldAddr, _addr);
                  }
              
                  /// @notice Lets admin set the Rewards to be claimable
                  function setTokensClaimable(
                      bool _enabled
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxParentStaking.setTokensClaimable: Sender must be admin"
                      );
                      tokensClaimable = _enabled;
                      emit ClaimableStatusUpdated(_enabled);
                  }
              
                  /// @dev Getter functions for Staking contract
                  /// @dev Get the tokens staked by a user
                  function getStakedTokens(
                      address _user
                  )
                      external
                      view
                      returns (uint256[] memory tokenIds)
                  {
                      return stakers[_user].tokenIds;
                  }
              
              
                  /// @dev Get the amount a staked nft is valued at ie bought at
                  function getContribution (
                      uint256 _tokenId
                  ) 
                      public
                      view
                      returns (uint256)
                  {
                      return parentNFT.primarySalePrice(_tokenId);
                  }
              
                  /// @notice Stake MONA NFTs and earn reward tokens. 
                  function stake(
                      uint256 tokenId
                  )
                      external
                  {
                      // require();
                      _stake(msg.sender, tokenId);
                  }
              
                  /// @notice Stake multiple MONA NFTs and earn reward tokens. 
                  function stakeBatch(uint256[] memory tokenIds)
                      external
                  {
                      for (uint i = 0; i < tokenIds.length; i++) {
                          _stake(msg.sender, tokenIds[i]);
                      }
                  }
              
                  /// @notice Stake all your MONA NFTs and earn reward tokens. 
                  function stakeAll()
                      external
                  {
                      uint256 balance = parentNFT.balanceOf(msg.sender);
                      for (uint i = 0; i < balance; i++) {
                          _stake(msg.sender, parentNFT.tokenOfOwnerByIndex(msg.sender,i));
                      }
                  }
              
              
                  /**
                   * @dev All the staking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they stake the nfts based on ether price
                  */
                  function _stake(
                      address _user,
                      uint256 _tokenId
                  )
                      internal
                  {
                      Staker storage staker = stakers[_user];
              
                      if (staker.balance == 0 && staker.lastRewardPoints == 0 ) {
                        staker.lastRewardPoints = rewardsPerTokenPoints;
                      }
              
                      updateReward(_user);
                      uint256 amount = getContribution(_tokenId);
                      staker.balance = staker.balance.add(amount);
                      stakedEthTotal = stakedEthTotal.add(amount);
                      staker.tokenIds.push(_tokenId);
                      staker.tokenIndex[staker.tokenIds.length - 1];
                      tokenOwner[_tokenId] = _user;
                      parentNFT.safeTransferFrom(
                          _user,
                          address(this),
                          _tokenId
                      );
              
                      emit Staked(_user, _tokenId);
                  }
              
                  /// @notice Unstake Genesis MONA NFTs. 
                  function unstake(
                      uint256 _tokenId
                  ) 
                      external 
                  {
                      require(
                          tokenOwner[_tokenId] == msg.sender,
                          "DigitalaxParentStaking._unstake: Sender must have staked tokenID"
                      );
                      claimReward(msg.sender);
                      _unstake(msg.sender, _tokenId);
                  }
              
                  /// @notice Stake multiple MONA NFTs and claim reward tokens. 
                  function unstakeBatch(
                      uint256[] memory tokenIds
                  )
                      external
                  {
                      claimReward(msg.sender);
                      for (uint i = 0; i < tokenIds.length; i++) {
                          if (tokenOwner[i] == msg.sender) {
                              _unstake(msg.sender, tokenIds[i]);
                          }
                      }
                  }
              
                   /**
                   * @dev All the unstaking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they unstake the nfts based on ether price
                  */
                  function _unstake(
                      address _user,
                      uint256 _tokenId
                  ) 
                      internal 
                  {
              
                      Staker storage staker = stakers[_user];
              
                      uint256 amount = getContribution(_tokenId);
                      staker.balance = staker.balance.sub(amount);
                      stakedEthTotal = stakedEthTotal.sub(amount);
              
                      uint256 lastIndex = staker.tokenIds.length - 1;
                      uint256 lastIndexKey = staker.tokenIds[lastIndex];
                      uint256 tokenIdIndex = staker.tokenIndex[_tokenId];
                      
                      staker.tokenIds[staker.tokenIndex[_tokenId]] = lastIndexKey;
                      staker.tokenIndex[lastIndexKey] = tokenIdIndex;
                      if (staker.tokenIds.length > 0) {
                          staker.tokenIds.pop();
                          delete staker.tokenIndex[_tokenId];
                      }
              
                      if (staker.balance == 0) {
                          delete stakers[_user];
                      }
                      delete tokenOwner[_tokenId];
              
                      parentNFT.safeTransferFrom(
                          address(this),
                          _user,
                          _tokenId
                      );
              
                      emit Unstaked(_user, _tokenId);
              
                  }
              
                  // Unstake without caring about rewards. EMERGENCY ONLY.
                  function emergencyUnstake(uint256 _tokenId) public {
                      require(
                          tokenOwner[_tokenId] == msg.sender,
                          "DigitalaxParentStaking._unstake: Sender must have staked tokenID"
                      );
                      _unstake(msg.sender, _tokenId);
                      emit EmergencyUnstake(msg.sender, _tokenId);
              
                  }
              
              
                  /// @dev Updates the amount of rewards owed for each user before any tokens are moved
                  function updateReward(
                      address _user
                  ) 
                      public 
                  {
              
                      rewardsContract.updateRewards();
                      uint256 parentRewards = rewardsContract.parentRewards(lastUpdateTime, block.timestamp);
              
                      if (stakedEthTotal > 0) {
                          rewardsPerTokenPoints = rewardsPerTokenPoints.add(parentRewards
                                                          .mul(1e18)
                                                          .mul(pointMultiplier)
                                                          .div(stakedEthTotal));
                      }
                      
                      lastUpdateTime = block.timestamp;
                      uint256 rewards = rewardsOwing(_user);
              
                      Staker storage staker = stakers[_user];
                      if (_user != address(0)) {
                          staker.rewardsEarned = staker.rewardsEarned.add(rewards);
                          staker.lastRewardPoints = rewardsPerTokenPoints; 
                      }
                  }
              
              
                  /// @notice Returns the rewards owing for a user
                  /// @dev The rewards are dynamic and normalised from the other pools
                  /// @dev This gets the rewards from each of the periods as one multiplier
                  function rewardsOwing(
                      address _user
                  )
                      public
                      view
                      returns(uint256)
                  {
                      uint256 newRewardPerToken = rewardsPerTokenPoints.sub(stakers[_user].lastRewardPoints);
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards;
                  }
              
              
                  /// @notice Returns the about of rewards yet to be claimed
                  function unclaimedRewards(
                      address _user
                  )
                      external
                      view
                      returns(uint256)
                  {
                      if (stakedEthTotal == 0) {
                          return 0;
                      }
              
                      uint256 parentRewards = rewardsContract.parentRewards(lastUpdateTime,
                                                                      block.timestamp);
              
                      uint256 newRewardPerToken = rewardsPerTokenPoints.add(parentRewards
                                                                              .mul(1e18)
                                                                              .mul(pointMultiplier)
                                                                              .div(stakedEthTotal))
                                                                       .sub(stakers[_user].lastRewardPoints);
                                                                       
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards.add(stakers[_user].rewardsEarned).sub(stakers[_user].rewardsReleased);
                  }
              
              
                  /// @notice Lets a user with rewards owing to claim tokens
                  function claimReward(
                      address _user
                  )
                      public
                  {
                      require(
                          tokensClaimable == true,
                          "Tokens cannnot be claimed yet"
                      );
                      updateReward(_user);
              
                      Staker storage staker = stakers[_user];
                  
                      uint256 payableAmount = staker.rewardsEarned.sub(staker.rewardsReleased);
                      staker.rewardsReleased = staker.rewardsReleased.add(payableAmount);
              
                      /// @dev accounts for dust 
                      uint256 rewardBal = rewardsToken.balanceOf(address(this));
                      if (payableAmount > rewardBal) {
                          payableAmount = rewardBal;
                      }
              
                      rewardsToken.transfer(_user, payableAmount);
                      emit RewardPaid(_user, payableAmount);
                  }
              
              
                  function onERC721Received(
                      address,
                      address,
                      uint256,
                      bytes calldata data
                  )
                      public returns(bytes4)
                  {
                      return _ERC721_RECEIVED;
                  }
              
              
              
              }

              File 4 of 7: DigitalaxLPStaking
              // File @openzeppelin/contracts/math/SafeMath.sol@v3.2.0
              
              // SPDX-License-Identifier: GPLv2
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Wrappers over Solidity's arithmetic operations with added overflow
               * checks.
               *
               * Arithmetic operations in Solidity wrap on overflow. This can easily result
               * in bugs, because programmers usually assume that an overflow raises an
               * error, which is the standard behavior in high level programming languages.
               * `SafeMath` restores this intuition by reverting the transaction when an
               * operation overflows.
               *
               * Using this library instead of the unchecked operations eliminates an entire
               * class of bugs, so it's recommended to use it always.
               */
              library SafeMath {
                  /**
                   * @dev Returns the addition of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `+` operator.
                   *
                   * Requirements:
                   *
                   * - Addition cannot overflow.
                   */
                  function add(uint256 a, uint256 b) internal pure returns (uint256) {
                      uint256 c = a + b;
                      require(c >= a, "SafeMath: addition overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                      return sub(a, b, "SafeMath: subtraction overflow");
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b <= a, errorMessage);
                      uint256 c = a - b;
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the multiplication of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `*` operator.
                   *
                   * Requirements:
                   *
                   * - Multiplication cannot overflow.
                   */
                  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                      // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                      // benefit is lost if 'b' is also tested.
                      // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                      if (a == 0) {
                          return 0;
                      }
              
                      uint256 c = a * b;
                      require(c / a == b, "SafeMath: multiplication overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b) internal pure returns (uint256) {
                      return div(a, b, "SafeMath: division by zero");
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b > 0, errorMessage);
                      uint256 c = a / b;
                      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                      return mod(a, b, "SafeMath: modulo by zero");
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts with custom message when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b != 0, errorMessage);
                      return a % b;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }
              
              
              // File @openzeppelin/contracts/token/ERC20/IERC20.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Interface of the ERC20 standard as defined in the EIP.
               */
              interface IERC20 {
                  /**
                   * @dev Returns the amount of tokens in existence.
                   */
                  function totalSupply() external view returns (uint256);
              
                  /**
                   * @dev Returns the amount of tokens owned by `account`.
                   */
                  function balanceOf(address account) external view returns (uint256);
              
                  /**
                   * @dev Moves `amount` tokens from the caller's account to `recipient`.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transfer(address recipient, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Returns the remaining number of tokens that `spender` will be
                   * allowed to spend on behalf of `owner` through {transferFrom}. This is
                   * zero by default.
                   *
                   * This value changes when {approve} or {transferFrom} are called.
                   */
                  function allowance(address owner, address spender) external view returns (uint256);
              
                  /**
                   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * IMPORTANT: Beware that changing an allowance with this method brings the risk
                   * that someone may use both the old and the new allowance by unfortunate
                   * transaction ordering. One possible solution to mitigate this race
                   * condition is to first reduce the spender's allowance to 0 and set the
                   * desired value afterwards:
                   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
                   *
                   * Emits an {Approval} event.
                   */
                  function approve(address spender, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Moves `amount` tokens from `sender` to `recipient` using the
                   * allowance mechanism. `amount` is then deducted from the caller's
                   * allowance.
                   *
                   * Returns a boolean value indicating whether the operation succeeded.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
              
                  /**
                   * @dev Emitted when `value` tokens are moved from one account (`from`) to
                   * another (`to`).
                   *
                   * Note that `value` may be zero.
                   */
                  event Transfer(address indexed from, address indexed to, uint256 value);
              
                  /**
                   * @dev Emitted when the allowance of a `spender` for an `owner` is set by
                   * a call to {approve}. `value` is the new allowance.
                   */
                  event Approval(address indexed owner, address indexed spender, uint256 value);
              }
              
              
              // File @openzeppelin/contracts/token/ERC20/SafeERC20.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @title SafeERC20
               * @dev Wrappers around ERC20 operations that throw on failure (when the token
               * contract returns false). Tokens that return no value (and instead revert or
               * throw on failure) are also supported, non-reverting calls are assumed to be
               * successful.
               * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
               * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
               */
              library SafeERC20 {
                  using SafeMath for uint256;
                  using Address for address;
              
                  function safeTransfer(IERC20 token, address to, uint256 value) internal {
                      _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
                  }
              
                  function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
                      _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
                  }
              
                  /**
                   * @dev Deprecated. This function has issues similar to the ones found in
                   * {IERC20-approve}, and its usage is discouraged.
                   *
                   * Whenever possible, use {safeIncreaseAllowance} and
                   * {safeDecreaseAllowance} instead.
                   */
                  function safeApprove(IERC20 token, address spender, uint256 value) internal {
                      // safeApprove should only be called when setting an initial allowance,
                      // or when resetting it to zero. To increase and decrease it, use
                      // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
                      // solhint-disable-next-line max-line-length
                      require((value == 0) || (token.allowance(address(this), spender) == 0),
                          "SafeERC20: approve from non-zero to non-zero allowance"
                      );
                      _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
                  }
              
                  function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
                      uint256 newAllowance = token.allowance(address(this), spender).add(value);
                      _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
                  }
              
                  function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
                      uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
                      _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
                  }
              
                  /**
                   * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
                   * on the return value: the return value is optional (but if data is returned, it must not be false).
                   * @param token The token targeted by the call.
                   * @param data The call data (encoded using abi.encode or one of its variants).
                   */
                  function _callOptionalReturn(IERC20 token, bytes memory data) private {
                      // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
                      // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
                      // the target address contains contract code and also asserts for success in the low-level call.
              
                      bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
                      if (returndata.length > 0) { // Return data is optional
                          // solhint-disable-next-line max-line-length
                          require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
                      }
                  }
              }
              
              
              // File interfaces/IUniswapV2Pair.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2Pair {
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  function name() external pure returns (string memory);
                  function symbol() external pure returns (string memory);
                  function decimals() external pure returns (uint8);
                  function totalSupply() external view returns (uint);
                  function balanceOf(address owner) external view returns (uint);
                  function allowance(address owner, address spender) external view returns (uint);
              
                  function approve(address spender, uint value) external returns (bool);
                  function transfer(address to, uint value) external returns (bool);
                  function transferFrom(address from, address to, uint value) external returns (bool);
              
                  function DOMAIN_SEPARATOR() external view returns (bytes32);
                  function PERMIT_TYPEHASH() external pure returns (bytes32);
                  function nonces(address owner) external view returns (uint);
              
                  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
              
                  event Mint(address indexed sender, uint amount0, uint amount1);
                  event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
                  event Swap(
                      address indexed sender,
                      uint amount0In,
                      uint amount1In,
                      uint amount0Out,
                      uint amount1Out,
                      address indexed to
                  );
                  event Sync(uint112 reserve0, uint112 reserve1);
              
                  function MINIMUM_LIQUIDITY() external pure returns (uint);
                  function factory() external view returns (address);
                  function token0() external view returns (address);
                  function token1() external view returns (address);
                  function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
                  function price0CumulativeLast() external view returns (uint);
                  function price1CumulativeLast() external view returns (uint);
                  function kLast() external view returns (uint);
              
                  function mint(address to) external returns (uint liquidity);
                  function burn(address to) external returns (uint amount0, uint amount1);
                  function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
                  function skim(address to) external;
                  function sync() external;
              
                  function initialize(address, address) external;
              }
              
              
              // File contracts/Utils/UniswapV2Library.sol
              
              pragma solidity 0.6.12;
              
              
              library UniswapV2Library {
                  using SafeMath for uint;
              
                  // returns sorted token addresses, used to handle return values from pairs sorted in this order
                  function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
                      require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
                      (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
                      require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
                  }
              
                  // calculates the CREATE2 address for a pair without making any external calls
                  function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
                      (address token0, address token1) = sortTokens(tokenA, tokenB);
                      pair = address(uint(keccak256(abi.encodePacked(
                              hex'ff',
                              factory,
                              keccak256(abi.encodePacked(token0, token1)),
                              hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
                          ))));
                  }
              
                  // fetches and sorts the reserves for a pair
                  function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
                      (address token0,) = sortTokens(tokenA, tokenB);
                      (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
                      (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
                  }
              
                  // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
                  function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
                      require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
                      require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      amountB = amountA.mul(reserveB) / reserveA;
                  }
              
                  // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
                  function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
                      require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
                      require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      uint amountInWithFee = amountIn.mul(997);
                      uint numerator = amountInWithFee.mul(reserveOut);
                      uint denominator = reserveIn.mul(1000).add(amountInWithFee);
                      amountOut = numerator / denominator;
                  }
              
                  // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
                  function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
                      require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
                      require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      uint numerator = reserveIn.mul(amountOut).mul(1000);
                      uint denominator = reserveOut.sub(amountOut).mul(997);
                      amountIn = (numerator / denominator).add(1);
                  }
              
                  // performs chained getAmountOut calculations on any number of pairs
                  function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
                      require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
                      amounts = new uint[](path.length);
                      amounts[0] = amountIn;
                      for (uint i; i < path.length - 1; i++) {
                          (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
                          amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
                      }
                  }
              
                  // performs chained getAmountIn calculations on any number of pairs
                  function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
                      require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
                      amounts = new uint[](path.length);
                      amounts[amounts.length - 1] = amountOut;
                      for (uint i = path.length - 1; i > 0; i--) {
                          (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
                          amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
                      }
                  }
              }
              
              
              // File interfaces/IWETH9.sol
              
              pragma solidity >=0.5.0;
              
              interface IWETH {
                  function deposit() external payable;
                  function transfer(address to, uint value) external returns (bool);
                  function withdraw(uint) external;
              }
              
              
              // File interfaces/IDigitalaxRewards.sol
              
              
              
              pragma solidity 0.6.12;
              
              /// @dev an interface to interact with the Genesis MONA NFT that will 
              interface IDigitalaxRewards {
                  function updateRewards() external returns (bool);
                  function genesisRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function parentRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function LPRewards(uint256 _from, uint256 _to) external view returns(uint256);
                  function lastRewardTime() external view returns (uint256);
              }
              
              
              // File contracts/DigitalaxLPStaking.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              
              /**
               * @title Digitalax Staking
               * @dev Stake MONA LP tokens, earn MONA on the Digitialax platform
               * @author Adrian Guerrera (deepyr)
               */
              
              
              contract DigitalaxLPStaking  {
                  using SafeMath for uint256;
                  using SafeERC20 for IERC20;
              
                  IERC20 public rewardsToken;
                  address public lpToken; // Pool tokens for MONA/WETH pair
                  IWETH public WETH;
              
                  DigitalaxAccessControls public accessControls;
                  IDigitalaxRewards public rewardsContract;
              
                  uint256 public stakedLPTotal;
                  uint256 public lastUpdateTime;
                  uint256 public rewardsPerTokenPoints;
                  uint256 public totalUnclaimedRewards;
              
                  uint256 constant pointMultiplier = 10e32;
              
                  /**
                  @notice Struct to track what user is staking which tokens
                  @dev balance is the current ether balance of the staker
                  @dev balance is the current rewards point snapshot
                  @dev rewardsEarned is the total reward for the staker till now
                  @dev rewardsReleased is how much reward has been paid to the staker
                  */
                  struct Staker {
                      uint256 balance;
                      uint256 lastRewardPoints;
                      uint256 rewardsEarned;
                      uint256 rewardsReleased;
                  }
              
                  /// @notice mapping of a staker to its current properties
                  mapping (address => Staker) public stakers;
              
                  // Mapping from token ID to owner address
                  mapping (uint256 => address) public tokenOwner;
              
                  /// @notice sets the token to be claimable or not, cannot claim if it set to false
                  bool public tokensClaimable;
                  bool private initialised;
              
                  /// @notice event emitted when a user has staked a token
                  event Staked(address indexed owner, uint256 amount);
              
                  /// @notice event emitted when a user has unstaked a token
                  event Unstaked(address indexed owner, uint256 amount);
              
                  /// @notice event emitted when a user claims reward
                  event RewardPaid(address indexed user, uint256 reward);
                  
                  event ClaimableStatusUpdated(bool status);
                  event EmergencyUnstake(address indexed user, uint256 amount);
                  event RewardsTokenUpdated(address indexed oldRewardsToken, address newRewardsToken );
                  event LpTokenUpdated(address indexed oldLpToken, address newLpToken );
              
                  constructor() public {
                  }
              
                   /**
                   * @dev Single gateway to intialize the staking contract after deploying
                   * @dev Sets the contract with the MONA/WETH LP pair and MONA token 
                   */
                  function initLPStaking(
                      IERC20 _rewardsToken,
                      address _lpToken,
                      IWETH _WETH,
                      DigitalaxAccessControls _accessControls
                  )
                      public
                  {
                      require(!initialised, "Already initialised");
                      rewardsToken = _rewardsToken;
                      lpToken = _lpToken;
                      WETH = _WETH;
                      accessControls = _accessControls;
                      lastUpdateTime = block.timestamp;
                      initialised = true;
                  }
              
                  receive() external payable {
                      if(msg.sender != address(WETH)){
                          zapEth();
                      }
                  }
              
                  /// @notice Wrapper function zapEth() for UI 
                  function zapEth() 
                      public 
                      payable
                  {
                      uint256 startBal = IERC20(lpToken).balanceOf(address(this));
                      addLiquidityETHOnly(address(this));
                      uint256 endBal = IERC20(lpToken).balanceOf(address(this));
              
                      require(
                          endBal > startBal ,
                          "DigitalaxLPStaking.zapEth: Zap amount must be greater than 0"
                      );
                      uint256 amount = endBal.sub(startBal);
              
                      Staker storage staker = stakers[msg.sender];
                      if (staker.balance == 0 && staker.lastRewardPoints == 0 ) {
                        staker.lastRewardPoints = rewardsPerTokenPoints;
                      }
              
                      updateReward(msg.sender);
                      staker.balance = staker.balance.add(amount);
                      stakedLPTotal = stakedLPTotal.add(amount);
                      emit Staked(msg.sender, amount);
                  }
              
                  /// @notice Lets admin set the Rewards Token
                  function setRewardsContract(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxLPStaking.setRewardsContract: Sender must be admin"
                      );
                      require(_addr != address(0));
                      address oldAddr = address(rewardsContract);
                      rewardsContract = IDigitalaxRewards(_addr);
                      emit RewardsTokenUpdated(oldAddr, _addr);
                  }
              
                  /// @notice Lets admin set the Uniswap LP Token
                  function setLpToken(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxLPStaking.setLpToken: Sender must be admin"
                      );
                      require(_addr != address(0));
                      address oldAddr = lpToken;
                      lpToken = _addr;
                      emit LpTokenUpdated(oldAddr, _addr);
                  }
              
                  /// @notice Lets admin set when tokens are claimable
                  function setTokensClaimable(
                      bool _enabled
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxLPStaking.setTokensClaimable: Sender must be admin"
                      );
                      tokensClaimable = _enabled;
                      emit ClaimableStatusUpdated(_enabled);
                  }
              
                  /// @notice Getter functions for Staking contract
                  /// @dev Get the tokens staked by a user
                  function getStakedBalance(
                      address _user
                  )
                      external
                      view
                      returns (uint256 balance)
                  {
                      return stakers[_user].balance;
                  }
              
                  /// @dev Get the total ETH staked in Uniswap
                  function stakedEthTotal()
                      external
                      view
                      returns (uint256)
                  {
              
                      uint256 lpPerEth = getLPTokenPerEthUnit(1e18);
                      return stakedLPTotal.mul(1e18).div(lpPerEth);
                  }
              
              
                  /// @notice Stake MONA LP Tokens and earn rewards.
                  function stake(
                      uint256 _amount
                  )
                      external
                  {
                      _stake(msg.sender, _amount);
                  }
              
                  /// @notice Stake MONA LP Tokens and earn rewards.
                  function stakeAll()
                      external
                  {
                      uint256 balance = IERC20(lpToken).balanceOf(msg.sender);
                      _stake(msg.sender, balance);
                  }
              
                  /**
                   * @dev All the staking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they stake the nfts based on ether price
                  */
                  function _stake(
                      address _user,
                      uint256 _amount
                  )
                      internal
                  {
                      require(
                          _amount > 0 ,
                          "DigitalaxLPStaking._stake: Staked amount must be greater than 0"
                      );
                      Staker storage staker = stakers[_user];
              
                      if (staker.balance == 0 && staker.lastRewardPoints == 0 ) {
                        staker.lastRewardPoints = rewardsPerTokenPoints;
                      }
              
                      updateReward(_user);
                      staker.balance = staker.balance.add(_amount);
                      stakedLPTotal = stakedLPTotal.add(_amount);
                      IERC20(lpToken).safeTransferFrom(
                          address(_user),
                          address(this),
                          _amount
                      );
                      emit Staked(_user, _amount);
                  }
              
                  /// @notice Unstake MONA LP Tokens. 
                  function unstake(
                      uint256 _amount
                  ) 
                      external 
                  {
                      _unstake(msg.sender, _amount);
                  }
              
                   /**
                   * @dev All the unstaking goes through this function
                   * @dev Rewards to be given out is calculated
                   * @dev Balance of stakers are updated as they unstake the nfts based on ether price
                  */
                  function _unstake(
                      address _user,
                      uint256 _amount
                  ) 
                      internal 
                  {
              
                      require(
                          stakers[_user].balance >= _amount,
                          "DigitalaxLPStaking._unstake: Sender must have staked tokens"
                      );
                      claimReward(_user);
                      Staker storage staker = stakers[_user];
                      
                      staker.balance = staker.balance.sub(_amount);
                      stakedLPTotal = stakedLPTotal.sub(_amount);
              
                      if (staker.balance == 0) {
                          delete stakers[_user];
                      }
              
                      uint256 tokenBal = IERC20(lpToken).balanceOf(address(this));
                      if (_amount > tokenBal) {
                          IERC20(lpToken).safeTransfer(address(_user), tokenBal);
                      } else {
                          IERC20(lpToken).safeTransfer(address(_user), _amount);
                      }
                      emit Unstaked(_user, _amount);
                  }
              
                  /// @notice Unstake without caring about rewards. EMERGENCY ONLY.
                  function emergencyUnstake() 
                      external
                  {
                      uint256 amount = stakers[msg.sender].balance;
                      stakers[msg.sender].balance = 0;
                      stakers[msg.sender].rewardsEarned = 0;
              
                      IERC20(lpToken).safeTransfer(address(msg.sender), amount);
                      emit EmergencyUnstake(msg.sender, amount);
                  }
              
                  /// @dev Updates the amount of rewards owed for each user before any tokens are moved
                  function updateReward(
                      address _user
                  ) 
                      public 
                  {
              
                      rewardsContract.updateRewards();
                      uint256 lpRewards = rewardsContract.LPRewards(lastUpdateTime,
                                                                      block.timestamp);
              
                      if (stakedLPTotal > 0) {
                          rewardsPerTokenPoints = rewardsPerTokenPoints.add(lpRewards
                                                                      .mul(1e18)
                                                                      .mul(pointMultiplier)
                                                                      .div(stakedLPTotal));
                      }
                      
                      lastUpdateTime = block.timestamp;
                      uint256 rewards = rewardsOwing(_user);
              
                      Staker storage staker = stakers[_user];
                      if (_user != address(0)) {
                          staker.rewardsEarned = staker.rewardsEarned.add(rewards);
                          staker.lastRewardPoints = rewardsPerTokenPoints; 
                      }
                  }
              
              
                  /// @notice Returns the rewards owing for a user
                  /// @dev The rewards are dynamic and normalised from the other pools
                  /// @dev This gets the rewards from each of the periods as one multiplier
                  function rewardsOwing(
                      address _user
                  )
                      public
                      view
                      returns(uint256)
                  {
                      uint256 newRewardPerToken = rewardsPerTokenPoints.sub(stakers[_user].lastRewardPoints);
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards;
                  }
              
              
                  /// @notice Returns the about of rewards yet to be claimed
                  function unclaimedRewards(
                      address _user
                  )
                      public
                      view
                      returns(uint256)
                  {
                      if (stakedLPTotal == 0) {
                          return 0;
                      }
              
                      uint256 lpRewards = rewardsContract.LPRewards(lastUpdateTime,
                                                                      block.timestamp);
              
                      uint256 newRewardPerToken = rewardsPerTokenPoints.add(lpRewards
                                                                              .mul(1e18)
                                                                              .mul(pointMultiplier)
                                                                              .div(stakedLPTotal))
                                                                       .sub(stakers[_user].lastRewardPoints);
              
                      uint256 rewards = stakers[_user].balance.mul(newRewardPerToken)
                                                              .div(1e18)
                                                              .div(pointMultiplier);
                      return rewards.add(stakers[_user].rewardsEarned).sub(stakers[_user].rewardsReleased);
                  }
              
              
                  /// @notice Lets a user with rewards owing to claim tokens
                  function claimReward(
                      address _user
                  )
                      public
                  {
                      require(
                          tokensClaimable == true,
                          "Tokens cannnot be claimed yet"
                      );
                      updateReward(_user);
              
                      Staker storage staker = stakers[_user];
                  
                      uint256 payableAmount = staker.rewardsEarned.sub(staker.rewardsReleased);
                      staker.rewardsReleased = staker.rewardsReleased.add(payableAmount);
              
                      /// @dev accounts for dust 
                      uint256 rewardBal = rewardsToken.balanceOf(address(this));
                      if (payableAmount > rewardBal) {
                          payableAmount = rewardBal;
                      }
                      
                      rewardsToken.transfer(_user, payableAmount);
                      emit RewardPaid(_user, payableAmount);
                  }
              
                  /* ========== Liquidity Zap ========== */
                  //:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                  //
                  // LiquidityZAP - UniswapZAP
                  //   Copyright (c) 2020 deepyr.com
                  //
                  // UniswapZAP takes ETH and converts to a Uniswap liquidity tokens. 
                  //
                  // This program is free software: you can redistribute it and/or modify
                  // it under the terms of the GNU General Public License as published by
                  // the Free Software Foundation, either version 3 of the License
                  //
                  // This program is distributed in the hope that it will be useful,
                  // but WITHOUT ANY WARRANTY; without even the implied warranty of
                  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                  // GNU General Public License for more details.
                  //
                  // You should have received a copy of the GNU General Public License
                  // along with this program.  
                  // If not, see <https://github.com/apguerrera/LiquidityZAP/>.
                  //
                  // The above copyright notice and this permission notice shall be included 
                  // in all copies or substantial portions of the Software.
                  //
                  // Authors:
                  // * Adrian Guerrera / Deepyr Pty Ltd
                  // 
                  // Attribution: CORE / cvault.finance
                  //  https://github.com/cVault-finance/CORE-periphery/blob/master/contracts/COREv1Router.sol
                  // ---------------------------------------------------------------------
                  
                  // ---------------------------------------------------------------------
              
                  function addLiquidityETHOnly(address payable to) public payable {
                      require(to != address(0), "Invalid address");
              
                      uint256 buyAmount = msg.value.div(2);
                      require(buyAmount > 0, "Insufficient ETH amount");
                      WETH.deposit{value : msg.value}();
              
                      (uint256 reserveWeth, uint256 reserveTokens) = getPairReserves();
                      uint256 outTokens = UniswapV2Library.getAmountOut(buyAmount, reserveWeth, reserveTokens);
                      
                      WETH.transfer(lpToken, buyAmount);
              
                      (address token0, address token1) = UniswapV2Library.sortTokens(address(WETH), address(rewardsToken));
                      IUniswapV2Pair(lpToken).swap(address(rewardsToken) == token0 ? outTokens : 0, address(rewardsToken) == token1 ? outTokens : 0, address(this), "");
              
                      _addLiquidity(outTokens, buyAmount, to);
              
                  }
              
                  function _addLiquidity(uint256 tokenAmount, uint256 wethAmount, address payable to) internal {
                      (uint256 wethReserve, uint256 tokenReserve) = getPairReserves();
              
                      uint256 optimalTokenAmount = UniswapV2Library.quote(wethAmount, wethReserve, tokenReserve);
              
                      uint256 optimalWETHAmount;
                      if (optimalTokenAmount > tokenAmount) {
                          optimalWETHAmount = UniswapV2Library.quote(tokenAmount, tokenReserve, wethReserve);
                          optimalTokenAmount = tokenAmount;
                      }
                      else
                          optimalWETHAmount = wethAmount;
              
                      assert(WETH.transfer(lpToken, optimalWETHAmount));
                      assert(rewardsToken.transfer(lpToken, optimalTokenAmount));
              
                      IUniswapV2Pair(lpToken).mint(to);
                      
                      //refund dust
                      if (tokenAmount > optimalTokenAmount)
                          rewardsToken.transfer(to, tokenAmount.sub(optimalTokenAmount));
              
                      if (wethAmount > optimalWETHAmount) {
                          uint256 withdrawAmount = wethAmount.sub(optimalWETHAmount);
                          WETH.withdraw(withdrawAmount);
                          to.transfer(withdrawAmount);
                      }
                  }
              
              
                  function getLPTokenPerEthUnit(uint ethAmt) public view  returns (uint liquidity){
                      (uint256 reserveWeth, uint256 reserveTokens) = getPairReserves();
                      uint256 outTokens = UniswapV2Library.getAmountOut(ethAmt.div(2), reserveWeth, reserveTokens);
                      uint _totalSupply =  IUniswapV2Pair(lpToken).totalSupply();
              
                      (address token0, ) = UniswapV2Library.sortTokens(address(WETH), address(rewardsToken));
                      (uint256 amount0, uint256 amount1) = token0 == address(rewardsToken) ? (outTokens, ethAmt.div(2)) : (ethAmt.div(2), outTokens);
                      (uint256 _reserve0, uint256 _reserve1) = token0 == address(rewardsToken) ? (reserveTokens, reserveWeth) : (reserveWeth, reserveTokens);
                      liquidity = min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
                  }
              
                  function getPairReserves() internal view returns (uint256 wethReserves, uint256 tokenReserves) {
                      (address token0,) = UniswapV2Library.sortTokens(address(WETH), address(rewardsToken));
                      (uint256 reserve0, uint reserve1,) = IUniswapV2Pair(lpToken).getReserves();
                      (wethReserves, tokenReserves) = token0 == address(rewardsToken) ? (reserve1, reserve0) : (reserve0, reserve1);
                  }
                  
                  function min(uint256 a, uint256 b) internal pure returns (uint256 c) {
                      c = a <= b ? a : b;
                  }
              
              
              }

              File 5 of 7: DigitalaxRewards
              // File @openzeppelin/contracts/math/SafeMath.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Wrappers over Solidity's arithmetic operations with added overflow
               * checks.
               *
               * Arithmetic operations in Solidity wrap on overflow. This can easily result
               * in bugs, because programmers usually assume that an overflow raises an
               * error, which is the standard behavior in high level programming languages.
               * `SafeMath` restores this intuition by reverting the transaction when an
               * operation overflows.
               *
               * Using this library instead of the unchecked operations eliminates an entire
               * class of bugs, so it's recommended to use it always.
               */
              library SafeMath {
                  /**
                   * @dev Returns the addition of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `+` operator.
                   *
                   * Requirements:
                   *
                   * - Addition cannot overflow.
                   */
                  function add(uint256 a, uint256 b) internal pure returns (uint256) {
                      uint256 c = a + b;
                      require(c >= a, "SafeMath: addition overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                      return sub(a, b, "SafeMath: subtraction overflow");
                  }
              
                  /**
                   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
                   * overflow (when the result is negative).
                   *
                   * Counterpart to Solidity's `-` operator.
                   *
                   * Requirements:
                   *
                   * - Subtraction cannot overflow.
                   */
                  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b <= a, errorMessage);
                      uint256 c = a - b;
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the multiplication of two unsigned integers, reverting on
                   * overflow.
                   *
                   * Counterpart to Solidity's `*` operator.
                   *
                   * Requirements:
                   *
                   * - Multiplication cannot overflow.
                   */
                  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                      // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                      // benefit is lost if 'b' is also tested.
                      // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
                      if (a == 0) {
                          return 0;
                      }
              
                      uint256 c = a * b;
                      require(c / a == b, "SafeMath: multiplication overflow");
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b) internal pure returns (uint256) {
                      return div(a, b, "SafeMath: division by zero");
                  }
              
                  /**
                   * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
                   * division by zero. The result is rounded towards zero.
                   *
                   * Counterpart to Solidity's `/` operator. Note: this function uses a
                   * `revert` opcode (which leaves remaining gas untouched) while Solidity
                   * uses an invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b > 0, errorMessage);
                      uint256 c = a / b;
                      // assert(a == b * c + a % b); // There is no case in which this doesn't hold
              
                      return c;
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                      return mod(a, b, "SafeMath: modulo by zero");
                  }
              
                  /**
                   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
                   * Reverts with custom message when dividing by zero.
                   *
                   * Counterpart to Solidity's `%` operator. This function uses a `revert`
                   * opcode (which leaves remaining gas untouched) while Solidity uses an
                   * invalid opcode to revert (consuming all remaining gas).
                   *
                   * Requirements:
                   *
                   * - The divisor cannot be zero.
                   */
                  function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
                      require(b != 0, errorMessage);
                      return a % b;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }
              
              
              // File @openzeppelin/contracts/introspection/IERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.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 @openzeppelin/contracts/token/ERC721/IERC721.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Required interface of an ERC721 compliant contract.
               */
              interface IERC721 is IERC165 {
                  /**
                   * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
                   */
                  event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
                   */
                  event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
              
                  /**
                   * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
                   */
                  event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
              
                  /**
                   * @dev Returns the number of tokens in ``owner``'s account.
                   */
                  function balanceOf(address owner) external view returns (uint256 balance);
              
                  /**
                   * @dev Returns the owner of the `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function ownerOf(uint256 tokenId) external view returns (address owner);
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Transfers `tokenId` token from `from` to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                   *
                   * Emits a {Transfer} event.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) external;
              
                  /**
                   * @dev Gives permission to `to` to transfer `tokenId` token to another account.
                   * The approval is cleared when the token is transferred.
                   *
                   * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
                   *
                   * Requirements:
                   *
                   * - The caller must own the token or be an approved operator.
                   * - `tokenId` must exist.
                   *
                   * Emits an {Approval} event.
                   */
                  function approve(address to, uint256 tokenId) external;
              
                  /**
                   * @dev Returns the account approved for `tokenId` token.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function getApproved(uint256 tokenId) external view returns (address operator);
              
                  /**
                   * @dev Approve or remove `operator` as an operator for the caller.
                   * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
                   *
                   * Requirements:
                   *
                   * - The `operator` cannot be the caller.
                   *
                   * Emits an {ApprovalForAll} event.
                   */
                  function setApprovalForAll(address operator, bool _approved) external;
              
                  /**
                   * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
                   *
                   * See {setApprovalForAll}
                   */
                  function isApprovedForAll(address owner, address operator) external view returns (bool);
              
                  /**
                    * @dev Safely transfers `tokenId` token from `from` to `to`.
                    *
                    * Requirements:
                    *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                    * - `tokenId` token must exist and be owned by `from`.
                    * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
                    * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                    *
                    * Emits a {Transfer} event.
                    */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Metadata is IERC721 {
              
                  /**
                   * @dev Returns the token collection name.
                   */
                  function name() external view returns (string memory);
              
                  /**
                   * @dev Returns the token collection symbol.
                   */
                  function symbol() external view returns (string memory);
              
                  /**
                   * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
                   */
                  function tokenURI(uint256 tokenId) external view returns (string memory);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
               * @dev See https://eips.ethereum.org/EIPS/eip-721
               */
              interface IERC721Enumerable is IERC721 {
              
                  /**
                   * @dev Returns the total amount of tokens stored by the contract.
                   */
                  function totalSupply() external view returns (uint256);
              
                  /**
                   * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
                   * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
              
                  /**
                   * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
                   * Use along with {totalSupply} to enumerate all tokens.
                   */
                  function tokenByIndex(uint256 index) external view returns (uint256);
              }
              
              
              // File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @title ERC721 token receiver interface
               * @dev Interface for any contract that wants to support safeTransfers
               * from ERC721 asset contracts.
               */
              interface IERC721Receiver {
                  /**
                   * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
                   * by `operator` from `from`, this function is called.
                   *
                   * It must return its Solidity selector to confirm the token transfer.
                   * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
                   *
                   * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
                   */
                  function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
                  external returns (bytes4);
              }
              
              
              // File @openzeppelin/contracts/introspection/ERC165.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Implementation of the {IERC165} interface.
               *
               * Contracts may inherit from this and call {_registerInterface} to declare
               * their support of an interface.
               */
              contract ERC165 is IERC165 {
                  /*
                   * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
                   */
                  bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
              
                  /**
                   * @dev Mapping of interface ids to whether or not it's supported.
                   */
                  mapping(bytes4 => bool) private _supportedInterfaces;
              
                  constructor () internal {
                      // Derived contracts need only register support for their own interfaces,
                      // we register support for ERC165 itself here
                      _registerInterface(_INTERFACE_ID_ERC165);
                  }
              
                  /**
                   * @dev See {IERC165-supportsInterface}.
                   *
                   * Time complexity O(1), guaranteed to always use less than 30 000 gas.
                   */
                  function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
                      return _supportedInterfaces[interfaceId];
                  }
              
                  /**
                   * @dev Registers the contract as an implementer of the interface defined by
                   * `interfaceId`. Support of the actual ERC165 interface is automatic and
                   * registering its interface id is not required.
                   *
                   * See {IERC165-supportsInterface}.
                   *
                   * Requirements:
                   *
                   * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
                   */
                  function _registerInterface(bytes4 interfaceId) internal virtual {
                      require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
                      _supportedInterfaces[interfaceId] = true;
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/EnumerableMap.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev Library for managing an enumerable variant of Solidity's
               * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
               * type.
               *
               * Maps have the following properties:
               *
               * - Entries are added, removed, and checked for existence in constant time
               * (O(1)).
               * - Entries are enumerated in O(n). No guarantees are made on the ordering.
               *
               * ```
               * contract Example {
               *     // Add the library methods
               *     using EnumerableMap for EnumerableMap.UintToAddressMap;
               *
               *     // Declare a set state variable
               *     EnumerableMap.UintToAddressMap private myMap;
               * }
               * ```
               *
               * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
               * supported.
               */
              library EnumerableMap {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Map type with
                  // bytes32 keys and values.
                  // The Map implementation uses private functions, and user-facing
                  // implementations (such as Uint256ToAddressMap) are just wrappers around
                  // the underlying Map.
                  // This means that we can only create new EnumerableMaps for types that fit
                  // in bytes32.
              
                  struct MapEntry {
                      bytes32 _key;
                      bytes32 _value;
                  }
              
                  struct Map {
                      // Storage of map keys and values
                      MapEntry[] _entries;
              
                      // Position of the entry defined by a key in the `entries` array, plus 1
                      // because index 0 means a key is not in the map.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex == 0) { // Equivalent to !contains(map, key)
                          map._entries.push(MapEntry({ _key: key, _value: value }));
                          // The entry is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          map._indexes[key] = map._entries.length;
                          return true;
                      } else {
                          map._entries[keyIndex - 1]._value = value;
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a key-value pair from a map. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function _remove(Map storage map, bytes32 key) private returns (bool) {
                      // We read and store the key's index to prevent multiple reads from the same storage slot
                      uint256 keyIndex = map._indexes[key];
              
                      if (keyIndex != 0) { // Equivalent to contains(map, key)
                          // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
                          // in the array, and then remove the last entry (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = keyIndex - 1;
                          uint256 lastIndex = map._entries.length - 1;
              
                          // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          MapEntry storage lastEntry = map._entries[lastIndex];
              
                          // Move the last entry to the index where the entry to delete is
                          map._entries[toDeleteIndex] = lastEntry;
                          // Update the index for the moved entry
                          map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved entry was stored
                          map._entries.pop();
              
                          // Delete the index for the deleted slot
                          delete map._indexes[key];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function _contains(Map storage map, bytes32 key) private view returns (bool) {
                      return map._indexes[key] != 0;
                  }
              
                  /**
                   * @dev Returns the number of key-value pairs in the map. O(1).
                   */
                  function _length(Map storage map) private view returns (uint256) {
                      return map._entries.length;
                  }
              
                 /**
                  * @dev Returns the key-value pair stored at position `index` in the map. O(1).
                  *
                  * Note that there are no guarantees on the ordering of entries inside the
                  * array, and it may change when more entries are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
                      require(map._entries.length > index, "EnumerableMap: index out of bounds");
              
                      MapEntry storage entry = map._entries[index];
                      return (entry._key, entry._value);
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function _get(Map storage map, bytes32 key) private view returns (bytes32) {
                      return _get(map, key, "EnumerableMap: nonexistent key");
                  }
              
                  /**
                   * @dev Same as {_get}, with a custom error message when `key` is not in the map.
                   */
                  function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
                      uint256 keyIndex = map._indexes[key];
                      require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
                      return map._entries[keyIndex - 1]._value; // All indexes are 1-based
                  }
              
                  // UintToAddressMap
              
                  struct UintToAddressMap {
                      Map _inner;
                  }
              
                  /**
                   * @dev Adds a key-value pair to a map, or updates the value for an existing
                   * key. O(1).
                   *
                   * Returns true if the key was added to the map, that is if it was not
                   * already present.
                   */
                  function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
                      return _set(map._inner, bytes32(key), bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the key was removed from the map, that is if it was present.
                   */
                  function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
                      return _remove(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns true if the key is in the map. O(1).
                   */
                  function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
                      return _contains(map._inner, bytes32(key));
                  }
              
                  /**
                   * @dev Returns the number of elements in the map. O(1).
                   */
                  function length(UintToAddressMap storage map) internal view returns (uint256) {
                      return _length(map._inner);
                  }
              
                 /**
                  * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
                      (bytes32 key, bytes32 value) = _at(map._inner, index);
                      return (uint256(key), address(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the value associated with `key`.  O(1).
                   *
                   * Requirements:
                   *
                   * - `key` must be in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key))));
                  }
              
                  /**
                   * @dev Same as {get}, with a custom error message when `key` is not in the map.
                   */
                  function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
                      return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Strings.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /**
               * @dev String operations.
               */
              library Strings {
                  /**
                   * @dev Converts a `uint256` to its ASCII `string` 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);
                      uint256 index = digits - 1;
                      temp = value;
                      while (temp != 0) {
                          buffer[index--] = byte(uint8(48 + temp % 10));
                          temp /= 10;
                      }
                      return string(buffer);
                  }
              }
              
              
              // File contracts/ERC721/ERC721WithSameTokenURIForAllTokens.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              
              
              
              
              /**
               * @title ERC721 Non-Fungible Token Standard basic implementation
               * @dev see https://eips.ethereum.org/EIPS/eip-721
               * @dev This is a modified OZ ERC721 base contract with one change where all tokens have the same token URI
               */
              contract ERC721WithSameTokenURIForAllTokens is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
                  using SafeMath for uint256;
                  using Address for address;
                  using EnumerableSet for EnumerableSet.UintSet;
                  using EnumerableMap for EnumerableMap.UintToAddressMap;
                  using Strings for uint256;
              
                  // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
                  // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
                  bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
              
                  // Mapping from holder address to their (enumerable) set of owned tokens
                  mapping (address => EnumerableSet.UintSet) private _holderTokens;
              
                  // Enumerable mapping from token ids to their owners
                  EnumerableMap.UintToAddressMap private _tokenOwners;
              
                  // Mapping from token ID to approved address
                  mapping (uint256 => address) private _tokenApprovals;
              
                  // Mapping from owner to operator approvals
                  mapping (address => mapping (address => bool)) private _operatorApprovals;
              
                  // Token name
                  string private _name;
              
                  // Token symbol
                  string private _symbol;
              
                  // Single token URI for all tokens
                  string public tokenURI_;
              
                  /*
                   *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
                   *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
                   *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
                   *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
                   *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
                   *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
                   *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
                   *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
                   *
                   *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
                   *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
              
                  /*
                   *     bytes4(keccak256('name()')) == 0x06fdde03
                   *     bytes4(keccak256('symbol()')) == 0x95d89b41
                   *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
                   *
                   *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
              
                  /*
                   *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
                   *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
                   *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
                   *
                   *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
                   */
                  bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
              
                  /**
                   * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
                   */
                  constructor (string memory name, string memory symbol) public {
                      _name = name;
                      _symbol = symbol;
              
                      // register the supported interfaces to conform to ERC721 via ERC165
                      _registerInterface(_INTERFACE_ID_ERC721);
                      _registerInterface(_INTERFACE_ID_ERC721_METADATA);
                      _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
                  }
              
                  /**
                   * @dev See {IERC721-balanceOf}.
                   */
                  function balanceOf(address owner) public view override returns (uint256) {
                      require(owner != address(0), "ERC721: balance query for the zero address");
              
                      return _holderTokens[owner].length();
                  }
              
                  /**
                   * @dev See {IERC721-ownerOf}.
                   */
                  function ownerOf(uint256 tokenId) public view override returns (address) {
                      return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
                  }
              
                  /**
                   * @dev See {IERC721Metadata-name}.
                   */
                  function name() public view override returns (string memory) {
                      return _name;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-symbol}.
                   */
                  function symbol() public view override returns (string memory) {
                      return _symbol;
                  }
              
                  /**
                   * @dev See {IERC721Metadata-tokenURI}.
                   */
                  function tokenURI(uint256 tokenId) public view override returns (string memory) {
                      require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
              
                      return tokenURI_;
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
                   */
                  function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
                      return _holderTokens[owner].at(index);
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-totalSupply}.
                   */
                  function totalSupply() public view override returns (uint256) {
                      // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
                      return _tokenOwners.length();
                  }
              
                  /**
                   * @dev See {IERC721Enumerable-tokenByIndex}.
                   */
                  function tokenByIndex(uint256 index) public view override returns (uint256) {
                      (uint256 tokenId, ) = _tokenOwners.at(index);
                      return tokenId;
                  }
              
                  /**
                   * @dev See {IERC721-approve}.
                   */
                  function approve(address to, uint256 tokenId) public virtual override {
                      address owner = ownerOf(tokenId);
                      require(to != owner, "ERC721: approval to current owner");
              
                      require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
                          "ERC721: approve caller is not owner nor approved for all"
                      );
              
                      _approve(to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-getApproved}.
                   */
                  function getApproved(uint256 tokenId) public view override returns (address) {
                      require(_exists(tokenId), "ERC721: approved query for nonexistent token");
              
                      return _tokenApprovals[tokenId];
                  }
              
                  /**
                   * @dev See {IERC721-setApprovalForAll}.
                   */
                  function setApprovalForAll(address operator, bool approved) public virtual override {
                      require(operator != _msgSender(), "ERC721: approve to caller");
              
                      _operatorApprovals[_msgSender()][operator] = approved;
                      emit ApprovalForAll(_msgSender(), operator, approved);
                  }
              
                  /**
                   * @dev See {IERC721-isApprovedForAll}.
                   */
                  function isApprovedForAll(address owner, address operator) public view override returns (bool) {
                      return _operatorApprovals[owner][operator];
                  }
              
                  /**
                   * @dev See {IERC721-transferFrom}.
                   */
                  function transferFrom(address from, address to, uint256 tokenId) public virtual override {
                      //solhint-disable-next-line max-line-length
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
              
                      _transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
                      safeTransferFrom(from, to, tokenId, "");
                  }
              
                  /**
                   * @dev See {IERC721-safeTransferFrom}.
                   */
                  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
                      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
                      _safeTransfer(from, to, tokenId, _data);
                  }
              
                  /**
                   * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
                   * are aware of the ERC721 protocol to prevent tokens from being forever locked.
                   *
                   * `_data` is additional data, it has no specified format and it is sent in call to `to`.
                   *
                   * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
                   * implement alternative mechanisms to perform token transfer, such as signature-based.
                   *
                   * Requirements:
                   *
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must exist and be owned by `from`.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _transfer(from, to, tokenId);
                      require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Returns whether `tokenId` exists.
                   *
                   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
                   *
                   * Tokens start existing when they are minted (`_mint`),
                   * and stop existing when they are burned (`_burn`).
                   */
                  function _exists(uint256 tokenId) internal view returns (bool) {
                      return _tokenOwners.contains(tokenId);
                  }
              
                  /**
                   * @dev Returns whether `spender` is allowed to manage `tokenId`.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   */
                  function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
                      require(_exists(tokenId), "ERC721: operator query for nonexistent token");
                      address owner = ownerOf(tokenId);
                      return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
                  }
              
                  /**
                   * @dev Safely mints `tokenId` and transfers it to `to`.
                   *
                   * Requirements:
                   d*
                   * - `tokenId` must not exist.
                   * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _safeMint(address to, uint256 tokenId) internal virtual {
                      _safeMint(to, tokenId, "");
                  }
              
                  /**
                   * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
                   * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
                   */
                  function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
                      _mint(to, tokenId);
                      require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
                  }
              
                  /**
                   * @dev Mints `tokenId` and transfers it to `to`.
                   *
                   * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
                   *
                   * Requirements:
                   *
                   * - `tokenId` must not exist.
                   * - `to` cannot be the zero address.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _mint(address to, uint256 tokenId) internal virtual {
                      require(to != address(0), "ERC721: mint to the zero address");
                      require(!_exists(tokenId), "ERC721: token already minted");
              
                      _beforeTokenTransfer(address(0), to, tokenId);
              
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(address(0), to, tokenId);
                  }
              
                  /**
                   * @dev Destroys `tokenId`.
                   * The approval is cleared when the token is burned.
                   *
                   * Requirements:
                   *
                   * - `tokenId` must exist.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _burn(uint256 tokenId) internal virtual {
                      address owner = ownerOf(tokenId);
              
                      _beforeTokenTransfer(owner, address(0), tokenId);
              
                      // Clear approvals
                      _approve(address(0), tokenId);
              
                      _holderTokens[owner].remove(tokenId);
              
                      _tokenOwners.remove(tokenId);
              
                      emit Transfer(owner, address(0), tokenId);
                  }
              
                  /**
                   * @dev Transfers `tokenId` from `from` to `to`.
                   *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
                   *
                   * Requirements:
                   *
                   * - `to` cannot be the zero address.
                   * - `tokenId` token must be owned by `from`.
                   *
                   * Emits a {Transfer} event.
                   */
                  function _transfer(address from, address to, uint256 tokenId) internal virtual {
                      require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
                      require(to != address(0), "ERC721: transfer to the zero address");
              
                      _beforeTokenTransfer(from, to, tokenId);
              
                      // Clear approvals from the previous owner
                      _approve(address(0), tokenId);
              
                      _holderTokens[from].remove(tokenId);
                      _holderTokens[to].add(tokenId);
              
                      _tokenOwners.set(tokenId, to);
              
                      emit Transfer(from, to, tokenId);
                  }
              
                  /**
                   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
                   * The call is not executed if the target address is not a contract.
                   *
                   * @param from address representing the previous owner of the given token ID
                   * @param to target address that will receive the tokens
                   * @param tokenId uint256 ID of the token to be transferred
                   * @param _data bytes optional data to send along with the call
                   * @return bool whether the call correctly returned the expected magic value
                   */
                  function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
                  private returns (bool)
                  {
                      if (!to.isContract()) {
                          return true;
                      }
                      bytes memory returndata = to.functionCall(abi.encodeWithSelector(
                              IERC721Receiver(to).onERC721Received.selector,
                              _msgSender(),
                              from,
                              tokenId,
                              _data
                          ), "ERC721: transfer to non ERC721Receiver implementer");
                      bytes4 retval = abi.decode(returndata, (bytes4));
                      return (retval == _ERC721_RECEIVED);
                  }
              
                  function _approve(address to, uint256 tokenId) private {
                      _tokenApprovals[tokenId] = to;
                      emit Approval(ownerOf(tokenId), to, tokenId);
                  }
              
                  /**
                   * @dev Hook that is called before any token transfer. This includes minting
                   * and burning.
                   *
                   * Calling conditions:
                   *
                   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
                   * transferred to `to`.
                   * - When `from` is zero, `tokenId` will be minted for `to`.
                   * - When `to` is zero, ``from``'s `tokenId` will be burned.
                   * - `from` cannot be the zero address.
                   * - `to` cannot be the zero address.
                   *
                   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
              }
              
              
              // File contracts/DigitalaxGenesisNFT.sol
              
              
              
              pragma solidity 0.6.12;
              
              
              
              /**
               * @title Digitalax Genesis NFT
               * @dev To facilitate the genesis sale for the Digitialax platform
               */
              contract DigitalaxGenesisNFT is ERC721WithSameTokenURIForAllTokens("DigitalaxGenesis", "DXG") {
                  using SafeMath for uint256;
              
                  // @notice event emitted upon construction of this contract, used to bootstrap external indexers
                  event DigitalaxGenesisNFTContractDeployed();
              
                  // @notice event emitted when a contributor buys a Genesis NFT
                  event GenesisPurchased(
                      address indexed buyer,
                      uint256 indexed tokenId,
                      uint256 contribution
                  );
              
                  // @notice event emitted when a admin mints a Genesis NFT
                  event AdminGenesisMinted(
                      address indexed beneficiary,
                      address indexed admin,
                      uint256 indexed tokenId
                  );
              
                  // @notice event emitted when a contributors amount is increased
                  event ContributionIncreased(
                      address indexed buyer,
                      uint256 contribution
                  );
              
                  // @notice event emitted when end date is changed
                  event GenesisEndUpdated(
                      uint256 genesisEndTimestamp,
                      address indexed admin
                  );
              
                  // @notice event emitted when DigitalaxAccessControls is updated
                  event AccessControlsUpdated(
                      address indexed newAdress
                  );
              
                  // @notice responsible for enforcing admin access
                  DigitalaxAccessControls public accessControls;
              
                  // @notice all funds will be sent to this address pon purchase of a Genesis NFT
                  address payable public fundsMultisig;
              
                  // @notice start date for them the Genesis sale is open to the public, before this data no purchases can be made
                  uint256 public genesisStartTimestamp;
              
                  // @notice end date for them the Genesis sale is closed, no more purchased can be made after this point
                  uint256 public genesisEndTimestamp;
              
                  // @notice set after end time has been changed once, prevents further changes to end timestamp
                  bool public genesisEndTimestampLocked;
              
                  // @notice the minimum amount a buyer can contribute in a single go
                  uint256 public constant minimumContributionAmount = 0.1 ether;
              
                  // @notice the maximum accumulative amount a user can contribute to the genesis sale
                  uint256 public constant maximumContributionAmount = 2 ether;
              
                  // @notice accumulative => contribution total
                  mapping(address => uint256) public contribution;
              
                  // @notice global accumulative contribution amount
                  uint256 public totalContributions;
              
                  // @notice max number of paid contributions to the genesis sale
                  uint256 public constant maxGenesisContributionTokens = 460;
              
                  uint256 public totalAdminMints;
              
                  constructor(
                      DigitalaxAccessControls _accessControls,
                      address payable _fundsMultisig,
                      uint256 _genesisStartTimestamp,
                      uint256 _genesisEndTimestamp,
                      string memory _tokenURI
                  ) public {
                      accessControls = _accessControls;
                      fundsMultisig = _fundsMultisig;
                      genesisStartTimestamp = _genesisStartTimestamp;
                      genesisEndTimestamp = _genesisEndTimestamp;
                      tokenURI_ = _tokenURI;
                      emit DigitalaxGenesisNFTContractDeployed();
                  }
              
                  /**
                   * @dev Proxy method for facilitating a single point of entry to either buy or contribute additional value to the Genesis sale
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   */
                  function buyOrIncreaseContribution() external payable {
                      if (contribution[_msgSender()] == 0) {
                          buy();
                      } else {
                          increaseContribution();
                      }
                  }
              
                  /**
                   * @dev Facilitating the initial purchase of a Genesis NFT
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if already owns an genesis token
                   * @dev Buyer receives a NFT on success
                   * @dev All funds move to fundsMultisig
                   */
                  function buy() public payable {
                      require(contribution[_msgSender()] == 0, "DigitalaxGenesisNFT.buy: You already own a genesis NFT");
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.buy: No genesis are available outside of the genesis window"
                      );
              
                      uint256 _contributionAmount = msg.value;
                      require(
                          _contributionAmount >= minimumContributionAmount,
                          "DigitalaxGenesisNFT.buy: Contribution does not meet minimum requirement"
                      );
              
                      require(
                          _contributionAmount <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.buy: You cannot exceed the maximum contribution amount"
                      );
              
                      require(remainingGenesisTokens() > 0, "DigitalaxGenesisNFT.buy: Total number of genesis token holders reached");
              
                      contribution[_msgSender()] = _contributionAmount;
                      totalContributions = totalContributions.add(_contributionAmount);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _contributionAmount}("");
                      require(fundsTransferSuccess, "DigitalaxGenesisNFT.buy: Unable to send contribution to funds multisig");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_msgSender(), tokenId);
              
                      emit GenesisPurchased(_msgSender(), tokenId, _contributionAmount);
                  }
              
                  /**
                   * @dev Facilitates an owner to increase there contribution
                   * @dev Cannot contribute less than minimumContributionAmount
                   * @dev Cannot contribute accumulative more than than maximumContributionAmount
                   * @dev Reverts if caller does not already owns an genesis token
                   * @dev All funds move to fundsMultisig
                   */
                  function increaseContribution() public payable {
                      require(
                          _getNow() >= genesisStartTimestamp && _getNow() <= genesisEndTimestamp,
                          "DigitalaxGenesisNFT.increaseContribution: No increases are possible outside of the genesis window"
                      );
              
                      require(
                          contribution[_msgSender()] > 0,
                          "DigitalaxGenesisNFT.increaseContribution: You do not own a genesis NFT"
                      );
              
                      uint256 _amountToIncrease = msg.value;
                      contribution[_msgSender()] = contribution[_msgSender()].add(_amountToIncrease);
              
                      require(
                          contribution[_msgSender()] <= maximumContributionAmount,
                          "DigitalaxGenesisNFT.increaseContribution: You cannot exceed the maximum contribution amount"
                      );
              
                      totalContributions = totalContributions.add(_amountToIncrease);
              
                      (bool fundsTransferSuccess,) = fundsMultisig.call{value : _amountToIncrease}("");
                      require(
                          fundsTransferSuccess,
                          "DigitalaxGenesisNFT.increaseContribution: Unable to send contribution to funds multisig"
                      );
              
                      emit ContributionIncreased(_msgSender(), _amountToIncrease);
                  }
              
                  // Admin
              
                  /**
                   * @dev Allows a whitelisted admin to mint a token and issue it to a beneficiary
                   * @dev One token per holder
                   * @dev All holders contribution as set o zero on creation
                   */
                  function adminBuy(address _beneficiary) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.adminBuy: Sender must be admin"
                      );
                      require(_beneficiary != address(0), "DigitalaxGenesisNFT.adminBuy: Beneficiary cannot be ZERO");
                      require(balanceOf(_beneficiary) == 0, "DigitalaxGenesisNFT.adminBuy: Beneficiary already owns a genesis NFT");
              
                      uint256 tokenId = totalSupply().add(1);
                      _safeMint(_beneficiary, tokenId);
              
                      // Increase admin mint counts
                      totalAdminMints = totalAdminMints.add(1);
              
                      emit AdminGenesisMinted(_beneficiary, _msgSender(), tokenId);
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the end date of the genesis
                   */
                  function updateGenesisEnd(uint256 _end) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateGenesisEnd: Sender must be admin"
                      );
                      // If already passed, dont allow opening again
                      require(genesisEndTimestamp > _getNow(), "DigitalaxGenesisNFT.updateGenesisEnd: End time already passed");
              
                      // Only allow setting this once
                      require(!genesisEndTimestampLocked, "DigitalaxGenesisNFT.updateGenesisEnd: End time locked");
              
                      genesisEndTimestamp = _end;
              
                      // Lock future end time modifications
                      genesisEndTimestampLocked = true;
              
                      emit GenesisEndUpdated(genesisEndTimestamp, _msgSender());
                  }
              
                  /**
                   * @dev Allows a whitelisted admin to update the start date of the genesis
                   */
                  function updateAccessControls(DigitalaxAccessControls _accessControls) external {
                      require(
                          accessControls.hasAdminRole(_msgSender()),
                          "DigitalaxGenesisNFT.updateAccessControls: Sender must be admin"
                      );
                      require(address(_accessControls) != address(0), "DigitalaxGenesisNFT.updateAccessControls: Zero Address");
                      accessControls = _accessControls;
              
                      emit AccessControlsUpdated(address(_accessControls));
                  }
              
                  /**
                  * @dev Returns total remaining number of tokens available in the Genesis sale
                  */
                  function remainingGenesisTokens() public view returns (uint256) {
                      return _getMaxGenesisContributionTokens() - (totalSupply() - totalAdminMints);
                  }
              
                  // Internal
              
                  function _getNow() internal virtual view returns (uint256) {
                      return block.timestamp;
                  }
              
                  function _getMaxGenesisContributionTokens() internal virtual view returns (uint256) {
                      return maxGenesisContributionTokens;
                  }
              
                  /**
                   * @dev Before token transfer hook to enforce that no token can be moved to another address until the genesis sale has ended
                   */
                  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
                      if (from != address(0) && _getNow() <= genesisEndTimestamp) {
                          revert("DigitalaxGenesisNFT._beforeTokenTransfer: Transfers are currently locked at this time");
                      }
                  }
              }
              
              
              // File interfaces/IERC20.sol
              
              pragma solidity ^0.6.2;
              
              
              interface IERC20 {
                  function name() external view returns (string memory);
                  function symbol() external view returns (string memory);
                  function decimals() external view returns (uint8);
                  function totalSupply() external view returns (uint256);
                  function balanceOf(address owner) external view returns (uint256);
                  function transfer(address to, uint256 amount) external returns (bool);
                  function transferFrom(address from, address to, uint256 amount) external returns (bool);
                  function approve(address spender, uint256 amount) external returns (bool);
                  function allowance(address owner, address spender) external view returns (uint256);
              
                  event Transfer(address indexed from, address indexed to, uint256 amount);
                  event Approval(address indexed owner, address indexed spender, uint256 amount);
              }
              
              
              // File interfaces/IUniswapV2Pair.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2Pair {
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  function name() external pure returns (string memory);
                  function symbol() external pure returns (string memory);
                  function decimals() external pure returns (uint8);
                  function totalSupply() external view returns (uint);
                  function balanceOf(address owner) external view returns (uint);
                  function allowance(address owner, address spender) external view returns (uint);
              
                  function approve(address spender, uint value) external returns (bool);
                  function transfer(address to, uint value) external returns (bool);
                  function transferFrom(address from, address to, uint value) external returns (bool);
              
                  function DOMAIN_SEPARATOR() external view returns (bytes32);
                  function PERMIT_TYPEHASH() external pure returns (bytes32);
                  function nonces(address owner) external view returns (uint);
              
                  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
              
                  event Mint(address indexed sender, uint amount0, uint amount1);
                  event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
                  event Swap(
                      address indexed sender,
                      uint amount0In,
                      uint amount1In,
                      uint amount0Out,
                      uint amount1Out,
                      address indexed to
                  );
                  event Sync(uint112 reserve0, uint112 reserve1);
              
                  function MINIMUM_LIQUIDITY() external pure returns (uint);
                  function factory() external view returns (address);
                  function token0() external view returns (address);
                  function token1() external view returns (address);
                  function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
                  function price0CumulativeLast() external view returns (uint);
                  function price1CumulativeLast() external view returns (uint);
                  function kLast() external view returns (uint);
              
                  function mint(address to) external returns (uint liquidity);
                  function burn(address to) external returns (uint amount0, uint amount1);
                  function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
                  function skim(address to) external;
                  function sync() external;
              
                  function initialize(address, address) external;
              }
              
              
              // File contracts/Utils/UniswapV2Library.sol
              
              pragma solidity 0.6.12;
              
              
              library UniswapV2Library {
                  using SafeMath for uint;
              
                  // returns sorted token addresses, used to handle return values from pairs sorted in this order
                  function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
                      require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES');
                      (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
                      require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS');
                  }
              
                  // calculates the CREATE2 address for a pair without making any external calls
                  function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
                      (address token0, address token1) = sortTokens(tokenA, tokenB);
                      pair = address(uint(keccak256(abi.encodePacked(
                              hex'ff',
                              factory,
                              keccak256(abi.encodePacked(token0, token1)),
                              hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash
                          ))));
                  }
              
                  // fetches and sorts the reserves for a pair
                  function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
                      (address token0,) = sortTokens(tokenA, tokenB);
                      (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
                      (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
                  }
              
                  // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
                  function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
                      require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT');
                      require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      amountB = amountA.mul(reserveB) / reserveA;
                  }
              
                  // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
                  function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
                      require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT');
                      require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      uint amountInWithFee = amountIn.mul(997);
                      uint numerator = amountInWithFee.mul(reserveOut);
                      uint denominator = reserveIn.mul(1000).add(amountInWithFee);
                      amountOut = numerator / denominator;
                  }
              
                  // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
                  function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) {
                      require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT');
                      require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY');
                      uint numerator = reserveIn.mul(amountOut).mul(1000);
                      uint denominator = reserveOut.sub(amountOut).mul(997);
                      amountIn = (numerator / denominator).add(1);
                  }
              
                  // performs chained getAmountOut calculations on any number of pairs
                  function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
                      require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
                      amounts = new uint[](path.length);
                      amounts[0] = amountIn;
                      for (uint i; i < path.length - 1; i++) {
                          (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
                          amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut);
                      }
                  }
              
                  // performs chained getAmountIn calculations on any number of pairs
                  function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
                      require(path.length >= 2, 'UniswapV2Library: INVALID_PATH');
                      amounts = new uint[](path.length);
                      amounts[amounts.length - 1] = amountOut;
                      for (uint i = path.length - 1; i > 0; i--) {
                          (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
                          amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut);
                      }
                  }
              }
              
              
              // File contracts/DigitalaxRewards.sol
              
              // SPDX-License-Identifier: GPLv2
              
              pragma solidity 0.6.12;
              
              
              
              
              
              
              
              /**
               * @title Digitalax Rewards
               * @dev Calculates the rewards for staking on the Digitialax platform
               * @author Adrian Guerrera (deepyr)
               */
              
              interface DigialaxStaking {
                  function stakedEthTotal() external view returns (uint256);
                  function lpToken() external view returns (address);
                  function WETH() external view returns (address);
              }
              
              interface MONA is IERC20 {
                  function mint(address tokenOwner, uint tokens) external returns (bool);
              }
              
              contract DigitalaxRewards {
                  using SafeMath for uint256;
              
                  /* ========== Variables ========== */
              
                  MONA public rewardsToken;
                  DigitalaxAccessControls public accessControls;
                  DigialaxStaking public genesisStaking;
                  DigialaxStaking public parentStaking;
                  DigialaxStaking public lpStaking;
              
                  uint256 constant pointMultiplier = 10e18;
                  uint256 constant SECONDS_PER_DAY = 24 * 60 * 60;
                  uint256 constant SECONDS_PER_WEEK = 7 * 24 * 60 * 60;
                  
                  // weekNumber => rewards
                  mapping (uint256 => uint256) public weeklyRewardsPerSecond;
                  mapping (address => mapping(uint256 => uint256)) public weeklyBonusPerSecond;
              
                  uint256 public startTime;
                  uint256 public lastRewardTime;
              
                  uint256 public genesisRewardsPaid;
                  uint256 public parentRewardsPaid;
                  uint256 public lpRewardsPaid;
              
                  /* ========== Structs ========== */
              
                  struct Weights {
                      uint256 genesisWtPoints;
                      uint256 parentWtPoints;
                      uint256 lpWeightPoints;
                  }
              
                  /// @notice mapping of a staker to its current properties
                  mapping (uint256 => Weights) public weeklyWeightPoints;
              
                  /* ========== Events ========== */
              
                  event RewardAdded(address indexed addr, uint256 reward);
                  event RewardDistributed(address indexed addr, uint256 reward);
                  event Recovered(address indexed token, uint256 amount);
              
                  
                  /* ========== Admin Functions ========== */
                  constructor(
                      MONA _rewardsToken,
                      DigitalaxAccessControls _accessControls,
                      DigialaxStaking _genesisStaking,
                      DigialaxStaking _parentStaking,
                      DigialaxStaking _lpStaking,
                      uint256 _startTime,
                      uint256 _lastRewardTime,
                      uint256 _genesisRewardsPaid,
                      uint256 _parentRewardsPaid,
                      uint256 _lpRewardsPaid
              
                  )
                      public
                  {
                      rewardsToken = _rewardsToken;
                      accessControls = _accessControls;
                      genesisStaking = _genesisStaking;
                      parentStaking = _parentStaking;
                      lpStaking = _lpStaking;
                      startTime = _startTime;
                      lastRewardTime = _lastRewardTime;
                      genesisRewardsPaid = _genesisRewardsPaid;
                      parentRewardsPaid = _parentRewardsPaid;
                      lpRewardsPaid = _lpRewardsPaid;        
                  }
              
                  /// @dev Setter functions for contract config
                  function setStartTime(
                      uint256 _startTime,
                      uint256 _lastRewardTime
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setStartTime: Sender must be admin"
                      );
                      startTime = _startTime;
                      lastRewardTime = _lastRewardTime;
                  }
              
                  /// @dev Setter functions for contract config
                  function setInitialPoints(
                      uint256 week,
                      uint256 gW,
                      uint256 pW,
                      uint256 mW
              
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setStartTime: Sender must be admin"
                      );
                      Weights storage weights = weeklyWeightPoints[week];
                      weights.genesisWtPoints = gW;
                      weights.parentWtPoints = pW;
                      weights.lpWeightPoints = mW;
              
                  }
              
                  function setGenesisStaking(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setGenesisStaking: Sender must be admin"
                      );
                      require(_addr != address(parentStaking));
                      require(_addr != address(lpStaking));
                      genesisStaking = DigialaxStaking(_addr);
                  }
              
                  function setParentStaking(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setParentStaking: Sender must be admin"
                      );
                      require(_addr != address(genesisStaking));
                      require(_addr != address(lpStaking));
                      parentStaking = DigialaxStaking(_addr);
                  }
              
                  function setLPStaking(
                      address _addr
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setLPStaking: Sender must be admin"
                      );
                      require(_addr != address(parentStaking));
                      require(_addr != address(genesisStaking));
                      lpStaking = DigialaxStaking(_addr);
                  } 
              
                  /// @notice Set rewards distributed each week
                  /// @dev this number is the total rewards that week with 18 decimals
                  function setRewards(
                      uint256[] memory rewardWeeks,
                      uint256[] memory amounts
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setRewards: Sender must be admin"
                      );
                      uint256 numRewards = rewardWeeks.length;
                      for (uint256 i = 0; i < numRewards; i++) {
                          uint256 week = rewardWeeks[i];
                          uint256 amount = amounts[i].mul(pointMultiplier)
                                                     .div(SECONDS_PER_WEEK)
                                                     .div(pointMultiplier);
                          weeklyRewardsPerSecond[week] = amount;
                      }
                  }
                  /// @notice Set rewards distributed each week
                  /// @dev this number is the total rewards that week with 18 decimals
                  function bonusRewards(
                      address pool,
                      uint256[] memory rewardWeeks,
                      uint256[] memory amounts
                  )
                      external
                  {
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.setRewards: Sender must be admin"
                      );
                      uint256 numRewards = rewardWeeks.length;
                      for (uint256 i = 0; i < numRewards; i++) {
                          uint256 week = rewardWeeks[i];
                          uint256 amount = amounts[i].mul(pointMultiplier)
                                                     .div(SECONDS_PER_WEEK)
                                                     .div(pointMultiplier);
                          weeklyBonusPerSecond[pool][week] = amount;
                      }
                  }
              
                  // From BokkyPooBah's DateTime Library v1.01
                  // https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary
                  function diffDays(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _days) {
                      require(fromTimestamp <= toTimestamp);
                      _days = (toTimestamp - fromTimestamp) / SECONDS_PER_DAY;
                  }
              
              
                  /* ========== Mutative Functions ========== */
              
                  /// @notice Calculate the current normalised weightings and update rewards
                  /// @dev 
                  function updateRewards() 
                      external
                      returns(bool)
                  {
                      if (block.timestamp <= lastRewardTime) {
                          return false;
                      }
                      uint256 g_net = genesisStaking.stakedEthTotal();
                      uint256 p_net = parentStaking.stakedEthTotal();
                      uint256 m_net = lpStaking.stakedEthTotal();
              
                      /// @dev check that the staking pools have contributions, and rewards have started
                      if (g_net.add(p_net).add(m_net) == 0 || block.timestamp <= startTime) {
                          lastRewardTime = block.timestamp;
                          return false;
                      }
              
                      (uint256 gW, uint256 pW, uint256 mW) = _getReturnWeights(g_net, p_net, m_net);
                      _updateWeightingAcc(gW,pW,mW);
              
                      /// @dev This mints and sends rewards
                      _updateGenesisRewards();
                      _updateParentRewards();
                      _updateLPRewards();
              
                      /// @dev update accumulated reward
                      lastRewardTime = block.timestamp;
                      return true;
                  }
              
              
                  /* ========== View Functions ========== */
              
                  /// @notice Gets the total rewards outstanding from last reward time
                  function totalRewards() external view returns (uint256) {
                      uint256 gRewards = genesisRewards(lastRewardTime, block.timestamp);
                      uint256 pRewards = parentRewards(lastRewardTime, block.timestamp);
                      uint256 lRewards = LPRewards(lastRewardTime, block.timestamp);
                      return gRewards.add(pRewards).add(lRewards);     
                  }
              
              
                  /// @notice Gets the total contributions from the staked contracts
                  function getTotalContributions()
                      external
                      view
                      returns(uint256)
                  {
                      return genesisStaking.stakedEthTotal()
                          .add(parentStaking.stakedEthTotal())
                          .add(lpStaking.stakedEthTotal());
                  }
              
                  /// @dev Getter functions for Rewards contract
                  function getCurrentRewardWeek()
                      external 
                      view 
                      returns(uint256)
                  {
                      return diffDays(startTime, block.timestamp) / 7;
                  }
              
                  function totalRewardsPaid()
                      external
                      view
                      returns(uint256)
                  {
                      return genesisRewardsPaid.add(parentRewardsPaid).add(lpRewardsPaid);
                  } 
              
                  /// @notice Return genesis rewards over the given _from to _to timestamp.
                  /// @dev A fraction of the start, multiples of the middle weeks, fraction of the end
                  function genesisRewards(uint256 _from, uint256 _to) public view returns (uint256 rewards) {
                      if (_to <= startTime) {
                          return 0;
                      }
                      if (_from < startTime) {
                          _from = startTime;
                      }
                      uint256 fromWeek = diffDays(startTime, _from) / 7;
                      uint256 toWeek = diffDays(startTime, _to) / 7;
              
                     if (fromWeek == toWeek) {
                          return _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  _to.sub(_from),
                                                  weeklyWeightPoints[fromWeek].genesisWtPoints)
                                      .add(weeklyBonusPerSecond[address(genesisStaking)][fromWeek].mul(_to.sub(_from)));
                      }
                      /// @dev First count remainer of first week 
                      uint256 initialRemander = startTime.add((fromWeek+1).mul(SECONDS_PER_WEEK)).sub(_from);
                      rewards = _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  initialRemander,
                                                  weeklyWeightPoints[fromWeek].genesisWtPoints)
                                      .add(weeklyBonusPerSecond[address(genesisStaking)][fromWeek].mul(initialRemander));
              
                      /// @dev add multiples of the week
                      for (uint256 i = fromWeek+1; i < toWeek; i++) {
                          rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[i],
                                                  SECONDS_PER_WEEK,
                                                  weeklyWeightPoints[i].genesisWtPoints))
                                           .add(weeklyBonusPerSecond[address(genesisStaking)][i].mul(SECONDS_PER_WEEK));
                      }
                      /// @dev Adds any remaining time in the most recent week till _to
                      uint256 finalRemander = _to.sub(toWeek.mul(SECONDS_PER_WEEK).add(startTime));
                      rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[toWeek],
                                                  finalRemander,
                                                  weeklyWeightPoints[toWeek].genesisWtPoints))
                                        .add(weeklyBonusPerSecond[address(genesisStaking)][toWeek].mul(finalRemander));
                      return rewards;
                  }
              
                  /// @notice Return parent rewards over the given _from to _to timestamp.
                  /// @dev A fraction of the start, multiples of the middle weeks, fraction of the end
                  function parentRewards(uint256 _from, uint256 _to) public view returns (uint256 rewards) {
                      if (_to <= startTime) {
                          return 0;
                      }
                      if (_from < startTime) {
                          _from = startTime;
                      }
                      uint256 fromWeek = diffDays(startTime, _from) / 7;
                      uint256 toWeek = diffDays(startTime, _to) / 7;
                     
                      if (fromWeek == toWeek) {
                          return _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  _to.sub(_from),
                                                  weeklyWeightPoints[fromWeek].parentWtPoints)
                                      .add(weeklyBonusPerSecond[address(parentStaking)][fromWeek].mul(_to.sub(_from)));
                      }
                      // First count remainer of first week 
                      uint256 initialRemander = startTime.add((fromWeek+1).mul(SECONDS_PER_WEEK)).sub(_from);
                      rewards = _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  initialRemander,
                                                  weeklyWeightPoints[fromWeek].parentWtPoints)
                                      .add(weeklyBonusPerSecond[address(parentStaking)][fromWeek].mul(initialRemander));
              
                      /// @dev add multiples of the week
                      for (uint256 i = fromWeek+1; i < toWeek; i++) {
                          rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[i],
                                                  SECONDS_PER_WEEK,
                                                  weeklyWeightPoints[i].parentWtPoints))
                                           .add(weeklyBonusPerSecond[address(parentStaking)][i].mul(SECONDS_PER_WEEK));
                      }
                      /// @dev Adds any remaining time in the most recent week till _to
                      uint256 finalRemander = _to.sub(toWeek.mul(SECONDS_PER_WEEK).add(startTime));
                      rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[toWeek],
                                                  finalRemander,
                                                  weeklyWeightPoints[toWeek].parentWtPoints))
                                        .add(weeklyBonusPerSecond[address(parentStaking)][toWeek].mul(finalRemander));
                      return rewards;
                  }
              
                  /// @notice Return LP rewards over the given _from to _to timestamp.
                  /// @dev A fraction of the start, multiples of the middle weeks, fraction of the end
                  function LPRewards(uint256 _from, uint256 _to) public view returns (uint256 rewards) {
                      if (_to <= startTime) {
                          return 0;
                      }
                      if (_from < startTime) {
                          _from = startTime;
                      }
                      uint256 fromWeek = diffDays(startTime, _from) / 7;                      
                      uint256 toWeek = diffDays(startTime, _to) / 7;                          
              
                      if (fromWeek == toWeek) {
                          return _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  _to.sub(_from),
                                                  weeklyWeightPoints[fromWeek].lpWeightPoints)
                                      .add(weeklyBonusPerSecond[address(lpStaking)][fromWeek].mul(_to.sub(_from)));
                      }
                      /// @dev First count remainer of first week 
                      uint256 initialRemander = startTime.add((fromWeek+1).mul(SECONDS_PER_WEEK)).sub(_from);
                      rewards = _rewardsFromPoints(weeklyRewardsPerSecond[fromWeek],
                                                  initialRemander,
                                                  weeklyWeightPoints[fromWeek].lpWeightPoints)
                                      .add(weeklyBonusPerSecond[address(lpStaking)][fromWeek].mul(initialRemander));
              
                      /// @dev add multiples of the week
                      for (uint256 i = fromWeek+1; i < toWeek; i++) {
                          rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[i],
                                                  SECONDS_PER_WEEK,
                                                  weeklyWeightPoints[i].lpWeightPoints))
                                           .add(weeklyBonusPerSecond[address(lpStaking)][i].mul(SECONDS_PER_WEEK));
                      }
                      /// @dev Adds any remaining time in the most recent week till _to
                      uint256 finalRemander = _to.sub(toWeek.mul(SECONDS_PER_WEEK).add(startTime));
                      rewards = rewards.add(_rewardsFromPoints(weeklyRewardsPerSecond[toWeek],
                                                  finalRemander,
                                                  weeklyWeightPoints[toWeek].lpWeightPoints))
                                      .add(weeklyBonusPerSecond[address(lpStaking)][toWeek].mul(finalRemander));
                      return rewards;
                  }
              
              
                  /* ========== Internal Functions ========== */
              
                  function _updateGenesisRewards() 
                      internal
                      returns(uint256 rewards)
                  {
                      rewards = genesisRewards(lastRewardTime, block.timestamp);
                      if ( rewards > 0 ) {
                          genesisRewardsPaid = genesisRewardsPaid.add(rewards);
                          require(rewardsToken.mint(address(genesisStaking), rewards));
                      }
                  }
              
                  function _updateParentRewards() 
                      internal
                      returns(uint256 rewards)
                  {
                      rewards = parentRewards(lastRewardTime, block.timestamp);
                      if ( rewards > 0 ) {
                          parentRewardsPaid = parentRewardsPaid.add(rewards);
                          require(rewardsToken.mint(address(parentStaking), rewards));
                      }
                  }
              
                  function _updateLPRewards() 
                      internal
                      returns(uint256 rewards)
                  {
                      rewards = LPRewards(lastRewardTime, block.timestamp);
                      if ( rewards > 0 ) {
                          lpRewardsPaid = lpRewardsPaid.add(rewards);
                          require(rewardsToken.mint(address(lpStaking), rewards));
                      }
                  }
              
                  function _rewardsFromPoints(
                      uint256 rate,
                      uint256 duration, 
                      uint256 weight
                  ) 
                      internal
                      pure
                      returns(uint256)
                  {
                      return rate.mul(duration)
                          .mul(weight)
                          .div(1e18)
                          .div(pointMultiplier);
                  }
              
                  /// @dev Internal fuction to update the weightings 
                  function _updateWeightingAcc(uint256 gW, uint256 pW, uint256 mW) internal {
                      uint256 currentWeek = diffDays(startTime, block.timestamp) / 7;
                      uint256 lastRewardWeek = diffDays(startTime, lastRewardTime) / 7;
                      uint256 startCurrentWeek = startTime.add(currentWeek.mul(SECONDS_PER_WEEK)); 
              
                      /// @dev Initialisation of new weightings and fill gaps
                      if (weeklyWeightPoints[0].genesisWtPoints == 0 
                              && weeklyWeightPoints[0].parentWtPoints == 0 
                              && weeklyWeightPoints[0].lpWeightPoints == 0  ) {
                          Weights storage weights = weeklyWeightPoints[0];
                          weights.genesisWtPoints = gW;
                          weights.parentWtPoints = pW;
                          weights.lpWeightPoints = mW;
                      }
                      /// @dev Fill gaps in weightings
                      if (lastRewardWeek < currentWeek ) {
                          /// @dev Back fill missing weeks
                          for (uint256 i = lastRewardWeek+1; i <= currentWeek; i++) {
                              Weights storage weights = weeklyWeightPoints[i];
                              weights.genesisWtPoints = gW;
                              weights.parentWtPoints = pW;
                              weights.lpWeightPoints = mW;
                          }
                          return;
                      }      
                      /// @dev Calc the time weighted averages
                      Weights storage weights = weeklyWeightPoints[currentWeek];
                      weights.genesisWtPoints = _calcWeightPoints(weights.genesisWtPoints,gW,startCurrentWeek);
                      weights.parentWtPoints = _calcWeightPoints(weights.parentWtPoints,pW,startCurrentWeek);
                      weights.lpWeightPoints = _calcWeightPoints(weights.lpWeightPoints,mW,startCurrentWeek);
                  }
              
                  /// @dev Time weighted average of the token weightings
                  function _calcWeightPoints(
                      uint256 prevWeight,
                      uint256 newWeight,
                      uint256 startCurrentWeek
                  ) 
                      internal 
                      view 
                      returns(uint256) 
                  {
                      uint256 previousWeighting = prevWeight.mul(lastRewardTime.sub(startCurrentWeek));
                      uint256 currentWeighting = newWeight.mul(block.timestamp.sub(lastRewardTime));
                      return previousWeighting.add(currentWeighting)
                                              .div(block.timestamp.sub(startCurrentWeek));
                  }
              
                  function max(uint256 a, uint256 b) internal pure returns (uint256 c) {
                      c = a >= b ? a : b;
                  }
                  
                  /// @notice Normalised weightings of weights with point multiplier 
                  function _getReturnWeights(
                      uint256 _g,
                      uint256 _p,
                      uint256 _m
                  )   
                      internal
                      view
                      returns(uint256,uint256,uint256)
                  {
                      uint256 eg = _g.mul(_getSqrtWeight(_g,_p,_m));
                      uint256 ep = _p.mul(_getSqrtWeight(_p,_m,_g));
                      uint256 em = _m.mul(_getSqrtWeight(_m,_g,_p));
              
                      uint256 norm = eg.add(ep).add(em);
              
                      return (eg.mul(pointMultiplier).mul(1e18).div(norm), ep.mul(pointMultiplier).mul(1e18).div(norm), 
                              em.mul(pointMultiplier).mul(1e18).div(norm));
              
                  }
              
              
                  /// @notice Normalised weightings  
                  function _getSqrtWeight(
                      uint256 _a,
                      uint256 _b,
                      uint256 _c
                  )  
                      internal
                      view
                      returns(
                          uint256 wA
                      )
                  {
                      if ( _a <= _b.add(_c) ||  _b.add(_c) == 0  ) {
                          return 1e18;
                      }
                      /// @dev Normalised for each weighting
                      uint256 A1 = max(_a.mul(1e18).div(max(_b,1e18)),1e18);
                      uint256 A2 = max(_a.mul(1e18).div(max(_c,1e18)),1e18);
                      uint256 A = A1.mul(A2).div(1e18);
              
                      /// @dev sqrt needs to refactored by 1/2 decimals, ie 1e9
                      wA = _sqrt(uint256(1e18).mul(1e18).div(A)).mul(1e9);
                      
                  }
              
                  /// @dev babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
                  function _sqrt(uint y) internal pure returns (uint z) {
                      if (y > 3) {
                          z = y;
                          uint x = y / 2 + 1;
                          while (x < z) {
                              z = x;
                              x = (y / x + x) / 2;
                          }
                      } else if (y != 0) {
                          z = 1;
                      }
                  }
              
                  /* ========== Recover ERC20 ========== */
              
                  /// @notice allows for the recovery of incorrect ERC20 tokens sent to contract
                  function recoverERC20(
                      address tokenAddress,
                      uint256 tokenAmount
                  )
                      external
                  {
                      // Cannot recover the staking token or the rewards token
                      require(
                          accessControls.hasAdminRole(msg.sender),
                          "DigitalaxRewards.recoverERC20: Sender must be admin"
                      );
                      require(
                          tokenAddress != address(rewardsToken),
                          "Cannot withdraw the rewards token"
                      );
                      IERC20(tokenAddress).transfer(msg.sender, tokenAmount);
                      emit Recovered(tokenAddress, tokenAmount);
                  }
              
              
                  /* ========== Getters ========== */
              
                  function getCurrentWeek()
                      external
                      view
                      returns(uint256)
                  {
                      return diffDays(startTime, block.timestamp) / 7;
                  }
              
              
                  function getCurrentGenesisWtPoints()
                      external
                      view
                      returns(uint256)
                  {
                      uint256 currentWeek = diffDays(startTime, block.timestamp) / 7;
                      return weeklyWeightPoints[currentWeek].genesisWtPoints;
                  }
              
                  function getCurrentParentWtPoints()
                      external
                      view
                      returns(uint256)
                  {
                      uint256 currentWeek = diffDays(startTime, block.timestamp) / 7;
                      return weeklyWeightPoints[currentWeek].parentWtPoints;
                  }
                  function getCurrentLpWeightPoints()
                      external
                      view
                      returns(uint256)
                  {
                      uint256 currentWeek = diffDays(startTime, block.timestamp) / 7;
                      return weeklyWeightPoints[currentWeek].lpWeightPoints;
                  }
              
                  function getGenesisStakedEthTotal()
                      public
                      view
                      returns(uint256)
                  {
                      return genesisStaking.stakedEthTotal();
                  }
              
                  function getLpStakedEthTotal()
                      public
                      view
                      returns(uint256)
                  {
                      return lpStaking.stakedEthTotal();
                  }
              
                  function getParentStakedEthTotal()
                      public
                      view
                      returns(uint256)
                  {
                      return parentStaking.stakedEthTotal();
                  }
              
                  function getGenesisDailyAPY()
                      external
                      view 
                      returns (uint256) 
                  {
                      uint256 stakedEth = getGenesisStakedEthTotal();
                      if ( stakedEth == 0 ) {
                          return 0;
                      }
                      uint256 rewards = genesisRewards(block.timestamp - 60, block.timestamp);
                      uint256 rewardsInEth = rewards.mul(getEthPerMona()).div(1e18);
                      return rewardsInEth.mul(52560000).mul(1e18).div(stakedEth);
                  } 
              
                  function getParentDailyAPY()
                      external
                      view 
                      returns (uint256) 
                  {
                      uint256 stakedEth = getParentStakedEthTotal();
                      if ( stakedEth == 0 ) {
                          return 0;
                      }
                      uint256 rewards = parentRewards(block.timestamp - 60, block.timestamp);
                      uint256 rewardsInEth = rewards.mul(getEthPerMona()).div(1e18);
                      return rewardsInEth.mul(52560000).mul(1e18).div(stakedEth);
                  } 
              
                  function getLpDailyAPY()
                      external
                      view 
                      returns (uint256) 
                  {
                      uint256 stakedEth = getLpStakedEthTotal();
                      if ( stakedEth == 0 ) {
                          return 0;
                      }
                      uint256 rewards = LPRewards(block.timestamp - 60, block.timestamp);
                      uint256 rewardsInEth = rewards.mul(getEthPerMona()).div(1e18);
                      /// @dev minutes per year x 100 = 52560000
                      return rewardsInEth.mul(52560000).mul(1e18).div(stakedEth);
                  } 
              
                  function getMonaPerEth()
                      public 
                      view 
                      returns (uint256)
                  {
                      (uint256 wethReserve, uint256 tokenReserve) = getPairReserves();
                      return UniswapV2Library.quote(1e18, wethReserve, tokenReserve);
                  }
              
                  function getEthPerMona()
                      public
                      view
                      returns (uint256)
                  {
                      (uint256 wethReserve, uint256 tokenReserve) = getPairReserves();
                      return UniswapV2Library.quote(1e18, tokenReserve, wethReserve);
                  }
              
                  function getPairReserves() internal view returns (uint256 wethReserves, uint256 tokenReserves) {
                      (address token0,) = UniswapV2Library.sortTokens(address(lpStaking.WETH()), address(rewardsToken));
                      (uint256 reserve0, uint reserve1,) = IUniswapV2Pair(lpStaking.lpToken()).getReserves();
                      (wethReserves, tokenReserves) = token0 == address(rewardsToken) ? (reserve1, reserve0) : (reserve0, reserve1);
                  }
              
              }

              File 6 of 7: UniswapV2Pair
              // File: contracts/interfaces/IUniswapV2Pair.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2Pair {
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  function name() external pure returns (string memory);
                  function symbol() external pure returns (string memory);
                  function decimals() external pure returns (uint8);
                  function totalSupply() external view returns (uint);
                  function balanceOf(address owner) external view returns (uint);
                  function allowance(address owner, address spender) external view returns (uint);
              
                  function approve(address spender, uint value) external returns (bool);
                  function transfer(address to, uint value) external returns (bool);
                  function transferFrom(address from, address to, uint value) external returns (bool);
              
                  function DOMAIN_SEPARATOR() external view returns (bytes32);
                  function PERMIT_TYPEHASH() external pure returns (bytes32);
                  function nonces(address owner) external view returns (uint);
              
                  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
              
                  event Mint(address indexed sender, uint amount0, uint amount1);
                  event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
                  event Swap(
                      address indexed sender,
                      uint amount0In,
                      uint amount1In,
                      uint amount0Out,
                      uint amount1Out,
                      address indexed to
                  );
                  event Sync(uint112 reserve0, uint112 reserve1);
              
                  function MINIMUM_LIQUIDITY() external pure returns (uint);
                  function factory() external view returns (address);
                  function token0() external view returns (address);
                  function token1() external view returns (address);
                  function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
                  function price0CumulativeLast() external view returns (uint);
                  function price1CumulativeLast() external view returns (uint);
                  function kLast() external view returns (uint);
              
                  function mint(address to) external returns (uint liquidity);
                  function burn(address to) external returns (uint amount0, uint amount1);
                  function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
                  function skim(address to) external;
                  function sync() external;
              
                  function initialize(address, address) external;
              }
              
              // File: contracts/interfaces/IUniswapV2ERC20.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2ERC20 {
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  function name() external pure returns (string memory);
                  function symbol() external pure returns (string memory);
                  function decimals() external pure returns (uint8);
                  function totalSupply() external view returns (uint);
                  function balanceOf(address owner) external view returns (uint);
                  function allowance(address owner, address spender) external view returns (uint);
              
                  function approve(address spender, uint value) external returns (bool);
                  function transfer(address to, uint value) external returns (bool);
                  function transferFrom(address from, address to, uint value) external returns (bool);
              
                  function DOMAIN_SEPARATOR() external view returns (bytes32);
                  function PERMIT_TYPEHASH() external pure returns (bytes32);
                  function nonces(address owner) external view returns (uint);
              
                  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
              }
              
              // File: contracts/libraries/SafeMath.sol
              
              pragma solidity =0.5.16;
              
              // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
              
              library SafeMath {
                  function add(uint x, uint y) internal pure returns (uint z) {
                      require((z = x + y) >= x, 'ds-math-add-overflow');
                  }
              
                  function sub(uint x, uint y) internal pure returns (uint z) {
                      require((z = x - y) <= x, 'ds-math-sub-underflow');
                  }
              
                  function mul(uint x, uint y) internal pure returns (uint z) {
                      require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
                  }
              }
              
              // File: contracts/UniswapV2ERC20.sol
              
              pragma solidity =0.5.16;
              
              
              
              contract UniswapV2ERC20 is IUniswapV2ERC20 {
                  using SafeMath for uint;
              
                  string public constant name = 'Uniswap V2';
                  string public constant symbol = 'UNI-V2';
                  uint8 public constant decimals = 18;
                  uint  public totalSupply;
                  mapping(address => uint) public balanceOf;
                  mapping(address => mapping(address => uint)) public allowance;
              
                  bytes32 public DOMAIN_SEPARATOR;
                  // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
                  bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
                  mapping(address => uint) public nonces;
              
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  constructor() public {
                      uint chainId;
                      assembly {
                          chainId := chainid
                      }
                      DOMAIN_SEPARATOR = keccak256(
                          abi.encode(
                              keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
                              keccak256(bytes(name)),
                              keccak256(bytes('1')),
                              chainId,
                              address(this)
                          )
                      );
                  }
              
                  function _mint(address to, uint value) internal {
                      totalSupply = totalSupply.add(value);
                      balanceOf[to] = balanceOf[to].add(value);
                      emit Transfer(address(0), to, value);
                  }
              
                  function _burn(address from, uint value) internal {
                      balanceOf[from] = balanceOf[from].sub(value);
                      totalSupply = totalSupply.sub(value);
                      emit Transfer(from, address(0), value);
                  }
              
                  function _approve(address owner, address spender, uint value) private {
                      allowance[owner][spender] = value;
                      emit Approval(owner, spender, value);
                  }
              
                  function _transfer(address from, address to, uint value) private {
                      balanceOf[from] = balanceOf[from].sub(value);
                      balanceOf[to] = balanceOf[to].add(value);
                      emit Transfer(from, to, value);
                  }
              
                  function approve(address spender, uint value) external returns (bool) {
                      _approve(msg.sender, spender, value);
                      return true;
                  }
              
                  function transfer(address to, uint value) external returns (bool) {
                      _transfer(msg.sender, to, value);
                      return true;
                  }
              
                  function transferFrom(address from, address to, uint value) external returns (bool) {
                      if (allowance[from][msg.sender] != uint(-1)) {
                          allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
                      }
                      _transfer(from, to, value);
                      return true;
                  }
              
                  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
                      require(deadline >= block.timestamp, 'UniswapV2: EXPIRED');
                      bytes32 digest = keccak256(
                          abi.encodePacked(
                              '\x19\x01',
                              DOMAIN_SEPARATOR,
                              keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
                          )
                      );
                      address recoveredAddress = ecrecover(digest, v, r, s);
                      require(recoveredAddress != address(0) && recoveredAddress == owner, 'UniswapV2: INVALID_SIGNATURE');
                      _approve(owner, spender, value);
                  }
              }
              
              // File: contracts/libraries/Math.sol
              
              pragma solidity =0.5.16;
              
              // a library for performing various math operations
              
              library Math {
                  function min(uint x, uint y) internal pure returns (uint z) {
                      z = x < y ? x : y;
                  }
              
                  // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
                  function sqrt(uint y) internal pure returns (uint z) {
                      if (y > 3) {
                          z = y;
                          uint x = y / 2 + 1;
                          while (x < z) {
                              z = x;
                              x = (y / x + x) / 2;
                          }
                      } else if (y != 0) {
                          z = 1;
                      }
                  }
              }
              
              // File: contracts/libraries/UQ112x112.sol
              
              pragma solidity =0.5.16;
              
              // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))
              
              // range: [0, 2**112 - 1]
              // resolution: 1 / 2**112
              
              library UQ112x112 {
                  uint224 constant Q112 = 2**112;
              
                  // encode a uint112 as a UQ112x112
                  function encode(uint112 y) internal pure returns (uint224 z) {
                      z = uint224(y) * Q112; // never overflows
                  }
              
                  // divide a UQ112x112 by a uint112, returning a UQ112x112
                  function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
                      z = x / uint224(y);
                  }
              }
              
              // File: contracts/interfaces/IERC20.sol
              
              pragma solidity >=0.5.0;
              
              interface IERC20 {
                  event Approval(address indexed owner, address indexed spender, uint value);
                  event Transfer(address indexed from, address indexed to, uint value);
              
                  function name() external view returns (string memory);
                  function symbol() external view returns (string memory);
                  function decimals() external view returns (uint8);
                  function totalSupply() external view returns (uint);
                  function balanceOf(address owner) external view returns (uint);
                  function allowance(address owner, address spender) external view returns (uint);
              
                  function approve(address spender, uint value) external returns (bool);
                  function transfer(address to, uint value) external returns (bool);
                  function transferFrom(address from, address to, uint value) external returns (bool);
              }
              
              // File: contracts/interfaces/IUniswapV2Factory.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2Factory {
                  event PairCreated(address indexed token0, address indexed token1, address pair, uint);
              
                  function feeTo() external view returns (address);
                  function feeToSetter() external view returns (address);
              
                  function getPair(address tokenA, address tokenB) external view returns (address pair);
                  function allPairs(uint) external view returns (address pair);
                  function allPairsLength() external view returns (uint);
              
                  function createPair(address tokenA, address tokenB) external returns (address pair);
              
                  function setFeeTo(address) external;
                  function setFeeToSetter(address) external;
              }
              
              // File: contracts/interfaces/IUniswapV2Callee.sol
              
              pragma solidity >=0.5.0;
              
              interface IUniswapV2Callee {
                  function uniswapV2Call(address sender, uint amount0, uint amount1, bytes calldata data) external;
              }
              
              // File: contracts/UniswapV2Pair.sol
              
              pragma solidity =0.5.16;
              
              
              
              
              
              
              
              
              contract UniswapV2Pair is IUniswapV2Pair, UniswapV2ERC20 {
                  using SafeMath  for uint;
                  using UQ112x112 for uint224;
              
                  uint public constant MINIMUM_LIQUIDITY = 10**3;
                  bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
              
                  address public factory;
                  address public token0;
                  address public token1;
              
                  uint112 private reserve0;           // uses single storage slot, accessible via getReserves
                  uint112 private reserve1;           // uses single storage slot, accessible via getReserves
                  uint32  private blockTimestampLast; // uses single storage slot, accessible via getReserves
              
                  uint public price0CumulativeLast;
                  uint public price1CumulativeLast;
                  uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event
              
                  uint private unlocked = 1;
                  modifier lock() {
                      require(unlocked == 1, 'UniswapV2: LOCKED');
                      unlocked = 0;
                      _;
                      unlocked = 1;
                  }
              
                  function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
                      _reserve0 = reserve0;
                      _reserve1 = reserve1;
                      _blockTimestampLast = blockTimestampLast;
                  }
              
                  function _safeTransfer(address token, address to, uint value) private {
                      (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
                      require(success && (data.length == 0 || abi.decode(data, (bool))), 'UniswapV2: TRANSFER_FAILED');
                  }
              
                  event Mint(address indexed sender, uint amount0, uint amount1);
                  event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
                  event Swap(
                      address indexed sender,
                      uint amount0In,
                      uint amount1In,
                      uint amount0Out,
                      uint amount1Out,
                      address indexed to
                  );
                  event Sync(uint112 reserve0, uint112 reserve1);
              
                  constructor() public {
                      factory = msg.sender;
                  }
              
                  // called once by the factory at time of deployment
                  function initialize(address _token0, address _token1) external {
                      require(msg.sender == factory, 'UniswapV2: FORBIDDEN'); // sufficient check
                      token0 = _token0;
                      token1 = _token1;
                  }
              
                  // update reserves and, on the first call per block, price accumulators
                  function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
                      require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'UniswapV2: OVERFLOW');
                      uint32 blockTimestamp = uint32(block.timestamp % 2**32);
                      uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
                      if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
                          // * never overflows, and + overflow is desired
                          price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
                          price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
                      }
                      reserve0 = uint112(balance0);
                      reserve1 = uint112(balance1);
                      blockTimestampLast = blockTimestamp;
                      emit Sync(reserve0, reserve1);
                  }
              
                  // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
                  function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
                      address feeTo = IUniswapV2Factory(factory).feeTo();
                      feeOn = feeTo != address(0);
                      uint _kLast = kLast; // gas savings
                      if (feeOn) {
                          if (_kLast != 0) {
                              uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
                              uint rootKLast = Math.sqrt(_kLast);
                              if (rootK > rootKLast) {
                                  uint numerator = totalSupply.mul(rootK.sub(rootKLast));
                                  uint denominator = rootK.mul(5).add(rootKLast);
                                  uint liquidity = numerator / denominator;
                                  if (liquidity > 0) _mint(feeTo, liquidity);
                              }
                          }
                      } else if (_kLast != 0) {
                          kLast = 0;
                      }
                  }
              
                  // this low-level function should be called from a contract which performs important safety checks
                  function mint(address to) external lock returns (uint liquidity) {
                      (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
                      uint balance0 = IERC20(token0).balanceOf(address(this));
                      uint balance1 = IERC20(token1).balanceOf(address(this));
                      uint amount0 = balance0.sub(_reserve0);
                      uint amount1 = balance1.sub(_reserve1);
              
                      bool feeOn = _mintFee(_reserve0, _reserve1);
                      uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
                      if (_totalSupply == 0) {
                          liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
                         _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
                      } else {
                          liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
                      }
                      require(liquidity > 0, 'UniswapV2: INSUFFICIENT_LIQUIDITY_MINTED');
                      _mint(to, liquidity);
              
                      _update(balance0, balance1, _reserve0, _reserve1);
                      if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
                      emit Mint(msg.sender, amount0, amount1);
                  }
              
                  // this low-level function should be called from a contract which performs important safety checks
                  function burn(address to) external lock returns (uint amount0, uint amount1) {
                      (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
                      address _token0 = token0;                                // gas savings
                      address _token1 = token1;                                // gas savings
                      uint balance0 = IERC20(_token0).balanceOf(address(this));
                      uint balance1 = IERC20(_token1).balanceOf(address(this));
                      uint liquidity = balanceOf[address(this)];
              
                      bool feeOn = _mintFee(_reserve0, _reserve1);
                      uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
                      amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
                      amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
                      require(amount0 > 0 && amount1 > 0, 'UniswapV2: INSUFFICIENT_LIQUIDITY_BURNED');
                      _burn(address(this), liquidity);
                      _safeTransfer(_token0, to, amount0);
                      _safeTransfer(_token1, to, amount1);
                      balance0 = IERC20(_token0).balanceOf(address(this));
                      balance1 = IERC20(_token1).balanceOf(address(this));
              
                      _update(balance0, balance1, _reserve0, _reserve1);
                      if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
                      emit Burn(msg.sender, amount0, amount1, to);
                  }
              
                  // this low-level function should be called from a contract which performs important safety checks
                  function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
                      require(amount0Out > 0 || amount1Out > 0, 'UniswapV2: INSUFFICIENT_OUTPUT_AMOUNT');
                      (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
                      require(amount0Out < _reserve0 && amount1Out < _reserve1, 'UniswapV2: INSUFFICIENT_LIQUIDITY');
              
                      uint balance0;
                      uint balance1;
                      { // scope for _token{0,1}, avoids stack too deep errors
                      address _token0 = token0;
                      address _token1 = token1;
                      require(to != _token0 && to != _token1, 'UniswapV2: INVALID_TO');
                      if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
                      if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
                      if (data.length > 0) IUniswapV2Callee(to).uniswapV2Call(msg.sender, amount0Out, amount1Out, data);
                      balance0 = IERC20(_token0).balanceOf(address(this));
                      balance1 = IERC20(_token1).balanceOf(address(this));
                      }
                      uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
                      uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
                      require(amount0In > 0 || amount1In > 0, 'UniswapV2: INSUFFICIENT_INPUT_AMOUNT');
                      { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
                      uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
                      uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
                      require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'UniswapV2: K');
                      }
              
                      _update(balance0, balance1, _reserve0, _reserve1);
                      emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
                  }
              
                  // force balances to match reserves
                  function skim(address to) external lock {
                      address _token0 = token0; // gas savings
                      address _token1 = token1; // gas savings
                      _safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
                      _safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
                  }
              
                  // force reserves to match balances
                  function sync() external lock {
                      _update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
                  }
              }

              File 7 of 7: DigitalaxAccessControls
              // File @openzeppelin/contracts/utils/EnumerableSet.sol@v3.2.0
              
              // SPDX-License-Identifier: MIT
              
              pragma solidity ^0.6.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.0.0, only sets of type `address` (`AddressSet`) and `uint256`
               * (`UintSet`) are supported.
               */
              library EnumerableSet {
                  // To implement this library for multiple types with as little code
                  // repetition as possible, we write it in terms of a generic Set type with
                  // bytes32 values.
                  // The Set implementation uses private functions, and user-facing
                  // implementations (such as AddressSet) are just wrappers around the
                  // underlying Set.
                  // This means that we can only create new EnumerableSets for types that fit
                  // in bytes32.
              
                  struct Set {
                      // Storage of set values
                      bytes32[] _values;
              
                      // Position of the value in the `values` array, plus 1 because index 0
                      // means a value is not in the set.
                      mapping (bytes32 => uint256) _indexes;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function _add(Set storage set, bytes32 value) private returns (bool) {
                      if (!_contains(set, value)) {
                          set._values.push(value);
                          // The value is stored at length-1, but we add 1 to all indexes
                          // and use 0 as a sentinel value
                          set._indexes[value] = set._values.length;
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function _remove(Set storage set, bytes32 value) private returns (bool) {
                      // We read and store the value's index to prevent multiple reads from the same storage slot
                      uint256 valueIndex = set._indexes[value];
              
                      if (valueIndex != 0) { // Equivalent to contains(set, value)
                          // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
                          // the array, and then remove the last element (sometimes called as 'swap and pop').
                          // This modifies the order of the array, as noted in {at}.
              
                          uint256 toDeleteIndex = valueIndex - 1;
                          uint256 lastIndex = set._values.length - 1;
              
                          // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
                          // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
              
                          bytes32 lastvalue = set._values[lastIndex];
              
                          // Move the last value to the index where the value to delete is
                          set._values[toDeleteIndex] = lastvalue;
                          // Update the index for the moved value
                          set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
              
                          // Delete the slot where the moved value was stored
                          set._values.pop();
              
                          // Delete the index for the deleted slot
                          delete set._indexes[value];
              
                          return true;
                      } else {
                          return false;
                      }
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function _contains(Set storage set, bytes32 value) private view returns (bool) {
                      return set._indexes[value] != 0;
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function _length(Set storage set) private view returns (uint256) {
                      return set._values.length;
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function _at(Set storage set, uint256 index) private view returns (bytes32) {
                      require(set._values.length > index, "EnumerableSet: index out of bounds");
                      return set._values[index];
                  }
              
                  // AddressSet
              
                  struct AddressSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(AddressSet storage set, address value) internal returns (bool) {
                      return _add(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(AddressSet storage set, address value) internal returns (bool) {
                      return _remove(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(AddressSet storage set, address value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(uint256(value)));
                  }
              
                  /**
                   * @dev Returns the number of values in the set. O(1).
                   */
                  function length(AddressSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(AddressSet storage set, uint256 index) internal view returns (address) {
                      return address(uint256(_at(set._inner, index)));
                  }
              
              
                  // UintSet
              
                  struct UintSet {
                      Set _inner;
                  }
              
                  /**
                   * @dev Add a value to a set. O(1).
                   *
                   * Returns true if the value was added to the set, that is if it was not
                   * already present.
                   */
                  function add(UintSet storage set, uint256 value) internal returns (bool) {
                      return _add(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Removes a value from a set. O(1).
                   *
                   * Returns true if the value was removed from the set, that is if it was
                   * present.
                   */
                  function remove(UintSet storage set, uint256 value) internal returns (bool) {
                      return _remove(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns true if the value is in the set. O(1).
                   */
                  function contains(UintSet storage set, uint256 value) internal view returns (bool) {
                      return _contains(set._inner, bytes32(value));
                  }
              
                  /**
                   * @dev Returns the number of values on the set. O(1).
                   */
                  function length(UintSet storage set) internal view returns (uint256) {
                      return _length(set._inner);
                  }
              
                 /**
                  * @dev Returns the value stored at position `index` in the set. O(1).
                  *
                  * Note that there are no guarantees on the ordering of values inside the
                  * array, and it may change when more values are added or removed.
                  *
                  * Requirements:
                  *
                  * - `index` must be strictly less than {length}.
                  */
                  function at(UintSet storage set, uint256 index) internal view returns (uint256) {
                      return uint256(_at(set._inner, index));
                  }
              }
              
              
              // File @openzeppelin/contracts/utils/Address.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.2;
              
              /**
               * @dev Collection of functions related to the address type
               */
              library Address {
                  /**
                   * @dev Returns true if `account` is a contract.
                   *
                   * [IMPORTANT]
                   * ====
                   * It is unsafe to assume that an address for which this function returns
                   * false is an externally-owned account (EOA) and not a contract.
                   *
                   * Among others, `isContract` will return false for the following
                   * types of addresses:
                   *
                   *  - an externally-owned account
                   *  - a contract in construction
                   *  - an address where a contract will be created
                   *  - an address where a contract lived, but was destroyed
                   * ====
                   */
                  function isContract(address account) internal view returns (bool) {
                      // This method relies in extcodesize, which returns 0 for contracts in
                      // construction, since the code is only stored at the end of the
                      // constructor execution.
              
                      uint256 size;
                      // solhint-disable-next-line no-inline-assembly
                      assembly { size := extcodesize(account) }
                      return size > 0;
                  }
              
                  /**
                   * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
                   * `recipient`, forwarding all available gas and reverting on errors.
                   *
                   * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
                   * of certain opcodes, possibly making contracts go over the 2300 gas limit
                   * imposed by `transfer`, making them unable to receive funds via
                   * `transfer`. {sendValue} removes this limitation.
                   *
                   * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
                   *
                   * IMPORTANT: because control is transferred to `recipient`, care must be
                   * taken to not create reentrancy vulnerabilities. Consider using
                   * {ReentrancyGuard} or the
                   * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
                   */
                  function sendValue(address payable recipient, uint256 amount) internal {
                      require(address(this).balance >= amount, "Address: insufficient balance");
              
                      // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
                      (bool success, ) = recipient.call{ value: amount }("");
                      require(success, "Address: unable to send value, recipient may have reverted");
                  }
              
                  /**
                   * @dev Performs a Solidity function call using a low level `call`. A
                   * plain`call` is an unsafe replacement for a function call: use this
                   * function instead.
                   *
                   * If `target` reverts with a revert reason, it is bubbled up by this
                   * function (like regular Solidity function calls).
                   *
                   * Returns the raw returned data. To convert to the expected return value,
                   * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
                   *
                   * Requirements:
                   *
                   * - `target` must be a contract.
                   * - calling `target` with `data` must not revert.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data) internal returns (bytes memory) {
                    return functionCall(target, data, "Address: low-level call failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
                   * `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
                      return _functionCallWithValue(target, data, 0, errorMessage);
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
                   * but also transferring `value` wei to `target`.
                   *
                   * Requirements:
                   *
                   * - the calling contract must have an ETH balance of at least `value`.
                   * - the called Solidity function must be `payable`.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
                      return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
                  }
              
                  /**
                   * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
                   * with `errorMessage` as a fallback revert reason when `target` reverts.
                   *
                   * _Available since v3.1._
                   */
                  function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
                      require(address(this).balance >= value, "Address: insufficient balance for call");
                      return _functionCallWithValue(target, data, value, errorMessage);
                  }
              
                  function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
                      require(isContract(target), "Address: call to non-contract");
              
                      // solhint-disable-next-line avoid-low-level-calls
                      (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
                      if (success) {
                          return returndata;
                      } else {
                          // Look for revert reason and bubble it up if present
                          if (returndata.length > 0) {
                              // The easiest way to bubble the revert reason is using memory via assembly
              
                              // solhint-disable-next-line no-inline-assembly
                              assembly {
                                  let returndata_size := mload(returndata)
                                  revert(add(32, returndata), returndata_size)
                              }
                          } else {
                              revert(errorMessage);
                          }
                      }
                  }
              }
              
              
              // File @openzeppelin/contracts/GSN/Context.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              /*
               * @dev Provides information about the current execution context, including the
               * sender of the transaction and its data. While these are generally available
               * via msg.sender and msg.data, they should not be accessed in such a direct
               * manner, since when dealing with GSN meta-transactions the account sending and
               * paying for execution may not be the actual sender (as far as an application
               * is concerned).
               *
               * This contract is only required for intermediate, library-like contracts.
               */
              abstract contract Context {
                  function _msgSender() internal view virtual returns (address payable) {
                      return msg.sender;
                  }
              
                  function _msgData() internal view virtual returns (bytes memory) {
                      this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                      return msg.data;
                  }
              }
              
              
              // File @openzeppelin/contracts/access/AccessControl.sol@v3.2.0
              
              
              
              pragma solidity ^0.6.0;
              
              
              
              /**
               * @dev Contract module that allows children to implement role-based access
               * control mechanisms.
               *
               * Roles are referred to by their `bytes32` identifier. These should be exposed
               * in the external API and be unique. The best way to achieve this is by
               * using `public constant` hash digests:
               *
               * ```
               * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
               * ```
               *
               * Roles can be used to represent a set of permissions. To restrict access to a
               * function call, use {hasRole}:
               *
               * ```
               * function foo() public {
               *     require(hasRole(MY_ROLE, msg.sender));
               *     ...
               * }
               * ```
               *
               * Roles can be granted and revoked dynamically via the {grantRole} and
               * {revokeRole} functions. Each role has an associated admin role, and only
               * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
               *
               * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
               * that only accounts with this role will be able to grant or revoke other
               * roles. More complex role relationships can be created by using
               * {_setRoleAdmin}.
               *
               * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
               * grant and revoke this role. Extra precautions should be taken to secure
               * accounts that have been granted it.
               */
              abstract contract AccessControl is Context {
                  using EnumerableSet for EnumerableSet.AddressSet;
                  using Address for address;
              
                  struct RoleData {
                      EnumerableSet.AddressSet members;
                      bytes32 adminRole;
                  }
              
                  mapping (bytes32 => RoleData) private _roles;
              
                  bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
              
                  /**
                   * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
                   *
                   * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
                   * {RoleAdminChanged} not being emitted signaling this.
                   *
                   * _Available since v3.1._
                   */
                  event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
              
                  /**
                   * @dev Emitted when `account` is granted `role`.
                   *
                   * `sender` is the account that originated the contract call, an admin role
                   * bearer except when using {_setupRole}.
                   */
                  event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Emitted when `account` is revoked `role`.
                   *
                   * `sender` is the account that originated the contract call:
                   *   - if using `revokeRole`, it is the admin role bearer
                   *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
                   */
                  event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
              
                  /**
                   * @dev Returns `true` if `account` has been granted `role`.
                   */
                  function hasRole(bytes32 role, address account) public view returns (bool) {
                      return _roles[role].members.contains(account);
                  }
              
                  /**
                   * @dev Returns the number of accounts that have `role`. Can be used
                   * together with {getRoleMember} to enumerate all bearers of a role.
                   */
                  function getRoleMemberCount(bytes32 role) public view returns (uint256) {
                      return _roles[role].members.length();
                  }
              
                  /**
                   * @dev Returns one of the accounts that have `role`. `index` must be a
                   * value between 0 and {getRoleMemberCount}, non-inclusive.
                   *
                   * Role bearers are not sorted in any particular way, and their ordering may
                   * change at any point.
                   *
                   * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
                   * you perform all queries on the same block. See the following
                   * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
                   * for more information.
                   */
                  function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
                      return _roles[role].members.at(index);
                  }
              
                  /**
                   * @dev Returns the admin role that controls `role`. See {grantRole} and
                   * {revokeRole}.
                   *
                   * To change a role's admin, use {_setRoleAdmin}.
                   */
                  function getRoleAdmin(bytes32 role) public view returns (bytes32) {
                      return _roles[role].adminRole;
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function grantRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
              
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from `account`.
                   *
                   * If `account` had been granted `role`, emits a {RoleRevoked} event.
                   *
                   * Requirements:
                   *
                   * - the caller must have ``role``'s admin role.
                   */
                  function revokeRole(bytes32 role, address account) public virtual {
                      require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Revokes `role` from the calling account.
                   *
                   * Roles are often managed via {grantRole} and {revokeRole}: this function's
                   * purpose is to provide a mechanism for accounts to lose their privileges
                   * if they are compromised (such as when a trusted device is misplaced).
                   *
                   * If the calling account had been granted `role`, emits a {RoleRevoked}
                   * event.
                   *
                   * Requirements:
                   *
                   * - the caller must be `account`.
                   */
                  function renounceRole(bytes32 role, address account) public virtual {
                      require(account == _msgSender(), "AccessControl: can only renounce roles for self");
              
                      _revokeRole(role, account);
                  }
              
                  /**
                   * @dev Grants `role` to `account`.
                   *
                   * If `account` had not been already granted `role`, emits a {RoleGranted}
                   * event. Note that unlike {grantRole}, this function doesn't perform any
                   * checks on the calling account.
                   *
                   * [WARNING]
                   * ====
                   * This function should only be called from the constructor when setting
                   * up the initial roles for the system.
                   *
                   * Using this function in any other way is effectively circumventing the admin
                   * system imposed by {AccessControl}.
                   * ====
                   */
                  function _setupRole(bytes32 role, address account) internal virtual {
                      _grantRole(role, account);
                  }
              
                  /**
                   * @dev Sets `adminRole` as ``role``'s admin role.
                   *
                   * Emits a {RoleAdminChanged} event.
                   */
                  function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
                      emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
                      _roles[role].adminRole = adminRole;
                  }
              
                  function _grantRole(bytes32 role, address account) private {
                      if (_roles[role].members.add(account)) {
                          emit RoleGranted(role, account, _msgSender());
                      }
                  }
              
                  function _revokeRole(bytes32 role, address account) private {
                      if (_roles[role].members.remove(account)) {
                          emit RoleRevoked(role, account, _msgSender());
                      }
                  }
              }
              
              
              // File contracts/DigitalaxAccessControls.sol
              
              pragma solidity 0.6.12;
              
              /**
               * @notice Access Controls contract for the Digitalax Platform
               * @author BlockRocket.tech
               */
              contract DigitalaxAccessControls is AccessControl {
                  /// @notice Role definitions
                  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
                  bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE");
              
                  /// @notice Events for adding and removing various roles
                  event AdminRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event AdminRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event MinterRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleGranted(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  event SmartContractRoleRemoved(
                      address indexed beneficiary,
                      address indexed caller
                  );
              
                  /**
                   * @notice The deployer is automatically given the admin role which will allow them to then grant roles to other addresses
                   */
                  constructor() public {
                      _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
                  }
              
                  /////////////
                  // Lookups //
                  /////////////
              
                  /**
                   * @notice Used to check whether an address has the admin role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasAdminRole(address _address) external view returns (bool) {
                      return hasRole(DEFAULT_ADMIN_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the minter role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasMinterRole(address _address) external view returns (bool) {
                      return hasRole(MINTER_ROLE, _address);
                  }
              
                  /**
                   * @notice Used to check whether an address has the smart contract role
                   * @param _address EOA or contract being checked
                   * @return bool True if the account has the role or false if it does not
                   */
                  function hasSmartContractRole(address _address) external view returns (bool) {
                      return hasRole(SMART_CONTRACT_ROLE, _address);
                  }
              
                  ///////////////
                  // Modifiers //
                  ///////////////
              
                  /**
                   * @notice Grants the admin role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addAdminRole(address _address) external {
                      grantRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the admin role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeAdminRole(address _address) external {
                      revokeRole(DEFAULT_ADMIN_ROLE, _address);
                      emit AdminRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the minter role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addMinterRole(address _address) external {
                      grantRole(MINTER_ROLE, _address);
                      emit MinterRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the minter role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeMinterRole(address _address) external {
                      revokeRole(MINTER_ROLE, _address);
                      emit MinterRoleRemoved(_address, _msgSender());
                  }
              
                  /**
                   * @notice Grants the smart contract role to an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract receiving the new role
                   */
                  function addSmartContractRole(address _address) external {
                      grantRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleGranted(_address, _msgSender());
                  }
              
                  /**
                   * @notice Removes the smart contract role from an address
                   * @dev The sender must have the admin role
                   * @param _address EOA or contract affected
                   */
                  function removeSmartContractRole(address _address) external {
                      revokeRole(SMART_CONTRACT_ROLE, _address);
                      emit SmartContractRoleRemoved(_address, _msgSender());
                  }
              }