{ "cells": [ { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "## XBRL US API - Python example \n", "This sample Python code completes a full-text search of SEC reports in the XBRL US Public Filings Database and returns results from 2018 to the present. \n", "\n", "**The document endpoint is a benefit of XBRL US Membership - join XBRL US for comprehensive access - https://xbrl.us/join.**\n", "### Authenticate for access token \n", "XBRL US limits records returned for a query to improve efficiency; this script loops to collect all data from the Public Filings Database for a query.\n", "Run the cell below, then type your XBRL US Web account email, account password, Client ID, and secret (get these from https://xbrl.us/access-token), pressing the Enter key on the keyboard after each entry." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print('Enter your XBRL US Web account email: ')\n", "import os, re, sys, json\n", "import requests\n", "import pandas as pd\n", "from IPython.display import display, HTML\n", "import numpy as np\n", "import getpass\n", "from datetime import datetime\n", "import urllib\n", "from urllib.parse import urlencode\n", "email = input()\n", "password = getpass.getpass(prompt='Password: ')\n", "clientid = getpass.getpass(prompt='Client ID: ')\n", "secret = getpass.getpass(prompt='Secret: ')\n", "\n", "body_auth = {'username' : ''.join(email), \n", " 'client_id': ''.join(clientid), \n", " 'client_secret' : ''.join(secret), \n", " 'password' : ''.join(password), \n", " 'grant_type' : 'password', \n", " 'platform' : 'ipynb' }\n", "\n", "payload = urlencode(body_auth)\n", "url = 'https://api.xbrl.us/oauth2/token'\n", "headers = {\"Content-Type\": \"application/x-www-form-urlencoded\"}\n", "\n", "res = requests.request(\"POST\", url, data=payload, headers=headers)\n", "auth_json = res.json()\n", "\n", "if 'error' in auth_json:\n", " print (\"\\n\\nThere was a problem generating an access token with these credentials. Run the first cell again to enter credentials.\")\n", "else:\n", " print (\"\\n\\nYour access token expires in 60 minutes. After it expires, run the cell immediately below this one to generate a new token and continue to use the query cell. \\n\\nFor now, skip ahead to the section 'Make a Query'.\")\n", "access_token = auth_json['access_token']\n", "refresh_token = auth_json['refresh_token']\n", "newaccess = ''\n", "newrefresh = ''\n", "#print('access token: ' + access_token + ' refresh token: ' + refresh_token)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Refresh token \n", "The cell below is only needed to refresh an expired access token after 60 minutes. When the access token no longer returns results, run the cell below to refresh the access token or re-enter credentials by running the cell above. Until the refresh token process is needed, skip ahead to **Make a Query**. \n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "token = token if newrefresh != '' else refresh_token \n", "\n", "refresh_auth = {'client_id': ''.join(clientid), \n", " 'client_secret' : ''.join(secret), \n", " 'grant_type' : 'refresh_token', \n", " 'platform' : 'ipynb', \n", " 'refresh_token' : ''.join(token) }\n", "refreshres = requests.post(url, data=refresh_auth)\n", "refresh_json = refreshres.json()\n", "access_token = refresh_json['access_token']\n", "refresh_token = refresh_json['refresh_token']#print('access token: ' + access_token + 'refresh token: ' + refresh_token)\n", "print('Your access token is refreshed for 60 minutes. If it expires again, run this cell to generate a new token and continue to use the query cells below.')\n", "print(access_token)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Make a query \n", "After the access token confirmation appears above, you can modify the query below, then use the **_Cell >> Run_** menu option from the cell **immediately below this text** to run the entire query for results.\n", "\n", "The sample results are from 10+ years of data for companies in an SIC code, and may take several minutes to recreate. **The document endpoint is a benefit of XBRL US Membership** - see https://xbrl.us/membership to get started.\n", " \n", "Refer to XBRL API documentation at https://xbrlus.github.io/xbrl-api/#/Facts/getFactDetails for other endpoints and parameters to filter and return. " ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "On Wed Mar 1 07:22:43 2023 xxx@xbrl.us (client ID: 69e1257c ...) started the query and ...\n", "\n", "up to 5000 records are found so far ...\n", " - this set contained fewer than the 5000 possible, only 227 records.\n", "\n", "At Wed Mar 1 07:22:49 2023, the query finished with 227 rows returned in 0:00:05.502333 https://api.xbrl.us/api/v1/document/search?document.text-search=Microsoft+NEAR/300+\"internet+of+things\"&report.source-name=SEC&fields=entity.name.sort(ASC),dts.id.sort(DESC),document.type,document.uri,document.example\n" ] }, { "data": { "text/html": [ "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
entity.namedts.iddocument.typedocument.uridocument.example
0ABB LTD183503reporthttp://www.sec.gov/Archives/edgar/data/1091587/000110465917015892/a16-22210_620f.htm... electric motors account for <b>nearly</b> two‑thirds of the ... connects motors with the <b>Internet</b> of <b>Things</b> (IoT). The Drives and ... -reaching strategic partnership with <b>Microsoft</b> to develop next‑generation ... to decrease by approximately $<b>300</b> million due to additional ...
1ACCENTURE HOLDINGS PLC267928reporthttp://www.sec.gov/Archives/edgar/data/1647339/000164733917000019/acnholdings831201710k.htm... Amazon Web Services, Apple, Google, <b>Microsoft,</b> Oracle, Pegasystems, salesforce.com, SAP, ... intelligence, augmented reality, automation, blockchain, <b>Internet</b> of <b>Things,</b> quantum computing and as ... meet our needs in the <b>near</b> future. ITEM 3.    LEGAL ...
2Accenture plc347226inlinehttp://www.sec.gov/Archives/edgar/data/1467373/000146737319000339/acn831201910k.htm... Web Services, Google, <b>Microsoft,</b> Oracle, Pegasystems, Salesforce, ... automation, blockchain, <b>Internet</b> of <b>Things,</b> quantum computing ... needs in the <b>near</b> future. ITEM 3 ... noncontrolling interests ( 159 )   <b>300</b>   ( 2,075 )              Cash flow ...
3Accenture plc304571reporthttp://www.sec.gov/Archives/edgar/data/1467373/000146737318000318/acn831201810k.htm... Services, Apple, Google, <b>Microsoft,</b> Oracle, Pegasystems, Salesforce, ... automation, blockchain, <b>Internet</b> of <b>Things,</b> quantum computing ... needs in the <b>near</b> future. 22 Table ... attributable to noncontrolling interests <b>300</b>   (2,075 )   (4,740 ) ? ...
4Accenture plc267957reporthttp://www.sec.gov/Archives/edgar/data/1467373/000146737317000430/acn831201710k.htm... Amazon Web Services, Apple, Google, <b>Microsoft,</b> Oracle, Pegasystems, salesforce.com, SAP, ... intelligence, augmented reality, automation, blockchain, <b>Internet</b> of <b>Things,</b> quantum computing and as ... meet our needs in the <b>near</b> future. ITEM 3.    LEGAL ...
5ACI WORLDWIDE, INC.651765inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503622000035/aciw-20220930.htm... phones, tablets, corporations, and <b>internet</b> commerce sites. Accordingly, our ... the world, the <b>Internet</b> of <b>Things,</b> rapid growth of ... partnerships with Mastercard and <b>Microsoft</b> continue to position us ... and initial optimization onto <b>Microsoft</b> Azure, enable us to ...
6ACI WORLDWIDE, INC.588780inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503622000018/aciw-20220331.htm... countries throughout the world, the <b>Internet</b> of <b>Things,</b> rapid growth of eCommerce, ... and strategic partnerships with Mastercard, <b>Microsoft,</b> and Mindgate Solutions continue to ... enablement and initial optimization onto <b>Microsoft</b> Azure, enable us to leverage ...
7ACI WORLDWIDE, INC.508917inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503621000068/aciw-20210930.htm... of cash, the <b>Internet</b> of <b>Things,</b> rapid growth of ... strategic partnerships with Mastercard, <b>Microsoft,</b> and Mindgate Solutions continue ... and initial optimization onto <b>Microsoft</b> Azure, enable us to ... of September 30, 2021. <b>Microsoft</b> Azure Agreement During the ...
8ACI WORLDWIDE, INC.483783inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503621000053/aciw-20210630.htm... of cash, the <b>Internet</b> of <b>Things,</b> rapid growth of ... strategic partnerships with Mastercard, <b>Microsoft,</b> and Mindgate Solutions continue ... and initial optimization onto <b>Microsoft</b> Azure, enable us to ... five-year, $45 million <b>Microsoft</b> Azure server and cloud ...
9ACI WORLDWIDE, INC.461450inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503621000032/aciw-20210331.htm... phones, tablets, corporations, and <b>internet</b> commerce sites. Accordingly, ... of cash, the <b>Internet</b> of <b>Things,</b> rapid growth of ... strategic partnerships with Mastercard, <b>Microsoft,</b> and Mindgate Solutions ... and initial optimization onto <b>Microsoft</b> Azure, enable us ...
10ACI WORLDWIDE, INC.442512inlinehttp://www.sec.gov/Archives/edgar/data/935036/000093503621000014/aciw-20201231.htm... 3520 Kraft Rd, Suite <b>300</b> Naples, Florida 34105 (Address ... Limited •Micro Focus, Inc. •<b>Microsoft</b> Corporation •Monex Financial Services ... throughout the world, the <b>Internet</b> of <b>Things,</b> rapid growth of ... trends, and expectations of <b>near</b> term economic trends. The ...
11ACORN ENERGY, INC.657595inlinehttp://www.sec.gov/Archives/edgar/data/880984/000149315222031226/form10-q.htm... as well as <b>Internet</b> of <b>Things</b> applications. The PG ... deployment of a new <b>Microsoft</b> Azure cloud infrastructure to ... 30, 2022. The new <b>Microsoft</b> Azure cloud infrastructure environment ... multiple markets in the <b>Internet</b> of <b>Things</b> (“IoT”) ecosystem: critical ...
12ACORN ENERGY, INC.633692inlinehttp://www.sec.gov/Archives/edgar/data/880984/000149315222022198/form10-q.htm... as well as <b>Internet</b> of <b>Things</b> applications. The PG ... deployment of a new <b>Microsoft</b> Azure cloud infrastructure to ... 30, 2022. The new <b>Microsoft</b> Azure cloud infrastructure environment ... multiple markets in the <b>Internet</b> of <b>Things</b> (“IoT”) ecosystem: critical ...
13ACORN ENERGY, INC.594633inlinehttp://www.sec.gov/Archives/edgar/data/880984/000149315222013178/form10-q.htm... critical assets as well as <b>Internet</b> of <b>Things</b> applications.         ● The Cathodic Protection ... and deployment of a new <b>Microsoft</b> Azure cloud infrastructure to host ... March 31, 2022. The new <b>Microsoft</b> Azure cloud infrastructure environment was ...
14ADVANCED MICRO DEVICES INC314672reporthttp://www.sec.gov/Archives/edgar/data/2488/000000248819000011/amd-12292018x10k.htm... gaming notebooks; AMD Athlon <b>300</b> Series Mobile Processors, ... driver for the “<b>internet</b> of <b>things</b>” and “immersive computing” ... are certified by <b>Microsoft</b>. If <b>Microsoft</b> did not certify ... located in commercial centers <b>near</b> customers, principally in the ...
15ADVANCED MICRO DEVICES INC278799reporthttp://www.sec.gov/Archives/edgar/data/2488/000000248818000042/amd-12302017x10k.htm... driver for the “<b>internet</b> of <b>things</b>” and “immersive 7 ... are certified by <b>Microsoft</b>. If <b>Microsoft</b> did not certify ... located in commercial centers <b>near</b> customers, principally in the ... 4   2   6.9904   — Total $ <b>300</b>       $ 7   $ 138       $ (2 ...
16ADVANCED MICRO DEVICES INC178847reporthttp://www.sec.gov/Archives/edgar/data/2488/000000248817000043/amd-12312016x10k.htm... driver for the “<b>internet</b> of <b>things</b>” and “immersive computing” ... are certified by <b>Microsoft</b>. If <b>Microsoft</b> did not certify ... Sunnyvale operations are located <b>near</b> major earthquake fault ... located in commercial centers <b>near</b> customers, principally in the ...
17ADVANCED MICRO DEVICES, INC.362970reporthttps://www.sec.gov/Archives/edgar/data/2488/000000248820000008/amdform10-kfy2019.htm... gaming notebooks; AMD Athlon™ <b>300</b> Series Mobile Processors, ... driver for the “<b>internet</b> of <b>things</b>” and “immersive computing” ... are certified by <b>Microsoft</b>. If <b>Microsoft</b> did not certify ... located in commercial centers <b>near</b> customers, 27 principally in ...
18ADVANCED MICRO DEVICES, INC.362970inlinehttp://www.sec.gov/Archives/edgar/data/2488/000000248820000008/amdform10-kfy2019.htm... gaming notebooks; AMD Athlon™ <b>300</b> Series Mobile Processors, ... driver for the “<b>internet</b> of <b>things</b>” and “immersive computing” ... are certified by <b>Microsoft</b>. If <b>Microsoft</b> did not certify ... located in commercial centers <b>near</b> customers, 27 principally in ...
19AMERICAN SOFTWARE INC397758reporthttp://www.sec.gov/Archives/edgar/data/713425/000162828020010300/amswa-20200430x10k.htm... syndicated data, to identify <b>near</b>-term demand trends and ... data and other <b>Internet</b> of <b>Things</b> (IoT) sources without ... hosted in a <b>Microsoft</b> Azure environment. <b>Microsoft</b> provides numerous security ... 256   321 State (96 )   64   <b>300</b>   (609 )   320   621   $ ...
20Archimedes Tech SPAC Partners Co568968inlinehttp://www.sec.gov/Archives/edgar/data/1840856/000121390022011342/f10k2021_archimedestech.htm... senior management roles at <b>Microsoft,</b> including as Treasurer, Vice ... public listing in the <b>near</b> future. We believe our ... Big Data, Artificial Intelligence, <b>Internet</b>-of-<b>Things,</b> Cyber Security, 5G and ... smart homes and consumer <b>Internet</b>-of-<b>Things</b>. From 2016 to ...
21Arista Networks, Inc.315471reporthttp://www.sec.gov/Archives/edgar/data/1596532/000159653219000027/anet20181231-10k.htm... the enterprise moves to an <b>Internet</b> of <b>Things</b> (“IoT”)-ready campus. Leveraging ... traditional applications. <b>Internet</b> leaders like Amazon, eBay, Facebook, Google, <b>Microsoft</b> and Yahoo ... in absolute dollars in the <b>near</b> term as we continue to ...
22ARISTA NETWORKS, INC.680828inlinehttp://www.sec.gov/Archives/edgar/data/1596532/000159653223000016/anet-20221231.htm... providers.     Purchases by both <b>Microsoft</b> and Meta Platforms accounted for ... tablets, <b>Internet</b> of <b>Things</b> (IoT) devices, and smartphones. 1 Table of Contents <b>Nearly</b> ... Google, Meta Platforms and <b>Microsoft</b>. These <b>internet</b> leaders pioneered the development ...
23ARISTA NETWORKS, INC.536871inlinehttp://www.sec.gov/Archives/edgar/data/1596532/000159653222000026/anet-20211231.htm... computers, tablets, <b>Internet</b> of <b>Things</b> (IoT) devices, and smartphones. <b>Nearly</b> all consumer ... applications. <b>Internet</b> leaders like Amazon, Meta Platforms, Google, and <b>Microsoft</b> pioneered ... VMware NSX, OpenConfig/YANG and <b>Microsoft</b> System Center for orchestration ...
24ARISTA NETWORKS, INC.440425inlinehttp://www.sec.gov/Archives/edgar/data/1596532/000159653221000049/anet-20201231.htm... computers, tablets, IoT (<b>Internet</b> of <b>Things</b>) devices, and smartphones. <b>Nearly</b> all consumer ... applications. <b>Internet</b> leaders like Amazon, Facebook, Google, and <b>Microsoft</b> pioneered ... VMware NSX, OpenConfig/YANG and <b>Microsoft</b> System Center for orchestration ...
25ASML HOLDING NV314281reporthttp://www.sec.gov/Archives/edgar/data/937966/000093796619000007/a2018integratedreportbased.htm... and costs, we use <b>Microsoft</b> Surface Hubs, which offer ... impacted by approximately EUR <b>300</b> million, which we expect ... all incidents and the <b>near</b>-misses that could potentially ...       Intel Intel Corporation <b>Internet</b> of <b>Things</b> (IoT) The internetworking of ...
26Astea International Inc.183119reporthttp://www.sec.gov/Archives/edgar/data/945989/000095015917000089/astea10k.htm... <b>Microsoft</b>.NET Framework, Visual Studio 2012, Windows Presentation Framework, <b>Internet</b> ... Company from, among other <b>things</b>: (a) conveying, selling, leasing, ... traded or reported exceeds <b>300</b>% of the then current ... per share equal to <b>300</b>% of the purchase price ...
27Atlassian Corporation Plc408587inlinehttp://www.sec.gov/Archives/edgar/data/1650372/000165037220000030/team-20200630.htm... substantially in the <b>near</b> term, particularly as ... category and include <b>Microsoft</b> (including GitHub), IBM, ... Technologies, Inc., an <b>Internet</b> of <b>things</b> (IoT) security ... equity 1,230     889     ( 91 )   <b>300</b>     Deferred foreign taxes —     —     — ...
28Atlassian Corp Plc341108reporthttp://www.sec.gov/Archives/edgar/data/1650372/000165037219000020/a20-f06302019.htm... increase substantially in the <b>near</b> term, particularly as ... product category and include <b>Microsoft,</b> IBM, Google, ServiceNow, ... Technologies, Inc., an <b>Internet</b> of <b>things</b> (IoT) security company, ... plans—equity 889   127   <b>300</b>   (123 ) Deferred foreign taxes ...
29Atlassian Corp Plc302053reporthttp://www.sec.gov/Archives/edgar/data/1650372/000165037218000038/a20-f06302018.htm... increase substantially in the <b>near</b> term, particularly as we ... of users, to over <b>300</b> of the Fortune 500, ... large technology vendors, including <b>Microsoft,</b> IBM and Hewlett Packard ... ForeScout Technologies, Inc., an <b>internet</b> of <b>things</b> (IoT) security company, and ...
30ATTUNITY LTD323129reporthttp://www.sec.gov/Archives/edgar/data/893821/000117891319001113/zk1922842.htm... AWS, <b>Microsoft</b> Azure and Google Cloud Platform.   · The “Industrial <b>Internet</b> of <b>Things</b>” ... the year do not exceed $<b>300,</b> or $600 for joint ... -   Payment of contingent payment right     -       (<b>300</b> )     -   Tax deficiencies related to exercise ...
31ATTUNITY LTD280686reporthttp://www.sec.gov/Archives/edgar/data/893821/000117891318000792/zk1821304.htm... <b>Microsoft</b> Azure.   · The “Industrial <b>Internet</b> of <b>Things</b> ... Payment of contingent payment right     (<b>300</b> )     -       -   Tax benefit ( ...     7.24                   Exercised     (<b>300</b> )     2.94                   Forfeited   ...
32BSQUARE CORP /WA513476inlinehttp://www.sec.gov/Archives/edgar/data/1054721/000143774921026155/bsqr20210930_10q.htm... realize the promise of the <b>Internet</b> of <b>Things</b> (\"IoT\") through the development ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services to ... nine months of 2021 were <b>nearly</b> $740,000 less than similar expenses ...
33BSQUARE CORP /WA488624inlinehttp://www.sec.gov/Archives/edgar/data/1054721/000143774921019722/bsqr20210630_10q.htm...   Deferred revenue, long-term     <b>300</b>       28   Operating lease, long ... promise of the <b>Internet</b> of <b>Things</b> (\"IoT\") through the ... including reselling software from <b>Microsoft</b>) and related engineering services ... half of 2021 were <b>nearly</b> $200,000 less than ...
34BSQUARE CORP /WA465777instancehttp://www.sec.gov/Archives/edgar/data/1054721/000143774921012093/bsqr-20210331.xml... realize the promise of the <b>Internet</b> of <b>Things</b> (\"IoT\") through the development ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services ...
35BSQUARE CORP /WA465777reporthttp://www.sec.gov/Archives/edgar/data/1054721/000143774921012093/bsqr20210331_10q.htm... realize the promise of the <b>Internet</b> of <b>Things</b> (\"IoT\") through the development ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services to ... revenue also decreased because competing <b>Microsoft</b> distributors offered deep discounts ...
36BSQUARE CORP /WA448969reporthttp://www.sec.gov/Archives/edgar/data/1054721/000143774921006492/bsqr20201002_10k.htm... be released in the <b>near</b> future. While <b>Microsoft</b> has not indicated the ... of our distributor relationship with <b>Microsoft</b>. <b>Microsoft</b> conducted previous audits of ... software products and services, the <b>Internet</b> of <b>Things</b> industry, business, finance, administration ...
37BSQUARE CORP /WA448969instancehttp://www.sec.gov/Archives/edgar/data/1054721/000143774921006492/bsqr-20201231.xml... realize the promise of the <b>Internet</b> of <b>Things</b> (\"IoT\") through the development ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services ... solutions (including reselling software from <b>Microsoft</b>) and related engineering services ...
38BSQUARE CORP /WA425570reporthttp://www.sec.gov/Archives/edgar/data/1054721/000143774920023689/bsqr20200930_10q.htm... and furniture (374 ) (<b>300</b> ) Proceeds from maturities ... promise of the <b>Internet</b> of <b>Things</b> (“IoT”) through ... reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering ... potential hardware competitor. <b>Nearly</b> every customer that ...
39BSQUARE CORP /WA425570instancehttp://www.sec.gov/Archives/edgar/data/1054721/000143774920023689/bsqr-20200930.xml... the promise of the <b>Internet</b> of <b>Things</b> (“IoT”) through the ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering ... reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering ...
40BSQUARE CORP /WA407943instancehttp://www.sec.gov/Archives/edgar/data/1054721/000143774920017870/bsqr-20200630.xml... (including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... realize the promise of the <b>Internet</b> of <b>Things</b> (“IoT”) through the development ... 731 303 1,034 922 <b>300</b> 1,222 Asia 2,999 90 ... 731 303 1,034 922 <b>300</b> 1,222 Asia 2,999 90 ...
41BSQUARE CORP /WA407943reporthttp://www.sec.gov/Archives/edgar/data/1054721/000143774920017870/bsqr20200630_10q.htm... reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering ... the promise of the <b>Internet</b> of <b>Things</b> (“IoT”) through the ... 731 303 1,034 922 <b>300</b> 1,222 Asia 2,999 ... a potential hardware competitor. <b>Nearly</b> every customer that ...
42BSQUARE CORP /WA388559reporthttps://www.sec.gov/Archives/edgar/data/1054721/000156459020024441/bsqr-10q_20200331.htm... 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 ( ... reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering ... the promise of the <b>Internet</b> of <b>Things</b> (“IoT”) through ... a potential hardware competitor. <b>Nearly</b> every customer that ...
43BSQUARE CORP /WA367120reporthttps://www.sec.gov/Archives/edgar/data/1054721/000156459020006135/bsqr-10k_20191231.htm... Avenue NE, Suite <b>300,</b> Bellevue, Washington 98004 ... data. • <b>Nearly</b> ubiquitous wireless connectivity, including <b>near</b>-field ... distributor relationship with <b>Microsoft</b>. <b>Microsoft</b> concluded audits of ... DataV, our Industrial <b>Internet</b> of <b>Things</b> (IIoT) software ...
44BSQUARE CORP /WA352331reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459019041949/bsqr-10q_20190930.htm... Purchases of equipment and furniture (<b>300</b> ) (709 ) Proceeds from maturities ... to the operating system, to <b>Internet</b> of <b>Things</b> (“IoT”) software solutions, and ... included reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”) to makers of connected, ...
45BSQUARE CORP /WA338955reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459019031581/bsqr-10q_20190630.htm... 110 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... included reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”). Examples of these smart ... address the then emerging Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market. This business ...
46BSQUARE CORP /WA329388reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459019018948/bsqr-10q_20190331.htm... 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... products addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, extracting ...
47BSQUARE CORP /WA318498reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459019005908/bsqr-10k_20181231.htm... Avenue NE, Suite <b>300,</b> Bellevue, Washington ... addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, ... reasoning; • <b>Nearly</b> ubiquitous wireless connectivity, including <b>near</b>-field ... distributor relationship with <b>Microsoft</b>. <b>Microsoft</b> concluded audits of ...
48BSQUARE CORP /WA309513reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459018029080/bsqr-10q_20180930.htm... 110 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... software products addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, by ...
49BSQUARE CORP /WA300196reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459018021471/bsqr-10q_20180630.htm... 110 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... software products addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, by ...
50BSQUARE CORP /WA292154reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459018013642/bsqr-10q_20180331.htm... 110 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... software products addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, by ...
51BSQUARE CORP /WA278025reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459018002910/bsqr-10k_20171231.htm... Avenue NE, Suite <b>300,</b> Bellevue, Washington ... software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related ... addressing the Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) market, ... reasoning; • <b>Nearly</b> ubiquitous wireless connectivity, including <b>near</b>-field ...
52BSQUARE CORP /WA269121reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459017022241/bsqr-10q_20170930.htm... 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... proprietary software products addressing the <b>Internet</b> of <b>Things</b> (“IoT”) market, which ...
53BSQUARE CORP /WA261606reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459017016511/bsqr-10q_20170630.htm... 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... proprietary software products addressing the <b>Internet</b> of <b>Things</b> (“IoT”) market, which ...
54BSQUARE CORP /WA188848reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459017011031/bsqr-10q_20170331.htm... 110th Avenue NE, Suite <b>300,</b> Bellevue WA 98004 (Address ... including reselling software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related engineering services ... proprietary software products addressing the <b>Internet</b> of <b>Things</b> (“IoT”) market, which ...
55BSQUARE CORP /WA178795reporthttp://www.sec.gov/Archives/edgar/data/1054721/000156459017001887/bsqr-10k_20161231.htm... Avenue NE, Suite <b>300,</b> Bellevue, Washington ... software from <b>Microsoft</b> Corporation (“<b>Microsoft</b>”)) and related ... products addressing the <b>Internet</b> of <b>Things</b> (“IoT”) market, ... reasoning; • <b>Nearly</b> ubiquitous wireless connectivity, including <b>near</b>-field ...
56BTHC X INC189285reporthttp://www.sec.gov/Archives/edgar/data/1375685/000121390017005508/f10k2016_bthcxinc.htm... date information by delivering offline <b>Microsoft</b> SharePoint and other online ... Oracle; ● expand into the “<b>Internet</b> of <b>Things</b>” as the ability to ... and operations in the <b>near</b> future, we can offer ... of incorporation in the <b>near</b> future in order to ...
57C3.ai, Inc.475035inlinehttp://www.sec.gov/Archives/edgar/data/1577526/000162828021012990/ai-20210430.htm... AMI Operations. Integrates and analyzes <b>near</b> real-time advanced metering ... machine learning, cloud computing, <b>internet</b> of <b>things,</b> big data analytics, organizational ... of Koch Industries, Inc., and <b>Microsoft</b> Corporation, respectively (the “Concurrent ...
58CDW Corp317243inlinehttp://www.sec.gov/Archives/edgar/data/1402057/000140205719000046/cdw-20181231x10k.htm... across Cisco, IBM and <b>Microsoft</b> portfolios. This acquisition increased ... represented in the aggregate <b>nearly</b> 60% of our 2018 ... a Service (\"DaaS\"); the <b>Internet</b> of <b>Things</b> (\"IoT\"); and Artificial ... assets, net —   252.5   <b>300</b>.0   159.7   —   —   ...
59CDW Corp280032reporthttp://www.sec.gov/Archives/edgar/data/1402057/000140205718000038/cdw-20171231x10k.htm... across Cisco, IBM and <b>Microsoft</b> portfolios. This acquisition increased ... represented in the aggregate <b>nearly</b> 60% of our ... (“DaaS”) and the <b>Internet</b> of <b>Things</b> (“IoT”). We have ... $ (275.7 )   $ (329.2 )   $ (<b>300</b>.2 )             The accompanying ...
60CDW Corp180099reporthttp://www.sec.gov/Archives/edgar/data/1402057/000140205717000007/cdw-20161231x10k.htm... across Cisco, IBM and <b>Microsoft</b> portfolios. This acquisition increased ... represented in the aggregate <b>nearly</b> 60% of our 2016 ... (“PaaS”), and the <b>Internet</b> of <b>Things</b> (“IoT”). We have ... Taxes paid, net $ (329.2 )   $ (<b>300</b>.2 )   $ (241.2 )           ...
61CDW CORP443493inlinehttp://www.sec.gov/Archives/edgar/data/1402057/000140205721000022/cdw-20201231.htm... Hewlett Packard Enterprise, LG, <b>Microsoft,</b> Palo Alto Networks, Samsung, ... a Service (\"DaaS\"); the <b>Internet</b> of <b>Things</b> (\"IoT\"); and artificial intelligence ... cash and are so <b>near</b> maturity that there is ...   Total current 234.0   <b>300</b>.8   253.6   Deferred: ...
62CDW CORP369331reporthttps://www.sec.gov/Archives/edgar/data/1402057/000140205720000042/cdw-20191231x10k.htm... across Cisco, IBM and <b>Microsoft</b> portfolios. This acquisition increased ... a Service (\"DaaS\"); the <b>Internet</b> of <b>Things</b> (\"IoT\"); and artificial ... cash and are so <b>near</b> maturity that there is ... intangible assets, net —   252.5   <b>300</b>.0   159.7   —   —   ...
63CDW CORP369331inlinehttp://www.sec.gov/Archives/edgar/data/1402057/000140205720000042/cdw-20191231x10k.htm... across Cisco, IBM and <b>Microsoft</b> portfolios. This acquisition increased ... a Service (\"DaaS\"); the <b>Internet</b> of <b>Things</b> (\"IoT\"); and artificial ... cash and are so <b>near</b> maturity that there is ... intangible assets, net —   252.5   <b>300</b>.0   159.7   —   —   ...
64CHECK POINT SOFTWARE TECHNOLOGIES LTD323853reporthttp://www.sec.gov/Archives/edgar/data/1015922/000119312519114952/d693071d20f.htm... Google and <b>Microsoft</b>; • government regulation of the <b>Internet</b> and governmental ... critical infrastructures and the ’<b>Internet</b> of <b>Things</b>’ (IoT). Today, Check ... expected cash flow and <b>near</b>-term prospects of the ... 959 Skyway Road, Suite <b>300,</b> San Carlos, California ...
65CITRIX SYSTEMS INC315376reporthttp://www.sec.gov/Archives/edgar/data/877890/000087789019000035/ctxs12-31x201810xk.htm... traditional desktops, laptops and <b>Internet</b> of <b>Things,</b> or IoT, through a ... mobility management platform and <b>Microsoft</b> Intune. With Citrix Endpoint ... we may experience a <b>near</b>-term reduction in revenue ... our revenue for the <b>near</b> future. Declines and variability ...
66CITRIX SYSTEMS INC277258reporthttp://www.sec.gov/Archives/edgar/data/877890/000087789018000025/ctxs12-31x201710xk.htm... <b>Microsoft</b> Azure, the <b>Microsoft</b> Desktop Optimization Pack, <b>Microsoft</b> App-V, and <b>Microsoft</b> ... desktops, laptops and <b>Internet</b> of <b>Things,</b> or IoT, through ... cash flows in the <b>near</b> term; • we may incur ... our revenue for the <b>near</b> future. Declines and variability ...
67CITRIX SYSTEMS, INC.437526inlinehttp://www.sec.gov/Archives/edgar/data/877890/000087789021000051/ctxs-20201231.htm... <b>Internet</b> of <b>Things,</b> or IoT, through a single platform, directly integrating with <b>Microsoft</b> ... in the possibility of additional <b>near</b>-term expense and accounting charges ... 4.6 Form of 3.<b>300</b>% Senior Note due 2030 (included ... at a rate of 3.<b>300</b> % per annum. Interest on ...
68CITRIX SYSTEMS, INC.365284inlinehttp://www.sec.gov/Archives/edgar/data/877890/000087789020000051/ctxs-20191231.htm... <b>Internet</b> of <b>Things,</b> or IoT, through a single platform, directly integrating with <b>Microsoft</b> ... mobility management platform, <b>Microsoft</b> Intune and <b>Microsoft</b> Office 365. Our ... to experience a <b>near</b>-term reduction in ... our revenue for the <b>near</b> future. Declines and ...
69CITRIX SYSTEMS, INC.365284reporthttps://www.sec.gov/Archives/edgar/data/877890/000087789020000051/ctxs-20191231.htm... <b>Internet</b> of <b>Things,</b> or IoT, through a single platform, directly integrating with <b>Microsoft</b> ... mobility management platform, <b>Microsoft</b> Intune and <b>Microsoft</b> Office 365. Our ... to experience a <b>near</b>-term reduction in ... our revenue for the <b>near</b> future. Declines and ...
70Cloudera, Inc.322256reporthttp://www.sec.gov/Archives/edgar/data/1535379/000162828019003670/fy-19cldr10k.htm... and analytics technologies to support <b>Internet</b> of <b>Things</b> (IoT), data warehousing and ... Services, Google Cloud Platform and <b>Microsoft</b> Azure; • legacy data management product ... 31, 2019. Topic 606 supersedes <b>nearly</b> all existing revenue recognition guidance ...
71Cloudera, Inc.283950reporthttp://www.sec.gov/Archives/edgar/data/1535379/000162828018004005/fy-18cldr10k.htm... variety of sources, including the <b>Internet</b> of <b>Things</b> (IoT), to better serve ... infrastructure providers – Amazon Web Services, <b>Microsoft</b> Azure and Google Cloud Platform ... Contracts with Customers, which supersedes <b>nearly</b> all existing revenue recognition ...
72Code Chain New Continent Ltd576574inlinehttp://www.sec.gov/Archives/edgar/data/1641398/000121390022016836/f10k2021_codechainnew.htm... on the <b>internet</b> and <b>Internet</b> of <b>Things</b> (IoT). ... expert for <b>Microsoft</b> China Co., ... Kong. With <b>nearly</b> 20 years ... for employee compensation     -       -       3,000,000       <b>300</b>       16,923,550       -       -       -       -     ...
73ConvergeOne Holdings, Inc.306320reporthttp://www.sec.gov/Archives/edgar/data/1697152/000119312518317238/d632094d10q.htm... 10,217 5,500 15,717 Trademarks — <b>300 300</b> Property and equipment 337 ... mobility, data analytics, and <b>Internet</b> of <b>Things,</b> or IoT, the ... IBM, Interactive Intelligence, and <b>Microsoft</b>. Our business depends on ... fulfill purchase orders received <b>near</b> the end of the ...
74ConvergeOne Holdings, Inc.299230reporthttp://www.sec.gov/Archives/edgar/data/1697152/000119312518244082/d570312d10q.htm... taxes 7,782 Noncompetition agreements <b>300</b> Total assets acquired 98,691 ... mobility, data analytics, and <b>Internet</b> of <b>Things,</b> or IoT, the ... IBM, Interactive Intelligence, and <b>Microsoft</b>. Our business depends on ... fulfill purchase orders received <b>near</b> the end of the ...
75ConvergeOne Holdings, Inc.290032reporthttp://www.sec.gov/Archives/edgar/data/1697152/000119312518159126/d582573d10q.htm... taxes 5,171 Noncompetition agreements <b>300</b> Total assets acquired 96,080 ... income before taxes is <b>near</b> break-even resulting in ... mobility, data analytics, and <b>Internet</b> of <b>Things,</b> or IoT, the ... IBM, Interactive Intelligence, and <b>Microsoft</b>. Our business depends on ...
76ConvergeOne Holdings, Inc.285038reporthttp://www.sec.gov/Archives/edgar/data/1697152/000119312518128788/d507706ds1a.htm... mobility, data analytics, and <b>Internet</b> of <b>Things,</b> or IoT, the continued ... IBM, Interactive Intelligence, and <b>Microsoft</b>. Our business depends on ... fulfill purchase orders received <b>near</b> the end of the ... relationships with more than <b>300</b> leading and next-generation ...
77DIEBOLD NIXDORF, Inc279050reporthttp://www.sec.gov/Archives/edgar/data/28823/000002882318000066/dbd12312017-10k.htm... using Bluetooth® devices or <b>near</b>-field communication. Essence is ... cloud computing and the <b>Internet</b> of <b>Things</b> to facilitate real-time ... readiness to support the <b>Microsoft</b>® Windows 10 operating system ... taxes - liabilities (287.1 )   (<b>300</b>.6 ) Net deferred tax ...
78DXC TECHNOLOGY CORPORATION292981reporthttp://www.sec.gov/Archives/edgar/data/1688568/000168856818000036/dxcfy1810-k.htm... IT services company, serving <b>nearly</b> 6,000 private and ... an independent integrator of <b>Microsoft</b> Dynamics 365. The ... workplace, mobility and <b>Internet</b> of <b>Things</b> (\"IoT\") services provide ... 170 Cash and cash equivalents   <b>300</b>   5   —   305 Totals   ...
79Elastic N.V.342351reporthttp://www.sec.gov/Archives/edgar/data/1707753/000156459019034461/estc-10q_20190731.htm... operating results in the <b>near</b> term. Expanding within our ... future capital requirements, both <b>near</b>-term and long-term, ... by Oracle), FAST (acquired by <b>Microsoft</b>), and Autonomy (acquired by ... analyze metrics, typically with <b>Internet</b> of <b>Things,</b> or IoT, data, APM ...
80Elastic N.V.334790reporthttp://www.sec.gov/Archives/edgar/data/1707753/000119312519211245/d509645ds4.htm... can be available for search <b>nearly</b> instantly. • High scale and ... analyze metrics, typically with <b>Internet</b> of <b>Things,</b> data, APM data, and ... and restricted cash of $<b>300</b>.3 million as of ... a corporate vice president of <b>Microsoft</b> Corporation after its acquisition ...
81Elastic N.V.332308reporthttp://www.sec.gov/Archives/edgar/data/1707753/000156459019024066/estc-10k_20190430.htm... can be available for search <b>nearly</b> instantly. • High scale and ... by Oracle), FAST (acquired by <b>Microsoft</b>), and Autonomy (acquired by ... analyze metrics, typically with <b>Internet</b> of <b>Things,</b> or IoT, data, APM ... and restricted cash of $<b>300</b>.3 million as of ...
82Elastic N.V.318424reporthttp://www.sec.gov/Archives/edgar/data/1707753/000156459019005803/estc-10q_20190131.htm... operating results in the <b>near</b> term. Expanding within our ... future capital requirements, both <b>near</b>-term and long-term, ... by Oracle), FAST (acquired by <b>Microsoft</b>), and Autonomy (acquired by ... analyze metrics, typically with <b>Internet</b> of <b>Things,</b> or IoT, data, APM ...
83Elastic N.V.312935reporthttp://www.sec.gov/Archives/edgar/data/1707753/000156459018030849/estc-10q_20181031.htm... operating results in the <b>near</b> term. Expanding within our ... future capital requirements, both <b>near</b>-term and long-term, ... by Oracle), FAST (acquired by <b>Microsoft</b>), and Autonomy (acquired by ... analyze metrics, typically with <b>Internet</b> of <b>Things,</b> or IoT, data, APM ...
84Epiphany Technology Acquisition Corp.575223inlinehttp://www.sec.gov/Archives/edgar/data/1827248/000119312522089767/d318175d10k.htm... potential;     •   Growth over <b>near</b>-term  profitability : We intend ... in 1996 to over $<b>300</b> million by 2000. ... /Augmented Reality, Cybersecurity, <b>Internet</b> of <b>Things,</b> Autonomous Logistics, Data ... management solutions provider of <b>Microsoft</b> cloud services to ...
85Epiphany Technology Acquisition Corp.450552reporthttp://www.sec.gov/Archives/edgar/data/1827248/000121390021018029/f10k2020_epiphanytech.htm... and potential; ● Growth over <b>near</b>-term profitability: We intend ... in 1996 to over $<b>300</b> million by 2000. From ... /Augmented Reality, Cybersecurity, <b>Internet</b> of <b>Things,</b> Autonomous Logistics, Data ... management solutions provider of <b>Microsoft</b> cloud services to large ...
86EXTREME NETWORKS, INC.675963inlinehttp://www.sec.gov/Archives/edgar/data/1078271/000156459023000867/extr-10q_20221231.htm... that spans from the <b>Internet</b> of <b>Things</b> (“IoT”) edge to ... Cloud Platform (“GCP”) and <b>Microsoft</b> Azure).   o Enhanced Network Data ...   Amortization of intangibles     504       804       (<b>300</b> )     (37.3 )%%     1,027       1,958   ...
87FORTINET INC326882inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203919000014/ftnt-0331201910xq.htm... stock, $0.001 par value—<b>300</b> shares authorized; 170.7 and ... Services, <b>Microsoft</b> Azure, Google Cloud, Oracle Cloud and IBM Cloud. • <b>Internet</b> of <b>Things</b> ... to fulfill purchase orders received <b>near</b> the end of the quarter, ...
88FORTINET INC316906reporthttp://www.sec.gov/Archives/edgar/data/1262039/000126203919000006/ftnt-201810xk.htm... Services, <b>Microsoft</b> Azure, Google Cloud, Oracle Cloud and IBM Cloud. • <b>Internet</b> of <b>Things</b> ... to fulfill purchase orders received <b>near</b> the end of the ... stock, $0.001 par value—<b>300</b> shares authorized; 169.8 ... Sales of investments 42.8   <b>300</b>.3   28.3 Maturities ...
89FORTINET INC307856reporthttp://www.sec.gov/Archives/edgar/data/1262039/000126203918000040/ftnt-0930201810xq.htm... 0.001 par value—<b>300</b> shares authorized; 170.3 ... major cloud providers, including <b>Microsoft</b> Azure, Amazon Web Services, ... provides opportunity for growth. • <b>Internet</b> of <b>Things</b> and Operational Technology (“ ... fulfill purchase orders received <b>near</b> the end of the ...
90FORTINET INC297442reporthttp://www.sec.gov/Archives/edgar/data/1262039/000126203918000029/ftnt-0630201810xq.htm... 0.001 par value—<b>300</b> shares authorized; 169.0 ... major cloud providers, including <b>Microsoft</b> Azure, Amazon Web Services, ... provides opportunity for growth. • <b>Internet</b> of <b>Things</b> and Operational Technology (“ ... fulfill purchase orders received <b>near</b> the end of the ...
91FORTINET INC288204reporthttp://www.sec.gov/Archives/edgar/data/1262039/000126203918000019/ftnt-0331201810xq.htm...       Accounts receivable $ 313.1   $ <b>300</b>.2   $ 12.9 Inventory $ 80 ... major cloud providers, including <b>Microsoft</b> Azure, Amazon Web Services, ... the emergence of the <b>internet</b> of <b>things</b> (“IoT”) is a ... fulfill purchase orders received <b>near</b> the end of the ...
92FORTINET INC278480reporthttp://www.sec.gov/Archives/edgar/data/1262039/000126203918000009/ftnt-201710xk.htm... Cloud. 1 Table of Contents • <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... in nature over the <b>near</b> term. Accordingly, in the ... fulfill purchase orders received <b>near</b> the end of the ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, IBM ...
93FORTINET, INC.685098inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203923000010/ftnt-20221231.htm... Services, Google Cloud, IBM Cloud, <b>Microsoft</b> Azure, Oracle Cloud and ... to fulfill purchase orders received <b>near</b> the end of the ... the proliferation of OT and <b>internet</b> of <b>things</b> (“IoT”) devices has ...   $ 16.10   2.7 $ <b>300</b>.0   The aggregate intrinsic value ...
94FORTINET, INC.655159inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203922000038/ftnt-20220930.htm... of common stock from <b>300</b>  million to 1.5   ... operational technology (“OT”) and <b>internet</b> of <b>things</b> (“IoT”) devices has generated ... Google Cloud, IBM Cloud, <b>Microsoft</b> Azure, Oracle Cloud and ... operating results in the <b>near</b> term and longer term. ...
95FORTINET, INC.629093inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203922000029/ftnt-20220630.htm... ) Deferred revenue 480.6   <b>300</b>.1   Net cash provided ... operational technology (“OT”) and <b>internet</b> of <b>things</b> (“IoT”) devices has generated ... Google Cloud, IBM Cloud, <b>Microsoft</b> Azure, Oracle Cloud and ... operating results in the <b>near</b> term and longer term ...
96FORTINET, INC.560671inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203922000008/ftnt-20211231.htm... Google Cloud, IBM Cloud, <b>Microsoft</b> Azure, Oracle Cloud and ... operating results in the <b>near</b> term and longer term ... . Additionally, the proliferation of <b>internet</b> of <b>things</b> (“IoT”) and operational ... between $270 million and $<b>300</b> million. Our principal commitments ...
97FORTINET, INC.511532inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203921000030/ftnt-20210930.htm... $ 0.001 par value— <b>300</b>.0 shares authorized; 163 ... . Additionally, the proliferation of <b>internet</b> of <b>things</b> (“IoT”) and operational ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... operating results in the <b>near</b> term and longer term ...
98FORTINET, INC.481423inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203921000022/ftnt-20210630.htm... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... Web Services. •Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... deferred revenue balance grew $<b>300</b>.1 million, or 12 ... fulfill purchase orders received <b>near</b> the end of the ...
99FORTINET, INC.459155inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203921000014/ftnt-20210331.htm... 0.001 par value— <b>300</b>.0 shares authorized; 163 ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... Web Services. •Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... fulfill purchase orders received <b>near</b> the end of the ...
100FORTINET, INC.440643inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203921000008/ftnt-20201231.htm... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... Web Services. •Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... fulfill purchase orders received <b>near</b> the end of the ... 0.001 par value— <b>300</b> shares authorized; 162.5 ...
101FORTINET, INC.423210inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203920000067/ftnt-20200930.htm... $ 0.001 par value— <b>300</b> shares authorized; 162.3 ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... and web. •Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... operating results in the <b>near</b> term and longer term. ...
102FORTINET, INC.404668inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203920000053/ftnt-20200630.htm... $ 0.001 par value— <b>300</b> shares authorized; 161.8 ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... and web. •Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... operating results in the <b>near</b> term and longer term. ...
103FORTINET, INC.385258inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203920000032/ftnt-0331202010xq.htm... $0.001 par value—<b>300</b> shares authorized; 162.6 ... Contents Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... and web. • Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... operating results in the <b>near</b> term and longer term ...
104FORTINET, INC.385258reporthttps://www.sec.gov/Archives/edgar/data/1262039/000126203920000032/ftnt-0331202010xq.htm... $0.001 par value—<b>300</b> shares authorized; 162.6 ... Contents Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... and web. • Endpoint Protection, <b>Internet</b> of <b>Things</b> (“IoT”) and Operational ... operating results in the <b>near</b> term and longer term ...
105FORTINET, INC.367614inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203920000011/ftnt-201910xk.htm... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... fulfill purchase orders received <b>near</b> the end of the ... of Contents • Endpoint Protection, <b>Internet</b> of <b>Things</b> and Operational Technology ... 31.3   42.8   <b>300</b>.3 Maturities of investments ...
106FORTINET, INC.367614reporthttps://www.sec.gov/Archives/edgar/data/1262039/000126203920000011/ftnt-201910xk.htm... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... fulfill purchase orders received <b>near</b> the end of the ... of Contents • Endpoint Protection, <b>Internet</b> of <b>Things</b> and Operational Technology ... 31.3   42.8   <b>300</b>.3 Maturities of investments ...
107FORTINET, INC.348823inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203919000033/ftnt-0930201910xq.htm... 0.001 par value—<b>300</b> shares authorized; 171.3 ... . • <b>Internet</b> of <b>Things</b> and Operational Technology—The proliferation of <b>Internet</b> of <b>Things</b> (? ... from Amazon Web Services, <b>Microsoft</b> Azure, IBM Cloud, Google ... fulfill purchase orders received <b>near</b> the end of the ...
108FORTINET, INC.334751inlinehttp://www.sec.gov/Archives/edgar/data/1262039/000126203919000023/ftnt-0630201910xq.htm... 0.001 par value—<b>300</b> shares authorized; 171. ... including Amazon Web Services, <b>Microsoft</b> Azure, Google Cloud, Oracle ... <b>Internet</b> of <b>Things</b> and Operational Technology—The proliferation of <b>Internet</b> of <b>Things</b> (? ... fulfill purchase orders received <b>near</b> the end of the ...
109GEOPARK LIMITED576326inlinehttp://www.sec.gov/Archives/edgar/data/1464591/000155837022004908/gprk-20211231x20f.htm... or existing discoveries with <b>near</b>-term possibility of ... intelligence, machine learning, <b>internet</b> of <b>things,</b> big data, automation ... with top partners like <b>Microsoft,</b> Google, Halliburton, Cisco, SAP, ... approximately 74,128 gross acres (<b>300</b> sq. km.). Sierracol ...
110Gotham Capital Holdings, Inc.183387reporthttp://www.sec.gov/Archives/edgar/data/1290658/000101489717000060/gotham10k16am1v1.htm... the Edge of the Industrial <b>Internet</b> of <b>Things</b> (IIOT). The software services ... mined by companies like Google, <b>Microsoft,</b> and Amazon etc. to surreptitiously ... physical devices known as the <b>Internet</b> of <b>Things</b>. Also at closing of ...
111Gotham Capital Holdings, Inc.182986reporthttp://www.sec.gov/Archives/edgar/data/1290658/000101489717000049/gotham10k16v5.htm... the Edge of the Industrial <b>Internet</b> of <b>Things</b> (IIOT). The software services ... mined by companies like Google, <b>Microsoft,</b> and Amazon etc. to surreptitiously ... physical devices known as the <b>Internet</b> of <b>Things</b>. Also at closing of ...
112Hughes Satellite Systems Corporation461198inlinehttp://www.sec.gov/Archives/edgar/data/1533758/000153375821000010/hssc-20210331.htm... and financial condition both the <b>near</b>- and long-term. Accordingly, actual ... and services for information, the <b>internet</b>-of-<b>things,</b> entertainment, education, remote-connectivity ... many reports of intrusions into <b>Microsoft</b> Exchange on-premise systems possibly ...
113IIOT-OXYS, Inc.275704reporthttp://www.sec.gov/Archives/edgar/data/1290658/000168316818000255/iiot_s1a1.htm... additional financing in the <b>near</b> term, we may be ... MindSphere IoT product; · <b>Microsoft</b> with its <b>Microsoft</b> Azure IoT Suite; · ... technology in the Industrial <b>Internet</b> of <b>Things</b> (“IIOT”); and · Providing ... in the <b>near</b> term or the <b>near</b>-term functioning ...
114IIOT-OXYS, Inc.274980reporthttp://www.sec.gov/Archives/edgar/data/1290658/000168316817003401/iiot_s1.htm... additional financing in the <b>near</b> term, we may be ... MindSphere IoT product; · <b>Microsoft</b> with its <b>Microsoft</b> Azure IoT Suite; · ... to pay in the <b>near</b> future, dividends on our ... new technology in the Industrial <b>Internet</b> of <b>Things</b> (“IIOT”); and · Providing ...
115INFINITE GROUP, INC.587834inlinehttp://www.sec.gov/Archives/edgar/data/884650/000165495422005991/imci_s1a.htm... their securities at or <b>near</b> their original offering ... network devices, services, <b>internet</b> of <b>things,</b> and e-mail.   ... staff of approximately <b>300</b> professionals with responsibilities ... largest physical and virtual <b>Microsoft</b> Windows environments.   • We ...
116Information Services Group Inc.569738inlinehttp://www.sec.gov/Archives/edgar/data/1371489/000155837022003397/iii-20211231x10k.htm... Amazon Web Services (AWS), <b>Microsoft</b> Azure and Google Cloud ... growth rate (CAGR) of <b>nearly</b> 16 percent. Enterprises have ... focus on Operational Technology, <b>Internet</b> of <b>Things</b> (IoT) and Critical Infrastructure ... when safe in the <b>near</b> future, virtual learning is ...
117INFOSYS LIMITED608064inlinehttp://www.sec.gov/Archives/edgar/data/1067491/000156459022023521/infy-20f_20220331.htm... engineering, <b>internet</b> of <b>things</b> and ... innovation hubs, <b>near</b>-shore centers ... <b>Microsoft</b> Dynamics™ AX, <b>Microsoft</b> Dynamics™ NAV and <b>Microsoft</b> ... ?   ( 141 )     ( 45 )     ( 1 )     ( <b>300</b> ) Accumulated depreciation on deletions*     —       —   ...
118Infosys Ltd472852reporthttp://www.sec.gov/Archives/edgar/data/1067491/000156459021032573/infy-20f_20210331.htm... Australia. We established innovation hubs, <b>near</b>-shore centers and digital ... end services on <b>Microsoft</b> Dynamics™ AX, <b>Microsoft</b> Dynamics™ NAV and <b>Microsoft</b> Dynamics™ CRM ... App Cloud, Community Cloud, Heroku, <b>Internet</b> of <b>Things</b> (IoT), Wave Analytics, and ...
119Infosys Ltd392798reporthttp://www.sec.gov/Archives/edgar/data/1067491/000156459020027585/infy-20f_20200331.htm... their business transformation, resulting in <b>nearly</b> 40% of our revenue ... services on <b>Microsoft</b> Dynamics™ AX, <b>Microsoft</b> Dynamics™ NAV and <b>Microsoft</b> Dynamics™ CRM ... special focus on autonomous technologies, <b>Internet</b> of <b>Things</b> (IOT), full-stack engineering, ...
120Infosys Ltd332031reporthttp://www.sec.gov/Archives/edgar/data/1067491/000156459019022837/infy-20f_20190331.htm... such as the <b>Internet</b> of <b>Things</b> and advanced industry ... on <b>Microsoft</b> Dynamics™ AX, <b>Microsoft</b> Dynamics™ NAV and <b>Microsoft</b> Dynamics™ ... data volumes and enable <b>near</b> real-time insights through ... Communication and Services 72 <b>300</b> Operating segments without ...
121Infosys Ltd294586reporthttp://www.sec.gov/Archives/edgar/data/1067491/000156459018016985/infy-20f_20180331.htm... concepts such as the <b>Internet</b> of <b>Things</b> and advanced industry ... on <b>Microsoft</b> Dynamics™ AX, <b>Microsoft</b> Dynamics™ NAV and <b>Microsoft</b> Dynamics™ ... execution. Mr. Parekh has <b>nearly</b> three decades of global ... and Services 72 118 <b>300</b> 492 Operating segments without ...
122INSIGHT ENTERPRISES INC316316reporthttp://www.sec.gov/Archives/edgar/data/932696/000156459019003901/nsit-10k_20181231.htm... and <b>Internet</b>-of-<b>Things</b> (“IoT”) expertise – we were recognized as <b>Microsoft</b>’s ... European region in the <b>near</b> future. The change in ... the effect of reasonably possible <b>near</b>-term changes in interest ... European region in the <b>near</b> future. The total fair ...
123INSIGHT ENTERPRISES INC278300reporthttp://www.sec.gov/Archives/edgar/data/932696/000119312518056412/d508368d10k.htm... wider European region in the <b>near</b> future. 2 Table of ... and <b>Internet</b>-of-<b>Things</b> (“IoT”) expertise – we were recognized as <b>Microsoft</b>’s ... the effect of reasonably possible <b>near</b>-term changes in interest ... wider European region in the <b>near</b> future. The total fair ...
124INSIGHT ENTERPRISES, INC.366765reporthttps://www.sec.gov/Archives/edgar/data/932696/000156459020005741/nsit-10k_20191231.htm... development and <b>Internet</b>-of-<b>Things</b> (“IoT”) expertise – we were recognized as <b>Microsoft</b>’s ... the effect of reasonably possible <b>near</b>-term changes in interest rates ... expertise in mobile applications development, <b>Internet</b> of <b>Things</b> and cloud enabled business ...
125INSIGHT ENTERPRISES, INC.366765inlinehttp://www.sec.gov/Archives/edgar/data/932696/000156459020005741/nsit-10k_20191231.htm... development and <b>Internet</b>-of-<b>Things</b> (“IoT”) expertise – we were recognized as <b>Microsoft</b>’s ... the effect of reasonably possible <b>near</b>-term changes in interest rates ... expertise in mobile applications development, <b>Internet</b> of <b>Things</b> and cloud enabled business ...
126INTEL CORPORATION675815inlinehttp://www.sec.gov/Archives/edgar/data/50863/000005086323000006/intc-20221231.htm... ever-expanding. AI is <b>nearly</b> pervasive in all applications, ... Lenovo, Amazon, Google, and <b>Microsoft</b> to drive the software ... by Ethernet and Edge (<b>300</b>) Higher operating expenses primarily ... operating segment <b>Internet</b> of <b>Things</b> The <b>Internet</b> of <b>Things</b> market in ...
127INUVO, INC.438729inlinehttp://www.sec.gov/Archives/edgar/data/829323/000082932321000010/inuv-20201231.htm... .) 500 President Clinton Ave. , Suite <b>300</b> , Little Rock , AR   72201 (Address ... artificial intelligence, integration to the <b>internet</b> of <b>things</b> (\"IOT\"), and the relationships ... through third-party cloud providers <b>Microsoft</b> Azure and Amazon Web Services ...
128INUVO, INC.388833reporthttps://www.sec.gov/Archives/edgar/data/829323/000082932320000042/inuv-20191231.htm... President Clinton Ave. , Suite <b>300</b> , Little Rock , AR   72201 ... intelligence, integration to the <b>internet</b> of <b>things</b> (IOT), and the ... to Yahoo!, Google and <b>Microsoft</b> Online and indirectly to ... President Clinton Avenue, Suite <b>300,</b> Little Rock, Arkansas 72201 ...
129INUVO, INC.388833inlinehttp://www.sec.gov/Archives/edgar/data/829323/000082932320000042/inuv-20191231.htm... President Clinton Ave. , Suite <b>300</b> , Little Rock , AR   72201 ... intelligence, integration to the <b>internet</b> of <b>things</b> (IOT), and the ... to Yahoo!, Google and <b>Microsoft</b> Online and indirectly to ... President Clinton Avenue, Suite <b>300,</b> Little Rock, Arkansas 72201 ...
130Life On Earth, Inc.495276instancehttp://www.sec.gov/Archives/edgar/data/1579010/000101738621000392/lfer-20210531.xml... manages and secures the <b>Internet</b>-of-<b>Things</b> (IoT) through patented, lite ... such as IBM Blockchain and <b>Microsoft</b> Azure and is proven ... manages and secures the <b>Internet</b>-of-<b>Things</b> (IoT) through patented, lite ... as IBM Blockchain and <b>Microsoft</b> Azure and is proven ...
131LIFE ON EARTH, INC.581238inlinehttp://www.sec.gov/Archives/edgar/data/1579010/000101738622000166/lfer_2022feb28-10q.htm... that manages and secures the <b>Internet</b>-of-<b>Things</b> (IoT) through patented, lite ... at the edge of the <b>Internet</b> and enabling them to ... manages and secures the <b>Internet</b>-of-<b>Things</b> (IoT) through patented, lite ... such as IBM Blockchain and <b>Microsoft</b> Azure and is proven on ...
132LIFE ON EARTH, INC.528935inlinehttp://www.sec.gov/Archives/edgar/data/1579010/000101738622000026/lfer_2021nov30-10q.htm... as IBM Blockchain and <b>Microsoft</b> Azure and is proven ... as IBM Blockchain and <b>Microsoft</b> Azure and is proven ... properties, Patents and core <b>Internet</b> of <b>Things</b> (IoT) software that enables ... IoT platform partner), Amazon & <b>Microsoft</b> (our Cloud platform partners), ...
133LIFE ON EARTH, INC.502178inlinehttp://www.sec.gov/Archives/edgar/data/1579010/000101738621000454/lfer_2021aug31-10q.htm... as IBM Blockchain and <b>Microsoft</b> Azure and is proven ... as IBM Blockchain and <b>Microsoft</b> Azure and is proven ... properties, Patents and core <b>Internet</b> of <b>Things</b> (IoT) software that enables ... IoT platform partner), Amazon & <b>Microsoft</b> (our Cloud platform partners), ...
134MAGIC SOFTWARE ENTERPRISES LTD324663reporthttp://www.sec.gov/Archives/edgar/data/876779/000121390019007404/f20f2018_magicsoftware.htm... content, Machine to Machine/<b>Internet</b> of <b>Things,</b> or M2M/IoT, ... SAP, IBM Lotus Notes, <b>Microsoft</b> Dynamics, <b>Microsoft</b> SharePoint and Salesforce, ... the financial condition and <b>near</b>-term prospects of the ... the Company recorded $ 159, $ <b>300</b> and $ 1,050 (respectively) of ...
135MAGIC SOFTWARE ENTERPRISES LTD285929reporthttp://www.sec.gov/Archives/edgar/data/876779/000121390018005216/f20f2017_magicsoftware.htm... content, Machine to Machine/<b>Internet</b> of <b>Things,</b> or M2M/IoT, ... which operates more than <b>300</b> dispensing pharmacies across Japan, ... IBM Lotus Notes, <b>Microsoft</b> Dynamics, <b>Microsoft</b> SharePoint and Salesforce, ... the financial condition and <b>near</b>-term prospects of the ...
136MAGIC SOFTWARE ENTERPRISES LTD184576reporthttp://www.sec.gov/Archives/edgar/data/876779/000114420417022734/v464254_20f.htm... telecommunications, content, Machine to Machine/<b>Internet</b> of <b>Things,</b> or M2M/IoT, payment ... World, SAP, IBM Lotus Notes, <b>Microsoft</b> Dynamics, <b>Microsoft</b> SharePoint and Salesforce, along ... impairment, the financial condition and <b>near</b>-term prospects of the issuer, ...
137MICROSOFT CORPORATION674986inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459023000733/msft-10q_20221231.htm... on investments     ( 15 )     <b>300</b>       ( 2 )     671   Net ... licensing; and Windows <b>Internet</b> of <b>Things</b>.   • Devices, including ... we have limited <b>near</b>-term flexibility to ... GitHub, LinkedIn, <b>Microsoft</b> Advertising, <b>Microsoft</b> News, <b>Microsoft</b> Store, Bing, ...
138MICROSOFT CORPORATION648378inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459022035087/msft-10q_20220930.htm... ; patent licensing; and Windows <b>Internet</b> of <b>Things</b>.   • Devices, including Surface, HoloLens, ... components, we have limited <b>near</b>-term flexibility to use ... including GitHub, LinkedIn, <b>Microsoft</b> Advertising, <b>Microsoft</b> News, <b>Microsoft</b> Store, Bing, and ...
139MICROSOFT CORPORATION622349inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459022026876/msft-10k_20220630.htm... on server hardware. <b>Nearly</b> all computer manufacturers ... licensing; and Windows <b>Internet</b> of <b>Things</b>.   • Devices, including Surface ... INFORMATION Our <b>Internet</b> address is www.<b>microsoft</b>.com. At ... <b>300</b>% Notes due 2041, dated as of February 8, 2011, between <b>Microsoft</b> ...
140MICROSOFT CORPORATION583061inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459022015675/msft-10q_20220331.htm... ; patent licensing; and Windows <b>Internet</b> of <b>Things</b>.   • Devices, including Surface and ... these components, we have limited <b>near</b>-term flexibility to use ... parties, including GitHub, LinkedIn, <b>Microsoft</b> Advertising, <b>Microsoft</b> News, <b>Microsoft</b> Store, Bing, and ...
141MICROSOFT CORPORATION480413inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459021039151/msft-10k_20210630.htm... on server hardware. <b>Nearly</b> all computer manufacturers ... INFORMATION Our <b>Internet</b> address is www.<b>microsoft</b>.com. At ... ; patent licensing; Windows <b>Internet</b> of <b>Things</b>; and MSN advertising.   ... <b>300</b>% Notes due 2041, dated as of February 8, 2011, between <b>Microsoft</b> ...
142MICROSOFT CORPORATION456408inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459021020891/msft-10q_20210331.htm... ”).   • Office Consumer, including <b>Microsoft</b> 365 Consumer subscriptions and Office ... offerings; patent licensing; Windows <b>Internet</b> of <b>Things</b>; and MSN advertising.   • ... Bing, Azure, <b>Microsoft</b> Account services, <b>Microsoft</b> 365, <b>Microsoft</b> Teams, Dynamics ...
143MICROSOFT CORPORATION417093inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459020047996/msft-10q_20200930.htm... share     7,560,495,969 shares               <b>MICROSOFT</b> CORPORATION FORM 10-Q For ... offerings; patent licensing; Windows <b>Internet</b> of <b>Things</b>; and MSN advertising.   ... Bing, Azure, <b>Microsoft</b> Account services, <b>Microsoft</b> 365, <b>Microsoft</b> Teams, Dynamics ...
144MICROSOFT CORPORATION400915inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459020034944/msft-10k_20200630.htm... on server hardware. <b>Nearly</b> all computer manufacturers ... INFORMATION Our <b>Internet</b> address is www.<b>microsoft</b>.com. At ... ; patent licensing; Windows <b>Internet</b> of <b>Things</b>; and MSN advertising.   ... <b>300</b>% Notes due 2041, dated as of February 8, 2011, between <b>Microsoft</b> ...
145MICROSOFT CORPORATION382049inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459020019706/msft-10q_20200331.htm... 001-37845   <b>MICROSOFT</b> CORPORATION     ...                                         Total   $ 42,026     $ <b>300</b>     $ ( 262 )   $ 42,064                                       The ... Windows <b>Internet</b> of <b>Things</b> (“IoT ...
146MICROSOFT CORPORATION382049reporthttps://www.sec.gov/Archives/edgar/data/789019/000156459020019706/msft-10q_20200331.htm... 001-37845   <b>MICROSOFT</b> CORPORATION     ...                                         Total   $ 42,026     $ <b>300</b>     $ ( 262 )   $ 42,064                                       The ... Windows <b>Internet</b> of <b>Things</b> (“IoT ...
147MICROSOFT CORPORATION362051inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459020002450/msft-10q_20191231.htm... and cloud services, including <b>Microsoft</b> Azure; <b>Microsoft</b> SQL Server, Windows Server, ... ; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising.   • Devices, including <b>Microsoft</b> Surface ... the growth of the <b>Internet</b> of <b>Things</b> (“IoT”). Our success ...
148MICROSOFT CORPORATION362051reporthttps://www.sec.gov/Archives/edgar/data/789019/000156459020002450/msft-10q_20191231.htm... and cloud services, including <b>Microsoft</b> Azure; <b>Microsoft</b> SQL Server, Windows Server, ... ; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising.   • Devices, including <b>Microsoft</b> Surface ... the growth of the <b>Internet</b> of <b>Things</b> (“IoT”). Our success ...
149MICROSOFT CORPORATION346047inlinehttp://www.sec.gov/Archives/edgar/data/789019/000156459019037549/msft-10q_20190930.htm... and cloud services, including <b>Microsoft</b> Azure; <b>Microsoft</b> SQL Server, Windows Server, ... ; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising.   • Devices, including <b>Microsoft</b> Surface ... the growth of the <b>Internet</b> of <b>Things</b> (“IoT”). Our success ...
150MICROSOFT CORPORATION334516reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459019027952/msft-10k_20190630.htm... system preinstalled on server hardware. <b>Nearly</b> all computer manufacturers offer ... 2041   1,000     1,000     5.<b>300</b>%     5.361% November 15, 2042 ... ; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising. • Devices, including <b>Microsoft</b> Surface, ...
151MICROSOFT CORPORATION323951reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459019012709/msft-10q_20190331.htm... 3, 2018 $ 0 $ 1,750 1.<b>300</b>% 1.396%   December 6, 2018 ... 8, 2041     1,000       1,000       5.<b>300</b>%       5.361%   November 15, 2042 ... licensing; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising. • Devices, including <b>Microsoft</b> Surface, ...
152MICROSOFT CORPORATION313993reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459019001392/msft-10q_20181231.htm... 2018   $ 0     $ 1,750       1.<b>300</b>%       1.396%   December 6, ... 2041     1,000       1,000       5.<b>300</b>%       5.361%   November 15, ... Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising. • Devices, including <b>Microsoft</b> ...
153MICROSOFT CORPORATION304549reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459018024893/msft-10q_20180930.htm... 2018   $ 1,750     $ 1,750       1.<b>300</b>%       1.396%   December 6, ... 2041     1,000       1,000       5.<b>300</b>%       5.361%   November 15, ... Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising. • Devices, including <b>Microsoft</b> ...
154MICROSOFT CORPORATION296763reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459018019062/msft-10k_20180630.htm... system preinstalled on server hardware. <b>Nearly</b> all computer manufacturers offer ... 2041   1,000     1,000     5.<b>300</b>%     5.361% November 15, 2042 ... ; Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN advertising. • Devices, including <b>Microsoft</b> Surface, ...
155MICROSOFT CORPORATION285334reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459018009307/msft-10q_20180331.htm... 2018     1,750       1,750       1.<b>300</b>%       1.396%   December 6, ... 2041     1,000       1,000       5.<b>300</b>%       5.361%   November 15, ... <b>Internet</b> of <b>Things</b> (“IoT”); and MSN display advertising. • Devices, including <b>Microsoft</b> ...
156MICROSOFT CORPORATION275779reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459018001129/msft-10q_20171231.htm... 2018     1,750       1,750       1.<b>300</b>%       1.396%   December 6, ... 2041     1,000       1,000       5.<b>300</b>%       5.361%   November 15, ... <b>Internet</b> of <b>Things</b> (“IoT”); and MSN display advertising. • Devices, including <b>Microsoft</b> ...
157MICROSOFT CORPORATION268000reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459017020171/msft-10q_20170930.htm... )      Balance, end of period   $ <b>300</b>                   Reported as of ... assets     15       Total   $ <b>300</b>           Unearned revenue is ... <b>Internet</b> of <b>Things</b> (“IoT”); and MSN display advertising. • Devices, including <b>Microsoft</b> ...
158MICROSOFT CORPORATION259243reporthttp://www.sec.gov/Archives/edgar/data/789019/000156459017014900/msft-10k_20170630.htm... system preinstalled on server hardware. <b>Nearly</b> all computer manufacturers offer ... 2041   1,000     1,000     5.<b>300</b>%     5.361% November 15, 2042 ... Windows <b>Internet</b> of <b>Things</b> (“IoT”); and MSN display advertising. • Devices, including <b>Microsoft</b> ...
159MICROSTRATEGY INC364901reporthttps://www.sec.gov/Archives/edgar/data/1050446/000156459020004679/mstr-10k_20191231.htm... different software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, and SAP ... mobile applications, cloud services, security, <b>Internet</b> of <b>Things,</b> and AI trends in ... software development costs in the <b>near</b> term. 42   General and administrative ...
160MICROSTRATEGY INC364901inlinehttp://www.sec.gov/Archives/edgar/data/1050446/000156459020004679/mstr-10k_20191231.htm... different software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, and SAP ... mobile applications, cloud services, security, <b>Internet</b> of <b>Things,</b> and AI trends in ... software development costs in the <b>near</b> term. 42   General and administrative ...
161MICROSTRATEGY INC347645inlinehttp://www.sec.gov/Archives/edgar/data/1050446/000156459019038406/mstr-10q_20190930.htm... could be materially adversely affected <b>Nearly</b> all of our revenues to ... different software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, SAP, and ... applications, cloud-based services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence trends ...
162MICROSTRATEGY INC333748inlinehttp://www.sec.gov/Archives/edgar/data/1050446/000156459019026999/mstr-10q_20190630.htm... Web Services (“AWS”) and <b>Microsoft</b> Azure; and   • over 400 ... development costs in the <b>near</b> term. As a result ... be materially adversely affected <b>Nearly</b> all of our revenues ... cloud-based services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence ...
163MICROSTRATEGY INC324784reporthttp://www.sec.gov/Archives/edgar/data/1050446/000156459019014300/mstr-10q_20190331.htm... adding new deployment options on <b>Microsoft</b> Azure and strengthening MicroStrategy on ... could be materially adversely affected <b>Nearly</b> all of our revenues to ... applications, cloud-based services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence trends ...
164MICROSTRATEGY INC315829reporthttp://www.sec.gov/Archives/edgar/data/1050446/000156459019003468/mstr-10k_20181231.htm... deliver interactive books of <b>near</b> real-time analytics. • ... -based services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence ... authorized to repurchase from $<b>300</b>.0 million to $ ... by offering MicroStrategy on <b>Microsoft</b> Azure and strengthening ...
165MICROSTRATEGY INC304701reporthttp://www.sec.gov/Archives/edgar/data/1050446/000156459018025131/mstr-10q_20180930.htm... users.  In the enterprise <b>Internet</b> of <b>Things</b> (“EIoT”) paradigm, interactions ... can be extended to <b>nearly</b> every corporate system, Usher ... be materially adversely affected <b>Nearly</b> all of our revenues ... software suites, such as <b>Microsoft</b> Office, could evolve to ...
166MICROSTRATEGY INC295017reporthttp://www.sec.gov/Archives/edgar/data/1050446/000156459018017618/mstr-10q_20180630.htm... U.S. entities was $<b>300</b>.1 million and $293. ... badge users.  In the enterprise <b>Internet</b> of <b>Things</b> (“EIoT”) paradigm, interactions ... be materially adversely affected <b>Nearly</b> all of our revenues ... software suites, such as <b>Microsoft</b> Office, could evolve to ...
167MICROSTRATEGY INC285401reporthttp://www.sec.gov/Archives/edgar/data/1050446/000156459018009338/mstr-10q_20180331.htm... users.  In the Enterprise <b>Internet</b> of <b>Things</b> (“EIoT”) paradigm, interactions ... can be extended to <b>nearly</b> every corporate system, ... be materially adversely affected <b>Nearly</b> all of our ... IBM® (Cognos®), SAP® (BO), <b>Microsoft</b>® (Power BI™), and Oracle ...
168MICROSTRATEGY INCORPORATED399589inlinehttp://www.sec.gov/Archives/edgar/data/1050446/000156459020033897/mstr-10q_20200630.htm... development costs in the <b>near</b> term. Research and development ... software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, and ... cloud services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence ... to an aggregate of $<b>300</b>.0 million of our ...
169MICROSTRATEGY INCORPORATED381539inlinehttp://www.sec.gov/Archives/edgar/data/1050446/000156459020019245/mstr-10q_20200331.htm... development costs in the <b>near</b> term. General and administrative ... software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, and ... cloud services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence ... to an aggregate of $<b>300</b>.0 million of our ...
170MICROSTRATEGY INCORPORATED381539reporthttps://www.sec.gov/Archives/edgar/data/1050446/000156459020019245/mstr-10q_20200331.htm... development costs in the <b>near</b> term. General and administrative ... software vendors, including IBM, <b>Microsoft,</b> Oracle, Qlik, Salesforce, and ... cloud services, security, <b>Internet</b> of <b>Things,</b> and artificial intelligence ... to an aggregate of $<b>300</b>.0 million of our ...
171MODUSLINK GLOBAL SOLUTIONS INC266600reporthttp://www.sec.gov/Archives/edgar/data/914712/000119312517310969/d362657d10k.htm... <b>Internet</b> of <b>Things</b> (“IOT”) management. In addition, ModusLink is a <b>Microsoft</b> ... the globe, including those <b>near</b> manufacturing sites or ... required capacity at sites <b>near</b> existing clients, maintain ... sites or establish sites <b>near</b> existing or potential clients, ...
172MONOTYPE IMAGING HOLDINGS INC.316459reporthttp://www.sec.gov/Archives/edgar/data/1385292/000119312519049831/d646546d10k.htm... consumer appliances and <b>Internet</b> of <b>Things</b> devices. These solutions ... major software companies including <b>Microsoft,</b> Google and Apple; • e ... such as Google, Apple, <b>Microsoft,</b> Oracle and Access. ... have license agreements with <b>Microsoft,</b> Adobe and others ...
173Nokia Corp567201inlinehttp://www.sec.gov/Archives/edgar/data/924613/000155837022002758/nok-20211231x20f.htm... strategic partnership with <b>Microsoft</b> to address increasing ... contractors to report <b>near</b> misses and dangerous ...   ( 86 )   ​ Other current liabilities   <b>300</b> ​ ( 55 )   ​   200   ( 63 )   ​ ... data centers. <b>Internet</b> of <b>Things</b> (IoT): All <b>things</b> such ...
174Nokia Corp370382reporthttps://www.sec.gov/Archives/edgar/data/924613/000155837020002053/nok-20191231x20f.htm... for ubiquitous compute and <b>near</b> infinite storage, allowing limitless ... credits 1 301 – 1 <b>300</b> – Undistributed earnings – (83) – ... European Union. <b>Internet</b> of <b>Things</b> (IoT): All <b>things</b> such as ... Companies - such as Google, <b>Microsoft,</b> and Alibaba - which are ...
175OPEN TEXT CORP485072inlinehttp://www.sec.gov/Archives/edgar/data/1002638/000100263821000029/otex-20210630.htm... systems and <b>Internet</b> of <b>Things</b> (IoT) devices ... security. •<b>Microsoft</b> Corporation (<b>Microsoft</b>): Together with <b>Microsoft,</b> we ... in heightened <b>near</b> term economic ...   Purchase of treasury stock —  —  ( <b>300</b> ) ( 12,424 ) —  —  —  ( 12,424 ) Issuance ...
176PARETEUM Corp430543reporthttp://www.sec.gov/Archives/edgar/data/1084384/000110465920135062/tm2037834d1_10ka.htm... providers, early-stage innovators, developers, <b>Internet</b>-of-<b>Things</b> (“IoT”), and telecommunications ... Web Services, Sonus, Veniam, Oracle, <b>Microsoft,</b> NetNumber, Affirmed Networks and ... differentiators for Pareteum in the <b>near</b>-term will be: § Scale ...
177PARETEUM Corp338634reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420419038943/tv527119_10q.htm... Private Limited, iPass Ltd., GoRemote <b>Internet</b> Communications, Inc., GoRemote International ... Brand Marketing Companies, Enterprise and <b>Internet</b> of <b>Things</b> providers use Pareteum to ... include: HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed and other ...
178PARETEUM Corp329166reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420419025361/tv520856_10q.htm... Private Limited, iPass Ltd., GoRemote <b>Internet</b> Communications, Inc., GoRemote International ... Brand Marketing Companies, Enterprise and <b>Internet</b> of <b>Things</b> providers use Pareteum to ... include: HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed and other ...
179PARETEUM Corp321040reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420419014694/tv515953_10k.htm... providers, early stage innovators, developers, <b>Internet</b>-of-<b>Things</b> (“IoT”), and telecommunications ... include: HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed and other ... key competitive differentiators in the <b>near</b>-term will be: § Scale ...
180PARETEUM Corp300171reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420418044040/tv500778_10q.htm... sizes, Communication Service Providers (CSPs), <b>Internet</b> of <b>Things</b> (IoT) and other software ... from HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed, iPass and Artilium ... and growing sectors from IoT (<b>Internet</b> of <b>Things</b>), Data Analytics, Smart Cities, ...
181PARETEUM Corp290807reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420418027711/tv493252_10q.htm... Brand Marketing Companies, Enterprise and <b>Internet</b> of <b>Things</b> providers use Pareteum to ... ) include: HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed and other world ... and growing sectors from IoT (<b>Internet</b> of <b>Things</b>), Mobile Virtual Network Operators ...
182PARETEUM Corp283350reporthttp://www.sec.gov/Archives/edgar/data/1084384/000114420418018243/tv489359_10k.htm... Brand Marketing Companies, Enterprise and <b>Internet</b> of <b>Things</b> providers use Pareteum to ... ) include: HPE, IBM, Sonus, Oracle, <b>Microsoft,</b> NetNumber, Affirmed and other world ... key competitive differentiators in the <b>near</b>-term will be: § Scale and ...
183PING IDENTITY HOLDING CORP.556505inlinehttp://www.sec.gov/Archives/edgar/data/1679826/000155837022001977/ping-20211231x10k.htm... for Customers, Workforce, and <b>Internet</b> of <b>Things</b> (“IoT”). ​ Our Growth ... or independence is preferred. <b>Microsoft</b>’s integration and interoperability ... outstanding of $<b>300</b>.3 million, including $<b>300</b>.0 million ... to increase in the <b>near</b> future as we continue ...
184Powerbridge Technologies Co., Ltd.476878reporthttp://www.sec.gov/Archives/edgar/data/1754323/000121390021036692/f20f2020_powerbridge.htm... application development service and <b>Internet</b> of <b>Things</b> (“IOT”) system ... on Java Spring and <b>Microsoft</b> .Net frameworks as well ... service providers. 54 ● <b>Internet</b> of <b>Things</b>. <b>Internet</b> of <b>Things</b> or IoT refers ... class shall be as <b>nearly</b> equal as possible. The ...
185Powerbridge Technologies Co., Ltd.395998reporthttp://www.sec.gov/Archives/edgar/data/1754323/000121390020015675/f20f2019_powerbridgetech.htm... built on Java Spring and <b>Microsoft</b> .Net frameworks as well ... and service providers. ● <b>Internet</b> of <b>Things</b>. <b>Internet</b> of <b>Things</b> or IoT refers to ... adequate liquidity. Over the <b>near</b> term, we plan to ... adequate liquidity. Over the <b>near</b> term, The Company plans ...
186Powerbridge Technologies Co., Ltd.324650reporthttp://www.sec.gov/Archives/edgar/data/1754323/000121390019007399/f20f2018_powerbridgetech.htm... artificial intelligence and <b>Internet</b> of <b>Things</b>. Powerbridge System Platform ... on Java Spring and <b>Microsoft</b> .Net frameworks as well ... and service providers. ● <b>Internet</b> of <b>Things</b>. <b>Internet</b> of <b>Things</b> or IoT refers ... class shall be as <b>nearly</b> equal as possible. The ...
187POWERBRIDGE TECHNOLOGIES CO., LTD.593624inlinehttp://www.sec.gov/Archives/edgar/data/1754323/000121390022025838/f20f2021_powerbridge.htm... artificial intelligence and <b>Internet</b> of <b>Things</b>.   52     Powerbridge ... on Java Spring and <b>Microsoft</b> Net frameworks as ... providers.   55       ● <b>Internet</b> of <b>Things</b>. <b>Internet</b> of <b>Things</b> (“IoT”) refers to ... class shall be as <b>nearly</b> equal as possible. ...
188RACKSPACE TECHNOLOGY, INC.566455inlinehttp://www.sec.gov/Archives/edgar/data/1810019/000181001922000036/rxt-20211231.htm... native application development, <b>Internet</b> of <b>Things</b> and containers. We ... customers (revenue less than $<b>300</b> million). •Industry. We ... may adversely affect our <b>near</b>-term revenue growth ... computing platforms, including AWS, <b>Microsoft</b> Azure, Google Cloud, Oracle, ...
189RADCOM LTD.574716inlinehttp://www.sec.gov/Archives/edgar/data/1016838/000121390022015832/f20f2021_radcomltd.htm... include, among others, 5G, <b>Internet</b> of <b>Things,</b> or IoT, 4G cellular, ... the COVID-19 pandemic, as <b>near</b>-term measures, we have ... announced partnerships with AWS and <b>Microsoft</b> Azure through which we ... are rolling out 5G, <b>Internet</b> of <b>Things,</b> and edge services and ...
190Rimini Street, Inc.445216inlinehttp://www.sec.gov/Archives/edgar/data/1635282/000163528221000023/rmni-20201231.htm... as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and ... support, including IBM, <b>Microsoft,</b> Oracle and SAP.   ... Customers, which supersedes <b>nearly</b> all existing ... 143   —   —    Underwriter expenses <b>300</b>   —   —    Accrued professional ...
191Rimini Street, Inc.372486inlinehttp://www.sec.gov/Archives/edgar/data/1635282/000163528220000014/rmni-20191231.htm... technologies, such as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and cloud computing ... service and support, including IBM, <b>Microsoft,</b> Oracle and SAP.   Our ... Contracts with Customers, which supersedes <b>nearly</b> all existing revenue recognition ...
192Rimini Street, Inc.372486reporthttps://www.sec.gov/Archives/edgar/data/1635282/000163528220000014/rmni-20191231.htm... technologies, such as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and cloud computing ... service and support, including IBM, <b>Microsoft,</b> Oracle and SAP.   Our ... Contracts with Customers, which supersedes <b>nearly</b> all existing revenue recognition ...
193Rimini Street, Inc.320346reporthttp://www.sec.gov/Archives/edgar/data/1635282/000163528219000016/rimini-123118x10k.htm... technologies, such as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and cloud computing ... service and support, including IBM, <b>Microsoft,</b> Oracle and SAP.   Our ... Contracts with Customers, which supersedes <b>nearly</b> all existing revenue recognition ...
194Rimini Street, Inc.281624reporthttp://www.sec.gov/Archives/edgar/data/1635282/000114420418014946/tv488036_10k.htm... such as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and cloud ... support services for IBM, <b>Microsoft,</b> SAP, Oracle and other ... with Customers, which supersedes <b>nearly</b> all existing revenue recognition ... revenue in excess of $<b>300</b>.0 million. The continuing ...
195Rimini Street, Inc.273968reporthttp://www.sec.gov/Archives/edgar/data/1635282/000114420417060458/tv479571_s1.htm... such as mobile, virtualization, <b>internet</b> of <b>things</b> (“IoT”) and cloud ... support services for IBM, <b>Microsoft,</b> SAP, Oracle and other ... Financing activities 217 3,570 (<b>300</b> ) 73,601 (1,650 ) (28,564 ) ( ... with Customers, which supersedes <b>nearly</b> all existing revenue ...
196SANTANDER CONSUMER USA HOLDINGS INC.359485inlinehttp://www.sec.gov/Archives/edgar/data/1580608/000119312519323463/d856957d8k.htm... in the sectors of The <b>Internet</b> of <b>Things</b> (“IoT”), Cyber Security, Artificial ... . Akbari held executive positions at <b>Microsoft</b> Corporation, Thales Group, TruePosition, Inc ...
197SANTANDER CONSUMER USA HOLDINGS INC.359485reporthttps://www.sec.gov/Archives/edgar/data/1580608/000119312519323463/d856957d8k.htm... in the sectors of The <b>Internet</b> of <b>Things</b> (“IoT”), Cyber Security, Artificial ... . Akbari held executive positions at <b>Microsoft</b> Corporation, Thales Group, TruePosition, Inc ...
198SAP SE368084inlinehttp://www.sec.gov/Archives/edgar/data/1000184/000110465920025681/sap-20191231x20f6ea59a.htm... and intelligent technologies (<b>Internet</b> of <b>Things,</b> machine learning, and ... requirements over the <b>near</b> and medium term. ... of SAP: Adobe, <b>Microsoft,</b> IBM, Salesforce, Oracle, ... 607 % (var.) ​ 2.46 %   US$ <b>300</b> ​ 267 ​ 262 Bonds ​ ​ ​ ​ ​ ​ ​ ...
199SAP SE368084reporthttps://www.sec.gov/Archives/edgar/data/1000184/000110465920025681/sap-20191231x20f6ea59a.htm... and intelligent technologies (<b>Internet</b> of <b>Things,</b> machine learning, and ... requirements over the <b>near</b> and medium term. ... of SAP: Adobe, <b>Microsoft,</b> IBM, Salesforce, Oracle, ... 607 % (var.) ​ 2.46 %   US$ <b>300</b> ​ 267 ​ 262 Bonds ​ ​ ​ ​ ​ ​ ​ ...
200SAP SE317437reporthttp://www.sec.gov/Archives/edgar/data/1000184/000110465919011304/a18-38214_120f.htm... as machine learning, <b>Internet</b> of <b>Things</b> (IoT), and analytics ... and services. Thus, in <b>nearly</b> every industry and in ... based payments (approximately additional €<b>300</b> million mainly due ... international competitors of SAP: <b>Microsoft,</b> IBM, Oracle, Salesforce, Adobe, ...
201SAP SE279035reporthttp://www.sec.gov/Archives/edgar/data/1000184/000110465918013050/a17-27645_420f.htm... business needs. SAP Leonardo <b>Internet</b> of <b>Things</b> The proliferation of ... assess its value. Accordingly, <b>nearly</b> 50% of large enterprises ... million Eurobonds and US$<b>300</b> million U.S. private ... international competitors of SAP: <b>Microsoft,</b> Adobe, IBM, Salesforce, Oracle, ...
202SIFY TECHNOLOGIES LTD605535inlinehttp://www.sec.gov/Archives/edgar/data/1094324/000157587222000522/sify-20220331.htm... in the <b>near</b> future. Enterprise ... <b>internet</b> at customer locations.   <b>Internet</b> of <b>Things</b> ( ... services for <b>Microsoft</b> Office 365, ... Consultancy services received     -       -       -       <b>300</b>   Sitting fees paid     -       -       -     ...
203SONUS NETWORKS INC179726reporthttp://www.sec.gov/Archives/edgar/data/1105472/000110547217000006/sons2016123110-k.htm... (\"PBXs\"), IVR applications and <b>Microsoft</b> Lync Server; and • Interoperability ... and deployments of the <b>Internet</b> of <b>Things</b> (\"IoT\") accelerate, our ... our needs in the <b>near</b> future. If our stockholders ... . These facilities are located <b>near</b> the San Francisco Bay ...
204SYNCHRONOSS TECHNOLOGIES INC179558reporthttp://www.sec.gov/Archives/edgar/data/1131554/000113155417000037/sncr-12311610xk.htm... media preview for <b>Microsoft</b> Office documents, PDFs, ... and Mobile Today <b>nearly</b> all businesses are involved ... Emerging Devices and <b>Internet</b> of <b>Things</b> Space. Various forecasts ... 2015 $ (34,092 )   $ (4,292 )   $ (<b>300</b> )   $ (38,684 ) Other comprehensive income ...
205TRAQIQ, INC.313255reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218017688/form10-qa.htm... transportation industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ● Data ... and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ... program designed to help <b>Microsoft</b> employees identify the right ...
206TRAQIQ, INC.312762reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218017118/form10-q.htm... transportation industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ● Data ... and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ... program designed to help <b>Microsoft</b> employees identify the right ...
207TRAQIQ, INC.304365reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218014663/form10-qa.htm... transportation industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ● Data ... and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ... program designed to help <b>Microsoft</b> employees identify the right ...
208TRAQIQ, INC.303828reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218013835/form10-q.htm... transportation industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ● Data ... and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ... program designed to help <b>Microsoft</b> employees identify the right ...
209TRAQIQ, INC.292622reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218007740/form10-q.htm... transportation industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ● Data ... and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ... program designed to help <b>Microsoft</b> employees identify the right ...
210TRAQIQ, INC.281131reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315218003280/form10-k.htm... industry, including: ● Industrial <b>Internet</b> of <b>Things</b> (IIoT) tracking devices ... where he drove <b>Microsoft</b>’s <b>internet</b> business and content ... officers in the <b>near</b> future, subject to ... of OmniM2M - - 3,000,000 <b>300</b> - (313,385 ) (313,085 ) Acquisition of ...
211TRAQIQ, INC.271054reporthttp://www.sec.gov/Archives/edgar/data/1514056/000149315217012789/form10-q.htm... . 201 Santa Monica Blvd., Suite <b>300</b> Santa Monica, CA 90401-2224 ... . (“OmniM2M”). OmniM2M, Inc. The Industrial <b>Internet</b> of <b>Things</b> (“IIoT”) is about the ... product and business groups, including <b>Microsoft</b> Azure and <b>Microsoft</b> Media planning. CI2I has ...
212UBI Blockchain Internet LTD-DE284812reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218005476/formposam.htm... blockchain technology, which includes <b>Internet</b> of <b>Things</b> (“IoT”) technology, pharmaceutical ... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
213UBI Blockchain Internet LTD-DE284404reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218005216/form10-q.htm... blockchain technology, which includes <b>Internet</b> of <b>Things</b> (“IoT”) technology, pharmaceutical ... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
214UBI Blockchain Internet LTD-DE283929reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218004716/formposam.htm... blockchain technology, which includes <b>Internet</b> of <b>Things</b> (“IoT”) technology, pharmaceutical ... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
215UBI Blockchain Internet LTD-DE276555reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218001761/form10qa.htm... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... <b>Internet</b> of <b>Things</b> is an extension and continuation of the <b>Internet</b>. The <b>Internet</b> of <b>Things</b> ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
216UBI Blockchain Internet LTD-DE275961reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218001443/formposam.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
217UBI Blockchain Internet LTD-DE275348reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315218000577/form10q.htm... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... <b>Internet</b> of <b>Things</b> is an extension and continuation of the <b>Internet</b>. The <b>Internet</b> of <b>Things</b> ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
218UBI Blockchain Internet LTD-DE274885reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217014924/forms-1a.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
219UBI Blockchain Internet LTD-DE274565reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217014530/forms-1a.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
220UBI Blockchain Internet LTD-DE274363reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217014295/form10-k.htm... ” and “tamper-proof”. <b>Internet</b> of <b>Things,</b> embedded physical devices, vehicles ... <b>Internet</b> of <b>Things</b> is an extension and continuation of the <b>Internet</b>. The <b>Internet</b> of <b>Things</b> ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thomson ...
221UBI Blockchain Internet LTD-DE273599reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217013483/form8-ka.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
222UBI Blockchain Internet LTD-DE265427reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217010221/forms-1a.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
223UBI Blockchain Internet LTD-DE257745reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217007856/form10-q.htm... of blockchain technology and <b>internet</b> of <b>things</b>. Blockchain technology-based applications ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchain, <b>internet</b> of <b>things,</b> and technological innovation platform ...
224UBI Blockchain Internet LTD-DE190593reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217007534/forms-1a.htm... the blockchain technology and <b>internet</b> of <b>things</b> promote industrial information and ... research and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchian, <b>internet</b> of <b>things,</b> and technological innovation platform ...
225UBI Blockchain Internet LTD-DE190488reporthttp://www.sec.gov/Archives/edgar/data/1500242/000149315217007324/form10qa.htm... of blockchain technology and <b>internet</b> of <b>things</b>. Blockchain technology-based applications ... and development, including IBM, <b>Microsoft,</b> Intel, Blockstream and Thompson ... and advancement of blockchain, <b>internet</b> of <b>things,</b> and technological innovation platform ...
226UNIVERSAL ELECTRONICS INC.445815inlinehttp://www.sec.gov/Archives/edgar/data/101984/000010198421000009/ueic-20201231.htm... console manufacturers such as <b>Microsoft</b> Corporation on its ... Service, a managed <b>Internet</b> of <b>Things</b> (\"IoT\") service which ... knowledge library that includes <b>nearly</b> 13,000 brands comprising ... 100,000   100,000   75,000   $ <b>300</b> million 75,000   75,000   75,000 ...
" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Define the parameters for the filter and fields to be returned, \n", "# run the loop to return results\n", "offset_value = 0\n", "res_df = []\n", "\n", "# Define the parameters of the query. This query returns all \n", "# SEC reports where 'Microsoft' and 'internet of things'\n", "# appear within 300 words of each other.\n", "\n", "text_search = [\"Microsoft NEAR/300 \\\"internet of things\\\"\" \n", " ]\n", "\n", "report_source = [\"SEC\" \n", " ]\n", "\n", "# Define data fields to return (multi-sort based on order)\n", "\n", "fields = [ # this is the list of the characteristics of the data being returned by the query\n", " 'entity.name.sort(ASC)',\n", " 'dts.id.sort(DESC)',\n", " 'document.type',\n", " 'document.uri',\n", " 'document.example'\n", " ]\n", "\n", "params = { \n", " # this is the list of what's being queried against the search endpoint and returned as fields\n", " 'document.text-search': ','.join(text_search),\n", " 'report.source-name': ','.join(report_source),\n", " 'fields': ','.join(fields)\n", " }\n", "\n", "# Execute the query with loop for all results\n", "\n", "search_endpoint = 'https://api.xbrl.us/api/v1/document/search'\n", "orig_fields = params['fields']\n", "\n", "count = 0\n", "query_start = datetime.now()\n", "printed = False\n", "while True:\n", " if not printed:\n", " print(\"On\", query_start.strftime(\"%c\"), email, \"(client ID:\", str(clientid.split('-')[0]), \"...) started the query and ...\\n\")\n", " printed = True\n", " res = requests.get(search_endpoint, params=params, headers={'Authorization' : 'Bearer {}'.format(access_token)})\n", " res_json = res.json()\n", " if 'error' in res_json:\n", " print('There was an error: {}'.format(res_json['error_description']))\n", " break\n", "\n", " print(\"up to\", str(offset_value + res_json['paging']['limit']), \"records are found so far ...\")\n", "\n", " res_df += res_json['data']\n", "\n", " if res_json['paging']['count'] < res_json['paging']['limit']:\n", " print(\" - this set contained fewer than the\", res_json['paging']['limit'], \"possible, only\", str(res_json['paging']['count']), \"records.\")\n", " break\n", " else: \n", " offset_value += res_json['paging']['limit'] \n", " if 100 == res_json['paging']['limit']:\n", " params['fields'] = orig_fields + ',fact.offset({})'.format(offset_value)\n", " if offset_value == 10 * res_json['paging']['limit']:\n", " break \n", " elif 500 == res_json['paging']['limit']:\n", " params['fields'] = orig_fields + ',fact.offset({})'.format(offset_value)\n", " if offset_value == 4 * res_json['paging']['limit']:\n", " break \n", " params['fields'] = orig_fields + ',fact.offset({})'.format(offset_value)\n", "\n", "if not 'error' in res_json:\n", " current_datetime = datetime.now().replace(microsecond=0)\n", " time_taken = current_datetime - query_start\n", " index = pd.DataFrame(res_df).index\n", " total_rows = len(index)\n", " your_limit = res_json['paging']['limit']\n", " limit_message = \"If the results below match the limit noted above, you might not be seeing all rows, and should consider upgrading (https://xbrl.us/access-token).\\n\"\n", " \n", " if your_limit == 100:\n", " print(\"\\nThis non-Member account has a limit of \" , 10 * your_limit, \" rows per query from our Public Filings Database. \" + limit_message)\n", " elif your_limit == 500:\n", " print(\"\\nThis Basic Individual Member account has a limit of \", 4 * your_limit, \" rows per query from our Public Filings Database. \" + limit_message)\n", " \n", " print(\"\\nAt \" + current_datetime.strftime(\"%c\") + \", the query finished with \" + str(total_rows) + \" rows returned in \" + str(time_taken) + \" \" + urllib.parse.unquote(res.url) )\n", " \n", " \n", " df = pd.DataFrame(res_df)\n", " # the format truncates the HTML display of numerical values to two decimals; .csv data is unaffected\n", " pd.options.display.float_format = '{:,.2f}'.format\n", " display(HTML(df.to_html()))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "# If you run this program locally, you can save the output to a file \n", "# on your computer (modify D:\\results.csv to your system)\n", "\n", "df.to_csv(r\"D:\\results.csv\",sep=\",\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3" }, "vscode": { "interpreter": { "hash": "5e9be3726a3e1eb0488b4d4f640ef9d4f9840d98d40cbcadb810c3cb4446c190" } } }, "nbformat": 4, "nbformat_minor": 2 }