pax_global_header00006660000000000000000000000064141645706660014531gustar00rootroot0000000000000052 comment=31bde69a1f08c880ef1622f2586eea0daf3b0857 hidapi-hidapi-0.11.2/000077500000000000000000000000001416457066600143045ustar00rootroot00000000000000hidapi-hidapi-0.11.2/.appveyor.yml000066400000000000000000000021161416457066600167520ustar00rootroot00000000000000os: Visual Studio 2015 environment: matrix: - BUILD_ENV: msbuild arch: x64 - BUILD_ENV: msbuild arch: Win32 - BUILD_ENV: cygwin install: - cmd: if %BUILD_ENV%==cygwin ( C:\cygwin64\setup-x86_64.exe --quiet-mode --no-shortcuts --upgrade-also --packages autoconf,automake ) build_script: - cmd: if %BUILD_ENV%==msbuild ( msbuild .\windows\hidapi.sln /p:Configuration=Release /p:Platform=%arch% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" ) - cmd: if %BUILD_ENV%==cygwin ( C:\cygwin64\bin\bash -exlc "cd $APPVEYOR_BUILD_FOLDER; ./bootstrap; ./configure; make" ) artifacts: # Win32 artifacts - path: .\windows\Release\hidapi.dll - path: .\windows\Release\hidapi.lib - path: .\windows\Release\hidapi.pdb - path: .\windows\Release\hidtest.exe - path: .\windows\Release\hidtest.pdb # x64 artifacts - path: .\windows\x64\Release\hidapi.dll - path: .\windows\x64\Release\hidapi.lib - path: .\windows\x64\Release\hidapi.pdb - path: .\windows\x64\Release\hidtest.exe - path: .\windows\x64\Release\hidtest.pdb hidapi-hidapi-0.11.2/.builds/000077500000000000000000000000001416457066600156445ustar00rootroot00000000000000hidapi-hidapi-0.11.2/.builds/alpine.yml000066400000000000000000000006251416457066600176420ustar00rootroot00000000000000image: alpine/edge packages: - autoconf - automake - libtool - eudev-dev - libusb-dev - linux-headers sources: - https://github.com/libusb/hidapi tasks: - setup: | cd hidapi ./bootstrap ./configure - build: | cd hidapi make make DESTDIR=$PWD/root install make clean - build-manual: | cd hidapi/linux make -f Makefile-manual cd ../libusb make -f Makefile-manual hidapi-hidapi-0.11.2/.builds/archlinux.yml000066400000000000000000000005761416457066600203740ustar00rootroot00000000000000image: archlinux packages: - autoconf - automake - libtool - libusb - libudev0 sources: - https://github.com/libusb/hidapi tasks: - setup: | cd hidapi ./bootstrap ./configure - build: | cd hidapi make make DESTDIR=$PWD/root install make clean - build-manual: | cd hidapi/linux make -f Makefile-manual cd ../libusb make -f Makefile-manual hidapi-hidapi-0.11.2/.builds/fedora-mingw.yml000066400000000000000000000006141416457066600207470ustar00rootroot00000000000000image: fedora/latest packages: - autoconf - automake - libtool - mingw64-gcc - mingw64-gcc-c++ sources: - https://github.com/libusb/hidapi tasks: - setup: | cd hidapi ./bootstrap mingw64-configure - build: | cd hidapi make make DESTDIR=$PWD/root install make clean - build-manual: | cd hidapi/windows make -f Makefile-manual OS=MINGW CC=x86_64-w64-mingw32-gcc hidapi-hidapi-0.11.2/.builds/freebsd.yml000066400000000000000000000005411416457066600200010ustar00rootroot00000000000000image: freebsd/latest packages: - autoconf - automake - gmake - libiconv - libtool - pkgconf sources: - https://github.com/libusb/hidapi tasks: - setup: | cd hidapi ./bootstrap ./configure - build: | cd hidapi make make DESTDIR=$PWD/root install make clean - build-manual: | cd hidapi/libusb gmake -f Makefile-manual hidapi-hidapi-0.11.2/.cirrus.yml000066400000000000000000000021011416457066600164060ustar00rootroot00000000000000alpine_task: container: image: alpine:latest install_script: apk add autoconf automake g++ gcc libusb-dev libtool linux-headers eudev-dev make musl-dev script: - ./bootstrap - ./configure || { cat config.log; exit 1; } - make - make install freebsd11_task: freebsd_instance: image: freebsd-11-2-release-amd64 install_script: - pkg install -y autoconf automake libiconv libtool pkgconf script: - ./bootstrap - ./configure || { cat config.log; exit 1; } - make - make install freebsd12_task: freebsd_instance: image: freebsd-12-1-release-amd64 install_script: - pkg install -y autoconf automake libiconv libtool pkgconf script: - ./bootstrap - ./configure || { cat config.log; exit 1; } - make - make install hidapi-hidapi-0.11.2/.gitattributes000066400000000000000000000001501416457066600171730ustar00rootroot00000000000000* text=auto *.sln text eol=crlf *.vcproj text eol=crlf bootstrap text eol=lf configure.ac text eol=lf hidapi-hidapi-0.11.2/.github/000077500000000000000000000000001416457066600156445ustar00rootroot00000000000000hidapi-hidapi-0.11.2/.github/workflows/000077500000000000000000000000001416457066600177015ustar00rootroot00000000000000hidapi-hidapi-0.11.2/.github/workflows/builds.yml000066400000000000000000000113551416457066600217130ustar00rootroot00000000000000name: GitHub Builds on: [push, pull_request] jobs: macos-automake: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Install build tools run: brew install autoconf automake libtool - name: Configure Automake run: | ./bootstrap ./configure --prefix=$(pwd)/install - name: Build Automake run: | make make install - name: Clean build run: make clean - name: Build Manual makefile working-directory: mac run: make -f Makefile-manual macos-cmake: runs-on: macos-latest steps: - uses: actions/checkout@v2 with: path: hidapisrc - name: Configure CMake run: | rm -rf build install cmake -B build/shared -S hidapisrc -DCMAKE_INSTALL_PREFIX=install/shared cmake -B build/framework -S hidapisrc -DCMAKE_INSTALL_PREFIX=install/framework -DCMAKE_FRAMEWORK=ON - name: Build CMake Shared working-directory: build/shared run: make install - name: Build CMake Framework working-directory: build/framework run: make install - name: Check artifacts uses: andstor/file-existence-action@v1 with: files: "install/shared/lib/libhidapi.dylib, \ install/shared/include/hidapi/hidapi.h, \ install/framework/lib/hidapi.framework/hidapi, \ install/framework/lib/hidapi.framework/Headers/hidapi.h" allow_failure: true ubuntu-cmake: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: path: hidapisrc - name: Install dependencies run: | sudo apt update sudo apt install libudev-dev libusb-1.0-0-dev - name: Configure CMake run: | rm -rf build install cmake -B build/shared -S hidapisrc -DCMAKE_INSTALL_PREFIX=install/shared cmake -B build/static -S hidapisrc -DCMAKE_INSTALL_PREFIX=install/static -DBUILD_SHARED_LIBS=FALSE - name: Build CMake Shared working-directory: build/shared run: make install - name: Build CMake Static working-directory: build/static run: make install - name: Check artifacts uses: andstor/file-existence-action@v1 with: files: "install/shared/lib/libhidapi-libusb.so, \ install/shared/lib/libhidapi-hidraw.so, \ install/shared/include/hidapi/hidapi.h, \ install/shared/include/hidapi/hidapi_libusb.h, \ install/static/lib/libhidapi-libusb.a, \ install/static/lib/libhidapi-hidraw.a, \ install/static/include/hidapi/hidapi.h, \ install/static/include/hidapi/hidapi_libusb.h" allow_failure: true windows-cmake-msvc: runs-on: windows-latest steps: - uses: actions/checkout@v2 with: path: hidapisrc - name: Configure CMake shell: cmd run: | RMDIR /Q /S build install cmake -B build -S hidapisrc -DCMAKE_INSTALL_PREFIX=install - name: Build CMake working-directory: build run: cmake --build . --target install - name: Check artifacts uses: andstor/file-existence-action@v1 with: files: "install/lib/hidapi.lib, install/bin/hidapi.dll, install/include/hidapi/hidapi.h" allow_failure: true windows-cmake-nmake: runs-on: windows-latest steps: - uses: actions/checkout@v2 with: path: hidapisrc - name: Configure CMake shell: cmd run: | RMDIR /Q /S build install call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" cmake -G"NMake Makefiles" -B build -S hidapisrc -DCMAKE_INSTALL_PREFIX=install - name: Build CMake working-directory: build shell: cmd run: | call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" nmake install - name: Check artifacts uses: andstor/file-existence-action@v1 with: files: "install/lib/hidapi.lib, install/bin/hidapi.dll, install/include/hidapi/hidapi.h" allow_failure: true windows-cmake-mingw: runs-on: windows-latest steps: - uses: actions/checkout@v2 with: path: hidapisrc - name: Configure CMake shell: cmd run: | RMDIR /Q /S build install cmake -G"MinGW Makefiles" -B build -S hidapisrc -DCMAKE_INSTALL_PREFIX=install - name: Build CMake working-directory: build run: cmake --build . --target install - name: Check artifacts uses: andstor/file-existence-action@v1 with: files: "install/lib/libhidapi.dll.a, install/bin/libhidapi.dll, install/include/hidapi/hidapi.h" allow_failure: true hidapi-hidapi-0.11.2/.gitignore000066400000000000000000000004761416457066600163030ustar00rootroot00000000000000 # Autotools-added generated files Makefile.in aclocal.m4 ar-lib autom4te.cache/ config.* configure compile depcomp install-sh libusb/Makefile.in linux/Makefile.in ltmain.sh mac/Makefile.in missing testgui/Makefile.in windows/Makefile.in Makefile stamp-h1 libtool # macOS .DS_Store # Qt Creator CMakeLists.txt.user hidapi-hidapi-0.11.2/AUTHORS.txt000066400000000000000000000006521416457066600161750ustar00rootroot00000000000000 HIDAPI Authors: Alan Ott : Original Author and Maintainer Linux, Windows, and Mac implementations Ludovic Rousseau : Formatting for Doxygen documentation Bug fixes Correctness fixes libusb/hidapi Team: Development/maintainance since June 4th 2019 For a comprehensive list of contributions, see the commit list at github: https://github.com/libusb/hidapi/graphs/contributors hidapi-hidapi-0.11.2/BUILD.autotools.md000066400000000000000000000070021416457066600175140ustar00rootroot00000000000000# Building HIDAPI using Autotools (deprecated) --- **NOTE**: for all intentions and purposes the Autotools build scripts for HIDAPI are _deprecated_ and going to be obsolete in the future. HIDAPI Team recommends using CMake build for HIDAPI. If you are already using Autotools build scripts provided by HIDAPI, consider switching to CMake build scripts as soon as possible. --- To be able to use Autotools to build HIDAPI, it has to be [installed](#installing-autotools)/available in the system. Make sure you've checked [prerequisites](BUILD.md#prerequisites) and installed all required dependencies. ## Installing Autotools HIDAPI uses few specific tools/packages from Autotools: `autoconf`, `automake`, `libtool`. On different platforms or package managers, those could be named a bit differently or packaged together. You'll have to check the documentation/package list for your specific package manager. ### Linux On Ubuntu the tools are available via APT: ```sh sudo apt install autoconf automake libtool ``` ### FreeBSD FreeBSD Autotools can be installed as: ```sh pkg_add -r autotools ``` Additionally, on FreeBSD you will need to install GNU make: ```sh pkg_add -r gmake ``` ## Building HIDAPI with Autotools A simple command list, to build HIDAPI with Autotools as a _shared library_ and install in into your system: ```sh ./bootstrap # this prepares the configure script ./configure make # build the library make install # as root, or using sudo, this will install hidapi into your system ``` `./configure` can take several arguments which control the build. A few commonly used options: ```sh --enable-testgui # Enable the build of Foxit-based Test GUI. This requires Fox toolkit to # be installed/available. See README.md#test-gui for remarks. --prefix=/usr # Specify where you want the output headers and libraries to # be installed. The example above will put the headers in # /usr/include and the binaries in /usr/lib. The default is to # install into /usr/local which is fine on most systems. --disable-shared # By default, both shared and static libraries are going to be built/installed. # This option disables shared library build, if only static library is required. ``` ## Cross Compiling This section talks about cross compiling HIDAPI for Linux using Autotools. This is useful for using HIDAPI on embedded Linux targets. These instructions assume the most raw kind of embedded Linux build, where all prerequisites will need to be built first. This process will of course vary based on your embedded Linux build system if you are using one, such as OpenEmbedded or Buildroot. For the purpose of this section, it will be assumed that the following environment variables are exported. ```sh $ export STAGING=$HOME/out $ export HOST=arm-linux ``` `STAGING` and `HOST` can be modified to suit your setup. ### Prerequisites Depending on what backend you want to cross-compile, you also need to prepare the dependencies: `libusb` for libusb HIDAPI backend, or `libudev` for hidraw HIDAPI backend. An example of cross-compiling `libusb`. From `libusb` source directory, run: ```sh ./configure --host=$HOST --prefix=$STAGING make make install ``` An example of cross-comping `libudev` is not covered by this section. Check `libudev`'s documentation for details. ### Building HIDAPI Build HIDAPI: ```sh PKG_CONFIG_DIR= \ PKG_CONFIG_LIBDIR=$STAGING/lib/pkgconfig:$STAGING/share/pkgconfig \ PKG_CONFIG_SYSROOT_DIR=$STAGING \ ./configure --host=$HOST --prefix=$STAGING # make / make install - same as for a regular build ``` hidapi-hidapi-0.11.2/BUILD.cmake.md000066400000000000000000000320001416457066600165370ustar00rootroot00000000000000# Building HIDAPI using CMake To build HIDAPI with CMake, it has to be [installed](#installing-cmake)/available in the system. Make sure you've checked [prerequisites](BUILD.md#prerequisites) and installed all required dependencies. HIDAPI CMake build system allows you to build HIDAPI in two generally different ways: 1) As a [standalone package/library](#standalone-package-build); 2) As [part of a larger CMake project](#hidapi-as-a-subdirectory). **TL;DR**: if you're experienced developer and have been working with CMake projects or have been written some of your own - most of this document may not be of interest for you; just check variables names, its default values and the target names. ## Installing CMake CMake can be installed either using your system's package manager, or by downloading an installer/prebuilt version from the [official website](https://cmake.org/download/). On most \*nix systems, the prefered way to install CMake is via package manager, e.g. `sudo apt install cmake`. On Windows CMake could be provided by your development environment (e.g. by Visual Studio Installer or MinGW installer), or you may install it system-wise using the installer from the official website. On macOS CMake may be installed by Homebrew/MacPorts or using the installer from the official website. ## Standalone package build To build HIDAPI as a standalone package, you follow [general steps](https://cmake.org/runningcmake/) of building any CMake project. An example of building HIDAPI with CMake: ```sh # precondition: create a somewhere on the filesystem (preferably outside of the HIDAPI source) # this is the place where all intermediate/build files are going to be located cd # configure the build cmake # build it! cmake --build . # install library; by default installs into /usr/local/ cmake --build . --target install # NOTE: you need to run install command as root, to be able to install into /usr/local/ ``` Such invocation will use the default (as per CMake magic) compiler/build environment available in your system. You may pass some additional CMake variables to control the build configuration as `-D=value`. E.g.: ```sh # install command now would install things into /usr cmake -DCMAKE_INSTALL_PREFIX=/usr ```
Using a specific CMake generator An example of using `Ninja` as a CMake generator: ```sh cd # configure the build cmake -GNinja # we know, that CMake has generated build files for Ninja, # so we can use `ninja` directly, instead of `cmake --build .` ninja # install library ninja install ``` `-G` here specifies a native build system CMake would generate build files for. Check [CMake Documentation](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html) for a list of available generators (system-specific).

Some of the [standard](https://cmake.org/cmake/help/latest/manual/cmake-variables.7.html) CMake variables you may want to use to configure a build: - [`CMAKE_INSTALL_PREFIX`](https://cmake.org/cmake/help/latest/variable/CMAKE_INSTALL_PREFIX.html) - prefix where `install` target would install the library(ies); - [`CMAKE_BUILD_TYPE`](https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html) - standard possible values: `Debug`, `Release`, `RelWithDebInfo`, `MinSizeRel`; Defaults to `Release` for HIDAPI, if not specified; - [`BUILD_SHARED_LIBS`](https://cmake.org/cmake/help/latest/variable/BUILD_SHARED_LIBS.html) - when set to TRUE, HIDAPI is built as a shared library, otherwise build statically; Defaults to `TRUE` for HIDAPI, if not specified;
macOS-specific variables - [`CMAKE_FRAMEWORK`](https://cmake.org/cmake/help/latest/variable/CMAKE_FRAMEWORK.html) - (since CMake 3.15) when set to TRUE, HIDAPI is built as a framework library, otherwise build as a regular static/shared library; Defaults to `FALSE` for HIDAPI, if not specified; - [`CMAKE_OSX_DEPLOYMENT_TARGET`](https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_DEPLOYMENT_TARGET.html) - minimum version of the target platform (e.g. macOS or iOS) on which the target binaries are to be deployed; defaults to a maximum supported target platform by currently used XCode/Toolchain;

HIDAPI-specific CMake variables: - `HIDAPI_BUILD_HIDTEST` - when set to TRUE, build a small test application `hidtest`;
Linux-specific variables - `HIDAPI_WITH_HIDRAW` - when set to TRUE, build HIDRAW-based implementation of HIDAPI (`hidapi-hidraw`), otherwise don't build it; defaults to TRUE; - `HIDAPI_WITH_LIBUSB` - when set to TRUE, build LIBUSB-based implementation of HIDAPI (`hidapi-libusb`), otherwise don't build it; defaults to TRUE; **NOTE**: at least one of `HIDAPI_WITH_HIDRAW` or `HIDAPI_WITH_LIBUSB` has to be set to TRUE.

To see all most-useful CMake variables available for HIDAPI, one of the most convenient ways is too use [`cmake-gui`](https://cmake.org/cmake/help/latest/manual/cmake-gui.1.html) tool ([example](https://cmake.org/runningcmake/)). _NOTE_: HIDAPI packages built by CMake can be used with `pkg-config`, as if built with [Autotools](BUILD.autotools.md). ### MSVC and Ninja It is possible to build a CMake project (including HIDAPI) using MSVC compiler and Ninja (for medium and larger projects it is so much faster than msbuild). For that: 1) Open cmd.exe; 2) Setup MSVC build environment variables, e.g.: `vcvarsall.bat x64`, where: - `vcvarsall.bat` is an environment setup script of your MSVC toolchain installation;
For MSVC 2019 Community edition it is located at: `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\`; - `x64` -a target architecture to build; 3) Follow general build steps, and use `Ninja` as a generator. ### Using HIDAPI in a CMake project When HIDAPI is used as a standalone package (either installed into the system or built manually and installed elsewhere), the simplest way to use it is as showed in the example: ```cmake project(my_application) add_executable(my_application main.c) find_package(hidapi REQUIRED) target_link_libraries(my_application PRIVATE hidapi::hidapi) ``` If HIDAPI isn't installed in your system, or `find_package` cannot find HIDAPI by default for any other reasons, the recommended way manually specify which HIDAPI package to use is via `hidapi_ROOT` CMake variable, e.g.: `-Dhidapi_ROOT=`. _NOTE_: usage of `hidapi_ROOT` is only possible (and recommended) with CMake 3.12 and higher. For older versions of CMake you'd need to specify [`CMAKE_PREFIX_PATH`](https://cmake.org/cmake/help/latest/variable/CMAKE_PREFIX_PATH.html#variable:CMAKE_PREFIX_PATH) instead. Check with [`find_package`](https://cmake.org/cmake/help/latest/command/find_package.html) documentation if you need more details. Available CMake targets after successful `find_package(hidapi)`: - `hidapi::hidapi` - indented to be used in most cases; - `hidapi::include` - if you need only to include `` but not link against the library; - `hidapi::winapi` - same as `hidapi::hidapi` on Windows; available only on Windows; - `hidapi::darwin` - same as `hidapi::hidapi` on macOS; available only on macOS; - `hidapi::libusb` - available when libusb backend is used/available; - `hidapi::hidraw` - available when hidraw backend is used/available on Linux; **NOTE**: on Linux often both `hidapi::libusb` and `hidapi::hidraw` backends are available; in that case `hidapi::hidapi` is an alias for **`hidapi::hidraw`**. The motivation is that `hidraw` backend is a native Linux kernel implementation of HID protocol, and supports various HID devices (USB, Bluetooth, I2C, etc.). If `hidraw` backend isn't built at all (`hidapi::libusb` is the only target) - `hidapi::hidapi` is an alias for `hidapi::libusb`. If you're developing a cross-platform application and you are sure you need to use `libusb` backend on Linux, the simple way to achieve this is: ```cmake if(TARGET hidapi::libusb) target_link_libraries(my_project PRIVATE hidapi::libusb) else() target_link_libraries(my_project PRIVATE hidapi::hidapi) endif() ``` ## HIDAPI as a subdirectory HIDAPI can be easily used as a subdirectory of a larger CMake project: ```cmake # root CMakeLists.txt cmake_minimum_required(VERSION 3.4.3 FATAL_ERROR) add_subdirectory(hidapi) add_subdirectory(my_application) # my_application/CMakeLists.txt project(my_application) add_executable(my_application main.c) # NOTE: no `find_package` is required, since HIDAPI targets are already a part of the project tree target_link_libraries(my_application PRIVATE hidapi::hidapi) ``` Lets call this "larger project" a "host project". All of the variables described in [standalone build](#standalone-package-build) section can be used to control HIDAPI build in case of a subdirectory, e.g.: ```cmake set(HIDAPI_WITH_LIBUSB FALSE) # surely will be used only on Linux set(BUILD_SHARED_LIBS FALSE) # HIDAPI as static library on all platforms add_subdirectory(hidapi) ```
NOTE If you project happen to use `BUILD_SHARED_LIBS` as a `CACHE` variable globally for you project, setting it as simple variable, as showed above _will have not affect_ up until _CMake 3.13_. See [CMP0077](https://cmake.org/cmake/help/latest/policy/CMP0077.html) for details.

There are several important differences in the behavior of HIDAPI CMake build system when CMake is built as standalone package vs subdirectory build: 1) In _standalone build_ a number of standard and HIDAPI-specific variables are marked as _cache variables_ or _options_. This is done for convenience: when you're building HIDAPI as a standalone package and using tools like `cmake-gui` - those are highlighted as variables that can be changed and has some short description/documentation. E.g.: ![an example of highlighted variables in cmake-gui](documentation/cmake-gui-highlights.png "cmake-gui highlighted variables")
E.g.2:
![an example of drop-down menu in cmake-gui](documentation/cmake-gui-drop-down.png "cmake-gui drop-down menu")
When HIDAPI is built as a _subdirectory_ - **_none of the variables are marked for cache or as options_** by HIDAPI. This is done to let the host project's developer decide what is important (what needs to be highlighted) and what's not. 2) The default behavior/default value for some of the variables is a bit different: - by default, none of HIDAPI targets are [installed](https://cmake.org/cmake/help/latest/command/install.html); if required, HIDAPI targets can be installed by host project _after_ including HIDAPI subdirectory (requires CMake 3.13 or later); **or**, the default installation can be enabled by setting `HIDAPI_INSTALL_TARGETS` variable _before_ including HIDAPI subdirectory. HIDAPI uses [GNUInstallDirs](https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html) to specify install locations. Variables like `CMAKE_INSTALL_LIBDIR` can be used to control HIDAPI's installation locations. E.g.: ```cmake # enable the installation if you need it set(HIDAPI_INSTALL_TARGETS ON) # (optionally) change default installation locations if it makes sense for your target platform, etc. set(CMAKE_INSTALL_LIBDIR "lib64") add_subdirectory(hidapi) ``` - HIDAPI prints its version during the configuration when built as a standalone package; to enable this for subdirectory builds - set `HIDAPI_PRINT_VERSION` to TRUE before including HIDAPI; 3) In a subdirectory build, HIDAPI _doesn't modify or set any of the CMake variables_ that may change the build behavior. For instance, in a _standalone build_, if CMAKE_BUILD_TYPE or BUILD_SHARED_LIBS variables are not set, those are defaulted to "Release" and "TRUE" explicitly. In a _subdirectory build_, even if not set, those variables remain unchanged, so a host project's developer has a full control over the HIDAPI build configuration. Available CMake targets after `add_subdirectory(hidapi)` _are the same as in case of [standalone build](#standalone-package-build)_, and a few additional ones: - `hidapi_include` - the interface library; `hidapi::hidapi` is an alias of it; - `hidapi_winapi` - library target on Windows; `hidapi::winapi` is an alias of it; - `hidapi_darwin` - library target on macOS; `hidapi::darwin` is an alias of it; - `hidapi_libusb` - library target for libusb backend; `hidapi::libusb` is an alias of it; - `hidapi_hidraw` - library target for hidraw backend; `hidapi::hidraw` is an alias of it; - `hidapi-libusb` - an alias of `hidapi_libusb` for compatibility with raw library name; - `hidapi-hidraw` - an alias of `hidapi_hidraw` for compatibility with raw library name; - `hidapi` - an alias of `hidapi_winapi` or `hidapi_darwin` on Windows or macOS respectfully. Advanced: - Why would I need additional targets described in this section above, if I already have alias targets compatible with `find_package`? - an example: ```cmake add_subdirectory(hidapi) if(TARGET hidapi_libusb) # see libusb/hid.c for usage of `NO_ICONV` target_compile_definitions(hidapi_libusb PRIVATE NO_ICONV) endif() ``` hidapi-hidapi-0.11.2/BUILD.md000066400000000000000000000100311416457066600154600ustar00rootroot00000000000000# Building HIDAPI from Source ## Table of content * [Intro](#intro) * [Prerequisites](#prerequisites) * [Linux](#linux) * [FreeBSD](#freebsd) * [Mac](#mac) * [Windows](#windows) * [Integrating hidapi directly into your source tree](#integrating-hidapi-directly-into-your-source-tree) * [Building the manual way on Unix platforms](#building-the-manual-way-on-unix-platforms) * [Building on Windows](#building-on-windows) ## Intro For various reasons you may need to build HIDAPI on your own. It can be done in several different ways: - using [CMake](BUILD.cmake.md); - using [Autotools](BUILD.autotools.md) (deprecated); - using [manual makefiles](#building-the-manual-way-on-unix-platforms). **Autotools** build system is historically first mature build system for HIDAPI. Most common usage of it is in its separate README: [BUILD.autotools.md](BUILD.autotools.md).
NOTE: for all intentions and purposes the Autotools build scripts for HIDAPI are _deprecated_ and going to be obsolete in the future. HIDAPI Team recommends using CMake build for HIDAPI. **CMake** build system is de facto an industry standard for many open-source and proprietary projects and solutions. HIDAPI is one of the projects which uses the power of CMake for its advantage. More documentation is available in its separate README: [BUILD.cmake.md](BUILD.cmake.md). If you don't know where to start to build HIDAPI, we recommend starting with [CMake](BUILD.cmake.md) build. ## Prerequisites: Regardless of what build system system you choose to use, there are specific dependencies for each platform/backend. ### Linux: Depending on which backend you're going to build, you'll need to install additional development packages. For `linux/hidraw` backend you need development package for `libudev`. For `libusb` backend, naturally, you need `libusb` development package. On Debian/Ubuntu systems these can be installed by running: ```sh # required only by hidraw backend sudo apt install libudev-dev # required only by libusb backend sudo apt install libusb-1.0-0-dev ``` ### FreeBSD: On FreeBSD you will need to install libiconv. This is done by running the following: ```sh pkg_add -r libiconv ``` ### Mac: On Mac make sure you have XCode installed and its Command Line Tools. ### Windows: On Windows you just need a compiler. You may use Visual Studio or Cygwin/MinGW, depending on which environment is best for your needs. ## Integrating HIDAPI directly into your source tree Instead of using one of the provided build systems, you may want to integrate HIDAPI directly into your source tree. Generally it is not encouraged to do so, but if you must, all you need to do: - add a single source file `hid.c` (for a specific backend); - setup include directory to `/hidapi`; - add link libraries, that are specific for each backend. Check the manual makefiles for a simple example/reference of what are the dependencies of each specific backend. NOTE: if your have a CMake-based project, you're likely be able to use HIDAPI directly as a subdirectory. Check [BUILD.cmake.md](BUILD.cmake.md) for details. ## Building the manual way on Unix platforms Manual Makefiles are provided mostly to give the user an idea what it takes to build a program which embeds HIDAPI directly inside of it. These should really be used as examples only. If you want to build a system-wide shared library, use one of the build systems mentioned above. To build HIDAPI using the manual Makefiles, change to the directory of your platform and run make. For example, on Linux run: ```sh cd linux/ make -f Makefile-manual ``` ## Building on Windows To build the HIDAPI DLL on Windows using Visual Studio, build the `.sln` file in the `windows/` directory. To build HIDAPI using MinGW or Cygwin using Autotools, use a general Autotools [instruction](BUILD.autotools.md). Any windows builds (MSVC or MinGW/Cygwin) are also supported by [CMake](BUILD.cmake.md). If you are looking for information regarding DDK build of HIDAPI - the build has been broken for a while and now the support files are obsolete. hidapi-hidapi-0.11.2/CMakeLists.txt000066400000000000000000000042731416457066600170520ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.1.3 FATAL_ERROR) if(NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) add_subdirectory(src) # compatinility with find_package() vs add_subdirectory set(hidapi_VERSION "${hidapi_VERSION}" PARENT_SCOPE) return() endif() # All of the below in this file is meant for a standalone build. # When building as a subdirectory of a larger project, most of the options may not make sense for it, # so it is up to developer to configure those, e.g.: # # # a subfolder of a master project, e.g.: 3rdparty/hidapi/CMakeLists.txt # # set(HIDAPI_WITH_HIDRAW OFF) # set(CMAKE_FRAMEWORK ON) # # and keep everything else to their defaults # add_subdirectory(hidapi) # set(DEFAULT_CMAKE_BUILD_TYPES "Debug" "Release" "MinSizeRel" "RelWithDebInfo") if(NOT DEFINED CMAKE_BUILD_TYPE OR NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "${DEFAULT_CMAKE_BUILD_TYPES}" FORCE) endif() # This part is for convenience, when used one of the standard build types with cmake-gui list(FIND DEFAULT_CMAKE_BUILD_TYPES "${CMAKE_BUILD_TYPE}" _build_type_index) if(${_build_type_index} GREATER -1) # set it optionally, so a custom CMAKE_BUILD_TYPE can be used as well, if needed set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${DEFAULT_CMAKE_BUILD_TYPES}) endif() unset(_build_type_index) # project(hidapi LANGUAGES C) if(APPLE) if(NOT CMAKE_VERSION VERSION_LESS "3.15") option(CMAKE_FRAMEWORK "Build macOS/iOS Framework version of the library" OFF) endif() elseif(NOT WIN32) if(CMAKE_SYSTEM_NAME MATCHES "Linux") option(HIDAPI_WITH_HIDRAW "Build HIDRAW-based implementation of HIDAPI" ON) option(HIDAPI_WITH_LIBUSB "Build LIBUSB-based implementation of HIDAPI" ON) endif() endif() option(BUILD_SHARED_LIBS "Build shared version of the libraries, otherwise build statically" ON) set(HIDAPI_INSTALL_TARGETS ON) set(HIDAPI_PRINT_VERSION ON) add_subdirectory(src) set(BUILD_HIDTEST_DEFAULT OFF) if(CMAKE_BUILD_TYPE STREQUAL "Debug") set(BUILD_HIDTEST_DEFAULT ON) endif() option(HIDAPI_BUILD_HIDTEST "Build small console test application hidtest" ${BUILD_HIDTEST_DEFAULT}) if(HIDAPI_BUILD_HIDTEST) add_subdirectory(hidtest) endif() hidapi-hidapi-0.11.2/HACKING.txt000066400000000000000000000005031416457066600161070ustar00rootroot00000000000000This file is mostly for the maintainer. Updating a Version: 1. Update VERSION file. 2. HID_API_VERSION_MAJOR/HID_API_VERSION_MINOR/HID_API_VERSION_PATCH in hidapi.h. Firing a new release: 1. Update the Version (if not yet updated). 2. Build hidapi.dll/.lib for x86/x64. 3. Upload Windows binaries to Github release page. hidapi-hidapi-0.11.2/LICENSE-bsd.txt000066400000000000000000000027761416457066600167110ustar00rootroot00000000000000Copyright (c) 2010, Alan Ott, Signal 11 Software All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Signal 11 Software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. hidapi-hidapi-0.11.2/LICENSE-gpl3.txt000066400000000000000000001045131416457066600167760ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . hidapi-hidapi-0.11.2/LICENSE-orig.txt000066400000000000000000000004101416457066600170600ustar00rootroot00000000000000 HIDAPI - Multi-Platform library for communication with HID devices. Copyright 2009, Alan Ott, Signal 11 Software. All Rights Reserved. This software may be used by anyone for any reason so long as the copyright notice in the source files remains intact. hidapi-hidapi-0.11.2/LICENSE.txt000066400000000000000000000010221416457066600161220ustar00rootroot00000000000000HIDAPI can be used under one of three licenses. 1. The GNU General Public License, version 3.0, in LICENSE-gpl3.txt 2. A BSD-Style License, in LICENSE-bsd.txt. 3. The more liberal original HIDAPI license. LICENSE-orig.txt The license chosen is at the discretion of the user of HIDAPI. For example: 1. An author of GPL software would likely use HIDAPI under the terms of the GPL. 2. An author of commercial closed-source software would likely use HIDAPI under the terms of the BSD-style license or the original HIDAPI license. hidapi-hidapi-0.11.2/Makefile.am000066400000000000000000000022141416457066600163370ustar00rootroot00000000000000 ACLOCAL_AMFLAGS = -I m4 if OS_FREEBSD pkgconfigdir=$(prefix)/libdata/pkgconfig else pkgconfigdir=$(libdir)/pkgconfig endif if OS_LINUX pkgconfig_DATA=pc/hidapi-hidraw.pc pc/hidapi-libusb.pc else pkgconfig_DATA=pc/hidapi.pc endif SUBDIRS= if OS_LINUX SUBDIRS += linux libusb endif if OS_DARWIN SUBDIRS += mac endif if OS_FREEBSD SUBDIRS += libusb endif if OS_KFREEBSD SUBDIRS += libusb endif if OS_HAIKU SUBDIRS += libusb endif if OS_WINDOWS SUBDIRS += windows endif SUBDIRS += hidtest if BUILD_TESTGUI SUBDIRS += testgui endif EXTRA_DIST = udev doxygen dist_doc_DATA = \ README.md \ AUTHORS.txt \ LICENSE-bsd.txt \ LICENSE-gpl3.txt \ LICENSE-orig.txt \ LICENSE.txt SCMCLEAN_TARGETS= \ aclocal.m4 \ config.guess \ config.sub \ configure \ config.h.in \ depcomp \ install-sh \ ltmain.sh \ missing \ mac/Makefile.in \ testgui/Makefile.in \ libusb/Makefile.in \ Makefile.in \ linux/Makefile.in \ windows/Makefile.in \ m4/libtool.m4 \ m4/lt~obsolete.m4 \ m4/ltoptions.m4 \ m4/ltsugar.m4 \ m4/ltversion.m4 SCMCLEAN_DIR_TARGETS = \ autom4te.cache scm-clean: distclean rm -f $(SCMCLEAN_TARGETS) rm -Rf $(SCMCLEAN_DIR_TARGETS) hidapi-hidapi-0.11.2/README.md000066400000000000000000000150611416457066600155660ustar00rootroot00000000000000## HIDAPI library for Windows, Linux, FreeBSD and macOS | CI instance | Status | |----------------------|--------| | `Linux/macOS/Windows master` | [![GitHub Builds](https://github.com/libusb/hidapi/workflows/GitHub%20Builds/badge.svg?branch=master)](https://github.com/libusb/hidapi/actions/workflows/builds.yml?query=branch%3Amaster) | | `Windows master` | [![Build status](https://ci.appveyor.com/api/projects/status/xfmr5fo8w0re8ded/branch/master?svg=true)](https://ci.appveyor.com/project/libusb/hidapi/branch/master) | | `Linux/BSD, last build (branch/PR)` | [![builds.sr.ht status](https://builds.sr.ht/~z3ntu/hidapi.svg)](https://builds.sr.ht/~z3ntu/hidapi) | HIDAPI is a multi-platform library which allows an application to interface with USB and Bluetooth HID-Class devices on Windows, Linux, FreeBSD, and macOS. HIDAPI can be either built as a shared library (`.so`, `.dll` or `.dylib`) or can be embedded directly into a target application by adding a single source file (per platform) and a single header. HIDAPI library was originally developed by Alan Ott ([signal11](https://github.com/signal11)). It was moved to [libusb/hidapi](https://github.com/libusb/hidapi) on June 4th, 2019, in order to merge important bugfixes and continue development of the library. ## Table of Contents * [About](#about) * [Test GUI](#test-gui) * [Console Test App](#console-test-app) * [What Does the API Look Like?](#what-does-the-api-look-like) * [License](#license) * [Installing HIDAPI](#installing-hidapi) * [Build from Source](#build-from-source) ## About ### HIDAPI has four back-ends: * Windows (using `hid.dll`) * Linux/hidraw (using the Kernel's hidraw driver) * libusb (using libusb-1.0 - Linux/BSD/other UNIX-like systems) * macOS (using IOHidManager) On Linux, either the hidraw or the libusb back-end can be used. There are tradeoffs, and the functionality supported is slightly different. Both are built by default. It is up to the application linking to hidapi to choose the backend at link time by linking to either `libhidapi-libusb` or `libhidapi-hidraw`. Note that you will need to install an udev rule file with your application for unprivileged users to be able to access HID devices with hidapi. Refer to the [69-hid.rules](udev/69-hid.rules) file in the `udev` directory for an example. #### __Linux/hidraw__ (`linux/hid.c`): This back-end uses the hidraw interface in the Linux kernel, and supports both USB and Bluetooth HID devices. It requires kernel version at least 2.6.39 to build. In addition, it will only communicate with devices which have hidraw nodes associated with them. Keyboards, mice, and some other devices which are blacklisted from having hidraw nodes will not work. Fortunately, for nearly all the uses of hidraw, this is not a problem. #### __Linux/FreeBSD/libusb__ (`libusb/hid.c`): This back-end uses libusb-1.0 to communicate directly to a USB device. This back-end will of course not work with Bluetooth devices. ### Test GUI HIDAPI also comes with a Test GUI. The Test GUI is cross-platform and uses Fox Toolkit . It will build on every platform which HIDAPI supports. Since it relies on a 3rd party library, building it is optional but it is useful when debugging hardware. NOTE: Test GUI based on Fox Toolkit is not actively developed nor supported by HIDAPI team. It is kept as a historical artifact. It may even work sometime or on some platforms, but it is not going to get any new features or bugfixes. Instructions for installing Fox-Toolkit on each platform is not provided. Make sure to use Fox-Toolkit v1.6 if you choose to use it. ### Console Test App If you want to play around with your HID device before starting any development with HIDAPI and using a GUI app is not an option for you, you may try [`hidapitester`](https://github.com/todbot/hidapitester). This app has a console interface for most of the features supported by HIDAPI library. ## What Does the API Look Like? The API provides the most commonly used HID functions including sending and receiving of input, output, and feature reports. The sample program, which communicates with a heavily hacked up version of the Microchip USB Generic HID sample looks like this (with error checking removed for simplicity): **Warning: Only run the code you understand, and only when it conforms to the device spec. Writing data (`hid_write`) at random to your HID devices can break them.** ```c #include // printf #include // wprintf #include #define MAX_STR 255 int main(int argc, char* argv[]) { int res; unsigned char buf[65]; wchar_t wstr[MAX_STR]; hid_device *handle; int i; // Initialize the hidapi library res = hid_init(); // Open the device using the VID, PID, // and optionally the Serial number. handle = hid_open(0x4d8, 0x3f, NULL); // Read the Manufacturer String res = hid_get_manufacturer_string(handle, wstr, MAX_STR); wprintf(L"Manufacturer String: %s\n", wstr); // Read the Product String res = hid_get_product_string(handle, wstr, MAX_STR); wprintf(L"Product String: %s\n", wstr); // Read the Serial Number String res = hid_get_serial_number_string(handle, wstr, MAX_STR); wprintf(L"Serial Number String: (%d) %s\n", wstr[0], wstr); // Read Indexed String 1 res = hid_get_indexed_string(handle, 1, wstr, MAX_STR); wprintf(L"Indexed String 1: %s\n", wstr); // Toggle LED (cmd 0x80). The first byte is the report number (0x0). buf[0] = 0x0; buf[1] = 0x80; res = hid_write(handle, buf, 65); // Request state (cmd 0x81). The first byte is the report number (0x0). buf[0] = 0x0; buf[1] = 0x81; res = hid_write(handle, buf, 65); // Read requested state res = hid_read(handle, buf, 65); // Print out the returned buffer. for (i = 0; i < 4; i++) printf("buf[%d]: %d\n", i, buf[i]); // Close the device hid_close(handle); // Finalize the hidapi library res = hid_exit(); return 0; } ``` You can also use [hidtest/test.c](hidtest/test.c) as a starting point for your applications. ## License HIDAPI may be used by one of three licenses as outlined in [LICENSE.txt](LICENSE.txt). ## Installing HIDAPI If you want to build your own application that uses HID devices with HIDAPI, you need to get HIDAPI development package. Depending on what your development environment is, HIDAPI likely to be provided by your package manager. For instance on Ubuntu, HIDAPI is available via APT: ```sh sudo apt install libhidapi-dev ``` HIDAPI package name for other systems/package managers may differ. Check the documentation/package list of your package manager. ## Build from Source Check [BUILD.md](BUILD.md) for details. hidapi-hidapi-0.11.2/VERSION000066400000000000000000000000061416457066600153500ustar00rootroot000000000000000.11.2hidapi-hidapi-0.11.2/android/000077500000000000000000000000001416457066600157245ustar00rootroot00000000000000hidapi-hidapi-0.11.2/android/jni/000077500000000000000000000000001416457066600165045ustar00rootroot00000000000000hidapi-hidapi-0.11.2/android/jni/Android.mk000066400000000000000000000005351416457066600204200ustar00rootroot00000000000000LOCAL_PATH:= $(call my-dir) HIDAPI_ROOT_REL:= ../.. HIDAPI_ROOT_ABS:= $(LOCAL_PATH)/../.. include $(CLEAR_VARS) LOCAL_SRC_FILES := \ $(HIDAPI_ROOT_REL)/libusb/hid.c LOCAL_C_INCLUDES += \ $(HIDAPI_ROOT_ABS)/hidapi \ $(HIDAPI_ROOT_ABS)/android LOCAL_SHARED_LIBRARIES := libusb1.0 LOCAL_MODULE := libhidapi include $(BUILD_SHARED_LIBRARY) hidapi-hidapi-0.11.2/bootstrap000077500000000000000000000000641416457066600162470ustar00rootroot00000000000000#!/bin/sh -x autoreconf --install --verbose --force hidapi-hidapi-0.11.2/configure.ac000066400000000000000000000171001416457066600165710ustar00rootroot00000000000000AC_PREREQ(2.63) AC_INIT([hidapi],[m4_normalize(m4_builtin([include], VERSION))],[https://github.com/libusb/hidapi/issues]) echo "This build script for HIDAPI is deprecated." echo "Consider using CMake instead." # Library soname version # Follow the following rules (particularly the ones in the second link): # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html # http://sourceware.org/autobook/autobook/autobook_91.html lt_current="0" lt_revision="0" lt_age="0" LTLDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age}" AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT AC_PROG_CC AC_PROG_CXX AC_PROG_OBJC PKG_PROG_PKG_CONFIG m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) hidapi_lib_error() { echo "" echo " Library $1 was not found on this system." echo " Please install it and re-run ./configure" echo "" exit 1 } hidapi_prog_error() { echo "" echo " Program $1 was not found on this system." echo " This program is part of $2." echo " Please install it and re-run ./configure" echo "" exit 1 } AC_MSG_CHECKING([operating system]) AC_MSG_RESULT($host) case $host in *-linux*) AC_MSG_RESULT([ (Linux back-end)]) AC_DEFINE(OS_LINUX, 1, [Linux implementations]) AC_SUBST(OS_LINUX) backend="linux" os="linux" threads="pthreads" # HIDAPI/hidraw libs PKG_CHECK_MODULES([libudev], [libudev], true, [hidapi_lib_error libudev]) LIBS_HIDRAW_PR="${LIBS_HIDRAW_PR} $libudev_LIBS" CFLAGS_HIDRAW="${CFLAGS_HIDRAW} $libudev_CFLAGS" # HIDAPI/libusb libs AC_CHECK_LIB([rt], [clock_gettime], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -lrt"], [hidapi_lib_error librt]) PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.9], true, [hidapi_lib_error libusb-1.0]) LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} $libusb_LIBS" CFLAGS_LIBUSB="${CFLAGS_LIBUSB} $libusb_CFLAGS" ;; *-darwin*) AC_MSG_RESULT([ (Mac OS X back-end)]) AC_DEFINE(OS_DARWIN, 1, [Mac implementation]) AC_SUBST(OS_DARWIN) backend="mac" os="darwin" threads="pthreads" LIBS="${LIBS} -framework IOKit -framework CoreFoundation -framework AppKit" ;; *-freebsd*) AC_MSG_RESULT([ (FreeBSD back-end)]) AC_DEFINE(OS_FREEBSD, 1, [FreeBSD implementation]) AC_SUBST(OS_FREEBSD) backend="libusb" os="freebsd" threads="pthreads" CFLAGS="$CFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" LIBS="${LIBS}" PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.9], true, [hidapi_lib_error libusb-1.0]) LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} $libusb_LIBS" CFLAGS_LIBUSB="${CFLAGS_LIBUSB} $libusb_CFLAGS" AC_CHECK_LIB([iconv], [iconv_open], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -liconv"], [hidapi_lib_error libiconv]) ;; *-kfreebsd*) AC_MSG_RESULT([ (kFreeBSD back-end)]) AC_DEFINE(OS_KFREEBSD, 1, [kFreeBSD implementation]) AC_SUBST(OS_KFREEBSD) backend="libusb" os="kfreebsd" threads="pthreads" PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.9], true, [hidapi_lib_error libusb-1.0]) LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} $libusb_LIBS" CFLAGS_LIBUSB="${CFLAGS_LIBUSB} $libusb_CFLAGS" ;; *-*-haiku) AC_MSG_RESULT([ (Haiku back-end)]) AC_DEFINE(OS_HAIKU, 1, [Haiku implementation]) AC_SUBST(OS_HAIKU) backend="libusb" os="haiku" threads="pthreads" PKG_CHECK_MODULES([libusb], [libusb-1.0 >= 1.0.9], true, [hidapi_lib_error libusb-1.0]) LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} $libusb_LIBS" CFLAGS_LIBUSB="${CFLAGS_LIBUSB} $libusb_CFLAGS" AC_CHECK_LIB([iconv], [libiconv_open], [LIBS_LIBUSB_PRIVATE="${LIBS_LIBUSB_PRIVATE} -liconv"], [hidapi_lib_error libiconv]) ;; *-mingw*) AC_MSG_RESULT([ (Windows back-end, using MinGW)]) backend="windows" os="windows" threads="windows" win_implementation="mingw" ;; *-msys*) AC_MSG_RESULT([ (Windows back-end, using MSYS2)]) backend="windows" os="windows" threads="windows" win_implementation="mingw" ;; *-cygwin*) AC_MSG_RESULT([ (Windows back-end, using Cygwin)]) backend="windows" os="windows" threads="windows" win_implementation="cygwin" ;; *) AC_MSG_ERROR([HIDAPI is not supported on your operating system yet]) esac LIBS_HIDRAW="${LIBS} ${LIBS_HIDRAW_PR}" LIBS_LIBUSB="${LIBS} ${LIBS_LIBUSB_PRIVATE}" AC_SUBST([LIBS_HIDRAW]) AC_SUBST([LIBS_LIBUSB]) AC_SUBST([CFLAGS_LIBUSB]) AC_SUBST([CFLAGS_HIDRAW]) if test "x$os" = xwindows; then AC_DEFINE(OS_WINDOWS, 1, [Windows implementations]) AC_SUBST(OS_WINDOWS) LDFLAGS="${LDFLAGS} -no-undefined" LIBS="${LIBS} -lsetupapi" fi if test "x$threads" = xpthreads; then AX_PTHREAD([found_pthreads=yes], [found_pthreads=no]) if test "x$found_pthreads" = xyes; then if test "x$os" = xlinux; then # Only use pthreads for libusb implementation on Linux. LIBS_LIBUSB="$PTHREAD_LIBS $LIBS_LIBUSB" CFLAGS_LIBUSB="$CFLAGS_LIBUSB $PTHREAD_CFLAGS" # There's no separate CC on Linux for threading, # so it's ok that both implementations use $PTHREAD_CC CC="$PTHREAD_CC" else LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" CC="$PTHREAD_CC" fi fi fi # Test GUI AC_ARG_ENABLE([testgui], [AS_HELP_STRING([--enable-testgui], [enable building of test GUI (default n)])], [testgui_enabled=$enableval], [testgui_enabled='no']) AM_CONDITIONAL([BUILD_TESTGUI], [test "x$testgui_enabled" != "xno"]) # Configure the MacOS TestGUI app bundle rm -Rf testgui/TestGUI.app mkdir -p testgui/TestGUI.app cp -R ${srcdir}/testgui/TestGUI.app.in/* testgui/TestGUI.app chmod -R u+w testgui/TestGUI.app mkdir testgui/TestGUI.app/Contents/MacOS/ if test "x$testgui_enabled" != "xno"; then if test "x$os" = xdarwin; then # On Mac OS, do not use pkg-config. AC_CHECK_PROG([foxconfig], [fox-config], [fox-config], false) if test "x$foxconfig" = "xfalse"; then hidapi_prog_error fox-config "FOX Toolkit" fi LIBS_TESTGUI="${LIBS_TESTGUI} `$foxconfig --libs`" LIBS_TESTGUI="${LIBS_TESTGUI} -framework Cocoa -L/usr/X11R6/lib" CFLAGS_TESTGUI="${CFLAGS_TESTGUI} `$foxconfig --cflags`" OBJCFLAGS="${OBJCFLAGS} -x objective-c++" elif test "x$os" = xwindows; then # On Windows, just set the paths for Fox toolkit if test "x$win_implementation" = xmingw; then CFLAGS_TESTGUI="-I\$(srcdir)/../../hidapi-externals/fox/include -g -c" LIBS_TESTGUI=" -mwindows \$(srcdir)/../../hidapi-externals/fox/lib/libFOX-1.6.a -lgdi32 -Wl,--enable-auto-import -static-libgcc -static-libstdc++ -lkernel32" else # Cygwin CFLAGS_TESTGUI="-DWIN32 -I\$(srcdir)/../../hidapi-externals/fox/include -g -c" LIBS_TESTGUI="\$(srcdir)/../../hidapi-externals/fox/lib/libFOX-cygwin-1.6.a -lgdi32 -Wl,--enable-auto-import -static-libgcc -static-libstdc++ -lkernel32" fi else # On Linux and FreeBSD platforms, use pkg-config to find fox. PKG_CHECK_MODULES([fox], [fox17], [], [PKG_CHECK_MODULES([fox], [fox])]) LIBS_TESTGUI="${LIBS_TESTGUI} $fox_LIBS" if test "x$os" = xfreebsd; then LIBS_TESTGUI="${LIBS_TESTGUI} -L/usr/local/lib" fi CFLAGS_TESTGUI="${CFLAGS_TESTGUI} $fox_CFLAGS" fi fi AC_SUBST([LIBS_TESTGUI]) AC_SUBST([CFLAGS_TESTGUI]) AC_SUBST([backend]) # OS info for Automake AM_CONDITIONAL(OS_LINUX, test "x$os" = xlinux) AM_CONDITIONAL(OS_DARWIN, test "x$os" = xdarwin) AM_CONDITIONAL(OS_FREEBSD, test "x$os" = xfreebsd) AM_CONDITIONAL(OS_KFREEBSD, test "x$os" = xkfreebsd) AM_CONDITIONAL(OS_HAIKU, test "x$os" = xhaiku) AM_CONDITIONAL(OS_WINDOWS, test "x$os" = xwindows) AC_CONFIG_HEADERS([config.h]) if test "x$os" = "xlinux"; then AC_CONFIG_FILES([pc/hidapi-hidraw.pc]) AC_CONFIG_FILES([pc/hidapi-libusb.pc]) else AC_CONFIG_FILES([pc/hidapi.pc]) fi AC_SUBST(LTLDFLAGS) AC_CONFIG_FILES([Makefile \ hidtest/Makefile \ libusb/Makefile \ linux/Makefile \ mac/Makefile \ testgui/Makefile \ windows/Makefile]) AC_OUTPUT hidapi-hidapi-0.11.2/dist/000077500000000000000000000000001416457066600152475ustar00rootroot00000000000000hidapi-hidapi-0.11.2/dist/hidapi.podspec000066400000000000000000000025451416457066600200720ustar00rootroot00000000000000Pod::Spec.new do |spec| spec.name = "hidapi" spec.version = File.read('../VERSION') spec.summary = "A Simple library for communicating with USB and Bluetooth HID devices on Linux, Mac and Windows." spec.description = <<-DESC HIDAPI is a multi-platform library which allows an application to interface with USB and Bluetooth HID-Class devices on Windows, Linux, FreeBSD, and macOS. HIDAPI can be either built as a shared library (.so, .dll or .dylib) or can be embedded directly into a target application by adding a single source file (per platform) and a single header. DESC spec.homepage = "https://github.com/libusb/hidapi" spec.license = { :type=> "GNU GPLv3 or BSD or HIDAPI original", :file => "LICENSE.txt" } spec.authors = { "Alan Ott" => "alan@signal11.us", "Ludovic Rousseau" => "rousseau@debian.org", "libusb/hidapi Team" => "https://github.com/libusb/hidapi/blob/master/AUTHORS.txt", } spec.platform = :osx spec.osx.deployment_target = "10.7" spec.source = { :git => "https://github.com/libusb/hidapi.git", :tag => "hidapi-#{spec.version}" } spec.source_files = "mac/hid.c", "hidapi/hidapi.h" spec.public_header_files = "hidapi/hidapi.h" spec.frameworks = "IOKit", "CoreFoundation", "AppKit" end hidapi-hidapi-0.11.2/documentation/000077500000000000000000000000001416457066600171555ustar00rootroot00000000000000hidapi-hidapi-0.11.2/documentation/cmake-gui-drop-down.png000066400000000000000000000534541416457066600234470ustar00rootroot00000000000000PNG  IHDRcm}sRGBgAMA a pHYsttfxVIDATx^ xMGE%"֮b-U~ZڢJvZBԾ*D-Hk"" I{2ߘsM\$';,g93ܓl2~~~ЙSNicɓ'ϰ0-XF < ﲗdB0̳o>Me333 ^G`0 0aa 0 06 aal( 0 ,Pa9_aa?0qa2>.\b 0ɢ@ae#P&CZa=X0Y( 06NzJ\ cǎ͖-[V;6h@K0MCܹso߾}Ŋ).3tP''ji֭oƁaI7V(?L,P,PV^cɓ$bbb/ޫW/-m ( 0Ϗ P *TZ5\jX7xCK0MCٳ ˗/NIbϞ=۶mXv-|õ40 c= P~g;;;???2?h׮]ѢEk֬~z%K۟:u#w5j8q>}ϟtҋ-\ ޽~D 0iG({e˖uڵ>L28*T0qDG('ڻt%fI#(1)3mtt4&Ν;ރ@+k۷9rغu+e-^8{UV>}:&jժk7czу%w 5\TpBWW=zPägΜ11 4%###NСCqڵkΜ9P#G$7(8)'r(a&XA BjܹsE_~)"WZEI+NJ 1ydJ֬YI&;hWZa҈"P""" ,!BIh 47L[.PfI+(R 2eq(GG\S\pYZ5Zh&J!dJz 4`d͝; **a͚5ZaKK۷o%ǑFq0ڵkP13gN8&axXXGAɴk>aAzFYfʑ# }등{ŋ7oށN<ٯ_S&}ׯc_~~QF>"E,XMF V"##q@j ;vAk׮w:;;'dы{?@dZ ;w #c(; 0j%44Z?y#9^zC͕o+ 0iE/PpLnhѢ[n .D^;v q&M@a&G@EKO:(HbΞ=?LP0Ŋ@$ k׮a 6ݻ7q=Jqyv"""|}}D C )\{W\9yРAZ"<}8P_r%!!! 1x߾}`(a&XS`&4ho`6|r.]ϟ>u9rkK¦MfϞoS.ä(?2 0Jz{`ȑ(Z3<<<(y̙͛ɓuذa@, Bq@(Z(Zݻw7k1o޼*U>|8.R$a[Y dPX0 2(a ?q aۄ Ea0 cˤSc 4ʱcX0 &( =|0 a$Ňa2fȑ#˟?Շ~E-;5J*_j a&S$1L@ə3%K 6ť@O ag 1/Prʥ% +WXb!!!4,Pa+t'ɓjժ򒒼`G)-mS3 cǎ!cħMFY2;;;U֘1cn޼eeŊϗ/_1bhs.]GKv-QDBBf2 ok۶m-J 6$K9 .ܬY9sDGGS(N-!!$\7jE,E Xnsٲeu!Y7mDv2vÇc:::+e}7ŋ8?YfQ<88wrr~6lԩSo!2 d#Pr̹{|ɒ%kE"ZYfͨQ0c?raouKիQ:#22Y 0j&r ˰&A ܾ}r={vЀ'B@@ uV,x|9ȻPr0"(u53,Y J߿߸qc6l֭___ҲeK]v,O>4ӧO߸qヒa,u^VR孷ޢJHHH 0}j&csZ'O\ԨQ^zXc (|AEQ6mh G͝;6EΝ;RJI3ÒH@Gx{{cHwAv{@ Srٳg?}4fJ@@TٳV|y( dA@تU+??mZy5jx  Y0R{Rezϯi(`ĈvvvQ'P @N2f%K,eȐ!T!PCqp ˗#nFlܸn)d~) a V(pd,.s(1119r ѬY3k֬yfJ8q"m ,P&L`ooM۵kpŬeze˖Qh-FcZ D/AAAXMΝ;Gf%KVBx0wj>dAj' $ 8FČ@AݻGv0yd( dA#P0 >\{+V{Z.]R lrww" *nٓzE"y渀FrߩS'5*P._ jicX.P jɓGdfXi(k׮ŠэA)SVɓi[/#9s;( 02(4?l`߾}y5">oRhQf0L:EY/q9r}ΝWYpQBg(=ʑ#|&U6oތ&ƏwPJWҶ[/ׯ\Vy999U^RF U[lư\(7nܸvZiaR( ɟi^t'|Z08›6mZHɓ'oڴ xBٰaΝ;SסeŃVF q|pF;*p”0 ux.n"qruV `!nnn]tA$UXdI${=rVzEŌ(}1-P7o^-C K¼@IنO@1?u=]Vti( WWW 8%eA;PBݻ߸qnժU_u;(~| (]6f̘W^yaE=:N8j(Xnʝ;w,˗%} C!>uTz:C=VA߫:uTXϘzAȝ;xI( KŒ@ZhѾ}{-0 e@F۸q#.|vA62dȐkΛ7RJ:)W/P/߿Yr+?/\0.1SP}~ lڴiΜ9XN>TQѣGE;w˗/G\p\zFcts}B| Cm  E| #+xzyyQaRؠ@I4}]vm޼߷۶m0 e@G`,W4JDDmxsԩ*T@;s-Ϙ@Q&D+_fM ?u]v%K\T;ћ(ȅ۷!QZ5Ћ^$&&7hqbbb AI{{{4ԴiS?uOeBc5-Z$>ffX6(P+phXZj0 @a a@a4,Pal(L 0mIJs# @hd-MX0 &(5f!( 0 Y:0|98p`5F>x'n6 Ĥ6dwlD|S+kJ? KgcԄ¯ g}$$&z?nٖM`DJ$r[y\8w;"!1_:M[گaWp^d[f@E1r&P֞°vfHG?{7xTRXDl?Q goE4,)_-@kΑ@E%Ȏ[//>v r+P8{0ECgV@FƉdu}Ά?zGMvԜqH "HB\ Bs<ȕ䉬wDU&˲ 8`@/y5yEz!"K#V?>P-UqAfcn4W[\kSҒ/G f&ǭ+PV:74 Փjfzli<^tsw(9eϿOnq=XAXS7B?IQ(Mᅡ3"pOBߝņ_0}-XGo5@"@H3hTȹۑP]hThwP@w+$&D ,P8pك dGPj/Һp%Jβ@fϿpuzb \A@1,^Uq!aD"PxMXB:)h\4c7(n}#c'&^ HS~/kā?a'\ !=쬈ȂLhܸ  ?L#PL8,P6>d z8Tb?'n"W?">f/a#bN^(T"CJ[ ̘W ϟޤ\p^t|@h8GcxG( x؏G?NH3pkn4dE7Qol92urJHL~ʉR}JY8pu }пa~g&WÏbd!PZ-H~?>8P,;.]tRʇ践Oaqݨ*P*p>&ȕH (Xxɭb`]P!U` ( 8fj[1oݛ @5,-;~Hᗳ!P4\C? r.!Q" eIܼL&P>i:{LgaD|jb0poϺ @*Vbz_&A.C"v_nS=ZG%.Gʯ U%Q"pͲOE*a^hd6`R'{,PÃ<,AZgЬGrBb"Xhq;eIE/f),8p95 1(Xw^]6E-T I,Y|?n-ȸs1>gBDr_=ZxA&qS"#@Ճy c@ @s {r) z= G7xGc'Pm3 #Py5{OOp!(LVnj@/+XSlذYf+V;va߻wolnܸADϞ=aoڴN_~/\PKx1ӦMIIgϞ-TP&M nݺiƠ"ǎ%Z4lɩSRpqq/DRҊ+jժ/_ "2bj̘1֌ЦM*x5l~%s!@rJRPXb:tt))Ym۶K`.APhQʕ%BDl]ͫVOIuV8ڵKK6,P8p'|5w]lƍ2etYb]1c9'''W@+vE\xo$5y#qqr6QRHY|p۷uV^=j(~y=ƍè%||>Le,8x Y+ 9sn7?/^2%<<\ɚ7o^R0o'UШB)j=6OʥՀ,P m$tҞ}Xp M6aﴴ_~ZnԩSV;,X!e8l&K(7t@ڵi i]с^@@.xyy-vܙē'Oi!J_bE-!QFzA 8P3@ٷoO+YPZh%٧`{@(`رׯ_G|"!`6#P7n\|yeruVhInԩVwyG(ݺu`` ̜9SJKiPP.a. < Ҋ@ɛ7Q(n ҥKhܻwB ɏB@@ & n4뫯Jttt2e:vx…9sN>]@ V(Xα&}ZZ-ϟW޷~ KdddMY&Mu%GV&-4F7##%J[8:`h$FFXV_ErP JKK?p@˖- .,6ҥK[nt 'U[o5p@D0"f Js: )㐃@8$?ع58@ٳ(۶mxp!CÇ# رc J,Iq( ,/G g͚%GGG?v_j&Tw}.]Zn]r*7ݻw\ je͚5|Mʕ̜9S0A: . XbjC)Wŋk߿]3@rm߾}XMQj֭4i<ʵk4k ͟?>e(,(8\]] ,H73ڵkS@`|'//_1ߥKԌ,*aasAAAGYǡ8 5rKI{nXY0 c,==t-[=a~YZ5e0bԨQbŊZ"&rK… 1-OI@A1e?z'P͛7<`-mg(`ƍ矵 m֪UKK @k׮|v̙Ǐ#Yfۋ+Wyʔ)nv*={G \)0b¼ƒ=%V(d:t&J`GAJ $azJvQQQ:uBr޽1q-ZS9>W ݵ1/2yS8r 9r :TK0%P7o5cΝ;W_ѯZѢ'~{׮]L@9w\HHىA!700qY߿tĉyw( 6 qM6Mx("I}F^0u &G=i(s΅W~ׯB]vnnnt ;+V@EqbU~K.CZTQ,(--a@jOK2eݻw!K*5p3O @QH@o|K'{-dɒkEĺG;I///.\@^iC A^`]~=D?zJȍ (yܨQRlש3qbt 3uJΜ9{Li(JDDD{AYVB־}(( ̼eY.P͛TL .,[l-;(DΝ-(g8zc B  BvK1O<1- `@HB"TZ 2i$(vݬY3GGGtڥO ?)@jհ (P^=- %|yQ($:;yz>51(52=v׈ .I~|ʕܹsc%OYa` #;\ E"n:"W`D(Pׯo#e G<*4lPKa THBҊFeqlET^s֭|:,rM }L:k׮! Fd!,ƍBi*WQPpa-a 0H$ʥH}g@Y(3Yf!~|uI{``ƌpغu+.Pl˪U(Y\&MW^iڴs _~*?3>w3^re-m 0Nƍh 1P2r }mÆ ^^^Z*Ry)ҳgOĭ"Pj>>>ӧO/VXRBBBȁ^yy7-Zx6m )=gΜ2XV`y1j[rg} 0%P ; ?t護ުVڷ~퍡hѢ0{l*H@a*D"DҥqOJ(|W^yEKH|Gͭk׮/^Բ ?ucv+)zBU@+ȭ͛\r/S^HS2 ;UtkA(\p D,P1'*rD6nԼ, d\X0۷H| ͕@a4,PƦoR%rHpuZZse2;,P, )?VK0 @+d^2@YlY.c̟?_xW>o1/ ( ck8 \btdS$1L ϞMtvr$rޘ?E~R<%Ұ@aD|-/-!o_~y6Sb_a4ݺuZ*ݛ-[cǎ!cOYA%Kv_~!O^{ n.]67صkeQӦM 8OZ:)iϞ=|Z:))66aҤI91ѦMx6lؐ"2E㏵1v %mwttPB߾}(?9ۗ)S_~oR .IIe˖ѣG9r@q-mI&͛7( cDmܘ|$+d^@Z}M6͝;uְ?!! }`ĉ6c ԰rJ;;;r3 0@K$%}y-_NJ:r*ٷoϟb 7n\D -saxHB۾aÆSVR%{?9תU [l0aBܹ줤 Mj=zȃɓ>n" ꫯ(i`0[#0h-#|}5'&r$?WY0|pX\+T ȵɉ-(;wX Rd>}}dd$J[DϞ=+V%RxEO||<寿"; IIi-[Bݼy̓Q knaݔ4@a J޽Fr\1cf36!P.+U%J(ѥKe˖ԩSZEe4i%b 3 8pdɒ[n%{f͚}޽3z{N9' f͚v޼yC\paG˳ժ)!fp~y6ca+X)qY\,rM-BBb>npeduB)=~ųxbs>|0{jժa5NsXV?l Y2 , |GСC ,x!y#; /^|͚5XTӣipT }ӧO-$i޽)nT(OOODHbر^zݻw8dvJΟ?G _qA3Q0kʧ~Jqh"Ѯ"PpBQh׮]ڵ<}y6w (6}|7a?}.9b(R^}ğ]( hw}WK'%mذ?j>SjSz2|p p2efMʣL2VʠA0 $E(Y2Ν;{_ݻ*Q=FUE3nݺ#GzٲefaVhEǾ#%E~Io߾7*P P؉UY'On  I+@qE@?լY:ꫯj yQhky9@)\c)G6l*.{U#*L*PO+=Ɗ%ի5 >j#EH+=zTKg. HYIO}d):T^eBh .P֮]"t#2)8y$y0CRW4 :u"Sm@aԬY!,,죏>ꋅ\ː H"E3غu 62*T2tP @g+hСCa;( A(MΗ/¼D"D(CMX0Y4 ZtqѢE_u߲eŋ{rJ >mڴҺ;v϶m8pTPҥK?gggqn߿iӦI'O޴i:|pX~ųaOΝ)+«FCjժſalGfyvj̓X0Y4 ,UVWϟڵk…St={:u v@ K޼yݻ<ݻ7&LҺ'Optt$cC}ppg}BʸBAZQdرc!k *~v]J@t)snҤÇ y< T4 B|˖Ct2@Yj =K,<^ AAAZO#DǼDa21Q7_͐N0( egA~y`diX0L'qFFAу_}XA3&W\Z"Ν;WR;w̖-ۡCD@)77{{{« 3ghiTeʢ'OLI=|Z:&fǎKKĄ;88?qs_O֭oPDuZf:,W(o}2e J7l@I~<,Jb{YT)yɒ%1w,>Cɓ{ˋ,P?hY_/#P ?hٲ%,&/5C K.[.>Y PD~i*o޼ʕ11@%vB\om 6,^Xv|66n8HݻSnE6cƌ7|sĈݗ3gNիW?ASn 0DxPP\FAxܨ(ʒƙ3gjiCG56D@,(;vD7neԩwE\i2PH rtt$I@>FԩSEDDDPD*WܦM-a0L޽_3 & QFŊDL ŋ{zz.\ǎ2(ۨQ#D,(Cvvv5?zC۷^:mV`S(\߻wMhBKdvX0 ĉF_5"@/ӡC4 T; RM VÇ(uTTt@NDГ["~)Y%4rHr@mC xJ )bE1AWQݻ-ڵkWMUٳqHF???ʕ݇+Ӳ3;,P1óg8OO_/z$PΝ ٳg)ٯ_?'''xvnWA!b dY"P"""3n8ıL>aÆUV%QS_%7n|MUl/, رoСZ^0)?Qb{w̓yXA̙iڴi?; h у۷jP%4jԨy{P-h cpL@])@ XQ̛7o{]paٲe[ha;(իWB !kԩda Q3صk:7o &Pn}ڵk|I\\%E0bŊJLIId&sxPE $ԫ'ͱ A=z4G@uI۶m .bb ofϞmi&([lE+S\&Mtiڴyv@@@xx8ʼn?ů_~1AAAZ:k JBBB1|}G( 5 JxME ,͉/AЇ6l؀yUVި矑3}t\З*U*$$5,\/^M6H 2mڴE5j+W<==)O|mݺu/|۷oOY!Pɓ'`ׯo( ۺ5hQE$:;?`b,%J(|W^yEKH|G\+QfzQEf͚  [׮]/^Hưnݺy Ԯ][~%~ij@dԩIӪΖ J^F:_ý=*a:<5J( qV(&<@aL"Pܹɓl٢5 a@܉ )С!Mn&ݰ@aU͛75jǎZiX0 #/Ƨt@a28qcú}$ℱ^)Hb X9,ɕ)Bl_XH6!`XD~]ji%.Z!Oe F/iv+nJ]iTP$!tr F(#  aē/WB2?Ѧ)PfAQ96dp"`h/Q-EP5CLLҴi˳')K=K7SLB/ سڒYߺ,u,P'4дESk` SKLjT Q9`Qf=*BAjJ.8ϔTqS+P'TZފDt%6-AFǒ ;GPWM ._vzLٕ-R:@P͏ j@9uV(NʤWB\ Pf 5s>LG¢j@EP:bP_\Զm3ݻղ48#U OaWL2eWj(*!зXh(W@ooMy r+8e0?"/ܨ<(sL^Jti"HQXwvS 4bY\H:9-2Jg22I==.)+&W_)Ev@Gǧ<^ J$AzOCY=ݭFE<(C$|価QX$ArW2qb:Fˊ*p f);&IԾWHcACTBRHД1X0:WA>) ٨/EmY !*7JJ F%bi/Wjz>+S &&I6Œ̏ @B_@MØ`1eWZLfFX ]_maa+L(P 4?p6 8>_)ۋ Pd% 'AhZbFoiK7SLٕ,Wid'ok Ii*1:"ORӗj4"W>R(.hfR Q3,h0-2\ DGGQ M `D>}4ecUJv@qR0u>-B?7T;^"8 J_dh@zqB+o2T(HjGV3@i4M-+oi]q3Uʔ]--b1Kӷ &;50㈓T%f.})jK8ArZ* nQ@s8aDY[d4Aq29(I} 18bP73zL4!G^;^"A}nzP|д)ht *ĭeL.Ź&WKWDm@i4M-H<m@hKFsMNrY0=>9In5%;4: NXSmm O((EFKs FE&))o2 {z #۩@(GX-SVDF;ifX+SCD KydGD% \㯸d':P 5TKӋJn0Z^ $mvea0@51`4q2E`tä#NrDP 'Y0N8 dh^?IAw⊓E3&osѮ4FPW~R@bRNu lPdd`CE/MÈ# /,Svl2%Lu@GmH68SG(h]?`xi}(_PA%hZ@՚ٿJ?MA) *aAE C}8*уV sSTїa^?GX"FgK A){_tRA{}{&>t@a24ኀY wdN3,Ra3'<9# o|(M@"f\lEp@L%(kt(R)P&/mʮl%q~̌Qa JEQXp "0(9#:DMPj1?n(w;-rOբiPh<ţʢ W ; UL/hWQzhK0*vl,ŕ[hIc}~2g&>t@a813 )R=M5jMIENDB`hidapi-hidapi-0.11.2/documentation/cmake-gui-highlights.png000066400000000000000000002270171416457066600236660ustar00rootroot00000000000000PNG  IHDR"1sRGBgAMA a pHYsttfxIDATx^C)( H^Db׿];+bA@ł(M (6"?Ovrdfwg gL͛7BAA!m  &D  B.  iFD   ,Y?vn-  ,7-  ,yV;wRj  , 2+v&lh~  E*y";w[DW  B  2w}-Ň})~)Ut)wroVYlۘ.TR56R۪gx+21^]1#D=۶ {2_smh}9^h88Wr8rǤh{'8$|7B04eKB EE:f $ 3g#<2goHIeN oAdr֭)-kk9Ԉ~26]j~6R?B9>N5W+N够uD=ٷ1"J>UO SO^]WaOy +7]$[^+ʔx ϒg2d^qViFMD5h;d;o{]TJ mAxT׾V]Ms 뉛~SQ_`@/@sKƪ!S/[4;gݛBA+JChєEޯݼ/ͮ_t&>fF[,yVu]5Zk&6jySvf"5_DAڪ.s`!jJ LnE>+~}`sK;&2wI~MN>H|8c1zourWX{/1y5ߗ\Q|ײv=&yqJ]w?U:X3 8W`]#Y9=s:k'VrȞ3~{fKPA)wI=/CArKEYO~fڏ+vT+G~Z[6j jզw75%cދ%$r렂c5nWq TZ *ZtWym Ք6|RK islCI7&΀+50/NQߝ&b܊tIN`9iUW19&\zo#/rJ6k<2 b2wpNWK:NMcs.b~6]TU󷂳۝K;0 STK?K]^݀ +Rt!G9LGv{vo.}oĜ;(ܻ :ƍG'{]+Yz$q}&rp^7%ٸﺁĉH~@}w19.(nYAАʾ-M~,BokT]FXWN-Xc2Zt`[cc,STZn+ 4eEb->:_q>~e.5VݜkċLa#x'G=hTW} hv5wR++)'k%+r$NB_JGPAẠkJ^Tނ֏S ͍.uڥ"PB.7W Ľ swrmt}]Kk7ZH!;U SJq+$i(X#*ú>#~qT\QB+0ԌG~ 3nDQ0_hO8FDMu7|buysy?ZC<,CArG<$?3.ּ{5kpPٜ2鈦ޯx~O$,p#.e@f1okAip7Jkկ3h( T0 hwv`ML8 AC -04!#XfWnUxZFU5QN񏺍gdcxFO賆֚8πoK0 Y'Ad5 A*aO(_?Gt-\XmZhQlQ+_vmV{ :vscBg@pwnJ`ɳ8}5gӢNd "Z4דҮ ^?8M=D-oFe\Y%VxVHsIy^h F5S]amk2o$q?Ad%cvǞݽsl/MmtdYCy"3)@i!zEB] BCa/eU >%xB~퀉oڕԡݾT5^z~{s rf[[~:$Zqd] 4w.fH L%2nVf֟qHxRCjB]7q쾻͵ظZz,:5[Dq~J{ufC+X_D~S/#cT}tU&J(YoΞz2nlDPkl=k8OLW|eɈ:3d#IzPV?*i-CAKhPI$-O"0hu /KsbKƨj6 #yKB~A˾pNIwA8fcnw^e~?{| K\K~p:2 p"T]7WUۿx]U>L}ݧy*v,!oaZݮd|XUZU|>H~A=j׮]ޚ(|/4=sLon|M [Vw$ {7lP[1O7ۊ-֭J.mӅ.BgXku~kFթSGK駟V%JPzR/Wx=X&^lY~ K  B*VN9唘pOM:Ul, =5iĬrouݬ+h`~߯^|E,!C>[u]j…٣}&go  dW_UGu:蠃Tƍu7]رC=~m۶UFfСUVf,?x&˱ˆ 2ոp_m:XqAK5;՚4jXgD[ܹ+ʭjҔs{1F}L# N83ŋo7BAuA`bF@(A(úPw;;Fa͎4/_-EapGQÆ SK.U:~{衇kpUG}d8n8 O?+ "!˹l`/bNPsi]{f{Nqꩧfʛwq5 =yd5p@FKӦMzm3z'\zAAJcy=ztL``n۶Mviޚ(?3,Rep?s5n l_`A}zi1A~G%JB_#r]X<{loM8ۈԒ%KzkСi 6#\1@c(7x'3MH\hD2F ϙ,~j֬ir,˗7)ē  BV %m׮]L(R51Vd}ƕߢ^0|-Aڵk_? y޼ys5|pokb \a $,xq)H@|#Q` o.]Լy?o"]ȃWzB? TUA%3aË#K _1cUٞ[X %QPdvD' !X{q駟3!/?{{ C;˼ߪ4.s;Yx~ͤ?sYgy[Mc)S$P$Yj  eaI?ºd\#]XfV.~Ap$㙡Bg.XhGGb߅n ̢bn<}``*>ԸXpXn]&pmc {tL(€M[Qp]$ Ur]^q 7A?V?:sr_|X67}t3҂2VѫڈPfFa"D׮]spr-L2E";ÀȻrI< ~dvf!Ww܃{*Ô4:|qA?f3S i5 39VgE|"]t` % M7i@K>[9  BVu7|zꩧEqD1/0}VXf6k2_53.23$9^#y&؉ST S-2s~s/!C/k7E,lC3 Kڵ7x ^+@ŊNc54p`>4DC{@t" =|ED0!+>N.7A!;Zvm-P4BAC  B0KZ,   &%ᣏ>R*U2/\?xoKQF_?*RZp&w6lzkr^xA}Rt_}ޖ`*ժU+o)>xt>'L/$!+_+WNޚ(}?g8CL}˻y%Fਣ2g̘aZXw}+V,OC]n]UtioM {L"\hDanݼ5 iE9uVWr:uϟo*BVoW~]xl۶F%{>|ݼմiLYCytLA `;vhz~a믛gg T X9N>[Ν;rƍU%5GvrDM:Ul[#!υn͎Ps7nI4oM믿gm,%K4.,s 1cƨ3<Ӝjժ z)UJ_{=wz={4§TR" 踂W_m~pc9[Rj̙3͇pqG{g>^=zr+kwG7uyk2[n?8z-H2ʲ#8Ŀ b2quA LIŋ;L1 w0yfucw֠AO?zȜ`4F7onKJ%!i&lٲ暏?%J; SJqMY?j׮һsFLX7gy\-Z!(B!]B|W'xB/l:e˖9ꫦA|S60{tLNְIX]7%W߾}M~zRYZ˳>k,TW^yd.Ly .޽{gLTش&:,#>pnTd"HD; GקEU 0rHuE*T0&*ГN:IU\Yn:K|qT/%>sժU m\ EokשS[Vù;t`|1ͅ^hғk vFmAV8;04ibz,;\8l3`qH[re7Y܆B碡h=馛ԍ7hsF߽ݻ/R=jРAp3pkLs#29nPoLqOi " x4!Kh۶mfxh`ŊF\&8!S+.oXo3qBG~Ѕ#Z|:3{wgz̾4l= m+N0u,LK۟|yI {駛h ׮]kY8 #N;4^ ^}A{ /^lF VCK' V; B4e/y # µj2l۠\qռwz(/2c8' [˛uz+~syF#4=.4|Mo)?o/ |MF}i,5k4@{>frc=?c=A{)R$eݒ3>}:?2pcuh1رcDGPム~eFbŊ-"ZDGny8-(>s1օu䩧4+؈#BD;2dȐ0#:#q 9ٳgc/9"Z@d:+fs=ߛ6-`" ԫWĝ"ň#+ٌs -RhQC5tf5k"hyLZ3hD72ýQ2!2QP. qvF"+fe[3!\wu*UĬsCd;O3qm25]Vs.~=8tې4ywqAigcw=Ees]vهs[m~//_e zkb %?uT]sꩧg+x]((]ȗ"&MxC|e7qri,\pn:rzKL9'h<޽)[jemذm9)-V[l^8o)*©P\(xI?[~!vtg/ע1 NQf\mX/nn\N[vيpw:~~|Xvpz{ve'RqQ K׺E7tqЅ?~DiOm7 ?ٳ5QndX0; %>TGYt%[x6jsJ8].3"[K ]<MrͬsuEljp^\^N 7(⌮1nu\oh1udJFd \:n͚5Rs@( `_-ɫ\su3rRȻ ]gэ+_nG@q.Lc=O(CR.Y\WwpkZ ?\0s]s3sA y ?nO?\(ߩȍُ=w:]kXEq7˔qfe w q͎_:7PbQ(}݀ eط~k&nl>3g2mp[K&eD6WC^b֣p\tg'J\NK1cQ1D8M.ʌ *#G@±XJ&_J|Dcyydqq+0{^^O9>޽'O|*~ -etAHpj$;?F׍o7MNc}SBO 29(Kn@Rsl#jua4haA %lܸi(@? e e{m⛱ L?B ez/-/ެOQSnY74on|4-T/61&ʧ _r@~6l~d̠.wvپ/`&ax`̋kl/cv~5Z722 h8$M9(orej3:< O9Z}>kE\05n`*B%e?R> TO* 7p-F'ccxNK$y֜6LFsߴ^Q`D<'!65AoB@ IZa> CK ݿ&@`2." OZlE B:`U neA0AҀQ/`t@EAP# H3{\:B &Xo0/7V iûzTs vMw|exp 5مwqqC% cuem X\º 3r"\XFx7Zj (7م"ѝ#,'|t]2 װ+0!d5&֊H~B%0 3ae<.AYb{5f<~8`&ž7'ALYh}{E<$374.X^Lυ+L2 q b=Z k?|3 q@c>pJnʝY[/cȧ4,ut3CO-zw,sz- 0]3ʡD6lhDw=fu#_e۬czO~簁mSIKc+?˶z&,7LPvC-F .?+ :.+!Up?e[* LΌ#*-|o!.5 *a2WX]Mf"Ec¹6/S2aXȔTXL\T[*~*x$O␗s 1q*t*yBiCM&΁h"O!YMbK&7<)\3[> qD%<.aFZ!fr0 0?XhӸ@t4:Wg4*#  Ozs_?5q('on[ + .$mPZw׮s{&.V"?!CL>BnKAJӐW9@4jE:UPg!V))#8'뮻?7Y Kѣ 9> lT4,VȳCgG 0>g '1"|ihh3,S Xp7=pak}kh6A]0PoRhpu0.!n74DN;nlxvdPwPS48PSǠs {VswZZ>0rkFo)n13o(Usm(TwU]7o<3:_G gl ?>8nYE8Q:~k3{p>;; Ϥ39V\S LǺmt7SiUDLV]nj4Ϭ܌/Y>ns"+63Et-F"'O9qLL uYG8'sQ(f4SNhff۳&e˖Etc9E?W0[yuL䞃x+cB-J2 s霢gqg(H0k.oM,'/1+M~63p ӂ,Y[;[^(Q- BBYTƬC̈bÚ5kL-M}.H;fr O!V &F`SҊ%Dz;VL,Xg\]rzt= =btB^;AG"@%xy$tGAH|dT] eAr%  pAH3{%\aO %_@ ,%\A!8bmaڵICq{zH႐fMY' r႐f/ B9)0hETdapĂ ~HA#kԨ >Qb^ D> . "| c pnɾ-"\AAҌ̎"  ypAAAH3"AA!͈AA4#"\AAҌ̎"yUԶmV BlٲDB AdBAc V~FAOA5XbEo d႐Aޒ ?:C%A>"!Y`jժ$ GMׯ- B.y "e˖ޒ >}p!G/f  BW?\rN:V/{~裏PЈD""?jʕ$H aO Z‹+l 7ܠ;ս{|3".8 ֬Ym$HAmpQ;L۷zWjcƌeǎAi_מ GJ>͛777+P=zPoj֬TRʤIxg!_j֭f`Mk 4l#GT]ẗ́t, B~'/ܹ4~.(w ߥK3g)SLhO:5+Ռ329ǒ%K:\,r9o1_5聢,o͵g͚(oso…λ6͞=[mܸ1X{/&A !IIAd x SWRE}嗪gϞrFw}jرRꮻ2"R~YvIvΝ;W̙y n[EP6mRE#8"f\p!׭[Wr!j-1v_nV9ժU3TK6 ml!Ɨ-[fMcdɒ꧟~2+6eeCՍy~G~5k^7E؟k|x;bG lqO,_ MRyf /^j߾UOo#4ib*X>`nݺz뭷T.]9眣^z%5tPS™~j۶ݻz6Hv}TЀP`B}qPH UܹsM@酪]vFT&XY0f_wQG8x9%{?QB̻O`{CUV-ULƺ}i p^CÚw=LAYBgy}`YQB`˖-ޞ  (_ B^PS)b"itQNiu?~zӵ|iykwq&#,^{M˙f\ {D`cAȏY]X|F%Կ?>cm6Ļ 6ŊFغ,:;ieB2p~:׊o1Byijef$H @YQ|ySna=ۃ $TǏW&L>SQ5ڂ[nXlRG?*0 "gQGu\n= T |͸e n l`f0 fCе,v3♆+–߷ݟ{4޻sޮ=^ 1A $MT8Ar"Jku?t{Q'O ӧN# /3C-!wAc3*Н'[A{|QUr ႐`^o>hANa"FD   )  ypAAAH3"AA!͈AA4#"\AAҌ̎"y%Kƍ?ApoT55H9.XP nVZ5o ryrҥK?C9֚5kv{7^႐̚5Ko[A®]_9 F/TӦMo?{$Q&M7π.yt] d>/f[бj."\AGʉ BD  B x {wH႐裏TJ|?R0hԨz).\] fsޚ^P:6~Ws_%k„ 4hnVo)vUꪫTV`ϟoߜ&;(he_TH%!+ߌ>߽5QxDcn[-D B9r;v}'&~go=U馛̴rתvyKQM\r6  Gu;c 2Xb~Dc=c"<'ª[*]&'T+VC^\3 nݺyk 4 iE9uVWr:ud,TJ7fY۶mYIo]Rɏ-~,瞫nD7lxkʑc jx^g}z饗LU1b9u.Kж()X1OQjΝfDZmz`qƪDޚܣt S-[zkh\~RbN: _tSq7Έ$hLm跚_pdɒ;yܹVu?fugTZSO*Uwk ٳUJ2FIX+jۅs1ޒR3gTwo>v@w;;sÔEW_}ܞ>ڸ.[[̴QrL@[og}Qq&]wu:ĥGZ/^\vaF-=!Lb@sS\<~'Cs ȨQTyfs$nɇ~+T~ t]s9Rٳgkf9HG_wuƟVM6Se˖5q{[<&͈N:IX۲{Æ >{5kx[u饗?qOУ;µ:tpyaߦMcEoٲE]|&.7xcÒH> ;wse˖uL>^߿Ya :6QڵkNz O_~ŔAH==<'nP.Q/`!]!Ua w-޼}5z.JEi.>yY0J\ 3݆{Θ -Ƴ:n3$!u2g<ԩc~z[8ZJ]r%ҡ_`ٖ }C9\_(qm/^,q?^mELRQUX.t曦dtJĜ9s(ϙ<駟z[]C({Y\S*J7TB . LAc?rGanN8'PٵpnذA]s5&}ه }rVC*Q ix7w?/R=jРA}'oqEs#29nPb*+W{Bb"G\Q1yx. ]tIm۶e  ΋ń8@"h"^[c}> ܂َ`F+j%?Q{9/ [=ڤ CsO<&~q믛{XO̻6_4ý@@ĺ?,lz\?!_S>/)ɋ~ Opo:L#+G<"ϟiҍF$Q(;y_-Zd[v44H{8BЈxiLl]7D4ѰES~X[}ht#iAc{ʳQ{ヲD1 xwHdǺ!P'堅w2FR O;lCp },$\zjo2h-?KF;s~y:ү_{|zG砎%|'(-RH.̲N~8B ]!ɱf1lcǎrF~nGt$f HŊ# 4k]Dtacӂ9.,"O=TDW]Fteщѭ#C 2 n8d\ 93܄5k֘3uDngaY'dD7>GM.|uJ:c?]Ft9VWX{K,16^]F03s^-B#y̺r6r*s… GWyG#CJ̤y+% iӦEf͚"%#@z]D8hiL2ݸ27ߘk>SN9%c75>эȫхYDYu¤Q"H1EW-$MzY2,s,Wzҥ#`9}.R 7o<7HD"] 9-3Jh!o]eiM>hbqF|ךwXWf1+JβfBZ>-&2O]Eh`iqoKu ۴("X55QWE7F#-qƑO<[rmxY&n0K&q;(䍢EFHdƟn6P^\p杷og}wcu,,?,nGP6u#gy,u.ٷo_oM&"8FM#n8s͛7[->.R=ow24iiӦMD*oM,6j!歉Dtܬ"[GGy[{γϩ֭[iժ7ȏ_ yr$/ ^24t,_PN`n(H˼o7yiԃAglc=zsPFy穻(Kh#&L٨En>3L"]nЛ=C_ԇyh#S&Roذ!@˽Fy^ݘ3e޽{gG~['t.v{jѢE2u5Ǒ,SG_:t`XЍng(ĵc=M+hQ0ud0_w X `9r5%HkV)]XaZuAZ͚55LdudE`݈0d1,| u")֩d캰3݆sRG,X{8?3ڥk2:&%=3Rd:uZ?i|ǀSκB6V8z[LZHoXخp K5xj:G&˔aUX\k?duK {U9µa=8]bzfqN ]jز`ӓ`#=ĩX7{gZTgBb-Xa ]ۆ:o=va{u.Xi|.XxH /jz|/x^kKY(\xpk"P`sZ~⥕] By= `{.-Ayr}7¢+h'dY+aysf^衣NH7Zd Q=AAǹ!,A& KBScޠݏ WA.SWYYCMzQ/KbѫKOy^zaɣXI.[h]!.o ۳!U*-|kE8)MBX@ۀER"덂d`2 l(0jqaᾸ03RI)KCE76^aL ܸ:*(*`E{_tO(~q-{ߥExŏ"~^3[I+ @P]wXa :W:{nhPa I4^Gn* |hq (:o@q.T*.P.{03Q b3N9\ORequCJ]qFJmv[o2jס}R%&qHQimpHd *P`qv+Åcc)|PbHr<_`O;;d:7ZJ-Jg+ )H^j |w_ߏGGL>#Ӹ&V@)CA"#TA:8<E D B =LKaJ\IOqEC/J Ay^ƺ # Kxi&~DfU(]=o&~/o6Hdi {.o$JTi?rG [ta 0T8g5XxC|~om']b9sȧ dݐ'&X)H_wQpo6-cԙm/XeI6>h);?n=1F$ۼ.h o$;'1#Jŀs4$&-dCSN1dddD#A% FEA{.wHI',Y! (^fQgE|He^;E?l9?AaB1hnݳ }wm[K5,DNZ8:dBw~Al'X!2'#](+=7pteMa],j\M$I55+ #ɗXb}̾U =F0<~+,`}::Rr!t(,RzA^7xH#f nȏ,ӃT'Lb#ǤrDӳ@i!Z?~O l!X?DF,\م j!^h2΃5Fq*9G%QZe|F

5|nZWP秜stTI*YO7ߏ5 ̱KCw)c51QҍKCBc@!*tZTJY& ¹(T2a"3x^)l/PHSp]ޑt_7g+ D*;l"zEgN3;鄠a;{# hȿ/SE/tf6HaB´2٧Os-e4S/YSP f+-nW7`B]CpO1e$'pv#I iqgcJ#v~k!f1.4tNx{LQ4g/T}B2jLH> LE~T]kn´䡼&YU~i@)r#X(pۘ^5fSG:1vؘ}Yga=qfdJIw-d͔ۮctC*Ubefbh }pB3%q1A g~O?L7`nc^4tv6]jUƺQFz}GQO>d>L]:oitd(b~A`#<ƎeZ`B/'[(0uR~,M f r;;Q/πfI"_ w(QAO$$' B, Ă+>qBxZxgoGn_^%_T,"!͈M>AdBbZ3PD`A3B>&tu 0S "S'ȕ$'Ej!.iz( pS}Fhx0#Vp@> ?}[$"ykyApx55a'>wRp^$lC|AA ˜uF[N-  fd`   1"AA!͈AA4#"\AAҌpAAAH32;Jq;s9NA z'۶mKzalٲDB ޚ`س[vI(\V`tR7A{(_Gfͼ5B~7㕝p)[x16XbEoM,R$+;@Dxf͚ڷo-l մiSoIcʤI▝jР$̟?_zR,R$*;@ Ož5$\wHTvBt n Cʁ=7>S~T6l:㽥O?M6yKStiUNoI.ʗSO=[+Ç[v.X@j[`Mׯ-"K% "ƒB[ͽ%!HzL(_z- #F$-[!ӧ'R$*; %w_wqJ*zwީv{܄QY a5j)o j⋍UaO~Pʕ3JP< !uޚ00W_xԍJ+SOB΅wzT\YR0lgDs=Aa^;vz뭷ɓՌ32UsQ_}_5P}*츠D֭[n±e36?3}!"㏽5{_L\+±r)^Pvի͈ߒ%Kz{KNC|FtI!駟^z)x; E"s$Q"h_1SAK6,APX1ӣt/7ΈmtO5{lB͜9LY6\VXa1ԧxSq&TZ՜18L\?^ؼy6r;$#17|g/Ad5)RDիWό ھ'+ƒe7J\~uH8  mf :Loa ۴ic^ n]QFꡇRz]v/]yO>LBDQ[n&Nm Zjk[K>}L R#>#uYgw}mJ=&۶mw9Co-E@E_vکJ*:4x`ף\~qOaeʕޖ LNuT#K:7]t4hɏ\p?~ٞ E\d;n>lh"o}Q#κu}]u9nxȑ#ͽD#󪫮_Xiu鷆λL1p@uS[nPs'ͭzr_6"f%eOH;PV=O-e qG;i$x \`x8}xwvZ $}-3;P~ރ'LgmO@zSL^̠vanvΝ;gƁ}BZ 3܃M? 9)Ə7,myAIN{%@,PQbԩ -DXtaq dD8V9*V:T8X T@ V|!@a@zQJ[[K *n:&˸RiyI} y)wֹ4  K㇆+KB-"gϞޚF= -y1,T&L0"\ L[B^~f'x<4U+:x7oܢ6kiz'@y==4pD e*< \/ݏ|OFqg}6?ru¥F=Z&_PyoaD@y1c{,A@#G~7L ̦M캠7i%SӓJa"͘1cL^\ =>!Up^*I"qK&C¶zPBEꤲ%V#%0%%g2Dk-H02ן-.E/Zb. ava `1z߅HKOC%'3T4Pa)-dh"vZñƒpu( @a- v7 un@p- 24 /Vx 6ϲ@>^\|ϊq 6d;>Bj]%y?yD,0d`@ /v]O0D8&"tccҖrc蕰!C) 1CjO1laeF^m5;Qܰ'myR%*OK#mB28/"Vt?dh|e`;ж-眉>L\xI@BtEu2慣 Ÿ_l3Z8ara^73x%q,O5XqM6rӃ? $ˁ 0҃T -oruHaʭxy)ylWpGoQ[@4P9u=C,Pi!02TtLep>Vvv]{MT|vaGǮlc'HdkRYctLP@Y! l :c'a{'M:~!: aRv=bw.s<8w /+ʹoA>n@ȻP.|&l ]s6}/ԵgCSn4撎t{sݡFU9->7O*:ۀ˜Bn! ܍w6>,a@ H#͟U"qGb{ ЛBQX!NC([l#! zqr^+m@ pM=?au 7%s}A~npAԻ,4xЈ#?[][P>kրaakxMu=^wϏ}e 2y]uS:8z>ؖ0q+J 2},' {#C[p@lWy֤ڼ1L>/&0{.* S *\!P"\(8+@ qGsY( ql,W*/t/pdC/~”[nMf;16o``f"}jb <#X*=XQqK67X-'[ON+D\Q : XilCk8rP".~~#ޱ83]a+gbP nTҖ. ¤wЄ)K7x4P,K%`3ܳC~6n4kCÄ`_P4*)We'Β !>xo w;_O }!C_PHF16ci7=F% ρXE"iZ,:D DD.7gv?]ήv9DKbn#ϠO*bm౸lxN҈4/($#1Alwy^뒂>}Xu4?@Y͔4Xop'[oB]N/x(Өgu9R%af*^(#2h)Ke7`qʔ JbCХFE (*E"=[>8Dh mC#zw "!(cXBc,r.F!ę qHqzeF+X e;03rN}]\DyB ҈1\aQǖ.v!7Sn"4 p&6Yr 4r3Ѐ"o"xWȣn~4FȻa#jcw w?As C8A!RynOÚ=;&Źp9M=ICsu+c68`Ad<͘1:"%Ic?7jP~+xG0p}[֧ FH<b;RQcYS3qu^cF8тޥWB5uGNPHgfQX< P2!'xg|mGA(,T-=(_˴",V:G쇦\!AB"4~\xxB[FZ""܇`D/DL(_ +…쁘g-ga""Wv"G쇲?N e4L !p)<c"d[#Хj ݭ ]m鱧 oz}K/-,jI%'EPpZN/OƘ`i 𽓴= /t V/zqOm.gP.a"<Ǎ$0E.?<C$Y)¼{IVv$!|S,`*Rm%&H ᇟHK9瑬Oc={ɦ+HI" 'Q[o-h N`{ '  ԓRXH)^@a?,%i(y|}Dʁ=0ewЂǴ J"$ >Lŀ/F 1C[DS0SY%.!Bdڤ)<” > yFJÛ0ǰ 08Eʁ=epAAAH320SAA  fD  B.  iFD   QOAA! -[~e&;zK ~'UNoIAt2qĔD  B)r뭷`ٲezޒ >}8[# B:YtR%Jx%\AAL\D2w߭gյkט38CwqK !BϞ=UÆ zc5ߺukv7| $HTIg3gzK Wh3PsܹޚڵSN9%Sט  !%ʗ/o,k>hm >kUti5dȐL&OVXzi[  $H8JJoY3F͟?[3fO?]vaujȑ( RJR ,P{UVjΜ9j˖-.S+VTkV_|a\`8VW_}9N(%KTݻwWCaλ١C_K/LmԨQ##;vx{g3[W^sȻ* [uiZj%/#T/RW^yz=ܓq%޲]wU $M!UR.\Xx㍦^x6|QoSꮻ2b_*a;SSO=e,kEU=:K/d`Fԝwީڶm{=s?_F!JNTr矫Ǹ.fO`-˻*A *q?[O%my,éHovj*nN4Iq^z6*Y,ա>u'zk֭Qz4ibUʻl۶t_qA{}3;ƍS-ZP5k4iiM_~n3B~kR-Z: BBo+#/wŋQ/ 1ul9眣*TyoMmTsh5o܈۷{{d{{c34A;>LI駟.-X͌ Ф*mޤ"  $&ew;݆Ele>]v׹2{Ô)SQp+A=.)4 ;d3S;vlw]F>͛7y,˻*A *YÅ^h!uł kڋ/hʕ+MvNNIF7:/X 4c͖-[%m L5%YpaIו'|Ro74e\UAAO(KU2֧]gL1XR%3˿ٮD8ѣզMR sYc%H؛AիW7f݆?8ӈ22S&3y6mI'dDG$H ao w`f"rA ~d>}\=AAH?3=.En{Ute  yAAH?*UxKS%>   d(|z^ BpRqG+7n- anoD8S ~̙3"   +9"p)vqADT+IvzkAAH'~zΈ}ZՂ fSulr׮j}ٲRa:r8oIAD63ղD!oROΝ_[RDѢRԹ5k`,5gOUX1omgVY+_~Ftꤚpڱk:|uK#0q+qX2RԮ*a\H-ՂhªjҪuŊFr{YAڶU]VFYej3jg'…v%%Trԍq>=}f}OXsj"T+:孉şn^~կU䭍,΅1߈:Y󖔚اjڴ:{q`oIAD*(yl(Zz㘣Mx~]T9p >^#6+=t?N Ձ.P7LzőfM͹Fڶn„QnQ3V Ǎ~Eש>Vcvmb: }/gv[ƪJٳɟ|o̾ 4o;Յ2e8@lٲ¾Xxu  ͎| ܱreWk_L5?2훛S=TѸ죮k}sۋU'ZP'80s'Jb98&l믪I>q㼚53:>7l߮>[,Ӿu(^q>cF̾ |];}f!E  RuQ~:AAr"j=Y(vnKgMʭ[Մ?̴=(?uHR[aɆ jڵ4-;k9V7RQ-l˖L۲p9V-' 'Bi7vs+%dC/}VA'zmQÿVݴ 7ZqOAqrj~,՛3cö; |x`/XmۦZ2p_7,߼޿-[:~A8/w?nϩSm?gLPfa mϴo>nڿa←6UTsZxzuoe˨nUuƷ_65~AR%߰ͨjK3ZO*q.!Ր: z A!I,}u|BհMxF{K~V_i߼ 2e'vQ.SW(\D=mZ:Ypn*f¼5k/6=,qֵJU;U߽v\o0;Ngж*Uh~__ABdoдcUVM]?m^>ĹCt_{FtX+xJ . i$%K8n-*hBۃ*+֩[0_۾Ìs]WԸƮϩ>m EXAܸx5vjMꍟ~ҥ~nhRcχś8`lo1߰hL|cfq#]~`_PXeJd%ݧXFh_8zlƹTC0vR:tP=zgbA$7/I8LΝfﳏ솕zŵϩ0y CK '|k' ]7smGR 3IQYRh8@RfGyE ڵåKcnrrM/Y 5uX$.… k۷Y' BzHh NO[gV.Ym^cofT ]SU͞m>өJ}gp[C(_DmիGznjX !&QC}rc =T5B~P%f>On: rNǹ!{jժڴibrXA!$ᙫ]]je&wE?·PyՍʝ35o/^z|q􈺙?_a_+3qqfmۨ}~^?S>ILEEkera['k_6nP\W@\} q±Cn>:qzVuZ/~쓭ֻi1ǘ%l=_M˹5k3I+BvGQurR;v0^zu]-2qDl  $և oˆUV:[Rjn$ԍ D BxR fjm.APbE5|pu71c  .qEx}J] ! !¡G'Pݺu n⺣4s_ %h*3BH ުbnwWkKRܦM٘1ޒ  1 AAAHD  +l tzqB5;T2eԩժ5RW-[:o|?LUT|zwulԋJhz];ui] { 2qkZYڏ+Ɵx_8F d0_ҥթk\)V̬jxN2I|fzjM;gTOΛBLxӶWO5?@oKbn[>V+WW>Z_(w#L\\j7zsk!nqӵjUr|UZk 9XYU3V{۫kTo"_~so'`l"#>aa:#R췟{ f~jZ1&\נ5Oݹ99 gM>=e׍>h}caIr… t"{qǙl~AABgWO츁X)bK-n|U2_p/g|/P"qt6mR tbkw^ux+Z$O?n[uMQ^`):muCi~[z-cxp;t*pj:OUwUya.XO0AfzÆej7Tdzf쐏 P"|Ν27QTқOLsf]b륷#t\Rw;V.ZT}ֵEkbs./U?;Ym\ ׵8!< #`JVisifͼa4,`O!rV#p498yxǽnzn1Ìqy_iN}ːޟ&R=H߮߳A:wVWիGqܧ>A=˾CA D8P*c>R77UX1u\f۱laAjfBp\"857Z 2{7nETN[%KԳ[DLeX*=[㧖nYXO)C:[ҍ+֍Ixr\~ޭ:Sw^;DޓA0f9sԝM.Z\vcÆ>--Csa·b5_:YQ[qWh~sFf;01 %<}\jՍ0zAAȏ403U/<]TqO 7~ʭ=q,kE 5*7͘7mڨ/pݻI:~1ML}}ɥ~d-],X(i€o>3o0 >zCi0sgo" 3nb|FÊR*Ubzп`o_\iKcم2,cLsݲ%|Ӹ:5ndtâ. JD: Y{A Jcm$%0F;-?3U\=>̉UYN2/%!׎>Z}tjomf˻R?h,88sg@O 4GRɒRβO"f m<Je'?BU:*w,ܷ5iםk7~f=o&~7l!$Bgi\0 }rX_zZAH^ }b\O/ )D۲ 거*?PB4)Lzp5Q׸0X+ BA"g1H@a!bu5 3sq" +X,Z~N1exxc63ӱuߜ 1ME'uYoL}uE)޸VYEwf`#!¿Vq||EȍBxd~ݨ&_3(G6yqjk5y`6OWcOzg}h@ƴe 'MZ"'<}f'NOw|>?%|l`;N( %cHǎjMS~R#M#+0! ώ/ιK]X83™_|&9"v`5qbL`T@``qޝ?^ݾ]]9eB|fb\M,>"Hq)j0sl2.oa;L)9UCFw7_jΈv+&"wֱ| nd BKE-+uϞF,ifP;,_tjʝ u4.0 P)vLFZ0l$  B">>tղeKo)3￿+JJpAAApAAAH3{;ʠ%K̜`Z 3@6|8  9O(.  D|AA!tj?vU7Pu5ٶl^{M!|~>GM15kcnj1s{ }>;*1V(nhy̙RH|Uf@U^o ӧ`u‰&xgR%!gõw<'8{o|^i }0tq*c,@:XS|х90>y53/mkʇ,:VZG&jjm~ m>UPEz-nArTB9/,Xe[VT 2vdNjV=WWw^̧]T=ӅO]= oM,X)iA9ZB-K5%6'ǟxb&q^^>>rZ7b_"p=NgJ]EI%GU` @i((t%Ag~z`PtN{?8 p ohP_SOUFݭ6@h@PQW+S[ឳ[4]=M_ȭt_ 75^=*nZIVp]TVɏVI蜏e~O\X]hQZ(["܋i".iMߒl ?D I.1_MւBt!T8%֭.knH=itu>MW D_Xa\{q;b܅Auu㙞zܼOlnנg펧htEQb<;uiNN `5 ǀh@xO8cGe⠫I@"Zw 7V;L02E|FlXvjYgr;sȾ_u﮾ͬ\$mS'?a't~}5s3XQCWիq э&~p;{}{#:"̟n⠊n @qFh׼ɗѧuOPZAèGjjqQ6HHr~}gr̈G6C~0 _R!9=u:FiĢx}ǫ?-0 !]uyY)w&{w]M :P8I [u@o/_w uM%7 0Tb8k/ _x+N H@;7 êo-X;#"S8ЩG!rntK +taZB> ݇BW}par?XsޤI(->aM+X"_ϽMsY+ m;}XZwGE ybqt{ڇғݡL\W4,9vޟ -`ΫUKmyk~& eqCǜE0ω@cH"z:*}f`A!Zi!fx|`ʖ۴1c\p'Vb\{q"{Cus5+.` 9=%6dYfi+\ΞmMr}~\-ZAi5k:Nx_h X2?tZ@zFH~X3q #:Ha zY{y}-1B%ΠCN eP!(u5;]q,"ALǸ҈Ȅ\w,ﶍOXnpkusCihr,e˺12ΒJZ0XCޢlb 5cGI#(C&sHIFD!$$ @T¶ m^."ޅBJ3bdOXpSQd,FϹ={kbuN7X"K\zhHAXm% R$5ez{C! {Iݺ>-0\<;nlk b뭿k3tJCµv QUTή';[D-Ҩ^, `RF7$VN Ay{J{ Sh׬f 4%vp4sEqr˅e_>ai\(.uKR7up@ыǟn.CӜĦmwxiߘgH^R2ĸNbiq"5s w}]&АC?axngܘߙ;]xŃ -a.:?ZaӂzW7 cix0{nVW;%©Cyy N^}BݘQҽeQ!,*]SM)'1qtOqMfivɦ{ SPxYw V,tD'dey$3g:ǀnPPAL$ GA=*{ D UDWV:ݺ+ u~Ly n1ܡME,InhąK n'*E[Rd.#4㸝Tiuo5gp:G~[!C'LLXvStYFMIeNpW ?TTB 'XhAcI ]rX9)31 _TpYgTq)H?4^SA07" Pw ԙYʛF6R*;70pf tg'iLMb*T{ Rwf[/$͠N;=|t x`Cgfįf0ʿ:cv\&~ه$住~<)9~vitw:SG/mk{i$\UV G}RtM4!BVI%-Muƍ˘a תyF-廆 ~k _ B:T W( V$-6pw;+pt x ^z7 5KZb3*W;:3KPp1X$ 4>0fps7 l'6ɝ%%Lk/D~` j>"L}^xA$&!QQg ]tqļP0ѣ|16sO0 EMr@q̾ P1(bK >"A:f.nLt~Su.e_Д~pb02qC25+L28F2bCYjƌOdeY>пotc +!ע. gۋ}ʃTz]qYb܆gYs*U3-9sA;.xeF __4bHO%Cf$"'H z`i@ .OKI# Rf"O0 i 80-3p]qjTӂr+WΤ=2;(r`jB5faQA"fP3݃7藉LPD‹6 NZCZUe>⇫Rv23 $byi֘2t(H `e.}Wr} zpð@9Pc| A%woݺfd?]O`-=Y.TMDi*f^A(. 4bPwdzPL+h3} \Ò |E 3w<̄.u1@rߤ?Sq[wk@>dp,3df0yNcxf=TY)\\)y_4ڵ nsYCSB֮]8]\' - P1_?n/T~^6f^~azxH7/,~AؼX]yVRooMސ, Ҫ^_zBaoOW-[2""\V|_W%ga܏3-rl~wn B^#"\IUKʭGR֮5<?~ڴcA {%͘5LvqAcinA!`_!"(  fD `ٵZ,mؠ7[A!&9S=9o 5a >߳YƏWSO>|z|Ù(5 1sI]u,LKǔ_w5mjڏhaMLiVti3-#/QÇO->'\N=|8"'ԘU%T>v(z:Ѫ~N> +S3ڀ~1΅pZV0Ӝ/e{N5kO_|"]xcWQ#G>N}0/m۪+:4 1͜ė ̥:7@q`E=_cN:C|_0{eT||*߮#͔ՍAArp|Uo^U,=Q=\?|x,:VV|2;sr|ug5Ǭ`W6p}i?apᇛAF;+g6Z9p׹.qE:oo~AA=|~/JL}ˇWj0_<Go?)Ꜥ>/_,|q//"Iʏ?zkD0[OoW5p)c?. PIY qTb|nQjʕF9pce>Dp ]yf;wMgOz%6?|%ԑ25Ouª5[BתUuD g+ߴI]3ukVuodt;V8P4Hu7Nrvּ89Sÿ<;(RDXxu?576jN:P306>LMA n2+{{dKYGypf͛+We+iI㷜^т{r3Яs "MOx@ýn(\4y~oL}b:azs"|( >-aZJg?2gjGFoJ5._+^?!;N# s`y^ܹ晉t\ ⫡  ϹL%#ܡ7AX#؇kAkJnr^{|zz<ϧ-Lݾ]]9eB,ô(e[2kLW'M2"eŊj)u#%p:\?:u{* gb/Tho\tڞAAHkfb~' - Pا,YenutA!>~jٲ%_ AA   f*wAKK&O2B6:uo6:CzK]z%aoZkY[ƌAAHD(.  DD ]ezK߆ q%AAk"τ?9o 5akך:|jUL70ۀ9JTժNVےCA?X]X>箦M3~E DQm`1Ǩ jF Y_|}o{Vm;w;}nBlo`OTFV3Tz]uzU&9ڏi~'?T)3!r^.(ǎcyn!fGieV5kVevCA!/׳ bGwo^ݢE"_gF1?3V6ē9s[+>hsZݘ.mD߱S,̿V۵ '5h-2&M6>ԢtG_c7ʹ0g_K'}g$?F7qK+\4o⭍64:>-[6Tw}UckSoQJ7ԴiJAA(8Uc~jUOtQϴj>/hAAZ%J&"bUǪu~BtLxzQqEe ޚ4(WXmke}S!i㳗tciiފ~Z[`_>[_qE|W.C۾XʿZB-ۼۢE?n9G;p-C>4޲  ԩuS|S ˬAHOQدAcM}'{ժu"-Ҿook|gUk,VΈkXtQø[Lu!QF`~m[c]VpD6Ј<) /Aoo$ u^衇ԲeZ Xro)_AtG4]T1>km(5iJ߱`"keXY+$,"Ѻ 7jťzZSY,6Nr<,sOcZj;1: WڵSwWzT;Lyӵú}8cE# kJ2e2B:|Z qY׮F5k ӧ{[q1"=O:PKKfA%q̴ĭ |=R;Ƞإ6:tP=v[/8zfU+iӀA+4‚AGgQݦԫ?RT 7M}Xݴ\"f3g+bk~ۄC{:]Ը]`-ef$=" 7bj-oT q8ao\5ƅ4#RqzL0^XƦ%a:5GvJN#ĭ/܋sj̘"nu]߯V`ոV}ui4F~z4ۗBAA74Cq}.a!oNѡ@`$ ֏e?_]7mzM3m! ~t.XY:U?Dub*I}!Upg6Ua o/݂/3}mW~}oK|zyi1F[wήYS hθ -۲V O3;Σ~Gj%o꒯V*.>:x^H5m۶jο0`@/3o; ༄ F硡 Y)]~CXK[oVdXDøio2R9 fz)oeϔUZ {c=1kXFOЂf Ј[K䒒P~Bo-,^[ʞj tŠȜ9ax wqUv|Mn_e[*<~8/sDs{ Ad/8/m~ׅ6>'L\O߂IO,;\G+ i[E@3C ) G/Xf=tO&H *7NnIԛv7 g0qUQ Lp6+.ΑG." oo9}Yn*4*Aȝ)0!!ZB>zE6}FJ"ĠKn_AYGݣR~|pAs\Z؆zpc5(빦_l#DYY6X_gZXos'Oh\EEVR9 ͛7q|k%,SV{>Qx 溣`0xQ)98y$l ] b-AHum\p]Q !o箻 {+5O#;6z v u <9:ט4i6r^7N9/.!y'z w_:a㒴$ycp Q۔GQA[*VnF5f̘@@aFE/|tGC P1} DQfܬOu6,P9"ü{W#•k\.X9'Ѐ.k4`q׍S;o^7Dˠ "\2z衞x K Tj 0 7^ I7nHu]7p= af=MaX4*>3fi{\ cU>p׈ /x?B8Ϙq6. F^%-YJfO?y{?gR y| (X! DvM1pC."nز%uYZUj 3gF ~D`pu %.EpsobWsk4S, ש8t{m3ƌ1>Y /{$ 냜Xga‚[d]RpEuu#9_,婒[ "l\Ⲃ?2{EPfvjgf5p q.K: qD0Vd_;ahÂ.<_Ĕ1ODظt!m= BBp>փCL9G_ jYc/,yfD2~ul_fmF2{[0 |[O(]m;wo5,}ߚ߉‰&퇏\5e0꿖?%Hrc3ǻgXK8U˗{{D{oes g 6mA9b`'VK\%EZN[ץn-c6~f52soGWoG뚁+N!2 S x`$Sn} 3N(~j ?V-5sg~]u̞}fD<3cj3/f0d˖ϵn}?h.*e><%ʹ~|0`j6]:dɘuw6i8pA_7Xmj5rjJu}f52s1b :L#?$j!&0Wxc B1$] 1!rIN_#Y`al@t(d;G 0- L0%%"‡xNC0&.O{/i !| _ѭ&˛ODX}Vzc^;^'g,|@~01ܹޙk5q|T&Q$$J!;ٓlQ,w^Ȓ(!_J첥M,P|=s{y9sf~333z5^oGyO[;UYN)aqh3z!X` gr=ԴD;;}dJtoH{i/˗TR'<Lc?p@3h s 'ut7\JKD/,lE%.) 7Nx-L 60y7^ ̩M|h59뭵iR?5UsBj(Sȭ2תe&BWA@V6z`fLqqeĬNn"7뮻*d^_+D%%Y+ e}T+mq]4'...bG`Cion}ޚ?Os[[ZxcJteTKӢ#; 蝽S]Rx\QJV쨸-S6,_,w_}eoԨqs$BKX|uC!^ C5f2l9-+*De ^w|x]7se) !D8>Xse:Ԯm/X:ժ. Xvg?~Q YKsL1?{]D\IoKڽ'z|չND[i.6{qͶgko͌<1w;oZeωϫs{i6>ܜteÀol-k"/HJ0kba::PL,<q5״ol HFx/ͥZcX ELsq,` 7[\3r~[^x}{[lT8 i'SVSU2:B %֥g{#Έ쀥γ;oƲ NXQ( !D8w8/':ލ0#l ޜ[F{:(' g~$ym6pum oE釿bE:>[VRQqHX{/6Vi=VcUJ_}9iS{9Ǝs+W{su 7v(ײQzY]weNB!Dynz>qb[fO>i{t' [ԭk]IJ ͳB%W ]NȖ+J>ԟAb~|E'6ibOWz zitU.gucy ?~vB!rCp(IJ䟱_Q[mU5v3V0&|) tHu ',jGca\Q7NZZ)u qZ2fi\l Va찃Y꽛/ !9&"PSY a?ܽ5m M缰kgҰ'XeD8n)j @`T~پwsW1 =غysk70Xn3l0ӫWB+g%B\S>o.L3㏭Ȩ}3*o6&Ɖ#GuM)K>V^`{ߡ^3gE+[7/w\fsy}QZuMӼy:5"K.3W_寉Oc5O:"ͤIOg_+ H !k';pQ]jۮy=zӧTd`Ȑl%c„a7\rI/G/N{%pzF毿6cNܬ޺O_NK1/^9؃ͮ!DA"\,Pn?+%cn!{KƐ!OK1ӠA;SVKsAy[rC2M6oW__XSQ:R#8ۺlnE\mלnΰgyW ~s}j4lޜy'Ԏ25k6.&z]as5ĉjuLߒ(w-\s=+4m֦.K~-[v1묳ҥYp1C2Unkyv@{4I|ܸCv֭*V_:uZ{gMD3Өֽ)'_dD{ƍ;w>ǙoMX'I6̟y=/u^~^d;{'_[𜼟 /\~ӣGlY4/xº wni w;v<[8M !*6BJ b KD֑Gf_sqsC<}S%|]vL>\w}fΜѬZoq9묋wH n3oO%Kn5?`]v0'a?§ק[o،?ԻNzM7o]pAO?3] w' 2sY/p߹ޫyl+xy]Q}\1wW;s]tto=J@}th-y^_UYWn KW_}e/_kR뤙#^!|_`իWL*zYIny3A/N} 5qzwm]=-{8ȝwӟ?m[yJK/=S_Ӷm+mq's`>>{:. !* Lƍ!Vo;Hv}8ӣ~(l#ԩN 7oRпIwءYAn.?/Y & L22r?|eԯp]gK%K>(зoOnyԡ\[li'$ b|c}\YFOYdWQ(/r͋ N;#:.)O0SO\Y5X`7' <^b< {w}epX=+/>Ӧ ծv{뭧i]7o]&}oᖓѣwU/Lv~2+z- Z틬#.<1oew'/ lB(]BY…Ȑ֪f~i^{1 O|e M4}G}ljմL`բ6ٺu73i{^ ڶݡc>dXV'LlR{ C:ّSK/6EGFonVY)͠j-AwwkԩQĺ}IiOhtkӰW:RC녃i>][ӸqC3{|5yf͚[޷ۮurlUߝ+a֕w{ 2xj`.gۯ,kȷjJgŹsp1]a6x@>rŷ8|s]8szGeC߻ϸoߞAN;ڊWǝw^nРAC?q&[K9j+\WDWEa޼.k/e/>j]w /kW/w}v>. Aĥ󅡂w晗n5/pWqxɺ@cOa];_v2ܷ>[f>"_$…X*X ;9VZU_*6xC+/_ t-=gbb8[oaGFɎfͶ.afDg)'YnA4oN9H+AqwH}c7|Cᆋ`7dbQ/̟ QA_*J+)N <ƞYK3όK/mӤ* %xcfօ+Ari/H h:b1m'2or[3qM:!np5谅4so{{ #܉T|E ;K9!t ° nf+;;hFe[nVDE=+ '>y)k}6a*??_qpw%p[X^%Hvl:LswHt^m׮IBM&_w$\H !Hf#511MX[ Zd)iO7,_,zbC` (}t5=A,0cWy6*q'޻橧^~Իv'v1^x.z~pMXQ̽3ns朌Ayfw03'#d{Æ=g=;j]pQapD#n/: vja'FxvXo\ yFCq#fl\rm2IᄡPQbxK+e=m=J .εo TpxvgJ.T|+_jnbddžaTanL|eOUJ C*2t$29h__p!V$…M@(R8S(3TDCG\vYܬ* .dԩSN'3%!*TB{>$fm۶Rq[1Cp!B!rDB!9F"\!*'|\Q"ϑB!"$f+)˗3^k]IGvudGT[(~c2~dLivݵZm6`"suҥvҍbrʌ:f&￿T2yKBT<(Bta#:ټvL꣏j|v{ Ӧ}}ԇW^yꪢӵ0̶63lwvrwyȵ%…< Ν/ !Jw}WjJ8+0쑂 >CTPsIF&SO15k0&dy35 U!ɈL)_pazBs((k%LӺuss}5 rĈǜzQvx&Izk4|O!B"J Һ)% 7 Rt{IiY",_c[oM3s.0s_kj)UVYW7ռB!RкqxhtEo,^_#S\׭ۺXx%MT7Sew鲷nw<ȏ}f?ͬYs͹4?t붯U!E}MJVj/$jBEɨV8qx>{55r~Fv]ٳɓ : MÆC0^{V!DVw24/7vd*CHwb~=JO?ͳ7hI^ Wkw./b9563f -B/ce !DE&Je!3PV-/^!nwf,ḫG =Hz~hI&fzj}Fs|B:ho@B%QZ%2"*bBX? C(B-Q:͔(ڵ3&3k>}iӦM!DyzQ1 c>_ <ǘg+J(ga̙ҭhɓ'g䎒R'…Ԯ]["\;5#U g͚/ !Jw}Wjݚ5.NΝ%…`4MvU|@cN>_Q2ƍ@E˜u"=^!xeKH !e3fuG_z_/ !VbQ(Bj҆TTn|a p!DB-5J Z B!k SL7U>BH !Ywx!ٻ$X]B!ݻ{K/vk=>T+E!2kiӧ&'Ӭ7vف@[ʅreʕve6xcnUV{'?߿iժhLFQGe^{5ߚ.]M6/bgsŌ*?<R_x&?q7vG{MfP1x뭷~έ?˜7Rp"/O<4l^7wQyNZx&g}V-[nhhqZݧK;<9ívm5wq9c-Akna߳:TZΕws^fĉv[*]h=4h+L&MV[meAHA%i-?8k=csϵqWåϴhC9sG4#F0;w*yaqW/qtRMQ\Z'mr_wyMa4r˗mV=u]gM^㠵o}BW^"};ӧOy"qNnjc%#ҽ((dl`j\ߥ8S4ܥxvJHZyg MOuxyn k;9 sIlv[*&i}aK:| [tGw]'$cɀH ¬k׮f7W^ye>f F,O=nd o>~ Mo~W=WjQN2p3zh{k; `@ty m1j([9 %@Iȑ#m Ђ c۬F %({?qgmӦMa=f >rW_}e+2k9ȜI_#Gܹs}\Q1"wyOXjs"zO\-Pp]2]As-#d`i:m&GId9 xWmi$I*+}#=~G%P"PtԮ]_ =` 7|PАDZDi9Xwx࿃vQb*|k@34ytKңGЧ{N*KiO>6A,O%Ma(]\s5kBJ~ʴO8Ȯ^wᣏ>GX *F4pd0GQRթJIʇT磿i # xVY%U_;h*/ʲpGwA:F?㥗^tGw]n0:J.… $ fϞ]E|]wUO}x/ȱ^a\%*ދ/d "OxQ/X ^gKE{X%z{>/)\%{ߟ}Y&MxBpЪUO.{ KtE=W7x.{GtRe\ܗ'(si|wx) "Ѷmb[hQбc"xժU+9sfU <1VdݤIM6."s9^FS=} HEO}`5(8 םz,\&NLp9H_|{y:M{vϵ=qPOThܸq'. W-\ {/.\.ݞ{iy7׮]"xƇWeO,to@Dx]O?<+ ^AgyyMQz5]zze%ޱ ￿p5jxȱ7Kg# dFgwr!NT4](KOu9ҋUժk!v:|saGMc8q*slLӈ?ps[ˤ<Ʒ;(! Oe-'|czPr8ˑ= "&\4hJY𸉸q/w&gE!#{"a #&^EX>S$0d|rY ,b7pCѐ&r88Px /gBԱ 8'o@9*!%AK[#wᙂ|W#ҤN%8 =SY&׌JC}x3rL4pɒ{c4M ݸo' d2 >+ͮX\h8xtߡku) %G[ ˈila .&Ol*۷uu ӥt}88%pW q򧒦N85/N v T>[i 4* FpLʣl|ʣ|H5\Lp:``B*H]gQZ_&ﺼȹG$SNp|(((bAc_,|)9NM0Owb! ]h&Ax ¾a:!qN@p}9* J9xunw!9tddt%$ 1I SkYD'8HPpQ8H@) K2@w&<,2ѡ!8߈p̩G%t ^>X=HAXF<KFu0CgiNx@\ցtМyqNM2JOQqĻ%CN >F>?/WX7 `XdDTpBsg4b .Ɉ{8Ie 78Z b%nz1kZi-IDAT]:q(\a2Qϋ%kvK .x=LNp{ٗ`S PA+8t3yNGwkOHw(ICx^~mF#ԸjS-q*KFY8i ,..dt< S 'NVJZ>$;15+.9AH!Sݕ>7Ҿ\P!D8N#V#&#jVނ` e)"Y(Ծ'XO#3PCDS'XHTXXqma;Mq~d. bz""i t>kx$Z+1?lz/n=Xi?s a17o]OMZ/ǓqswD\j'}cT${1;ס9%8ͻ'qP!هwϽ2Bm7^ۤ)zjs B=1j@2^3T>MΈB!viqy2 $Cd-鰢񮂅MǷH4:v8+|?ZSQY&7gq=oH-?Fq u7?2BNG/yMAp*X0^xGK*~q3;5qi~=Xn9G2(IC5t {ϯa▲':.KF6@IN%7R@0jS@faCLreK~ Hu9(TLfr2: 娎&QS$xfÇǏ#4p-v0t`1D,:JN믷%@E{c>2޳wϻKm>pS&C\r,LVԄR<'EF:! 3.#s q@촔~9J9h tC3]烦P ҏ&[ e2D!QooQFTjAPTز-:d)/c+C a1mZI09Oa56q88S4΄r@-ÖTĉ?_3yfk4P4b$%ƝFLVitV8;.q(QiDf,H>߱cG;B8TdS~r"KitGiu.dɒUy`Ik:ee.,*jBan*&X1̩ )!Zi%͇f@O׮Ŧw( ;#з(n5Pa,(Lru^X ȩn\aaiWpr!2wիG)u!-Tp*N)-fE"|8t0ŵX%WqUjڴE̠|bŠAfe6R7hŸUT<Ǎ7܀Dn;B`Nt$8E![sb5>8_QBTJ}j3d`t#XйA8^ӽ3A*ͧy V&ogT*GY .)Yog/ !**BD8S-gS2C ADxLjLy9aeN5 *o$…b5YK 33F/1wժUmq:a;jTfZ{u".;:U- L=!LL&`6&Ay ,lɜ39=Zl:[5 &&➘$0(mq}&rŅt9 gb={KAʸ1S5_~i'qqB%tӲeK~>w-5 Q!DC"\W0:>L,km&`VC~XڵkW3|p;1j2SfLcǎ-b?xkc^3b)a?c.1˙ 81pno\+u00.Atل0PJ\N *L̪←n8 T,,؎/QL-/p!D^fd,]`/^pد_?+g}@&1tP{.;s3o뮻e)8X`n 7 OL0ZL=2ĺdY<Vva[n橧S8H&T r ?JvB\TV72&eb=,TVQ騹*v O>.O4 _.+-cb8fW T4nܸ0n3Ǿ}vZߔq CيkYXcA:j QBU,ĸ򩧞Z(|v2̝;_|~i…EM2΍_0quq-qڵkZjK#{~~*=n[]Yq)DG"\wb^/4 ?]ɓʹiL,e!p bիgpO^;#l,YbZŢE_:'kԨaZw,]D[$A{̠AW_}e!O;4;.:j QB-/:1jqc@pAɌF+Q8aψ&Ǐti|w 7k,7>7n$L";c )5#:?yz9eMES+H0t\)DE"\W0l_^/XȈ4}Z)dV8}v$d0 /`'3 YfMͨ+%LQ7Մastc#C⋶!#z3I":,f9c;vƁ9fmf X۵kg;"H%+WBW&#"l+d8Ҫ@⾲:ء)AVRVVliAGZ^ZB7B!fli:"*! q뭷'xcƌ$k5}㞁Fy p`d:@r}D#LÆ v@ 2\hUSϐ MȈ-0aD`o:2z 7q8'žXeȑEF6DAk; }l+,^ڶmkw3T"aYudS3!*K,Y=s-!Q8"]Q~0Y…BJ᎚5{6kf/@$…BJ@A:5?^5C$…BJ5qA B'B!D%⟮]͊>})D!.BT2Q6k=$(o$…BJHԌtԬ:}$(O$…BJ9rdLmƂ!Dy!.BTRV5iQ! BB!D%&YGW_/ !ʃ3fΜ9_~׈8N:fD͌`;kjԨaZB SXmX)k>XI%zk?dWkt(_[k {j﷟Yo5/3Ƭl_#ʒ7| _#* 58 D~hk/IzRQ%'UΚ5˴h_ȧ~j pxpMFPY:aW2gرDecĉI5 ExO8M$ %潨c'yRuKTF2u1RL!b5v_J`;j^|$IExK!~HG1 C:Qȟ V `x>j"7G C\UHuB!D~ḧ5 ̛7Ϝfm1k6m֭7nGva$:ء_Zk-h"뮻}{T>Fm:wlVZQFN0=*wP^X|7fڴi6{oV\?38y^K,(=4?K?c?o: ӰaC.ꫯj5Ǐ7O<񄿔FKN;d6xc曛;;,]߫bl2s 7d=Łonݺ6{_|]HvͦLxy_*"vdfWQ49 #w2. g}֜x37xY9CJ.R;1c;c83ÜE/!Q;V0>槟~<.߃Q2 :G~ MZa?[qGWrKӬY3[ >̎oZjJ\p!NÀL=:c|yfԨQꫯ̞{iFz3m/[n\\A}uI!ƒ|0Xg2 CVT،GeKlN5 7*`Ax#Ɵ|I[m v\5\M4Tz/Ȕ)Sl+mE柎 K:j QĮ3>3UW]ea($24(,mڴ2ȩj8㏛6[AL_oC~~;Z իg /}y/ /ow*s1wn>\p(-t`e"xn7*CA85\c-iM7Ԝvi 7bsG 6Z++M;/ۀBfi^}U2π8$o* Uk z|DE p P8縂0{YlcAp"qNb$B{'ܱTh޿K3uTn$wM ; yxao5ݹkso3f̰˙@ i00=XFRuoyv}޽mg_'ߕ?Z0.p.:ʮs`r+\%wt!sn 7nl ™4<rAHnizZ/BXCc]Hh$}1lN1Iy?<qmfx+ _=8D.i*q!b|XC{T[p ]*+1|p%FW .xn3< z*=7{t@et7`gGŜ5y;qCA -;q -Ļw 2uxF'kܹs&o&#*)Dn-Xp +Vm۶6sv-BWzQv!ˊ!~(tdqb j`oժUJ+b>XXsIEx 4ΏU-'.KFvB8|ͻǮ{!Dy*wkgnw@αs/9í̷ L`A&2exO.͇gJsP 2CGaD+@{$ 4kq:}"3=SDV^*T9[NFzҢ %b rr  ᖭTp*-s>;NtAp]*7T.Nʎ/.E8!`rLMcp=V[Gad,NXtRd & e0:,!Rn-f྄tptͽ@AzY]@brˀJp Q'( q ڷo_om R Hę:,RBZA t@ETޅv@dױ.Vf8iA u~n]T*1TfxX?kB>G_g?Ŀ[w! qqBi(|SAKw& BEe&Sg%G@:2Gq)"S)rD 1|Bǥ\ T2۴xPu`'⾂DYloŅo={n;(;e|8q. QsY%vԌBd>X(MU66Zg٠`k.$ 0,Xm(7mi~RO TY~p3  H8qus_n(ŠdG(K8d#^DdXʁGAHn_3"* Nl+]ɠDAo**U1Hs°w8 S6 }X:O@+]aLXi,H{$ S G!r sE.+aŌV5HoGzt)<_w?Q8ճB1rYU\{eIӧI+ !JFlKF Xg!KJ@0"@ǭ/CxMFyq9 $b"_:Hp:Q 43':#>ZE"z*?t)4xo~p0t n%M4|֑X5?nL|ό„%=VmF1"0'Ҏo91~F(Z>q;h/Q'uԬjB"XjyɄCq㕉bכS"`bB[ !B!:f !BQH !DB'@BD(B8M'B'\!BK3B!">m۶'ԩ$B!H3)B!DB!"H !Bc$…B!1B!Bp!B!rDB!9F"\!B#.B!DB!"H !Bc$…B!1B!ƬYƼ񆿐LW*3JDBłz1>3^zɘ*U)3gӱLW2}ĭ1B!rگ1.1M~-QkE9/!V[$…B(|ҘH:5?8 c __QA@R=_QNB!.BKBn\vY|,GE+,wM0ss~n0\HF0qK$…B N;%ש G<Jx_β:D?(L1fmF22=/-H#C2 I