pax_global_header00006660000000000000000000000064145465317050014524gustar00rootroot0000000000000052 comment=36842a3bccfb78f5c27642435bff387b42f7d13b btop-1.3.0/000077500000000000000000000000001454653170500124715ustar00rootroot00000000000000btop-1.3.0/.editorconfig000066400000000000000000000001711454653170500151450ustar00rootroot00000000000000[*.{cpp,h,hpp,sh,md,cfg,sample}] indent_style = tab indent_size = 4 [*.{yml,yaml}] indent_style = space indent_size = 2 btop-1.3.0/.github/000077500000000000000000000000001454653170500140315ustar00rootroot00000000000000btop-1.3.0/.github/FUNDING.yml000066400000000000000000000011031454653170500156410ustar00rootroot00000000000000# These are supported funding model platforms github: aristocratos patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: aristocratos tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username custom: https://paypal.me/aristocratos btop-1.3.0/.github/ISSUE_TEMPLATE/000077500000000000000000000000001454653170500162145ustar00rootroot00000000000000btop-1.3.0/.github/ISSUE_TEMPLATE/bug_report.md000066400000000000000000000031771454653170500207160ustar00rootroot00000000000000--- name: Bug report about: Create a report to help us improve title: "[BUG]" labels: bug assignees: aristocratos --- **Read the README.md and search for similar issues before posting a bug report!** Any bug that can be solved by just reading the [prerequisites](https://github.com/aristocratos/btop#prerequisites) section of the README will likely be ignored. **Describe the bug** [A clear and concise description of what the bug is.] **To Reproduce** [Steps to reproduce the behavior:] **Expected behavior** [A clear and concise description of what you expected to happen.] **Screenshots** [If applicable, add screenshots to help explain your problem.] **Info (please complete the following information):** - btop++ version: `btop -v` - If using snap: `snap info btop` - Binary: [self compiled or static binary from release] - (If compiled) Compiler and version: - Architecture: [x86_64, aarch64, etc.] `uname -m` - Platform: [Linux, FreeBSD, OsX] - (Linux) Kernel: `uname -r` - (OSX/FreeBSD) Os release version: - Terminal used: - Font used: **Additional context** Contents of `~/.config/btop/btop.log` Note: The snap uses: `~/snap/btop/current/.config/btop` (try running btop with `--debug` flag if btop.log is empty) **GDB Backtrace** If btop++ is crashing at start the following steps could be helpful: (Extra helpful if compiled with `make OPTFLAGS="-O0 -g"`) 1. run (linux): `gdb btop` (macos): `lldb btop` 2. `r` to run, wait for crash and press enter if prompted, CTRL+L to clear screen if needed. 3. (gdb): `thread apply all bt` (lldb): `bt all` to get backtrace for all threads 4. Copy and paste the backtrace here: btop-1.3.0/.github/ISSUE_TEMPLATE/feature_request.md000066400000000000000000000011571454653170500217450ustar00rootroot00000000000000--- name: Feature request about: Suggest an idea for this project title: "[REQUEST]" labels: enhancement assignees: aristocratos --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. btop-1.3.0/.github/workflows/000077500000000000000000000000001454653170500160665ustar00rootroot00000000000000btop-1.3.0/.github/workflows/cmake-freebsd.yml000066400000000000000000000016541454653170500213070ustar00rootroot00000000000000name: FreeBSD CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-freebsd.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/freebsd/*pp' jobs: cmake_build_on_freebsd: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Compile uses: vmactions/freebsd-vm@v1 with: release: '14.0' usesh: true prepare: pkg install -y cmake ninja run: | CXX=clang++ cmake -B build -G Ninja -DBTOP_STATIC=ON cmake --build build --verbose btop-1.3.0/.github/workflows/cmake-linux.yml000066400000000000000000000016531454653170500210330ustar00rootroot00000000000000name: Linux CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/linux/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-linux.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/linux/*pp' jobs: cmake_build_on_linux: runs-on: ubuntu-latest container: alpine:edge concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Install build tools run: apk add --no-cache --update clang cmake lld ninja - name: Configure run: CXX=clang++ LDFLAGS=-fuse-ld=lld cmake -B build -G Ninja -DBTOP_STATIC=ON - name: Compile run: cmake --build build --verbose btop-1.3.0/.github/workflows/cmake-macos.yml000066400000000000000000000023541454653170500207750ustar00rootroot00000000000000name: macOS CMake on: push: branches: main tags-ignore: '*.*' paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/osx/*pp' pull_request: branches: main paths: - '.github/workflows/cmake-macos.yml' - 'CMakeLists.txt' - 'include/**' - 'src/*pp' - 'src/osx/*pp' jobs: cmake_build_on_macos: runs-on: macos-latest concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true steps: - uses: actions/checkout@v4 - name: Install build tools run: | export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update --quiet brew install --force --overwrite cmake llvm@17 ninja - name: Configure run: | export LLVM_PREFIX="$(brew --prefix llvm)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLVM_PREFIX/bin/ld64.lld" cmake -B build -G Ninja - name: Compile run: cmake --build build --verbose btop-1.3.0/.github/workflows/continuous-build-freebsd.yml000066400000000000000000000030061454653170500235230ustar00rootroot00000000000000name: Continuous Build FreeBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-freebsd.yml' jobs: build-freebsd: runs-on: ubuntu-22.04 timeout-minutes: 20 strategy: matrix: compiler: ["clang++", "g++"] steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Compile uses: vmactions/freebsd-vm@v1 with: release: '14.0' usesh: true prepare: | pkg install -y gmake gcc coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | CXX=${{ matrix.compiler }} gmake STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") COMPILER=$(echo ${{ matrix.compiler }} | sed 's/clang++/llvm/' | sed 's/g++/gcc/') mv bin/btop bin/btop-"$COMPILER"-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-freebsd-14 path: 'bin/*' if-no-files-found: error btop-1.3.0/.github/workflows/continuous-build-linux.yml000066400000000000000000000065401454653170500232560ustar00rootroot00000000000000name: Continuous Build Linux on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' pull_request: branches: - main paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-linux.yml' jobs: static-build: continue-on-error: true strategy: matrix: toolchain: - aarch64-linux-musl - aarch64_be-linux-musl - arm-linux-musleabi - arm-linux-musleabihf - armeb-linux-musleabi - armeb-linux-musleabihf - armel-linux-musleabi - armel-linux-musleabihf - armv5l-linux-musleabi - armv5l-linux-musleabihf - armv6-linux-musleabi - armv6-linux-musleabihf - armv7l-linux-musleabihf - armv7m-linux-musleabi - armv7r-linux-musleabihf - i486-linux-musl - i686-linux-musl - m68k-linux-musl - mips-linux-musl - mips-linux-musln32sf - mips-linux-muslsf - mips64-linux-musl - mips64-linux-musln32 - mips64-linux-musln32sf - mips64el-linux-musl - mips64el-linux-musln32 - mips64el-linux-musln32sf - mipsel-linux-musl - mipsel-linux-musln32 - mipsel-linux-musln32sf - mipsel-linux-muslsf - powerpc-linux-musl - powerpc-linux-muslsf - powerpc64-linux-musl - powerpc64le-linux-musl - powerpcle-linux-musl - powerpcle-linux-muslsf - riscv32-linux-musl - riscv64-linux-musl - s390x-linux-musl - x86_64-linux-musl - x86_64-linux-muslx32 # - or1k-linux-musl # - sh2-linux-musl # - sh2-linux-muslfdpic # - sh2eb-linux-musl # - sh2eb-linux-muslfdpic # - sh4-linux-musl # - sh4eb-linux-musl runs-on: ubuntu-latest container: muslcc/x86_64:${{ matrix.toolchain }} steps: - name: Install build tools run: apk add --no-cache coreutils git make tar zstd - name: Fix - Unsafe repository stop run: git config --global --add safe.directory /__w/btop/btop - name: Checkout source uses: actions/checkout@v3 with: submodules: recursive - name: Fix - Stopping at filesystem boundary run: git init # [fix Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).] - name: Build run: make STATIC=true STRIP=true - name: Make executable run: chmod +x bin/* - name: Set up directories run: | mkdir .artifacts mkdir .package - name: Create binary atrifacts run: | TOOLCHAIN=${{ matrix.toolchain }} GIT_HASH=$(git rev-parse --short "${{ github.sha }}") FILENAME=btop-${TOOLCHAIN/linux-musl/}-$GIT_HASH cp bin/btop .artifacts/$FILENAME - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: btop-${{ matrix.toolchain }} path: '.artifacts/**' btop-1.3.0/.github/workflows/continuous-build-macos.yml000066400000000000000000000031551454653170500232200ustar00rootroot00000000000000name: Continuous Build MacOS on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/freebsd/**' - '!src/openbsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-macos.yml' jobs: build-macos11: runs-on: macos-11 steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Compile run: | make CXX=g++-11 ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-x86_64-BigSur-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-macos11-BigSur path: 'bin/*' build-macos12: runs-on: macos-12 steps: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - uses: actions/checkout@v3 with: submodules: recursive - name: Compile run: | make CXX=g++-12 ARCH=x86_64 STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-x86_64-Monterey-$GIT_HASH ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-macos12-Monterey path: 'bin/*' btop-1.3.0/.github/workflows/continuous-build-openbsd.yml000066400000000000000000000025211454653170500235440ustar00rootroot00000000000000name: Continuous Build OpenBSD on: workflow_dispatch: push: branches: - main tags-ignore: - '*.*' paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' pull_request: branches: - main paths: - 'src/**' - '!src/linux/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/continuous-build-openbsd.yml' jobs: build-openbsd: runs-on: ubuntu-22.04 timeout-minutes: 20 steps: - uses: actions/checkout@v4 with: submodules: recursive - name: Compile uses: vmactions/openbsd-vm@v1 with: release: '7.4' usesh: true prepare: | pkg_add gmake gcc%11 g++%11 coreutils git git config --global --add safe.directory /home/runner/work/btop/btop run: | gmake CXX=eg++ STATIC=true STRIP=true GIT_HASH=$(git rev-parse --short "$GITHUB_SHA") mv bin/btop bin/btop-GCC11-"$GIT_HASH" ls -alh bin - uses: actions/upload-artifact@v3 with: name: btop-x86_64-openbsd-7.4 path: 'bin/*' if-no-files-found: error btop-1.3.0/.github/workflows/test-snap-can-build.yml000066400000000000000000000015411454653170500223640ustar00rootroot00000000000000name: 🧪 Test snap can be built on x86_64 on: workflow_dispatch: push: branches: [ main ] tags-ignore: - '*.*' paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' pull_request: branches: [ main ] paths: - 'src/**' - '!src/osx/**' - '!src/freebsd/**' - 'include/**' - 'Makefile' - '.github/workflows/test-snap-can-build.yml' jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [16.x] steps: - uses: actions/checkout@v2 - uses: snapcore/action-build@v1 id: build - uses: diddlesnaps/snapcraft-review-action@v1 with: snap: ${{ steps.build.outputs.snap }} isClassic: 'false' btop-1.3.0/.gitignore000066400000000000000000000020461454653170500144630ustar00rootroot00000000000000# gitginore template for creating Snap packages # website: https://snapcraft.io/ parts/ prime/ stage/ *.snap # Snapcraft global state tracking data(automatically generated) # https://forum.snapcraft.io/t/location-to-save-global-state/768 /snap/.snapcraft/ # Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container /*_source.tar.bz2 # Prerequisites *.d # Compiled Object files *.slo *.lo *.o *.obj # Precompiled Headers *.gch *.pch # Compiled Dynamic libraries *.so *.dylib *.dll # Fortran module files *.mod *.smod # Compiled Static libraries *.lai *.la *.a *.lib # Executables *.exe *.out *.app build bin btop .*/ # Optional libraries lib/rocm_smi_lib # Don't ignore .github directory !.github/ # Ignore files created by Qt Creator *.config *.creator *.creator.user *.creator.user.* *.cflags *.cxxflags *.files *.includes # CMake CMakeLists.txt.user CMakeCache.txt CMakeFiles CMakeScripts Testing Makefile cmake_install.cmake install_manifest.txt compile_commands.json CTestTestfile.cmake _deps # CLion cmake-build-* btop-1.3.0/.gitmodules000066400000000000000000000000001454653170500146340ustar00rootroot00000000000000btop-1.3.0/CHANGELOG.md000066400000000000000000000321511454653170500143040ustar00rootroot00000000000000## v1.3.0 * Added Gpu Support Linux | @romner-set | PR #529 * Added platform support for OpenBSD | @joske | PR #607 * Enable macos clang | @muneebmahmed | PR #666 * Fix Apple Silicon CPUs misprinted | @masiboss | PR #679 * Cmake support for MacOS | @imwints | PR #675 * Elementarish theme: color update according to Elementary palette | @stradicat | PR #660 * Add alternative key codes for Delete, Insert, Home, End | @ivanp7 | PR #659 * Fix scrollbar not clearing sometimes. | @DecklynKern | PR #643 * Add keybind for toggling memory display mode in PROC box | @rahulaggarwal965 | PR #623 * Minor string initialization improvement | @imwints | PR #636 * Made disks statvfs logic asynchronous. | @crestfallnatwork | PR #633 * Fix signal list on non-linux/weird linux platforms | @lvxnull | PR #630 * Add option to accumulate a child's resources in parent in tree-view | @imwints | PR #618 * Add CMake support for Linux | @imwints | PR #589 * Horizon theme | @SidVeld | PR #610 * Fix short conversion of 1000-1023 *iB | @scorpion-26 | #609 * Fix integer overflows in btop_collect.cpp | @dorrellmw | #546 * Support compiling with LLVM | @imwints | #510 * Fix getting zfs pool name with '.' char in freebsd | @jfouquart | #602 * [macos/freebsd] support gcc13 | @joske | #600 * FreeBSD swap info | @rrveex | #560 * Create adwaita.theme | @flipflop133 | #485 * Try get terminal size of "/dev/tty" if stdout fails | @imwints | PR #627 * Refresh rate program argument | @imwints | PR #640 * Improved error handling when determining the config directory | @imwints | #652 * Use native POSIX polling syscalls to read input | @lvxnull | #624 * Conditional compile on Big Sur and up | @joske | PR #690 + Various fixes by @imwints, @simplepad, @joske, @gwena, @cpalv, @iambeingtracked, @mattico, @NexAdn ## v1.2.13 * Makefile: VERBOSE=true flag for Makefile to display all compiler commands and fixed so already set CXXFLAGS and LDFLAGS are displayed. * Makefile: Added autodetection for gcc12 to make compiling on macos Ventura easier. * Changed: Reverted back to sysconf(_SC_NPROCESSORS_ONLN) for Cpu core count ant let the new dynamic update fix if cores are turned on later * Fixed: Ignore disks that fails in statvfs64() to avoid slowdowns and possible crashes. * Fixed: Moved up get_cpuHz() in the execution order to get better cpu clock reading. * Added: proc tree view: if there's more than 40 width left, try to print full cmd, by @Superty * Fixed: Show the first IP of the interface in NET box instead of the last, by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on Linux], by @correabuscar * Fixed: Not picking up last username from /etc/passwd * Fixed: Process nice value underflowing, issue #461 * Changed: Replace getnameinfo with inet_ntop [on FreeBSD], by @correabuscar * Changed: Replace getnameinfo with inet_ntop [on macos], by @correabuscar ## v1.2.12 * Added: Dynamic updating of max number of CPU cores. ## v1.2.11 * Fixed: Number of cores wrongly detected for Ryzen in rare cases. ## v1.2.10 * Fixed: Process tree filtering not case insensitive * Added: Paper theme, by @s6muel * Fixed: Extra checks to avoid crash on trying to replace empty strings in tree mode * Fixed: Crashing when cores are offline * Fixed: Cpu::collect() core count counter... * Changed: Using sysconf(_SC_NPROCESSORS_CONF) for number of cores instead of sysconf(_SC_NPROCESSORS_ONLN) * Maintenance: Code cleanup, by @stefanos82 ## v1.2.9 * Fixed: Memory values not clearing properly when not in graph mode in mem box * Changed: kyli0x theme color update, by @kyli0x * Added: Elementarish theme, by @dennismayr * Added: key "?" to see help, by @mohi001 * Added: solarized_light theme, by @Fingerzam * Changed: Made ZFS stats collection compatible with zfs_pools_only option, by @simplepad * Changed: Rewrite of process sorting and tree generation including fixes for tree sorting and mouse support * Added: Option to hide the small cpu graphs for processes * Changed: Small graphs now show colors for each character * Fixed: Getting selfpath on macos (fix for finding theme folder) ## v1.2.8 * Added: Support for ZFS pool io stats monitoring, by @simplepad * Added: Filtering of kernel processes, by @0xJoeMama * Added: New theme everforest-dark-hard, by @iambeingtracked * Added: New theme tomorrow-night, by @appuchias * Changed: Disable battery monitoring if it fails instead of exiting ## v1.2.7 * Fixed: Disk IO stats for individual partitions instead of whole disk (Linux) * Added: Case insensitive process filtering, by @abrasumente233 * Added: Include ZFS ARC in cached/available memory on Linux, by @mattico * Added: Desktop entry and icons, by @yonatan8070 * Fixed: Net sync scale bug * Added: tokyo-night & tokyo-storm themes, by @Schievel1 ## v1.2.6 * Fixed: Wrong memory unit when shorten and size is less than 10, by @mohi001 * Fixed: Use cpu cores avarage temp if missing cpu package temp for FreeBSD * Changed: Enter symbol to a more common variant ## v1.2.5 * Fixed: Fallback to less accurate UTF8 char count if conversion to wstring fails * Fixed: Small ui fixes for mem and disks * Added: New theme HotPurpleTrafficLight, by @pallebone * Fixed: title_left symbol between auto and zero in the net box is not displayed, by @mrdotx * Fixed: Mouse mappings for net box ## v1.2.4 * Optimization: Proc::draw() * Fixed: Ignore duplicate disks with same mountpoint * Changed: Restrict command line for processes to 1000 characters to fix utf8 conversion errors * Added: add "g" and "G" to vim keys, by @mohi001 ## v1.2.3 * Changed: floating_humanizer() now show fractions when shortened and value is < 10 * Fixed: Process tree not redrawing properly * Fixed: string to wstring conversion crash when string is too big ## v1.2.2 * Changed: Reverted uncolor() back to using regex to fix delay in opening menu when compiled with musl * Added: Toggle for showing free disk space for privileged or normal users * Added: Clarification on signal screen that number can be manually entered ## v1.2.1 * Added: Arrow only after use of "f" when filtering processes, by @NavigationHazard * Fixed: Fx::uncolor not removing all escapes * Fixed: Text alignment for popup boxes * Fixed: Terminal resize warning getting stuck * Removed: Unnecessary counter for atomic_lock * Added: Percentage progress to Makefile * Fixed: Alignment of columns in proc box when wide UTF8 characters are used * Fixed: Battery meter draw fix ## v1.2.0 * Added: Support for FreeBSD, by @joske and @aristocratos * Fixed (again): Account for system rolling over net speeds in Net::collect() * Added: Theme gruvbox_material_dark, by @marcoradocchia * Added: Option for base 10 bytes/bits ## v1.1.5 * Fixed: Account for system rolling over net speeds in Net::collect() ## v1.1.4 * Fixed: Create dependency files in build directory when compiling, by @stwnt * Fixed: fix CPU temp fallback on macOS, by @joske * Changed: From rng::sort() to rng::stable_sort() for more stability * Fixed: in_avail() can always be zero, by @pg83 ## v1.1.3 * Added: New theme ayu, by @AlphaNecron * Added: New theme gruvbox_dark_v2, by @pietryszak * Fixed: Macos cpu coretemp for Intel, by @joske * Added: New theme OneDark, by @vtmx * Fixed: Fixed network graph scale int rollover * Fixed: Suspected possibility of very rare stall in Input::clear() ## v1.1.2 * Fixed: SISEGV on macos Mojave, by @mgradowski * Fixed: Small optimizations and fixes to Mem::collect() and Input::get() * Fixed: Wrong unit for net_upload and net_download in config menu * Fixed: UTF-8 detection on macos * Fixed: coretemp iteration due to missing tempX_input, by @KFilipek * Fixed: coretemp ordering ## v1.1.1 * Added: Partial static build (libgcc, libstdc++) for macos * Changed: Continuous build macos switched to OSX 11.6 (Big Sur) and partial static build * Changed: Release binaries for macos switched to OSX 12 (Monterey) and partial static build ## v1.1.0 * Added: Support for OSX, by @joske and @aristocratos ## v1.0.24 * Changed: Collection ordering * Fixed: Restore all escape seq mouse modes on exit * Fixed: SIGINT not cleaning up on exit ## v1.0.23 * Fixed: Config parser missing first value when not including version header * Fixed: Vim keys menu lists selection * Fixed: Stall when clearing input queue on exit and queue is >1 * Fixed: Inconsistent behaviour of "q" key in the menus ## v1.0.22 * Fixed: Bad values for disks and network on 32-bit ## v1.0.21 * Fixed: Removed extra spaces in cpu name * Added: / as alternative bind for filter * Fixed: Security issue when running with SUID bit set ## v1.0.20 * Added: Improved cpu sensor detection for Ryzen Mobile, by @adnanpri * Changed: Updated makefile * Changed: Regex for Fx::uncolor() changed to string search and replace * Changed: Removed all use of regex with dedicated string functions ## v1.0.19 * Fixed: Makefile now tests compiler flag compatibility ## v1.0.18 * Fixed: Makefile g++ -dumpmachine failure to get platform on some distros ## v1.0.17 * Changed: Reverted mutexes back to custom atomic bool based locks * Added: Static binaries switched to building with musl + more platforms, by @jan-guenter * Fixed: Improved battery detection, by @jan-guenter * Added: Displayed battery selectable in options menu * Fixed: Battery error if non existent battery named is entered ## v1.0.16 * Fixed: atomic_wait() and atomic_lock{} use cpu pause instructions instead of thread sleep * Fixed: Swapped from atomic bool spinlocks to mutexes to fix rare deadlock * Added: Continuous Build workflow for OSX branch, by @ShrirajHegde * Changed: Reverted thread mutex lock to atomic bool with wait and timeout * Changed: Removed unnecessary async threads in Runner thread * Added: Try to restart secondary thread in case of stall and additional error checks for ifstream in Proc::collect() * Fixed: change [k]ill to [K]ill when enabling vim keys, by @jlopezcur ## v1.0.15 * Fixed: Extra "root" partition when running in snap * Changed: Limit atomic_wait() to 1000ms to fix rare stall * Fixed: Removed unneeded lock in Runner::run() * Added: Toggle in options for enabling directional vim keys "h,j,k,l" ## v1.0.14 * Changed: Total system memory is checked at every update instead of once at start * Added: Continuous Build workflow, by @ShrirajHegde * Fixed: Uid -> User fallback to getpwuid() if failure for non static builds * Fixed: snap root disk and changed to compiler flags instead of env variables for detection * Added: Development branch for OSX, by @joske ## v1.0.13 * Changed: Graph empty symbol is now regular whitespace ## v1.0.12 * Fixed: Exception handling for faulty net download/upload speed * Fixed: Cpu percent formatting if over 10'000 ## v1.0.11 * Changed: atomic_wait to use while loop instead of wait() because of rare stall when a signal handler is triggered while waiting * Fixed: Get real / mountpoint when running inside snap * Fixed: UTF8 set LANG and LC_ALL to empty before UTF8 search and fixed empty error msg on exit before signal handler init * Changed: Init will continue with a warning if UTF-8 locale are detected and it fails to set the locale ## v1.0.10 * Added: Wait for terminal size properties to be available at start * Changed: Stop second thread before updating terminal size variables * Changed: Moved check for valid terminal dimensions to before platform init * Added: Check for empty percentage deques * Changed: Cpu temp values check for existing values * Fixed: Cpu percent cutting off above 1000 percent and added scaling with "k" prefix above 10'000 * Fixed: Crash when rapidly resizing terminal at start ## v1.0.9 * Added: ifstream check and try-catch for stod() in Tools::system_uptime() * Fixed: Freeze on cin.ignore() ## v1.0.8 * Fixed: Additional NULL checks in UTF-8 detection * Changed: Makefile: Only look for g++-11 if CXX=g++ * Fixed: Missing NULL check for ttyname * Changed: Only log tty name if known ## v1.0.7 * Fixed: Crash when opening menu at too small size * Fixed: Cores not constrained to cpu box and core numbers above 100 cut off * Fixed: Scrollbar position incorrect in small lists and selection not working when filtering ## v1.0.6 * Fixed: Check that getenv("LANG") is not NULL in UTF-8 check * Fixed: Processes not completely hidden when collapsed in tree mode * Fixed: Changed wrong filename error.log to btop.log ## v1.0.5 * Fixed: Load AVG sizing when hiding temperatures * Fixed: Sizing constraints bug on start and boxes can be toggled from size error screen * Fixed: UTF-8 check crashing if LANG was set to non existant locale ## v1.0.4 * Fixed: Use /proc/pid/statm if RSS memory from /proc/pid/stat is faulty ## v1.0.3 * Fixed: stoi 0 literal pointer to nullptr and added more clamping for gradient array access ## v1.0.2 * Fixed: ARCH detection in Makefile * Fixed: Color gradient array out of bounds, added clamp 0-100 for cpu percent values * Fixed: Menu size and preset size issues and added warnings for small terminal size * Fixed: Options menu page selection alignment ## v1.0.1 * Fixed: UTF-8 check to include UTF8 * Fixed: Added thread started check before joining in clean_quit() * Fix documentation of --utf-force in README and --help. by @purinchu ## v1.0.0 * First release for Linux btop-1.3.0/CMakeLists.txt000066400000000000000000000141031454653170500152300ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # CMake configuration for btop # cmake_minimum_required(VERSION 3.24) # Disable in-source builds since they would override the Makefile if("${CMAKE_CURRENT_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_BINARY_DIR}") message(FATAL_ERROR "In-source builds are not allowed") endif() project("btop" VERSION 1.2.13 DESCRIPTION "A monitor of resources" HOMEPAGE_URL "https://github.com/aristocratos/btop" LANGUAGES CXX ) include(CheckCXXCompilerFlag) include(CheckIncludeFileCXX) include(CheckIPOSupported) include(CMakeDependentOption) # Make our Find.cmake files available list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/") # When the build type is not set we can't fortify if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) endif() set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_COLOR_DIAGNOSTICS ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) option(BTOP_STATIC "Link btop statically" OFF) option(BTOP_LTO "Enable LTO" ON) option(BTOP_USE_MOLD "Use mold to link btop" OFF) option(BTOP_PEDANTIC "Enable a bunch of additional warnings" OFF) option(BTOP_WERROR "Compile with warnings as errors" OFF) option(BTOP_GPU "Enable GPU support" ON) cmake_dependent_option(BTOP_RSMI_STATIC "Link statically to ROCm SMI" OFF "BTOP_GPU" OFF) if(BTOP_STATIC AND NOT APPLE) # Set this before calling find_package set(CMAKE_FIND_LIBRARY_SUFFIXES ".a") endif() add_executable(btop src/btop.cpp src/btop_config.cpp src/btop_draw.cpp src/btop_input.cpp src/btop_menu.cpp src/btop_shared.cpp src/btop_theme.cpp src/btop_tools.cpp ) if(APPLE) target_sources(btop PRIVATE src/osx/btop_collect.cpp src/osx/sensors.cpp src/osx/smc.cpp) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") target_sources(btop PRIVATE src/freebsd/btop_collect.cpp) elseif(LINUX) target_sources(btop PRIVATE src/linux/btop_collect.cpp) else() message(FATAL_ERROR "${CMAKE_SYSTEM_NAME} is not supported") endif() check_include_file_cxx(ranges CXX_HAVE_RANGES) if(NOT CXX_HAVE_RANGES) message(FATAL_ERROR "The compiler doesn't support ") endif() # Check for and enable LTO check_ipo_supported(RESULT ipo_supported) if(ipo_supported AND BTOP_LTO) set_target_properties(btop PROPERTIES INTERPROCEDURAL_OPTIMIZATION ON) endif() target_compile_options(btop PRIVATE -Wall -Wextra -Wpedantic -ftree-vectorize) if(BTOP_PEDANTIC) target_compile_options(btop PRIVATE -Wshadow -Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Weffc++ $<$:-Wheader-hygiene -Wgnu -Wthread-safety> $<$:-Wduplicated-cond -Wduplicated-branches -Wlogical-op> $<$:-Wnull-dereference -Wuseless-cast> ) endif() if(BTOP_WERROR) target_compile_options(btop PRIVATE -Werror) endif() if(NOT APPLE) target_compile_options(btop PRIVATE -fstack-clash-protection) endif() check_cxx_compiler_flag(-fstack-protector HAS_FSTACK_PROTECTOR) if(HAS_FSTACK_PROTECTOR) target_compile_options(btop PRIVATE -fstack-protector) endif() check_cxx_compiler_flag(-fcf-protection HAS_FCF_PROTECTION) if(HAS_FCF_PROTECTION) target_compile_options(btop PRIVATE -fcf-protection) endif() target_compile_definitions(btop PRIVATE _FILE_OFFSET_BITS=64 $<$:_GLIBCXX_ASSERTIONS _LIBCPP_ENABLE_ASSERTIONS=1> # Only has an effect with optimizations enabled $<$>:_FORTIFY_SOURCE=2> ) target_include_directories(btop SYSTEM PRIVATE include) # Enable pthreads set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) target_link_libraries(btop Threads::Threads) # Enable GPU support if(LINUX AND BTOP_GPU) target_compile_definitions(btop PRIVATE GPU_SUPPORT) if(BTOP_RSMI_STATIC) # ROCm doesn't properly add it's folders to the module path if `CMAKE_MODULE_PATH` is already # set # We could also manully append ROCm's path here set(_CMAKE_MODULE_PATH CMAKE_MODULE_PATH) unset(CMAKE_MODULE_PATH) # NOTE: This might be problematic in the future if other sub projects depend on this or if # btop starts producing libraries # Build a static ROCm library set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) add_subdirectory(lib/rocm_smi_lib EXCLUDE_FROM_ALL) add_library(ROCm INTERFACE) # Export ROCm's properties to a target target_compile_definitions(ROCm INTERFACE RSMI_STATIC) target_include_directories(ROCm INTERFACE lib/rocm_smi_lib/include) target_link_libraries(ROCm INTERFACE rocm_smi64) set(CMAKE_MODULE_PATH _CMAKE_MODULE_PATH) target_link_libraries(btop ROCm) endif() endif() if(BTOP_USE_MOLD) target_link_options(btop PRIVATE -fuse-ld=mold) endif() if(BTOP_STATIC) target_compile_definitions(btop PRIVATE STATIC_BUILD) target_link_options(btop PRIVATE -static LINKER:--fatal-warnings) endif() # Other platform depdendent flags if(APPLE) target_link_libraries(btop $ $ ) elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") # Avoid version mismatch for libstdc++ when a specific version of GCC is installed and not the # default one since all use the default ones RPATH if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") string(REGEX MATCH "^[0-9]+" GCC_VERSION_MAJOR "${CMAKE_CXX_COMPILER_VERSION}") set_target_properties(btop PROPERTIES INSTALL_RPATH "/usr/local/lib/gcc${GCC_VERSION_MAJOR}" BUILD_WITH_INSTALL_RPATH TRUE ) endif() find_package(devstat REQUIRED) target_link_libraries(btop devstat::devstat) if(BTOP_STATIC) find_package(elf REQUIRED) find_package(kvm REQUIRED) target_link_libraries(btop elf::elf kvm::kvm) endif() endif() install(TARGETS btop RUNTIME) install(FILES "btop.desktop" DESTINATION "share/applications") install(FILES "Img/icon.png" DESTINATION "share/icons/hicolor/48x48/apps" RENAME "btop.png") install(FILES "Img/icon.svg" DESTINATION "share/icons/hicolor/scalable/apps" RENAME "btop.svg") install(DIRECTORY "themes" DESTINATION "share/btop") btop-1.3.0/CODE_OF_CONDUCT.md000066400000000000000000000064251454653170500152770ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at admin@qvantnet.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faqbtop-1.3.0/CONTRIBUTING.md000066400000000000000000000036371454653170500147330ustar00rootroot00000000000000# Contributing guidelines ## When submitting pull requests * Explain your thinking in why a change or addition is needed. * Is it a requested change or feature? * If not, open a feature request to get feedback before making a pull request. * Split up multiple unrelated changes in multiple pull requests. * If it's a fix for a unreported bug, make a bug report and link the pull request. * Purely cosmetic changes won't be accepted without a very good explanation of its value. ## Formatting ### Follow the current syntax design * Indent type: Tabs * Tab size: 4 * Alternative operators `and`, `or` and `not`. * Opening curly braces `{` at the end of the same line as the statement/condition. ## General guidelines * Don't force a programming style. Use object oriented, functional, data oriented, etc., where it's suitable. * Use [RAII](https://en.cppreference.com/w/cpp/language/raii). * Make use of the standard algorithms library, (re)watch [C++ Seasoning](https://www.youtube.com/watch?v=W2tWOdzgXHA) and [105 STL Algorithms](https://www.youtube.com/watch?v=bFSnXNIsK4A) for inspiration. * Make use of the included [robin_hood unordered map & set](https://github.com/martinus/robin-hood-hashing) * Do not add includes if the same functionality can be achieved using the already included libraries. * Use descriptive names for variables. * Use comments if not very obvious what your code is doing. * Add comments as labels for what's currently happening in bigger sections of code for better readability. * Avoid writing to disk. * If using the logger functions, be sensible, only call it if something of importance has changed. * Benchmark your code and look for alternatives if they cause a noticeable negative impact. For questions open a new discussion thread or send a mail to jakob@qvantnet.com For proposing changes to this document create a [new issue](https://github.com/aristocratos/btop/issues/new/choose). btop-1.3.0/Img/000077500000000000000000000000001454653170500132055ustar00rootroot00000000000000btop-1.3.0/Img/alt.png000066400000000000000000004626661454653170500145170ustar00rootroot00000000000000PNG  IHDRt sBITOtEXtSoftwaremate-screenshotȖJ IDATxy<όc'KR"Jh/)_TJQ)%xURd22d1~ όsϹ}Yq$ @ }@ m@@ )<}@ zQʼnUv }J@׮?+J1v[K'~[6]q֒$KH g(R0ĂܔG(XQv%.6(ۆPGkW_Ekv}=^~ 6l ECpg8sf׭B9ؒ"u7<r9$Ts)>.ԈxߢP鮓$&X]CΈ p3JYǂR)qSS iR}0eS$ ]kobr(QǗ w-Fer6<37?RĔ//_(#UP|C-Ƽ}qs}iӖ}4c.¬mcH;|ऌ77h .uP `Iz f!7Hnˮ.PX$;v@T_,>J-.// rt,z;S>%#)69/ y#XC1)J{qmtt E1*>3jhVV, NΆ#|ԓ7;rnSS(vrm8# QМ_`\9@EyE369B}g%_iD`_ZbvXۧ, OPg2ģܜOO/Qr3\h[ k?KtkO!KYV*^qÈkVcLQ =zZ"yJ'#(Yi;wNo&WF|䅩 k$wkƒ=OƤꇒȼ$uZcpPWK5-DA7|ynh\33q(?A~ŖJMȧ%%_wlmhs y敂aY%#;<|oFEֻ$ ݲ?cO*_ݦ٢.>¨oLӀi JbiaoyBvZVyZi^ xyS(mo찡?Rt8ǬZ{D4tM|5׏>eum6"J ExRa|ZeK\(,AkUS m$tfK_W `NuŨKs']Ij:z:0kh!MWGKB6e7m=C\{f)u-9:p*RNhvSE_sNwab***F(4u4$$ı)6xoeD?8gdjYN/f彴c\(n\74[ȭ9jtaƠ E(L# RSI|)|Йjf d'Q[tU^bȉgqAqvL*Q&4t%Drω^^QS_ ];bC Z^2U_WOcƖVKU@dfFme))wNnzzZf[A͵o hDat8k~vF;?t`ΓY#.|ZVxs3fD{@@L(Y#Gr n.W( ?z~5//0M$x?љ)z㑊֗ϬR흕N۲\(}09 7/P% <|8e-1zyn~||3bM)TGk@y=7//GaxmGmOu Hׯ@Cϙhz{5<H $=uezS*9?pAR Fnr80@Q{q "c qY^G%~0+MbU;=Eٙ9_,7/ʜstɢ"5 9< hxlχ=DYc?9{蝸BKQp~N(AAlx[B1.zȇ'Cʅfd81_TX8j< {uu2/y{%x<,#-Hzy_ @}P]./Iq@}Vxp kԦڸR2lXaϻ[{%q5[dY_Z Џer }WKjWUM͢~U ZOׅIaPc£ĔXp=5> FSuVtmxyyĖ_˜O>Aj466@e޸jKo1It ۭ8ۥF;h ؛g໮9Hyyn @Ϯ\Sy$+2 j7;'dQsC=vyFn~5E/M\lTktt!gݗjR.ƄH$߯y%Ϲ_gIq32߆t+BԺ/;ǨzZ_Zޱs&)獾?PY EqwQ6ˋӋ +fHyu2՞KՕdʁNW@ͤFf[4h269-huuK[::ewݿ7.;CDq,J$_䷞.gb`0g1D":ԾRi6~1q:M`zաyTOJ/ܒ`Du>(Xס fJ-@шvkNf8 LI0nLof0|ۻA|0Qr?{Ϫ؍7vņQ%ʹ6>VAAdee( '')HZt9sVѹj0<^r{ O$0@Hhdo,kڸ0;|s[/lll(ߪR@-^$F:saК{O~ٸQ%jdCf7:tU;#Ք2D" HXV5ZY1/u# -ߩw 7ɣ]36 G/H7'm H$:Mmqqa j ‚ӦaS3W}cʢ*l4\ k~D"n@RE2v*guZTlWhhh`Hpe%ȱM$ف^C:,8*b=IC^YI26ɈF3{ I+K^ݛ$0ruD E[vd;U[.LL_6x҉Ƙ$]9;_VFmmuhwx殓>ۄy2kF #lu+ p ߭*ANl8(ꚛ V?z QqëݐVRJhh(icR}](M6_JilnjȎ y2vӝ,ϗ} ,MU%%6RǀΑ6E~^ӕHyBb3|Ʃ>,2~nav.xV z)IahBC" 9dJ1?ȡ|А5["mb %3!-6f:lwd5*9<% =OЈS[juݽ+Oc(兔On""鶬 LL[e2xT+?g|;p8xD ƒI2:8Z=Za/%ui>{nu䣄TvNfb"Cճ0N#7LL3[8$.-.w!RSvg^s.JcoϲmK5&;?0Q%7jpYfpwV^(#=w*On$!:ވ\2F13+5%/ڷeX1) $0l|s q$kpzkvk*Otvmq,ף>%18 &'oz^l]lTǜv{%[iMn&uQb;MskLS{l[@F1EG 8nyn6N! *Ey^gn;s^I`99s1Fں!ϭhɵ%֔ST# CTԻ<ą=,矝h5O>E);;8黻8巸go:?k+ l86;Ϫ}W$oY5ݾaa#;B<_Ic/8w=8Q9.9IqN&*:mOQLyqTW[< ^u,oD@ ?rJW<`=#q8ٱ@ zJcM }@ ~ey?򈿐_K>@ ◦? m,;![7w$z|mr/mZcn$G~7TFڻgm˹Jmr7{%_N]@ @ @ SX?+J1vيT.-?#){,ѡ; E:Rmn-ˎ 1yej p.SK~INcAp_[ɍ?u*$pϩ#}@rյY7s ~:G ^(;:H"7WB ٢Zw35ur8_rq%#)6CazTJv|nEPb˿rυR23е&&| ^C1)J{q+aD$:@y[`ɢZ'8)6Az翜ւȻnfAUU9"*((2,%<2 yy?7Ȼn'-b:w-Fer6<37?RE?gLTm ձSDCiV[!?9+3PEilHMLjVTmwbBXCo*9Qhq2ɡdg %ԏ{ k\PtD~B)i 5u~Ne4RU/DŽ @L2p&,?"jD^6Xhy&Um^@|5׏>eum6">p5gd7~WFt'jVW  lԜx$ '=YdxݼW{R96ͦ|/'0oKMYY~c&6YMD"K,`4,.z.]t5uQzݎYzbCWoύ/ Ζys+)omx\6YXɢ"59;vrڠ{q݊r~=)/qz}Pd},T orr~r{>oBG9L6^[T0(s[R͔яAz^KE;~=@9__yL.-FU2V ̕ϋ $_NytiBHfASq k*9?ucIJar@`0m0ܻO? O]'ٹj!9XWn6XD0Xtr4iws} g Qu>~顁 ]v&~-9| $$D"No\[#! Xl\cţvewl+s_nWR+:I @g OhC+-?-" w?oKu+TY2Ppx7ct07MMt=~DYx5yZwSǍJ6^ot5(*H]O} 3htiGJ*Ӂ@h- Y1&4c`,;@VH)OHojl7NOKt{"'++@99y|>F\atÒ+wwIV< ꬐v?TPhjj<M$F:saК{O*(ɜ<8IɶiNSfN5>O H؞֪}|xx2Sc#@V=H|#1d@ |wQ'D @XXd!`ґՏ:_TXga~эyL80YIO | }y-׸~ZDz'Yt -AscMe#@Kڎ 4`(O|.k:sdݘI1dR?!Q5]eh\t: `ٌWʯY9=n-ѣԇ VJ^AhAQV<_HӟGcP>HlH fc>XSO-悕a: gu&~fD%ZӦӲػHவSJ^&z:Gvڨv4"PX0h@l2+;Wp1㙼&9 5Y:Nq!zf.,DD _+(J)-ET>Ka8Ckʌj0 }㰡ddN3Z:; ,*1l[o(}!󐗓 {#XY&3. ϲrHJ^: & fe QȹBYg33MJ &Nk*!IMm}tLd]ؼ\}AGGQb--`>CWUV_WG OfW:[8JUEu^xbsNt?0O߰b޻o`B{htV+t.< ]3c磦1 $$12폿o_l۩++V9bN aa_ksDdt+IO\ivryN\aNFeU_u_;$:5XPsƐdyӈ8B}h^iKGGCYؚ9=(l,e4i-]:O0nrVmӜǤ|MI.LMJb ejgu`,tPjz:})␩[WYNJ7[hOnVO}4q*;@|_ret,a<5rbc2b#?XJ6G0}jjyyD6bZm\qGzY0wD ڊ5۰v凂hv~]0T/f'.bKګcj{np{Pnw 6Ѷ&{s+Y￵} fuiWI#De e2s^D@7ߊ@ zNpc_;oVk'z?/"@ ؂? @ NA౫ʍGuleŧʪ"ε~$*?f7~h#@W=GD=zJoo@ @ 8@  *ʋ? >iyivxbaqvRMEj$ч?Q([^Ly]Pnʵ%^5]>!)ybSȹ:вBl5W_}K$.%e2/>wacUuDߣz 1WKlt]3K(_r2c#]@LZv/7OaKjkDo '?dR^^gdAt{̚'xN/7h9~:)YiwgoyD|jfv)%c+ZO4|THtwh*j?NνӾN R!>+Jc) w."h~UjX6h_^Se O-uo?As*WnB}g%_iNvΙJk7?շRRZ~OL`%9~bA}=ZPQ_~-=?ULI߻&37+?rfcKf 'WZ:KH*Wyst9uLrP넧,eY{+o_7Ǚ[ADQɫ\6L&_YqԀ!j-/mͲLM' U3e*DتI;O 6ʡmF0`_uTL95s*.""JX[3+Ϣ$G)FjևF:{]mĕ׋pbCʔ׃JIIz|~&˼*AX;Fg[qL'ITU8UE!xnXaܭ_٨H-Oi{uTS3wcks@[gDv9;WqDcݤ[G})]~y%yi>:/v]O* yqv y2"瞛w欜' G?@oOe"j<9Ks]LX3,za2]\7?V&&':"wn2nwF) 8=Ρ3ҋcH2 ;ςƞ" ~@ ܶ3|A{}MeDu>"#EFTC*#`잚j/yиo.Me8 J%DbcCB&>~oة&٫bv:cCfZ莞\XQ{qÆp:fE7K/uͱ Y@䥥ˎ:.~o:WaE%sOs>ޥ-9_$'vZzdtMt:AxfќqY@ש;asssj^]=m:à'~ 0,&dQ9<Yco?&Mx:ςX^^+))( <hr:GMU'hkO:pV!4Z#=Vș9M}j<\SKw<[t:wc##+[XP"ԇLYZrl5Tp}cZVXqwTǬUʭ/c;k] _Iȿt 9w4_y$`SR Nj%T*Tݻ꿒mHBB O>$ 9AcԀuRKV,\ʺ}4eŇ²X߭:܄T`Ʒ\Bm%]u",->ZN%q8/ۻt 4s{ *=7'%)YG. #kiVƕ˫ f a^ U"/vHu?J4N6-k-/MӅy.<0iL5#!ϲ%oΞihfƤu#@ _@oOepIy6/a(0Mifyڭcu ڝnOܰ|ƹ[}b?_˺9b3`ތE;]7ejEAۢ4py^ M17Zr:*(i;$sx^"~-CRSSdy ^AQ+ˡT_ @ ?/5}FӍ^v9ԳMgTxSD"No9LшĖhss3A [ũɏ}g#))Y^^ѥXcEA^T{q5T0!$-=剛ڏuSǿx;/ǧf[W[7mܹ.mqFu~6嵒]?TPbb 淣#"70!@Iصlht:OI<:H슨,޾"""]I),yD?SyaM@3А C8D>z/(oNձ71dKsVO;XB@NnGBC6[@ _ffb$~ƺĖ7Oeѭ-nV[ÓzGANJ.heyI+kDr@)"RΆJY~n}uu`JRsWW<ߛ\^@ @|ͫgm謤;27%O>$ 9Ac['ei^r'Rqۯ| өԒN:^TjI mܔkKTu]3K(_r2c#ǵ7?q'Sb籥lF ~,#JM7TkOXSu~JQק5۽Θp!`Zyf,3\M~Č =z @BXK+GjrMiWX䘥_TgrM@ rx~b,cVy-$Q[V\\VMk;iǖ~?W훗稧,8ȋoۖFPMg ĤW`+Aǘ?SvrYݶ.{|zkj;DGmY Ɂc.wNn;[ |Ç8[0 ɲӦ mcIZ]{CN?d/}洞g6M|yG)6obr(nfCI%=LΆgG]\2l*0\#:/3%E[j* GN":I]\B$&b U!ǃ VML6} 1yԸOy $_NytiBl#%mޔ[F}[D<ϛ0l @Cϙhz{5<H vyXGmOu Hׯ$?~XzسWrI[ z,)htf7no,: jڸ9su3&pl4[=_r}nҸVt $=uezS'с>.ȍ^8JufryJUSci}m^Pa,vs~_Z54Vr-xnXaܭuxǜZL5>6c/@K&\Te`Y6p,$1Cx/v#X;0tⒼ4'q}ׅ7.1l.#_W5=X///k'BB,Th4:4kJxqq2C'?xzag]HPw?H[\kqB\^^\XIc-#;O[>>nDSu6l0BRWO{~Yʙx@΄d0g*?=zܕzg:ɿm&E񬳿G+R7:ߥdG4co잝^lޢ*jN8l^pH[>aLܪ"4zYWDZ#^Dte'[o~' Mg'_Xj@e|flԹk#TS'6z|3+I,-wVy ΟNY{8L,g-sᦽPߞe&&:n˓R." /o%K;o1ǦFrgbԵKK/R$ddoE"d/[24Eiq:vk}yyޟ9l0}-a-//Pjfˋ~(,(6bj/|D1uuJ]n'R333 Q/<某/o6hrIק\?Ɔ 7YiN[vxg̘=cWYg[ ; wINAG$Kp򁪯w!8ʽ夏lrPdU?4Y{܌buv2{q^]qק lS}5]>S'1߷V/+Kkҡ!='2L{knw:.v-P}OAv*|BKxo$bұ]>p.'*0 d{dx6% {iqڛnV~vZmŽ_}wO>斖d>ŝo%o~gÓxk)5ttFE}璒AtQU 7]2z)7n랕WfhQBiQ[Lφ%GSZv]3؞2ڇȏWHOQNuȘD 3'5@n4F^dNB*i\fbMKӦ i~~[ˆ)_^8)y-'2ϯl۸A'}XZ6T?h0:V*0:#?5Ckk7gAlW:~MӦNB.nb/G3^y6utK[ԃ]:An`o;x?̨Ro>W&ꮿxo^:!Bcj?n.Qѕ@!B!B] ^'I ))ls#,$eyB!q>蟿zL ebf$v +  NϭUAP7+B!Q;z,njDz8,?_Bxq)-|ub庫Y]'B!\CVukG!B^B!B!BB!BW8BA"*mZ>Ka9yYqN<=yՓ{5 S5s4m /f˪PB!pB!H*J]"($'8@mǪ :m zj3Ź8ߪ>eifR[1O Gͬ3BFUxfegǽŤv NIr[?A_\z:]yILR^&oMFV'kfՅ}>ŠABv7X%rky0<G˥V%1kR''(oꏛGXP|:%j'ǎ;gG)ՙ3{޿Ow92Z3OBͥ6XG(}lLw6QW)6䃐Y Kq^-=ezn3?޸'Osӌ3ܣpFW΢}vn*)e7P.NPسWHAJJAJJAJ}_50?zzܛ58n6*!K§_uoNr?bMU3?c'S-wf3IaҿAK0rŸ]h먇8ߍf3d][җIys eoTX3ՇdzZyLKl"Uds{!@xWhF*-+)(,cJ ~@;,g9߯y[{ΧV>I** ͺJC?Bⴝ'Lpypְ9Ǝn<Ҳߞlޓ vY5ʫ> x\a;Ws#SRR~WτbfW^dyk3Q9yT򂝁EM`ym\''jQ_b9yܠ踎 j;gscל=a_k!KZKO5EsReTS$U.C7VckXsb݇) ))&eZ|IT QL ""slx驥"\B`˛w.<S}Ӹp1˲">=S }mu0WuAmFzF;QRou·OY2\]qQYZZMs쥭M{qCNiqC_?x#U%c3 !b֐:ub5.td(ӱc 8FkE鱝wx(lzzϖL$G>u^ߞ +`U}#=HGwd2Y*/'Nʏ~yfֻwCMgLLS $IXm-u][qN ns&6}WPmo0tɸ4-RZs땭Bܡ5zhpqq =8P{]fٷgʠA6i^ɬp]sa"kl4?O RYQA4,{_l!ޫTw[eϫooКu#άK|Πh1WU{mx;hD1oǢ)\w|75$cۋf,牎# >}<R(e3*"ZBǎsN]|+U$zu'c222yyulvߕ8?}-1+VԫjY'!MZx^^_ۑp+j[c\y{ʩJep q\"ϭ]F`ӧgTgQF̴L}xOTTpZs{,DA`2/OgVԿUB?HKM^o(wQF Lmg ߿s5wk7; #.0:pzǎ,vp~~x݀<6; FCS]=Z@ykѻ@q:n8g-;H^/'~>ɯ yèkcLsh_<QL"?nϑpЄD~|0<:ƙ Kۧԑ{%dƼu`0> !xzdUO2#nZҜ6]H}<o b}7kbݯ=\\fiܓEum緦[5_ݗ1`젇L3(>&ܝ[r;xTuϭݑiyCbK_[̲ꏆEnO41O9~=&1=6}-_g?_IMNa1۲[Lz=xhuPrDu!؁A!C!3M^n#!5ثibP}f:̄{vK=?!搕ѡz>d҃[)lAJ~,,v~|w*!z**WGmZ}ۼI-.5:vTܒ<ՌkW B!B!ITEI+VZ>.?g椯 IDAT~ )xpylolx驥"^:L 4jD_)iiΩ)iC8ջ38jRg#Vk_?zNְX_yRᴽ!#י">=S }l2 W<B5N]X{ik^SZ_x\Ux7b Y%_?z{f圕&;i{O511JPa&op>H!C/}L <;7H\_f6r_b'Rou·OY2U [L& PI/ϬziH\\BO5&/'ơE"z BdSAk֍h#y( Y cfER'fW,BΈyy/ŵnS222yK[H@EwzFN'>vȯ|)+FnR$?CBy^^ !+Y]BYdSF]_W}y??^~ 60nڹ/_|qqqX`mV3R~k҃f˖0dedr H)<ޘ{#7,¸;?; "yyTj'6m <̎B!ѳO}ͦJ&EE)+%$8¸"*[Ux~="#ck,?y\? dJw%_+ݯ;veH #O  ˏ1U|O\3ehs&Ŕ{)&+Y ZTe+K@zf򲬿j'#V2KN'K!PWgz6,9oײ慎w=2c:^^x0fύȋ\aEC,֝>`п7`ӎUĄ%|H^'?{p~~[ˆ)_^8)y-_7Gkx(`Lͥ39jZ7za;V!a]t]QwejG!yͭ_rsiI*}r_\zتOS]c3bR*{'hѯ.$97~fFykޯk=/=5)IMvSp"*lMTZٵaa]hϮ_t/s6-))SIFJxVSj;yItڼP ֑)(g}))oZ\,Iq^-=c-ӝMU2&~(/=GᎍZoEo4USn=j5`j-(g}iކ̏7nb[k TR3whڄq+S`4:#N%e|<;K@z7ᩴĈGnWͫ:,"-.-|_&'8 >~_NKĸ&ʠߦAg0|*\$'\5-n3qNWjR=qicKoSi) #Թ$??EyyjgIC7$( OI,93^yiFUG 2od?])_HsWX>19tn<ҲߞlSSA K',̯~PvnXs;杁5~Bn_NU$\@2A\8GfǃBzԛ+H-xR{Ag0hg& io9LJ(XWS'@uћo_ٜȓdZr|f)1;h^3i$[ɮI; y[{Χ斕Y? r LtB<.0Jr+͹!;A#!ﯸыKs>^ػ7V|IRQi٭4PfaGqKM^bsNxvÊ%z|!\;{}eċ{>esm{=vNUJ[VGOlJ*#GT˨,~.vR<B5dTNsSe E-TY*M~\뇬Qgzx9{ݚ&"SjGի)Da{И};,lߤ~KOS^!DR'c42#VX{ w.<3aA%џ֙]癿8H3>pYgΥӖ} Q1X % q', A+ 32.\%״ҁ$-?>7&Ypz7":g۬),=)6$ҾzkՇYjI)鲂UN~GiuoypnI@֐M yIzXEEُ8T6}D';V0lމzգB%]oI=SOW/mow7t!,$gl@xPXH'p?~襫'ywo{y'Ә1F@.:YRN a~Y"b$>(OҋD%eq7**ALap2?m6LIQ*/8 \d2Y*/'NJ~yf˪9&o$%PA/(({+C0-7|hYo**ET'*4\Z\|/;hrb`Ljwk**eϯ|rHGHAy`x.3̐5!kQ⯖IMd3:VA1\gk@n'Ǔ6Ů97kA &go`1F{f4?T.Ev0i]=Y2~@n#v'Hz&h5r~kWr$N!͹j drx}H1f[G7f+o|w`o]kl`*L9Q^^-T=HeB Lf `m ;cΩu(2@-JX:SS{cvu%mzg! 9R&@n5Gu!s͚Q$xWg @U{fuѯEg? ҫMq?wS?}y镼~L1\z;WH rݵN\9䭱- >[&3gȢu.t6? $.VQӖ*%t::KJ_D T@3_suy΢I,_0`|?T{F&ȂK:yUW ZnęorB0{}̊ ůtpO('+2f_U-&ˆk-.Ud+G[Hr^*ߠD `<ảJOݜ? K C618L"u.l~~>LcW7 d>yw[|rM't|]s ^8L1bW|sXpAmv[# =`Vqq1M^o.N(1Mm nbtEC2"?1#%E[-5 I 1ve{N\8䂾M U3Fc@RTѽ-qNʺ -9[Lφ%GSZv]MQMOQNuȘD>Xn4F^خV葕W7>LiIst! ϭݑiyCbK_[pe_eq_Nvݵl ݯ=uhmŸoP'VEֶAGc-)=da݀G }|Ov+as6 `&ܳXghI-UA':{,.C{ioD8Oқ {݄] b@Fct.6#sB9ĻkdeǷ*O~=bu)ֱk9X90щ2 #{7&]teq!58jLggNQ{mRm5}J !+C"޶3(SӞ0½{uYfնʟ\]BmnʾEx j'm6w֢:Uui;Pku%7;pBm@!BIycKJXz'|Rj'(]ze*=PVK7]iyeA_.Jj4N<=fԤ$mg3Rxla-Omk:y÷UkUo!B!^uY^ʕ6&xC7B!}'BN}dzt`dfľ<^|);OvȺỎ.3'e[ Ԋd֜ MJKws8j!ϐꕶΎ z!6*՚x6}h׬zz`T=|=En3cx8QE[%]|۸Л+4+ ,,&k( 3\zd) ?j~UsK̝1pJCFtځԖgy{j#7؞98ZH;7_gh @‚Pxct S'n%Rǭ;:{x>=cӎ+aپ'wpx:) ;Z@cJj=~[VҲn0uFF˳%f@FLIp.mnĻk1_0@N #r_pnXrKM{/F5ni]v:`z dVoPYAgą\]^{2iX-6x琺Z~'yfLS M:,顶߄R#/@;ŧxz>ˣ3%N.oޜ_ 2]N/xeV >BүlYqͩ1ڈ= C+'T7tWtVr U֐N'?fx?~Ͱ_RG|k@A&^zJKIuxft2n|Π%FM1<;!190!P\Ȕ58LSPh7|2ړ X~Ͼ?QyyP+fFxA QFutE5rYYYPʵ+*FR yN;s:_]u{wHhDd? G1ݻwu]= z3@R3Гf?$~/QY%9IJ> –PMk@oI ʐjݻј#(I~Z q$ dV6&>+H2[z @E Ry~RfZ/%4-gj3\G1I 7rʇw5"%ɻJ N,`TV2D"U|)]* d90APuItks#KS|\؜Xc{k/۩@A= x. .Zw3WpYL"7^Y9pr6Xtu'Qg*LpLOa5`~Mw.[ ;yROVK}sݳdG*+WGIjx3hͦ \vүo!)O݃Ja^:N*F Wgп|Mj4ff)_?%39DbX ?~˘:+~b*i-nˋ~Tt?TlY.}NPBS_0a4no?sPndy|`HJJ$͍BԞ<=[c &y98V}S="cݨ-/Y{홛 )%I!3A=;@նE>cϡ1}I/ ڣMB]}_˫v%H22u~R\}%vgߘ{c Ct,,*P"D֜p`E= R?(V8 BJ֗/Q#kk#@hwKbσT5|y\'󇢤`_~}7a`~']΂a3&)ѩu5$[T{\f} ^Z&un2,6IvN[-c=|kgΝC¤GGw>O\}ng'rT=z;N۷Չf'ۓ+t/7ɫ`Ǘx -!nO¦cFzyh-^N ^W=^\xIAg6qDoW5/zRCmtsݳR<춯pw I/qeh犣aYG 4U y8:yAϷNI{qmSӞ,.K7nQ->S/.V*{sب^yG)B® 7ݎ9MVA6nnGOR"=h :RfwՁ$l|]?Wl+(j<)Bgk+xvc@+,sLGF"Zq䪽E704{o-J=OJc{jFӵP[vvK_w'o8`-@ʒ'[B)] Bp@u\9N&4ڳ}M>Uk 99;#ZބoEV(&lnJ'GH4">}d[?bn5/CA OݞOwusikE!x_{찜h, 7*-YV[ d`q9QZ<\i΍\ʢ*4i^> %rF,Qpmy5фl<n"2]؂yǟm%A~LJ&o*&6~b.O`x(wٌ3A1"OWW%Ϡʗ+S\RJӇWYeÐ􄘀K'zZyLKl"ŹD92i*z` _{um&2.3J 6+=!v|jg.ʲb</-ˉx.]M]YK>덏'9~ )Aז-G0R;G[E޷o"ezwRc"0/W_J_}>5:5%{'g3?΀ B6So󇂈7nǦ،7/?*bR^ OJUvMV^t.AffdQ#JIKsȓطj̤ M%@j4ǔgǩP$7\@^Ġ&6Y_1~+k(GWy' VckX"gZf*#^~*~WU.CI*O<>U`_݂JRM]k3 Oi=vV/ͪSLl! +%ߝ YnPc.yH涼=+'V6ep.LπUsE9&'9y6aP}sM&4^j+RJd [ 5u /eP9ݎnQ / TNo0 _Q]=}esȵEwPZZ&&&z!hqoZzA~O2;1@D" e~k_ Mk|W|uK3SMC>$W}[TRTNR+ؗ"v  >ogV5مEU;Nވ)d| K~x? 56& 5T`NLM L&D"K V^ߞ +`U}#=HG*t8U09G%=cX|gf&LU{[ 3VKdgZQzlݼ_Aɼ'|uRo?Xݙqbɟ)E}?]qQYZ* q麊N<1f΅ Mħ(-˾|)\ڀKh||L3L-K䪧W]pVU.N:pe6JW6ƢF5&e< B摔3mR7?mĘ+*Rݽ6m}]w<&>{;O_ dWd8'j>~{ %K },j"vM#X,~ yWfZoqD&հ{ug%9PJ©A_YPa;P(<gTE(`U Y]$B8$LިSSWˌO~>񺳮DW?5I[P\PP\PP\mOxӣeF2eɥxj:1C 0Tkc;?fp #DG5|)١```{E5 ţ"֔ӕ5x.[ qRFM(HaG\Qguй%#1H&g=_CElg6wwyqZVzV(8U)Z)'b^~`ūk[ͧbإ+/}o+K[n6{OqG}n6~X-"-k?o}t"?lPϮ[q6x>}')E }m}/^&B-vK(lOh|y̫Ů%}:0q.߽۶ͬ(Kl2cF>'-lWzB|VOqѷQ8~(dsEZPd. I/:~IM.m>TU6|vsaA0e~oOڞXlR=-~z+ -Ej eW4}aMwv{:ݸfX9?ȿ%Sh X^]>a{|iX݀XSc:K"i]/A"Ut 3)@@HZc_?z$>s/`0NJp߼gu7ͤ*ޮW;o50XAyH! SD@@@@@@@@@@Kfj?l3>Ԁׂ? 08@K^a2?A7"soۛz'DrHp魻%IR?8j(/~qK&KwHXj?*v{B iÓ)7݀D o!{!6 "u7Pz\33%mqQTꉧ5X%-H OǨz)kiEp_TWL%mx*\cis(=m*%W˭˓O$tŸ3V~>n桄ա'^8Xs=!Uޭ-"]`]}g`˴~)GjCB_cԤmQgMPu5GX>m!\ꨌ0ߝ>Үvs" uEE~/>Q 6npc9Q;&fk+1V@`AVbZh@U~lRm3CeqJpL'f#:<@Gk!ZGu(GKk3y13}}deӊ%KizB度iOR9G6v&iFmkKes1cz#jrs]#Aok WWyN-*(>Tes+]o=͵8PqjOC7, 0[rSli/ٙY-4ߢCD?UO>< ^<$xZY ~EHjN;&ɾn'ƳF3 h)ς3$\8Z C¦D}NI)̍ 9lioPr6ᱼFy?˼[}V\tUgʨOnH+r5"fpÕwYC]Z#ujF5{.@ eh 5N1(!'\l@xy[ B *5㜔'(PKj%jRfs13LGI!mٜ&5FJbf!.:ԴZP[Z =t _bM*4`f1PJD*.b_Rچ>aC eriBqk67BcA.>0J}˻D(U|YzǞ@6ъ.]|~ ,Gtvo謴ؠJBF"ǜm>u֬9_z$3Ǣ(b۴z8[O:hMmiŋ^Nŷ^\N$ȉA^ŷhiSԨ_޵4$4!~N*#[5?J.(xz_FioD8(ji~ji*{NԒE6556U466xE-/2W":" ףha]]6.}5} kd{oh6 \Ny',>SZםf܎ qxt&єېV- 1T+ X! JM9`gj3*/6 T &ɬZ* h83KНBlK-dtg Fk =~WWصOOJ?nʧ42 P)% }эW=_ݸS|p(4`*BI{u#{IMCgOXeygKH{d։klnhe H*aUt1X,c3ihvar9^_-?el֤V%1VS5Rhs]W `ͣ8D-/7 u΁kzx g⴦y h!>jkQ%P* p[Dx5jc8Ъs"C~)ϼ 䥦L&pIOfDMMxBnj D 7s0D%$,AT>Ϋ9wGγ:Le.kmqr@`Wr\2f\SVFYٜ4__SZtœ^+g6]K\\eMx{'[0dJM1h icy^ %rE!)1h->IXӐh%hQsa}W>8+`4%M:d31 ;ra6~Zқ4A{ؘUg\Y;F`hB\]or1ze Lkef (w7mPWQ為,n 5놢+MdsFd&[S{XWQ/E ц=Ɲ{tȋ̠cۓ/(j=g#~"N =*C/m[jjǖ<_M|9t%viz'o{¼ TuGzԹK´vq}ph۽=˜K{Xol(ٙLм@mȏt߲Bl?8_[-9wl(vph uؚwNV0O)쏧>*oN\$rmv] l-gms 27ٳ"oٖ~=~;/MN>4YZiR"$y8K-hx[>(G+J[n-n]JɅd/zkQCXjA]l4W-)dJw}G_"G]+Bsg/b 2]ToMe/) b#R\kK~CҼ:Ҡm}#+}7n=2r_vRefe5HorJgv_MZ}g޿&9("*! S_i3/.]Px 9:D%M_[T~}2bۇTg0Eh/Ͽ:/9߼?*5"ǿ|0N `ni"2}ۦw#)*黊l A;Hӑ؀dk9d #?h >)_NN0&+oC>'Fn?^)[};0kL+;Ɗ8$V+:onDe=AȺ*C\[E^#;F:Fym n_${lh `;@YPLډ'VH$-x%XyEJ}W- @K9Jm]Ʈ?/~f@5{2fj]=Pz$H?|9+TA6Dyyvov?{AS RkwpMA?dCg\@X؜ܯw %]>q©Jj ӂ0@ѳ'@TUQ1yqhzaVr:r=d뻄Œ{Mr>n \#F$ܲY #1n𤂲vpv/8> 504[$c!.G u缏W+TGOg^l.xa{WJJOĞ670bfseYҧuUUu zK]}k]u%o}л+7<y_;}ǁZZM̈́ UN=}/jorK}x+lYAt '4pX*Ғ-Bhpw~`0 gSvQ 4@C@GJ'T-[ RN7ZL| Fq]Z6ir橋T}g1eT%:`}ub[Eq@NVBml)kO_+<e7fj ml"?&)iN>^~g+aUJVwG4|4'>Y>}EV"8ækfY|^&S]~S 7^ֶd<]hU;Y1'#ۯ R)ii(R'0'(m⵶C>RZBc$SM:T^(",Q~Wqb4~{E>l*7756V665xM͊ө>aZœ ԣ(Pڴ䈝!{[QC4}Bc/(u[˳8^? PD77Lfy{IfqF5,ӚQ4Vv?FA}m '5o=.(E}=a(~|;t{ExMZ5ӞC9z B >GwtuPy|r\h 9w9Ye_tx}C\D >PUB&DsU͚ 'ZC<>K? O9'_6PAڶ16l~c$C=m :(aƛ+N:8\=N|zʁ@mj]`hF׆:V0t @PW gHL}tZ (,FEapl ;h~U-/ jcQ\Acq8y[ƌBh{Evh/h4p8\JmKI;bj Φ#fվ\k;d_cA,wsqR{egC c>AKchOm~y֕ _lFqXvR6p?g-4h EnspBݥ7AfP0(Lcݍu,Jo@ P(TR)@ k҄F.ݽcЄBcQwl_Fsv+VO髚/WTҭ援S-W8R:NCӺzv=_钫G]=ˌ˛@&Őа`=#^H8ʔ=aTZ}skK+Z GnmxFڽUa4|D@EO'J ʫj(OWnJe` Hy4!p g IoM#+~yTMd'ٰGgk_:Vfp P0XY7|nUʠ FEXPh Ʃ/kyT`4קHjn`8 y ?T]3':2îu:*ST4u1,i_}:ߘY -^5s@Rn۝!yM?Zе.W#4Eg3#9>FrHl4\'2jp엩bx+(F!x #&r֦1Sd^0,h4W|1m;|wu3vzM]_\Ǝ IDATIkYX^+4@f\E<^)MIv`|&+NTT ߤY{䖔vCs𯑨0kFV]An%pg+U#Ơa>Af_cH#N\I)b:vxxL7Z*_P"秧K͟Z&h5JUɒMp?jb XYV3/=]b­YU衹KuPq|^F;c=# NڂN̯^&^md c߬H&e9G.1wVDlwr37m诶e-jH-N)v咃B%NCExD4c$Oõ4r2YW _vz:Ț0A^|\qiv[}0Zع:րd>54X]~B!-ʭTZYsء Nuz|''Ck59viP^~㽏c4Gݶum _>_woSզ'P}l҃NGt]n?ھ/Ef6g5ˣ!u{{ڧЫid ^\zF5F{lHΑnzu1|i{vc\sDf$*)jf1ܸ/΀fB%ڀW4G;t ̘z™Y}opmBr+IT2;?F]W;*D:m:h޽>{轚+9ӝDKlpv.XgN|H 49("scc79vƖݪH:rQS&JE%؟,Nw#Ku} #@jڞ {F).L4V߱~ >{@k+ڗN}Jd[q&1g6wwyqZW˭݂'j~vN-#v$;aS8%U>;aodۍ =/Sb'$E  #L c'9^8ۿou1p-=!3qƬ~Q(ʖ 9ڋ6B߳-*#|Lϡ!=Af2' JRi?]4 闢V}/i<N o׿"'>0ڎBe0@reWr s6 jN3-kֲSF5 f,k^7O8+)C~g4BMAz:O @@@@@@@@@@@9H‹Q!!.0oo}l5?e&}~® k1%g?Mㆶ eDmƻJAl  =M|y^GE#LoOUĄG\_)^62~n9OrGrQ$kqąwkw2@ pO?t_mY35F}4/|8J0 pF("`͝Kp.3{QzB YSueq-). =d뻄Œ{M{IP}MtNiaaj#O/ҋ]$]A햍r*JU$:1Sr cNgVU֐*J*~w>$'=~lJnjd' g%\:o^c|8.7aBrb}ׄ-w-)-R4vRɅk`]zzʃgl]b~LQh\vqeuOR w?41]B4{_J)`āN/)xpEsLݯI4_M7}?^%짘rqؚN?YS.[2wFY^7+Nn/u]ZճJR"+]vXNIgth}4O{j\фUm&>0 ɌG}zP@k-:Ԃ7tD,wIy!M9B78hYdb Ivw:[5l.z4\{/=/yTtn,Kklz}jeMN +iDꠜ4-'6m}v5Tv%SX; \vQx9ޮwGMZkz܆<)%$DA"vrC.oQ?3䇈@Mz)n ?Wel;KaDnih"3 zR 2A>p1y/jwDL.tv uzAŊsN嘯rZiZ~2kX;Ph}^x{y"o^'~u(JiK/ |Lٵ#ZIG>1Mclq (k⛻glCK~u1Ì>WclDK1M@Np*,&$M}9" ;i_?c2\pyX 1}ߧ3gy3Z!!/1Q!_&;g ucB% 9Ɯ}E{ŁNo*( Da"1k XHPCQBzshI}UDԼږsJ᦭akiUq ~m_0<<75Tf4Z~wTvaVZ[V3Z~wdvI~N쩩sYn9ARWU\ʠշUWq$F=Fjid*˩@027_-808QA{gx62r] j^ԃ_KBoy50 cG@޶ ?\| iiԧV@COHNЊvMH:w-ka^GF=C3'!Cr3M>pX4yi2hzn4S3nAghNiK:#I>lRxc|= +8RM.?'!3oª L;S|kն̠W3l>@H=eWI O dPHd).҆R%N"L~O9DyZa)%cRXA=YƀyAD޻nY}b09Qrfڨ;DdӦGGFnWP]z3@%?"-{ sҋ,nqotvB""T̜wp(,"ZWKfB~QU-ĊWǙAHD5WW[+"* y/<݌=*sӳ~۳+Z9}I|sݿ~pDֆsqXl]JsƗԝPx>{@ŋ/sɳ8FI8PPkcT/BI hna0jj38N˨PS>45kDFaՋ熌Ui=gMk}ѕ j3?=rpmľiץmN{&'_ ϯ, ǐ"/ivS^]2]rZ.RXcǥ!o?״6}!0xIo龊zěZ}/ϟW?7v3c,5hhZs"[S)Qh -?4NV[Ae]?  JJjRmY4|x{::g]QP){[EԦw_۰dY;s7DtxfɻzXZDP\zӇkoX(ǿ~yyQyeIg4DWf>nj_m.u4nԨOotх_hg~eеV_acU}vlQ|kwhBcٞry2k䅤QldNǿvmӥK[irJcŶxlO's:\ş9Vp8\KT cDMzYrcWCTݸ["?R}#,[kPsd{>8!Kw[❜ ?NwzSԌyC*XmVƺS0c MViiu\" 8QHÝ?,̠`P[3j0Ƭ on\RT\W/o qfXa,%'dpC>GOc~pX,ʶLJ{8h,xJ-voUX kg"#Ty'`0h!Bug!ހ=aHa뗳.4嘡[(=߳LT3v䶽Mf|(zcS0H(9zOPB7˛9_ w. l?Nϛ*A k A4%eX:u56U@~dZwgDj$@[[DܪDD4۷5%7` O.|; :A0O5W_|XGWvJ]a)G~?J-ah~ j!ѫ>YH>^A[=Fmkec87s-r%=ͬdP벒b-3;]~LȢ;z]BTѥegx[kӋuZ 7Dw]I"M0un xAUMYzJgv&T* ahLa{թS#߆7C/#lM`Pep4Hlϯa1{DCȋx<͚j/Jpb~<Bɥl~R!(L']_TWT篮Hfy&`WA܆N{v~h3v-G[PS ;}޸ͯk;VHʨ֝~jeŲFDT1cSG).9{!"8*NR84Nt~I3&Vp*Ȕ4:L@4G̨:`s Y=gI)qQ'l~zyOMjuрVW,^"bb AQHp+4g2rsE0I$QO`4CUOkz0; dVٰU`4~D#:Nto-sbc-#B ϛmRG@;|XeqƬh$'KD jxh;93KH:uRٹ;2թ -asgh$RqyO9]hD&^--;~|Ȉ D|6\i'-nfL{6?ᖟ6~xe~,@h O4\b3L-er|x`?u{\-hjkk+ zX/UۦS\@5UE^s/`쑠+sWKagt8lj~VQZMn˓N>Rq,sva3bK8`%%[ŽrbMG3([YY-Լ5N!ũW} fZ${t_ueO? ZUMݷ+bIg m{n/c5k f,Q0@Ѝ̊mzz;%9>Wy"Z`QbT6iml5O8z1` 8S:DZ:G8&={8]~p^1I.sL>m?3Y@ãf;5{9zr!h,>#N2 __ι:v=nu=. v0D=X^o@e!EJ.bwqQ5]?wXznlPTnTDEEFE lD%~ ^]=sܹ5qfY|]1@OޢҺg^8`dos,FY><ȍ9Ma};6dwi.Z'#3Xoϯ>P9^-YbE\^@ݶvN*6;亸(9pf╇1vIKN/bLST2sPtח'&L)U"vN=0t2NS.VS#1<5z?7t~ǮC/@n5uZo-(=lz$@K}tmpfɠ'+3k_/.DQwW28.WB8KS[2v`V  !UI/x{*4ZQu:K 73>pS7"pO?a:U>,idFxCJ|Iyq-/"kn)O}l \Wbzm}jV!o3ȅ.]zW8bk汊oN󼈷Ml ts6o[?vl-C{sVZ۔x/Kgty;3m oܹrto Nї{G.GрKl֒/ç{+#fwW/_5~Y%~7$JmsF :*%yCbUY~Φp[OnjdO$z \W* lԺ~²@/Tj%3709HKBRpe{s x" ̃V8¦vO9Zh ҒB>p*8bu~TVλ׹GРID)ok 9-kFoMcC]xH$w 77WT2-%'!䗹oN~"mWSNK<]_ᛁ5:Bs89wN|~&`l,zkƠcd3js{Vg&T|mܽ:٬xr:ZJnlsok@x^3N]|~wH;?8NX8~kY7V|ӞU6GϬ|W2Ύ(@DrlzUGyfy!{x5DᓑPä5' x- FMf Hu Rtp0cg EHg:P&:a=5N;7d''F_n&lf%tp@}#|گxůf]E;`ߎ#8&kv0ByxQ.vT{[d$_O伐J5TW5y,ؤ##.>R 4Cz| O#鳼VN>9No:Q+IG#Ÿo\ q57Tta Z>X\QHRb'6p+ë!|O9\2p* 9 w|VF5=OH!DQ)R~:},&)&Zv&? D*Jhq97N/Yt[d- }%ǮWtIA(0"#vوI ÑdŐh= 2'}=ɪJNnIj*I|/3iNO8Zl~V|Vy  RӎX6b̘Mi<֛ ;YU\W\Z/v|+.M5{zbO/ݔ*TE= joOQn <8+ è؜kQWNkhBti',@4r~̷[2-kPZ}w;{|{815A+;T*te ;ˋ82:vL˽Utkys@ĩ #ـxDZY^U+_'NyYA% 9yGu̦.T)5"?̞;텂feV69s;M.aX]ǓưoͽWˋuJn{KaHT]f"E"flӒ}:AՍY^Dqgo^D&,+ڙYG!s kA81G&GͱN}  ׳Ksyj6J daK 6[ ngw7 u_0PUUp8"Z#JʪTa>H$Ǎ3d29U4-^KzڐGs'O'#( G9ʤ%T8y=+[!ErBﯺW/;j>6Njo?b77Sx$ϟL`RS?0nqy#>e'?}Fǝ\B9*/ʨ; fzӍKNwٮbh4aᦸ^aaJee%@mu5UNkr"9`6LMi\67v_b:fMaX)sʢ)5Ϛ=X`HKW~_DF# G؈hX;JΓʊ X脀D~~C ^կ/? بD3L5&:nAAy@7s9}%Ȃ CmJ}Jc! [+IVXǎ8_%g,LA '>@T]_X'9G'_ qAf( ӦJiq\4mk&+KX%e՜9e "(5xqCjr9_xyGsdU@? c"-WCቿr9sF dMLLL˿/U8dad|$:~ *Y@fм(c{Ђ!Z2DVEAaew3#>^n(M<Mb1PVפkG߮ OL3ufp^_8ƸY 8R3߽A$\&pQa=.E9\6pQ.i{pѿPȳ@*'OSE[IO#^0vz@+E 9w"/$&~X Qcbg'm"= ;(;G+~ a`rM4c=o^vbYr(Zq遫vDGvo/ 6ͷnM}ݘk?jl]RpMů-}}[iCwe Oc`````````` lJžwd,XH]~/hYBD~M<\5niBTvQЃ;wO&D ;{r-ӴvO)UǛzL{֚= Y4Խy-/71j]7 I{F|_xj\*Bf?{?Aݣ34d s T~6TE\<^-H}l"!7Ħn}Zs'6Q:{/k'* =]]K~c=,`n~~Q:no92PJ510[?XRY^X|xN4ZSO|(M ҨkzU1_^2C]Hv{62{fF7N@a Z qu2_qOΎ>Pk3ěQRQ^XVё ]o^7۔_=ҡW׿&5~̓)[WH=9K!^g˼{V$qbj&h؞q <[@ 8WOOX {u5{IE>b:;/_|!Eᗎ1yb<,B][8ܜ@_q^Y'9kH@)uy#S tۀӔ]OMVT5tHxѭ&*I&k#ymTO>q}D4;pTusrκ1HnY]uyM i.CᷩEy>3g<<\rN$|kST ݨU),v>ct )ٰ6}BNr_|@LViӱW>SUw۶7 i箽]ij@ٕqZ{wlLW 0@Q>B>*%59p}ИBwώ.3'O & ihѣ3P"YD¨cUgRd*9*WSo=VWWX:+4fZa~Ojb``>fh7O[S:|fM?*+#hGBOl0/Y"nKq>X1+{TP&EED". EkKvi(cCm-,H%ZXx+Z_:g:FO0.$7`B¬aZ 3~%56 fz!za< I >VdžHvMx^H/+hu ؚRrnM GlL_{vY:ȰMSS cX"f0`ˬi+6_I3֥fPde![[ d rrQ?5roLXY Y7owvs@nDڕӦ\v+genEfΌs] IDAT$"\:oU^ 6;g@#{K)n1ܗ-,-,.ulDqN-& yïڗ'.Ej/A= (u6D"?UuޫZ-xk?V "dY 68+r9ZMa Hu4>y(ʪbR,(WdU5t^C<;%q b3]M#8Zg uIRiv-A}}HI>3KP6ae8ʧWjZs FgQ. DP6}ŚduLJRAho/ M:2/LC1wʗ.^*nh:y' z|̙5An$M2 T}TDXlL#<(cFh`%4H6p?ՌBF"Q5Y(?MNƺ/r=V_WKdhҗ fj,1 9WZ.k! LFj2?>:ze%HҕP1%&+C)9WSk_rPSXHGp?Vه*66;VҬBGe_Ek{E] uV3TəSyïڗ'p㢣 A$Y d2Ste;c$ $ǬU@ .M̔xZԞ5&!D%)(&MrΎm2Msiã EOG~I$_\5wݤ: EDp 󄕡`n}h?ywԝ֊7t4oBlmZe~i w79)q\҂]}kW\kbF!cs^;7j|ܘ8$眞Lg1x|ݛݓO&L&/a)Y)O%g_%U#\@PwjD6 &ie؇E}OTO!1-WIܑ<Ʀzn"k<{"2a_ӸaXRMj0%r["`u 6C]w淵D"4W\"P]]Kpi%Bu@*+-#BtPJ<56r9dX "k;aHI'F2@ O`QTUU`XZZM b=lOtƍ3|k&1ϢuwT-fU +FyuJL^h)o\F_po}oTVTEHLPRȏ/^h}W @RF[`uVp Y2hLl`=US, c2iBT>wag(:6GFPPC"SL 8fb$W{U#:ѱ& BJ_AW&LLQױf@⺓Y޿I@nXee$AdUp߉9TS㺴4l 77Ko;$!)ExҦ:m \7vW/k2DSRRe֞Ȥ P$'n;`/Zw)IUj@ ?.9AhlN\T.-'K߇YF1 (DƉeeX4ПmnڄH)A(T[fgw-|fX5b E<&!NUN䥳% ۽qJ:R 4_p$;?gO O1CQ.Tx*:|k=#󑅚v8(Zh J~S &/8XE/>CE{: /YhS|lPN+`YCUARإ-9 n: @sAM/;QL_۴WxPzSW|VB=вS$)ͣW r&{@3Y"gEJzS  rkZGM];ǧ7F^ X 4.3^+ۥ-a|UYORIz Ӆ2*uny15RH,},Ѣ%=8-8 ]%? ]ΑwTrLּq-hY6АdO|m3sJ=. ߉Ͽbrk'%Bqm57K%{.9'dʬ)rk#xnǝKAĔH-G{$`ANBO^o R.8xn˻÷<f3: Dff/R7ڐo?ϏTka};sL4 Qo8} ΂0000000000YprsWZ8TWu ;iK~\jFm#:Nܼ73w~xWwFd1NmÛƫ8ϒ1HNo]yr:w][< /D~oq/#\op'f+Ց:vsۈqtoΔﴟw?]ͮ ~C@WjљP2kޭ޶S*5ը3mn]fШ;D[dm.;l91ƘѧT#,>F_ ^l+N7"zmg!Us?q/-J˺`ū"8' c +io7trkK'oO5DnjĐ+)|A+:Nn7"cLT>9?;;>B߿2J* J3>?:2A?\T7_Yi1Wmn|K)0;3u%Sv;ǹ7ZMz~XO5>ى6Jt;3rcK鋍^6Q$no^{hHbBK7T&:dL'<1EĉKJEv4ԏgse%R"gȍ&f/]µKKf]][*Dx.o6I6D @j_6. ~4N~0Iҕ[G6}v^2g{dbLmW;*|Ls )I٣hF6^}ߧ~A^.u!߁DtYA ^~Ԇfoy5ލ J][wwfc,)u<>mb۫ʦ[Mq.~tg8*_r}/6ъyj"ל}k/'),~AkkrPP Gܫ㔽)Q\h>7\tB7la]}j2Vf3vQOq×]>ўQX65Bՙ$I`}.>,J).zAIչ\TcfF]4PEF9iDXϴ< *[;krf>a#>Ł^{8Ȏ909vהZk-7+9"?Lxrak ;T\G%8$'d$=迵所~דh e SxBi&Ϗ]޻&N㓬@ 7mkV>HKϿNL/*Jue0@]iVGS ӿ]GZ N7k:T7K..:TÆ6~*聯è%v8yOK5j(広Kp"&QS]Kv#N$* J0@N$,A*e.VVN9,}@GqGrq83gkj̈.+WxE ٧m/xԚj\ie{rNr:(m/礼-.u2߁0Kۗ)%JY߳hND#J/={dNPͤsfXYzwAaD7iN3i}5[, p1l,q+V[;OJSf.][?e_ [;͸ӶeVh/=@-%)=qȼ#ϟw<A((tF~Q eU(#w((ʈT~e/OvEsp~BP3V+@J1w tiO{53d9u5)LVݐp, BZ򌺂Q4VofZB7;$! PD75ߘ~$2vGk$?dE|İW޴nj{[rFǭ+-[1^&2#:tqh|>y1iDi5x5A1q@SeգhuDebS3vIZ!sUJ CZwfs\ d9UVJXɥEWe:nQffm.$!:ȡ o:BpADB5ٟO^|Rm{[֦ŧ4@ %ɏ+"?rZOl識FE4:).FLCm#QUJ$"+IMC8\z9οl[3~$c\lw$] lK (PdDP! )*Cp8i|Yz->=.)#+Mώd0 חJc E ;RmqƊ7L!AIY#rP.(GF9l{鷀94SEݨQ󨪂"[!PGZ< j6CY]M˰T99>c<3iEYO¸k= 2%x:7[gDp^'Vu@\=>ݽh٢E-s:Z.;pι2sj M:v@'޸y#$}O/Wf@6Ԯԏҟ:[=#+sڵg'(ς/Y5MW4T*yjHxm&EO=;r=:`V Bjm)\E@2ۤkk`X.ṃm:<%9oQAEusݑkC7k5R䌗n3 o^:mó]p8B S6[h@$Lsj8%|+C".ل2'i 5~ Y[!3v/L.ꪼfW(3gk;]]TG/M8s.EM2plbF QAw} h "(/1e*? Jm}L'ٰl<44{GpG^~q_<~m0z9GJ^P4i3$D 6n ,&NL ^u~W^@{D 0)쨖^ZRoRIûYOA$rܸ 15x|h.߆gpYlTFf 3BVY򐑑  y֏E "(pp! IDATG8TOA@de@,o:JTvqAU+|~C-ujC~ʶP@QJ㕖 UN1AsE{'q:YܫP}ց.<sy4yڻ~ 5JI(GٵyV4U93@+ʹxQT3橹ZbL&Y]{wrY4m.ΐ5cǖ4I~÷w~#* /@hke!WP.5?8p$EiSK')z:`8|g'=D9O Yu_d]p߯s-XrRBNC04gЫQWNS_"x@Ũ2>ɥGilvQȢ棘+37弡נ(:JI[b;TRi_HLdo3jL/FjY8 "̪_:ONM_t6n䥖E~ʙG>P{@UYۇ_MDoՔf{ ?1q f3m_F@ {T7_f;t(ŌL.:  JJ*/^{N+z;uIkGl3đ7N6mV&;VUO F3&w_ӂ ZM<L&r3d56}nIe=>X2rxqj 񈑄0@Niic|p8dCWHJJpr?$-,Nf}?h֒K-4t6QpXbC"(obRױ[gXYϰ1|B}+;l#$ji|4yf$,,ʪ(z3LZ.$(hUPCT7"R6(7ux'd)gҳ2M8AeiNN Ѧ@!!"NH\(ȭ2`/QU*AD,N&M,2B߷j KH_fc(Nt\:@A.tf(t!33lOAV< :nî)|/\aVP-QYt''14cǩd[˖(_g[0P ɋh2ˋiAZoQ~uy^ZoJ*3']xЪ}WT$–խЄ" 8P68<-wC^`y}280ŋ/^H(0/KnC @i3!m7m-\D7Ĕ|"﵋IZTFj@uэF>3gP3{́Ku序=w kgN`G\:mfɉVx=^@7 ɾ `|škJʜpO-! y?Ԣv}DӪ fpi(..6Z3pst4t*[H[F+[B189w-6W'1yN^FO?Jh`nTtSz vg^'E85n]M.7(`T~^l}uI߄nj}~KO7rl]{$3cv?6`y(s_mw;gDҔ˫6-[gPϝN܊;;m 3O0c;{qgImowNs?Fo#cV}zݥU#cݧ|mnqbG%~ׇ%?{܅Y:} ّL5|Iao.q#-ɯKv1Μ|Vbw)6"eF8'4EQ@97tr+8 ?CGm?EQ00000000000`kU"v "th ?```````````tQxeMBDa.Wgƭ}8xrХS;=GJ7/j#6%cVNo7"A JMk]]Z{&߁Ӯ 7{' ]4DuĚ~[Ԟ8ϴ@KCt.]9ugJ_K?/?EyglZ}&+bMCfJH{VSFHR;̀Vl5oq͟ lꊒ_e{y\RTuc F.Ť奇ޱ9}(?Kd ,:xn9*~,fzgY쒬9@JQQX[; /糌`6k|ww GyTg)VmJgBȵ=Ǎ2Qh-m=Bnrdjk!Kg*K  E}5vě_~{qAe"DAι wM JX.s?3Mhq/Gjw(ixTo>=W=xعSE:~Ϗ}{nl͚^ Yt:_CQk&݌¼(@uQv}uޤ&񷏖 .:"}tA*SM97(wqP)i*볢k4hw)4wj(z9+lcƇ DQa2=KE^nHl!;t ebh+M fa7V77^Os7JMD:7GGJQ0]Y ,7j.UDg̤~G ٤D{U*x53w)`9[kO.%\on?c27Rb\BcC2ޔrIONRh h9H :Z7H_^JVU^+ +]cAg=&*=Jk4mٿI jZTKTĽl6 Srz) S%&:C̖Ng|HaW҂S~ f$+toDpN"^F 7A6D<Bڣw^5j˟w#Ɵ{R{}C8Q{MU;z_ ['DJ92uf?h~;1zjMzka=e1N6] փrYAF2ZѼ c٦B¯n?Ʌ_Ie$< /o zγuZ&Mc< *d}>^tĞݵG&BSw=J, 2mt]@g "(bYV=<0'.﷏u6 ++'[q4œ<hHB6nx#ɪ/~Oу4iF8V}v%@IΈ\P\0?>"k]H'j4M >]O#2M^ŚzMH$})>jhq FN%򟆞bۜv'|gɂvgZK7 ai)p%g lGlǦƠjmZ},`X[<d-3iк2t;?jߓЎMA𷽖/=w !1:Z@LBt& wVL2ILx2FtIfvjۊ Wj`s<4B50jȣ|~_M/c1 SnS6sX .|*vL+&NK cٮ?\ߡH\hdDpպC]%5\"ɨ+[w 9[kpDY35.zO/{>rV U;31;τWݼ4X㇣oxKvE! ?e} AvMB_e غIoPP55PRfc,~T"2BQeuR2^}>A 1f]hyШ;,B͐!J8 ͔UTĄVRV5M uj cOW CP<+1MBstÆmϔ\:Δ +d/=+D~`awvJ6 %<zxnr uI!e%DZ_B^$uy \a]b-(4pQ|I9c s>]jkL@mOABVuM; >Z |sUD췹$=ɰ\j`fb:mxIJUOWXx5i}zvKXM)BhvQ!)Zful|Uw3DZ?!:Z}k#"-BO sФ)r\$"(H rL ;"h㾻WSNKk+긺3 BzWXZRJm<쬊~O!8V/sOofӫOKũ fs&^t|}EyÔ{[' -d믅A۩xm$S "0Ct}:jZn1%@D檃PH$ : OUxn F4fʺz9#C.O~(tj#ɦP\RZAFP]ZO76fw4( TµX;6Y2d<'Nl /윟bl'uզkftҧhP"[÷T񿀬wPW%@:k;ovG%g$g͖s3eF[vi5U8&~+7y]_= ysVZBSRDbxl")%e6@H u_˞h_E3}5ѲBV99ف☣6^`vAeG0~64MFi paXGc}q[{<>?7`EIAV[WMN%ABBjhD"a_ 5|[^%˙3}a2lQEJ8L@MUUښI9]bqqלC%/^vngS(Zߵk_TPJ:t~Yiy]*Pr 9JDX)sʚ:YXUVwQ%)d5$e& H¸4'g'`U( Hg0#jZ:@؃6UMBͪnYXj!Z#j)OЫkmȎiUM9BPRĥ|l5AѮ;d$&Fh=ien\|5P5U2f6ʲJZ bG? md*v=-Tq5$ր3Gt!!iZ閗^GՎ?c{ϋཧx{~ABNQ(X:r %-e/c3TJJ'oMQвXx}0oJJu!{u2/VI_e{wWPSPPSPPχk3N={A6҄:HsܘvvXsD7I =F5@jJ0[{TtI7g[ρ ~Ŧ㣊|=xY㪥@|te;ϳoo̘}v$<3(.BEmŵḒgW8eimYJ5TĎ}c%/l:\tD7Λz,wTe L/Xϑq24GEJߏ;|UqرYة_@ZUXƜ+VkB2O2Zz0jDAy}D@Y˖ % 5 "M`SW+"7<2ٸEtsBTg-Ta?ٹɣy*Y̰-NdԓR~p+ua_ 0}^Rz6Ep{=8J=tDAO%,eR.z(vEKwO#Gx/[qZW X +mqP.ҲOD"}X>/F }tl'AIyb޼n!KG}Ǎ̶'c1^~#Cq~H=o!N"{mѹ__~[ì1FFV2j}D7_˸w^``[>+iܾRәW@ЀZ6 r }h9{9,7{sb#z?xu%ih)/nt:QUmh]a{-v JWv[~vAdɯeg I]݃@lu#>4~iQu>ߍgna?Io;u8D.jv[nZɦ9 ZmTwϝ HOl-&I|AA]!3×o tqI Sk(*t\?H~U{?Ok<g휉7sd'^s33,vI֜^Bx (6Q>svqH_g6ºHzStTS!CgV߾E6UnˮN/#̪""3L NԼ6nbf\n͸&c-gg =?8SPxNJwMC!sJEjCR- 1ړnvzm%,LЎBka{"t,GQg1|Ym=gK(%"BDQU_%rDDs2e:zA5=zGJsMAqB=s~l/5"YOd +Rtv.8U\(WqLEDr/%Zq Az#-RK{ q>0;vއ`2oBOdD`=+_exAo5L0N>66=:5)%EL^™uh?F6VWU~Q4#q>aGn\_&|% $p>@Qdf&AqÛp †Ѹchiй?K( "=Al HF]qΠ "蠨d}>^tĞݵG&BSw=J, 2mt]@g?Psu& ugPXŁ[ƨ7gZK5m=pᄉJ5O_l}mp\d,_ZlTMW@-'hQNK*9W>P2#(D #qIB&HzN^pW\D}/u4d倏>W8A ؠ,b/kstz9?PKT2cBr- UѕkY ۺ`K+ΙwJTwo:?٪lmyK]~ 3oyTcK?\gw9n9#8)w~7Istk`~ N7BNzH% 2 zy+l4DY* \|LJ5h$ݸ`6RՅd΄whO+uqF8+ "e b@P_[E!XruH H]yYTr7|# Tl K5a9'XIxu QШ٩}&9^xCQYO|d6 - Q\P%eN}]6-D3USP{Bdʠ~Yɝ2Yz g̓|v~C9GagQ"ޱmÖ[8x%Kkbvc]W*B޻D'JjurDe])FT5^WZN@R29(Jʐ5ey"$0*{W/ ybc"Ndqo;Jg}/yrI3N܊V:|@]A=z0\)uڱمEzF@Dʱ'(>. A+r3.WDoȢ^/6\oys7=>'O=/0R$a:E#< UϬf6[::TO @d?:ɲ]ɛR!@勨1^wrв7|B" \s[/#c/@g @IŖ@\nIseH(l ˖}=m١C)Pr7Z N+^S+b>$ MO Ż1"tC|?oUȞ#8V Z|O< Vfrh"&¥i(4 Q`aԔG-6tkl134r_*7 ]s-{B:_$v?t D"QaI< XIqBe<Z¦Uo&[P=7,sw>O(k qn+7?LWtm7vLc4#2=E"v$I5| ;}3}wX.*țԯ#vJg!i:I~aiE':lIYshY^?"DijwSRQ|ldw 7T-y>ODP@$Q_K 3Bnlɉ(a2ٚ@v̉#8@$AEKƮ6}ҮFh#8*lw"7m/.׃e_S#E8\Sp޲¥3ey!7 w;lA T<=%A8@F'u5H=y*gcQ]ZWRxyY)*9vKھHIY" eӨt=cHO)g()֮Ww ڴB f2l&Si5+!+ϥk))S;infm~+Lx8B7uvΌ|N_6N8~r"n%^]f\jO6'su ^}w쒴C lB| Wy14WSIGG8Tj (scIщ9Lh8̞HSJn?q JJҶ띧s8.Q|6E\͇+DB#D|' E&l뒀K!'Hs;QuWpadDɎx=5z{,p !VTj@trlhQ2,g%Z;~w?&*xnW$r/\~U#6X&% os;4ĩ}p9Vl__#d60,jJ֣ HUc =ϯ+Iq*zYjت-'R4DMyJ?VL F…vW?rJ¬ 'lUóe'ԈtSHvs0vWVܫ~NPWwtQwvZY"lY;\E7}XѲ㓛6&*p?c~ʒ'dlDM g ]rڵ.nnF jr_ *g+CϹ1`b/&M{uMee_ձ) @vPg1_[+"8ʬԆ(Yd՛ zv~h~Ls]6·l+b:'ZƗ0fL}]DAe]dPi˖ eZ[MЂ7nw=K]'N*i2DLã}Aj(\1HOEڢu{=fdͩSԋ>_OHRVD]3[̈RmL̗²G"z_, PGV'PA˶٢"( ^yKlޑoC}_#wAc+R??/!t;?}O 5CV^4 ~*"v,RַHUU(/EK;!x_ ƿoA`vVv??O)&(ʤ>j0000000~Xa>OS5gwƟ^```````~E^,:H;we9Ə(Xa?cɒu $?6?Z}.ټwׁ ]ˋDTzݱ豽>.m"S5{bGo  9`DфrS.@5g$]tv@T 㴻ǺvMeY,=`N~/H&<.<Zb'۹нf4l>: C8+J(;l,I}غ4^W?eGNp3Г->eBÅ'+4wTTVUR)ԅh?*^7>L֛hg~5iѢ A[OytvCZwCbA5/5ʝr;y/: ݽ}.jziOԽ}lq*,)(;ёIDѡM ^A{q+oT-*x}uuξn=MIMW-i:ucA(DxwlCxU#pk]s8^֡v1qsn IDAT@ M01oꔻWY F4$jE mAOS\95a#1m뙒!3Cz7-j8ƥy.6HXNY][t)i|)|*Kd ?\j& sڨ!azJ|Ʀw˞^c̵4Ǖ}1;V4k}o` Qu火<\c=I'P~@%}4h=|Qz{'x|Tj[ΔG{ d ;0q\|vgeXuaegK(vf.~Õ\<]zI}|xK 2ۮ l||lʟq׭ Xl>䉍 QUtmO1XŰQDYU\(Kޜ6i<@mM,lLX91Elc h;Wz'ўp)eI2J$t`[АqeB7CUo_*tj_@0vP~^jDKz1r4%ӊ?񟊬5;`ĕ66**kB!;E^WH=ՎڐP>lKЁ=5EYU%h܁cgINs꛹O'9ቚ/v;m2իh$:&RȒahvAiOQgv~:no4 hG1!ol:?r{B27"8 /yВ}x% {vNMa(0ʰIJuI˵Bahs Pqn*Jgl. zc{O- yNnݗݎUxvhS:D;޹[7 x'1~<򬤋YOJfZ#5ѪvmYY-Gdhaԭ[@M`iEp'j2=6W/|Tڽ>@ght`b4@Ul/c`**Ӭ ;}a&;|6Xߌ%O=)1lds)[LW ژx>r.H]/ѶǗ>r#GO*hbsqaR@V$܉oTɓnZu ic{JTɓum_sߝ>n#LBi//DT@Oo|}4& @^u'Է:w'?&K*>*)JGK?m-~Fpp|qd$ՉNVßiB_e غIouUl K5.zOTԆRNu]MJJJ4 tܳU}m*'x(4֙)(=]!2 AeP?N7SS2FL7&#= Hv_2^6|Һ7WTLۙE>6Id9Mk3Mfgujk$^?|H9.8os9q2=h%^ڿءg5;|BR~3BVAӋUUԵ>(&R\8<vrhuxRٲzÍܮ/MP֮Kq 껫JPѩK2xܚ, -9anVᔦs8\UD<.eܢ|TE]+L%ҭ̿7D-MW;LUUlA@@Y^~DaSSRnaO CזW6mz"L^tCgߟq]iID(@x .2Jd#mjin 6?^C:uVũ;rzKzmЌﹺzj`leU4$^+ZV˞݊23%3[} u i}|E$ExD-~}Ly\$c&n7g q$z,6GWfzBgzl) [8dޱo6 zC͛_ n}`hMjzbSPf㋗/i3Q{g,=p($@_i Io*I/Эw.Ӟb|WosPފ3sJOΙ?g9=Ukzo3sB7An&bDc]V>..H<3^n\ݹ%on\].X?{^ >b4If}ޟ-Tu^%Sd *SiB@@;E)8| 9| /4=I(V[E_Kd+zqgd`Qљz1U:ToZlV-%ZK9#Δx!DY"ҳ"4_egƠZnSH/RWs|-募} ,wOQw: 2v ̶ 8yx#H|6}>5j/ 0D2+ DE- mW3ͦWPo_Ywqũ &S_D-OHYWa~;M}P֨cnexW̬fwFB,@RH|X[h" \{H F{M63ߏ Bݳg=Wfs-QU/zûz3FN<9\t,R E3v*u|&\IAF~yUZQD쿘TAݨ aW3નӂs:I3SV>@e3 x07)H|RBRx~^-Rm`%b/DML;Dezwo6xB>ObLP2eFpEijBP,%~{mld&&ɘA8L>8]uf&&wc`}|r2-{9 ]u_=wmφچچچN߆U]ypȎ!GM Ave*no\~X]?Tj=JUKPvb_C\]sƟ3Wksr&UqYjP5ͬOxqu {jg~DG[̌Q/Gc_wey ?Y,xt5*yp+*_q~#+M=Ӻ5G,p!3_ݼ~Ֆlpڈg?vd#-`!/Q/v_,'!367 ɟ>PL|5gt`aFwʗ"19q3' BoϛJ Dy~ 'PIUImgOﷵ $?渣m INǑ|$$$$b~!!!!!!$$$$$$$$$$$ͅ?4w0-̙ҽ'Sk%,~vTr@"!o@g#&^UΕSEG> FW}&. c8e܈BS+[uq^?Xv'F_p)Ui9r)Ef s>mar)y`ZQwIݲfA\<ҹyVu 0B")Ƚ~[(Uii1{AΡ[)Puc݌;9$@0ÚVD_zQ.jf[ϥtI\r0^@q}L[W,+n_p|ft=5dF($ܱڪ8"7o[U䣡݀qÂ(y BZ"S{dmO4_ W3P3 H:(bt~}\t&^çL{3FS7vڇo|XhIkw8lkBDi ~=YL4< o&Q]L*5ҁ)UdoSq⌈h5biRNkFS7h|yWp _&_bMNE|ȷ#N :ӂV SGwIk7%uSapжړ7gh}aLFoNZ='$ -?Tt?qYӽYB @lXt8jsYϋ)|}]!!(( 26>,1f[ND!EV6iןqDGH 3 .D[ Gs")XWB3*\ΊU:dj h>(OKqTuؾޖ,:|SGys_͘ [&#.1P\-Q!hpErh흇\7Px"hh8Jq555~O#!~"vb[u4U\I<6rLo/ **~q .Ԅ ]N.퍍R({Y>]olPqD$(jHd U VEll4\ ERvymfaa8 YVǂ8@A5A`T*a@1?+d S{? ɻ dU$hhI~\lRI㺪r˾FM-!BDXZ$Ġל3u+rS'' vp0b:E9plf4 +ƘS7c0AFGx 9 5ScLZM_&z r"tXw >Æe۴mW'!/FY /V!m-yI=,Fy֭ݴN)Cka@[I S:@aеsb&Va:Lﰡ94Q;0ԥ;|eօMk6zYqmk2P{,/,} XO~YV*OW> v¥\͒ZEe4*rVZ +ivF;[ *oJHekf۔]WWc />8*@z@H3GNH>4:zzaEmGXQOVEؿJ*J%]CYШ-Pt=;{V== ӱojZv\ެ)+6⊬L.Л2KxL )4 Y* W0LLCSY*L,2 LdٷD2dܼQ,(BV}Xzʣ_}X P虙 Uҩ=M9@dd.ҒJ L+_^+ O͂y"\1 ae|( @ PHo"ILh=pM$ALC@x᧒k4LMIWrKT]on&L'R֍Jfowo`MU! a2ۉ IDAT MLIR=uD(f`wGJR48J/1d 363ƴdg^R& T,W.x,7jĴ JQ8F3@b^)lScM>s_J0Ef׎=bu>waa LI~]a[ExG ȪHpB$КFL!WD :#=?r=5_7x~*&,2dSE:]wm0JJAza=(1<'{:*ʤ%ū n (  8Q'a]g,Fs=ޯGDJ,FjT"9W?UDM-2^)ltM',@$AK{i)˳c޼S Ôں$-LJKћiGQ^dK߰}- T! $is_\`lhBH*R@8D%Xe(KL7(W2DTʽ+Ju隯vh-`#{Vl ϙԇ~pb>ৃXǪ+ O,'P䓃 ܪ8bh6WnvquebH@SKK(DHu ,XDyv::mߟ3|B`s8u3 RׂAP" ?&Boq.oQŕj[8s}&i wJٶ ݪ6ae*IO5p*RNVS{"OaLC.cad"t6 WI*HXEerUkO(Omé1^`^'Ph֐O.W'K6UT@ T2vly&7E`7p# [_|hB:tتwy8; j~Ҝޛ x &%"GDkDN=8tgg_e|QK,6Rٲ_ TnCGtbSin|4 ZdfbRP^].in`3Z_i90(#M`ξ΅Q ok p\XPEEzTݬ(j"0 IAQE5jx 7܃JOLT8s(LyYbm̀;}EY]!mpp|4wwc;ԥ_^axws77P@D h eY8T RM \i հ4p0*.8t ЍlM%j4k+K{QҞx'*35ܻq4蘖(Cݠa6Qߦnhʊ^sJ"t:Cakq]QB*dz$$Ng04LNi$$-n;~?&ngGw:Ņsf\Q=0Y4ﹿ{G{q*#<n9vnt77y;׳MFO  g2/oٍqY}(ϴN3dT&yUC%4.: $~~ո1륁 ;+y~kYrbQ oFčY2MAKٷ Wؒ|n2/JLەjuV^LTJxeM2/[gM<ƥ"CxN*'I]7v}3ҿfr_>K,?VQn 4QE(\v)_.2ӋZG㠊 Q zv`90B$ ͉*M?2jH+i8Wu~KVqHPMJol7wV0^pn̋yqo}eAɹv;!,YNV|tݖy~.Dğ|e]~-$*|< cw>ݎ֐|Z0}=az3" ?5u -h__$oE_Om"*V]P"\$3#hѴ֊c$ h%吼3L/|IAc/ ;'Ea3]$$$$$$$ d-"$ޑ.63}OC@?|muT!!!@ / rNi߹֎PM:`嫖Oш^4,zMWɄDt I_}fiBSe>:*1G$Üo00tt}oxO1Lӿ`64fn2`Ϝ;Θف Huk?lr:!TF̖`3T-j~<8u1&|tݖyo-[-[v sEYfx0EܚOG"^O뜤tܢ㫂j/<_qCG)yb7&2sOR rrCLu}:rhLR,'3f-5t|Gw5<;''a\԰Y}SGTԤTzt>uqPipg,T3'fm$HtIlRIzb,6+LVlE'R-(=#ݏ?3eCF%je3>J.Cl퐲|4Q~Veg.CF-# Ic4uӏƗz` ^e ec-lt4ӬQ#W\p/ r6l$̿1o{,6qkGp_'!LiXFyoNsVY}`ǃ9,UN[JM\cN߯}cq3wos9)prإ- [y~ZRX&q_жLA_o[z'͵iE]LꅚFNlLXPUᣫPRեJ)T?{kbHYʣX YNfTnXq6B;>n`K{S QQ<[ \f]}H5[s; k!:^ t11ؓ#JqT4!N `@@O9;N>+ǛaץLй&Cy8 LG\v7qD)"~~Z~QDB![SS]R4̭L%ET ُ~&~?SK,Eϒvmص!>c?[D#saV;VLg$`ԡ<~fH˲ܼI/ vߝ!&:;V=Qڕ>|(Eg%a>پwJO^굇50$MY=u]D`NR H2JaiHEe"u~|Doڴcr'bjSZh .K7{C9Mb>3:Z;u[o_F&UjYpVO,{YSތA&EȫcdUBFJBf37-U0rCE_MwE,`[|j;|[wtesk]=wo;fSE6bD՘ǭ uXq7=7'eԵ==5~@fB*92`pf/ȓxꥋ{p˿@z=/tM̠H_ MLMՄ/VԞ+xlXh=RP{vsI}²l[)6]<_}n? ĕڂĹJ T 1(JBni꽢<_HkTMFUb@bρJ|TƓKtU!f׎&u;H SX*3L]cʔ"9@JJ +}?T Phg R9Uv@KiaQ5o&!9ҫr ˙ _`l,MϠ(׌H21_/="\fyݡ1$*(ɇ? 4mc#-$}n<=o-Ax1%!˫H %9A+0enU~[6aΥ~u(b~ ۉvב-3n;žΓv`äԿHΖώ/P :WS9IN.S9ɐTSn: n(Ԅ9Hڶ @?FuUxш='l2AsvFaB!GQTƗ TP?30ȉC/Ľn & bj4$@;xHb4G 2ŚrQVx01 VJތih1ɻb~1ȑ4C/tج}ҊKsK i%b q' ̰= p(p% ;M?ߙ/>H$$-WsYPl3oo\v~ۺugSe@R -*KE*P}C L~[욽~ =7Ȟ~[\㻖 5sO~s`$l?|Ԋ <KYtH̞}yIjPqxؿCOJ ڳ28uUIx|q9~Bހ_:mDyf-o, hFվ_gCS<@uek.6akjVVTd{[p*;/ AQ ƍWTy90 \}=uuD1[77~b_(ʖg|T(q>w4aaR ZRݘ w_nqI*{31I P_O xitŢkv0Щ{TE(U829GBR@ `kѳ,>Pߢ!]i W(2v~P(X_/L1xܨ@&/1͛Y:hW:cv^UM3x[5쀟M#w5 C >|Bgc Ї} 1c9&&jxtMڽ:ou:x5{'Lh6k_Cnl:] MMR~;Bӵ7x-5 RQa)Deuw BDch -] ʶ5UVsk5)Z4 A4uM.'y N'0mK=1oؗ󌮭d#/)jq~ L@ȴQpM4(T-G'k3Ph#+.$Mp@kwS @Ѷ0T`֤(M թ&hVN64 jV?gGSӺE.xzu aVkg r1q@g⒐|dFFjEΰ="0?:J8nT9hܭ2k~tʴ id4t},rݗjjOm]]YQk\f z0i #)b;*EQT*U pB *?BIP*>a ʝu_ugcQq_fjcl{:gee]w[v؂1W)yzY;kh,%ҍazylD/9 zoioDpAh~v׉?۩DU^1o7l7ѩBBMSnp=q~7&"q3^+SLq꣊N}gja 0\f}K2݀FD`JR"fI]DEe⅌NfmL$G!*-VWc4;oث cd0-lxoAqÏ K||u%i}g $1nZ:̲UOHsBE o W܋{SXx5MODl-[9QNљKT =X=}d]n['3l[e[?XfN)>hh@t:xƳ\p[]UdYCxˬG Va,^0v-ςN2kѡ HZkr痿JnbGoT٠} OoGjo {NqwԪv,*xT $ F q҃5yZ/t2O}v;&LD-hwJ%ATNBBBBBBCTRhʓ9Hފ8O ˿j d*R.MV䦕$$$$$$$$$$$ͅ !!! v%# Is!$$$$$$$$$$$ͥmi-g}W]:Po} }ʼ|3o㺙2:Ot 5lzvĞ㡶Яz;㼯b} ֭M4hlgU:ڞSJoy-CE΋PoRy9}Ŋ9_d><=:~qp"#tVI/O Fۤ$Z!56Fv2`8F Z=P GDT끃K攷r電u-cR IDAT$yl&ھ=YsI9pKjCFyoNsVtmn7'NN]eA{kNͻӒF& ږI5}K/_Y]׀%Gǻ^|g=tVlЙ8GOf::8gvbj(*xv 2k-܏F:[4VG lj>Fzj(\bHX}.?^0Uʠ9΍.Qwk*MD{!DSs?+;c*^Q'#PLoF]]ҌʫlgJ”X]4Ewwը W^otoS}H[^$΋jic+Ȑ’'s ՛ץ&ɈΓ6CI殑x0q~+~%]א`]<7QxxF3|Ie[W-IÓS=]9{[4—eמLmoQ`XnI1<\5qi="+@ǜnKCǚjRWo$ahŘI n}+Vg7#"/Q A[lx˙]oWiFOԘjИT - ;v.^OEz}!J۳I3 ۿKP8&F@a@D$ֆJGX"ig#[Uǵv6lZSƾ:yoE 0~NyYb:/[oG @-nkz/_3Bj;tUf9*} 7q=-Z(bωurp5L&sPgGDʢBS{kewN`|RT^Xs4܎6THFb8ABa0g9{7jK"3PwGRID2ɠH$ӹA,ը0s4`{=oѺ6m(]{D>ϼ0Z. c"skF]JYF4W`a8 YV* ǂ8@A@sH &2-(~pZlMgPi)˗\1.9TsYp w֗(:៭OB^Ei~~!B>ЬR̵(щۘ &hDƆ Pd&$Uw:YfsK ]{do\0#)OP8XI/NXjbS}Qy"Mk:œya{ev&0=}^^8Jao[nkQE? ^&pCÎy"C- I3hZ0 ʞۼkߣ7ڸ^~iNZ`{ _Cjav(:ӣg>6Nh0Ҹޟ2E,u.h6}GxpaNqf}qKTxyAy/8y̌E q (^2XR͗f衁8BCN&xmۑ(z?ΤEpߤRe0ݠS;qp~˧O7XV>?d\̥j0jֆYbil 2l741^x}XIW6@zNFEN&51ѬLP4;va^Ixs',.V޸YP/Ѱ8>piv[XQjP @RbER9E_P/Udl=#Js2l,QN]N&ׇ2bhVII /=h_W̋.9xJ=΄2:5.<>8tU!SW/e" Ӂm I^Ѓ}98[kAʇ)w3ȺM k& QH?KL ~֎ly^yD(EM#~M E=H=D刡e]Ce慎eI,hؿ^4pxpI1\8DU1 xtM07)xlQBRx~^-*VUWl@}uYU3xi)K}盇'A:hښ0͛Y~7_d>5hji\Fƫ -8fҢ SYUbni tGnY9(WIjxi4Z(s: & ^9ԆAfDQ8Y,&$AAY6z&x5^(MibZ++*4mYl=נ^@/KmDFFsl;;+EyIsIu:l l-eŵq.ٙ U s+ R{Jv.L E疪k!:@h:~Sff$֧l}֧G I<RXl 4Ƞ1N0tQ0ibd_UVh9u`)(^KX\ąQg͈з݀ :0'COI4M^k>2c0\f>؏N8wɽ/mռ=IZ yFo\ =M4ߔn1:w:3XV1y(NMpua]".x[Ӱ˳,'-|io].xΨ @QT!Je2P'p\R&S}5F pT# J>R5BuDJX&i( R'pRm]]YQ:zMD<2u.Süל16O+kejcMnЈ-}EBJqդF-@b*2yݙDeqIMy}gcRaBE,~PP4yFsV5S r42N7pg0V7a©J&ewO+ [dQCr-MհD/8 "գTz hb0yay=zZF^_'ݣ~"a&hCr~w,Jfu(~,Ǿ#zRw_U=Spـ;1paq;jg2޵2rjd"AM q+ î\Z>g伨{:xMfʪ;ɕ Mql*^US}^q [%Se%⺧2^^Qsiw|TU{gI&{'!4IQAOXQlvuEQ(JEz(IdL2 3r}o;Viۻy|ͻSUMg6/[ken4vGAPl[ tU׋=5936}~ΕqOh7bi[u_Xꨗ5/zwS拞Ԏ]=k۵ (z+jfx'Ҡ9rOZȚמTwԸcojў߷<G\ge߿ga>X>}p_(wك/Z&z6`a³Z0dhṷ?_[fAg^w%O2d^;bݚ7F lPWkpv >p \9k~;^9>,[Q!c%d΋Q-T(d]|ou7ɽ= [H/)Bg-NGw׵{gĸVrL;&#hs}4'OTcn+Ke$#ȝ@ ĭFW'F_Wig>ZnEu~;v@ qC!@  @  96wF  @ @ @ 5g}4 M A 1lF5r/;I!*tbi1̯N 8Zs~_jpxr~wo}g5qV$6!*ĸA l^VzemrܧGu/ݴc|KpS+*vt@?(>t\i-.VtWs /~ ᄮXRNSc blYU+'qApx2Auzҝ̞6śKwe8/H z2}'Jj4-9 Ej3m_F't3ec5%ӝG%A~ݥ2ꞚfFt!ӽ}^ۚ_wDev]qȕKM$Pg<̺wpT3;y;KKUM|,2Zyua_~꛿5'z$i}n3_<ҷE*/N~NHN5?/|/qgFa ^<бK\]',} Pɽ2K@垰/[ 2Mz8,w^R;>3oܜ!r_6@TA/?66w|AQ{7{5F?NM)=}:{~wFJM>AW˲h50=Or~ 17mr;I!'%*va.X:/OԳ8t^Cg)գ>ٙ6ӟ[_~ਆ:- $G{T7$[2):d͗Nk[I¬rF?4r#69Z vuَ\-woHmYW](:Ri='gN A)>ҽZ}2J 3,͋RV\GuGcdeW=ÝWSQ $e M 'GԂipOISj9^V,,Zz{M`^i'd-܊5O\|=[:{txqFY.}g7g/ȎdySZ+j\3-ƍ5_0O&X֗ɺ'rث5U72*~V -~Xٯ< 9ݍǦؿ;H~UocWL#0IcRn$*$cylhTD5E޳PYl?a4]e% .Li.7ju`4IfNk埧VYt_̤JuD#[q8֬ YQO%핍> c\~ ?gTT-44}8UJ5ײ^vE:﷢EF}| aUi'|:NPsgL$F5q?!3B}+-i'G@r闦3^8-FpryixW7@|Cy iZzϜ$s+i͘5%؅I(:3/X,ݑ+ǝbost0X yuZo萴)]f`f`6::W G6I5ո+xO&O9-) S3$O''48>3Xty]ZoIJW[.Z&TDz۱A:+ki $@{@zۃeM,OS\cŇC>Ϗؾ(OrϢʟB/+~[E+IRh4  T~oeM[7Y'{O!7V( dn.'#ml{Zܠ\g[W~RVZ9m++B9o-ڹ-߶ԶIUӴyk{g1Ok]?N|vc?%mjCeC sbi|GM[ @w@dJz~3\hL-: 꺑z3(0kOX7dŘKvTZNWy8`t^I*AA j%ȯ;VM͚ݱ+WhCTWvNMU'ˑQT"=К2`pdAtuWm2l/DLG}kRghS8СmMND lL+* 35Tyj>G pM.u#@W[aFPV6dᱠn"zr4 Y]z-\Xayi$Қ@J@V~޷# =8Ÿ#A5ziK&,>6Nޥʸ鬂Cݲn{BQlF ;8$NqPm^Ex:*ؠ t 6fk=KzJWFBdWb YE5_Š^;7Tiw3 HQ5;$I qՌ*0<"f/)8Vdqr71J \#Bp'(!vOl}]i_2c簡"'r?-$yGVq6A-;?mzC?UR: RP -&=9':"IWQkpvOMgs 2:'(jNi# [K֋j W76x6X]~Nrg˟1sHCe׼ @v]TU`0$^Jp;AA@QJ 87>{|WZb펙"nd g8::hä J=ݍbCc3Y* 3-lWhBw`sx!ɓB vlЪ5:r` t[{9&H=&iF%f{pT~܅ܬ8E7ȑEx]j)*Wxv3k[zlp'-x'zay2cSE OabF ̇w3ׇѳy̜8k2;͚,B.zJ'i-d畓ճS>=FjeMYVij%ӫ4N5֫L2V$0-VjM]lJrJ[Y.8Qg}ɮt7=x: K:Ӭs7J'k-Q_pCnjE}n40߮NMYVGJΔׇGS'Ng:IݥRsެxi =},gc"iնim朧Q՜w86kcSąC5 ]h4 = iN}9G;gD<y%7uU`M׬͵?_ebJugfW\t5֝޴B@vԸcojў+!&Nﶛt']Omy)C^|\Ղ~ϖ&jnU_9/z>?_l6_̇O<߷ ym7zc=cTMg*~cbBee7\8' e0p9=![~wtHY!E36->6j|1Ǩfm{mCmY3AukVl޲{De!3o]y4oEPӟ o` ?~̫ߟYcWwɨmKK el"]u--:q0B3؝(i &07U=TLR/rr|NOA 1ZivEӼL=-j<ԝ@ m`\,E @ 4@ ~-F ] @ @ @ b%?nn$y2z$L)ialB^|jiiBwRJ +Z2$&lc2z;rAQQp&CoYś.A?Šq1x/oUᘼ*V}D-ZF;H|;~0l'ύWȔ@mPyծj Ƕ|E 7 f 3;j۝-ti%`( 2n`E%IwuVs{pwYձjޢ?$O~HF+n@'e|V-||/9[7N~l=[:{ψ;H!X L |;5F)~E] eCr= Q:=4@b٠Y= yrL*5$fH#Ԋv#`6)ɾN 4s%@בJ5_ f5c>{j[ߒuBN`iQNLB%*t%O'TYfVCf57~cSf둔 Tŗwe􈘑gRK K^9WK6rNU +YU:hs:]C9@sH E*3JNuW.)Iel=R٠֘i^TR(m+K=ýC -3Fc"bvH^.P|Dy$!t<;P=lbTu̱km4Ƅy${E@0R^map{[NNRh  ?e ʚ8㕈0v546p`s@6;ΊӪ,{B&IIW؃҃lqMɩ+؅=-scW6_| +sT ~gO{_BcgՁ헏Cnh;q 4\;64x3;>8Ђ/+ڠn9Zs5e @ JwٹӤp'qtǷm{BY|duciJ->|p۱nB7n-#k(l{zl]S 3Ch1S a8ǮfрcE.J\PFO InlN>t6iИvzf:$S{-\wt?\c?U߳mͥy@!bV*J9PTggܡ].ffVjI jCPZzh_QՎKMmPj˺6,5`*fзtuP}xl s0FO& AަUW˛d6$[6ʖ4_L-BJ$ B]`2ye-:c¢ fAzD: # NPyպ.=eXȚ165<\VmKM;ٝ)`蠖dt;h.4&Qͅsʮ BY*;;š~seln37ra}2Ur f璘ZT (A4z(8 UIX{ ?$ î_;}?+t߾ `ʓ =tЌEn6q 76 @ yB ,AMl3*;܂}g:e$.z^kQG  Iw$ ǯ8#x_0I';-s 7?g$z4q&$HZ8D̙@F3;B^;p]18-s6Ic\\Au{겋EvK9(NADo1fAo'4%4 zKYvMPc*TkR LJS %<@*qgy Dr ÍEԠ{t!Gϧ%"#d/GaB@O~[K7xiL*w_}3x,V4#8Z=zAG\$ Sp$> NYODGI@5a ' &J;l{<L!%,_8E0&cݚ쾃 &>OmgDKZ 3c!!QqfqCv'./B1N[lq h&AE[` ncKEέ-ddlrU |۔K0ہ@ b€Mc<~Nen=ئiF{;@Ld4@ Kk4t++.5@ .@ @ NtLtxG]sciZ 'y3W{¸ɮ ѭc>끤d ۳gМk' IDAT˃\Nw3/x$/~sI\=( TwJBq?i`v{Vir[nyCř -`p}ZY񂪶֖ #~$ѹoマRY=4Ǜ. Y}D,5ظc%F''01* t?&(M]tTXSUcEEhi)^G Z[G%.1:FE'٦fP7^SpZGu]%$- Gȕb"`R D #&M^y2GEu Hu^Jh^ cLnm8gUh0;95VgM顼22ll #R?/}?/~S'yO[l7O5#RKo{FMVpjy[w ^o~a'BSi;`oB}|Dl7lH]/.Vp+~}+$|Rm^g}6EY?QنiN3uzɢFV^֒W.uza0 &h .)lPHqk&͕-[; &tIu=RfH"~e?ܥN &'931V,h+o]3Y~9 )zSePcQhM@V)lSGaj IuN]ֱZ %xe1?&Ǒ=A3W QLwiq|EK: (Uee'.uhDx'rj->1ǁN%UE( ^0 H( ]({OOMaW/֘vʦLLNe0Hw8 @ĭu,Y噭mx^ї76_/ˠGSݰ6Fuo ?;ija#V}익hO_% 5$I( $P=~ˆe`':tٍXGO gDjwwa yafd}6AFx ^:Z,Ip XPIW( X?IP^쑢Eg;<x{wLVX[q8i欜&8[l0hf{wW:sLQ~aE5lO,>G>q!.{nJ/QܣgkQўgTJuք`R*O\>pf`:l\ݩ+M,貦<'./>;Hf^L.2ɾ++wނrK\0 I!?H}h~S: =uPVۏ,Vhm?m]<,k ?[V`_v l8(>RV008v,~*VV$-Yl&\"CoD%e)\o&',ߚ?#<6xU?VkBc|X7+3MUyGy* p_?d)0jj re{W~϶Ղ7ZtPVhsW}/Ҍ(E.loRU^635¾5XMJ )3WFSTll23uv6*R7ʴfF3w67Fޛ3:.VywIEyW3k@S_($2ٗPZ1nx]͝i}b m = W0Hyb0 0wj{ SGk 딘8R@ lXС(Ӫ(8 nlG*,L  %Ü3n9.N^l]uUUU%Gs+1kBZ`@[ajp0*à 8pHNcHn1zpۻa'{d0 *(=1~\Xݳ5Gr!S𯌸r'UݣЕ\{+FkgZyRH ,zO8Î<9s+=/T𣏈7rZ:Y+Fy4OUEP7F;WIECFJ!M&j1YTp ]Bp$, 0ĀHҝ?=N7, m珈u= IvtE#HXn62p$U @N#B m,q${Z p&k@aFQ>5#=6X^ (,ǩﬢÇ7yR](h0'Fgnkz pv1gtK ^RǺ5+ :n I }h>O̺4)4*d8N,ǘ 8S?ҏq?8^˘$I 3C &0h I{70( GxyRZ q.;- [M尧j$WY!K`kL`@2C;Z@ZaM@0ԃ}7hq:` \+eJ:d8'H!8X_0cc+ sb8uW|=߷M-Z?df=2vMRd}kO]Ye5O.rۜQV}|dzb uӎU뗼!+J{3MWݍ{a,:= M7lf2CFH]۩se?-fB0?RsaQ0fePm7;i|ey2,HJ3(iJ\Sf0aOnپ. \\B~kv[>k9M{n,:%%SS)sMmhhܜ'Mz`JIL3Al$:¤1 BC~$LfA6 T݄kG?<FwStt᛿}U YPBǿvBym wɧlZ_ю _5/+)nr5G>|uƦչ25/I>xsajQM^R VO;Vy}Kov xtŃO\),\ZY0X֒7XX{yZ@m>*{tgmh&qՙwfr;OK@[Q77@;eG}ֶ^Q1̾֬kM]:ZP_B/ѡ"t8FvgQgxX~A Lν{˿e̼Z 庖v_мz1rN`< b0O#{Gnjus2@ ĸ? @ rco_e(z;[ ]EOHG/;,'qwr@D? @ rÐ'`L#/XR;D%@ 05ޓ16*pVuʺ?,$^)p8a5^On*#`O :i,Iq .=6͇?8 s\-0pR<\'ueݟ8gB8qD F 3`gմUdos庫 n]x5OSv0^{ude%Z"bs/aQl,T/>?z8`4hJOVQH 'NBXt6o>1Y,-j"}, oE@ ,_y.yK_x/[&s^rMz~;ܳa<.IBs?eI@ qψ{HB mx|<݊m=V6۽ pL^ o?L g73 !=OLs~ ?Ҽ5`ox&F2f*tnsj-&kiNsCDک20^ζTRj)nVo(ɍԐ}P}:D!;?GߜStbŅ rzH@3/;f7$6NjJ77dʌVGl=Imgش&EH`8D;qpF-jm.hY1l*@Ufi!w򦊁@ aW{_ qΩ/r޳>0M?m&jrruvoK!Ap];`Nr9CDmbaLicER?N%? =aOmvm,d`<~y_[#*_5cARYT]PoaIr r@Q\T]'! ªꂢ.q,MCEh;9"䆇b7Tv5E '{ФWkذ5lg?IS bg,Hut LItykiu܄J#`CJ[ Cܣ>|MQWY֤sh'F3KT&YmɉnqXU7['ywiيK; ƿWqNiP~ 졄r9~o.@ƴ܂vl!PNegifPP=ıc3x7zةv ٻg wgNlQ[bHZT{n-XXHa@yckӹ_~=b8PǨF8ܩE&I IFa}nw34)ZFMب.ׁz)d3Gz~tI>l0E'on2ܘ&[ȵ lILE3ϣ@ Y", |;+#qqXl~&E.bY^vB8i}}Usp_/xH5Gʣm_jll8m$! hٻ︦OBa,AĭHRX۪UhZ[Z*?[QP"ZT,*".P2d@Bm~9 vvv[ BA~O/3Q7 !>j IM?vЪZڦ5 N{*[>tY!LqmB*$zÛ 555d**fLʿʈa<;xFK]?T @!ߛ640Dװ\AdQ׺ՍtD"#RX?c:q2}Q[=} UM[J`fޕYh;?fFܹKIv> >ŵYFF8:Zo=M@(;;{7odtл˵ `]vr: lpӠ L&DbڤÙ> kP=YB5 _R}oq_[R" S_dtfl}3`3+\(z z [sM>5OQJ奉.Ctٕ"UΖڙxEWUr`o^io@4ľw5 d[T!aee u@^A~qU%[ Ѿ^'P~I$ iffԚ*ݹyefy)8Ywqfu;0jCkvTS}0lIO\QZPAUHmjo0R   RMM ,E|_Y(jc*hf،_߮ ;& uQFo.-(O/Lr?,?x񣍁s^ SAP;KBHzC=SNL#eAUR@=zr@pȔ!7Wv-]'ds0x—s>멟dׯX~?^߳hxg:=گ{ٹ#7fKu0ickFdTH3S_һ7fSQ\DIIo 3xkOəA#PL0)1yQ" Yu5◼,L6L 9`bnng4%x/^>/O)lssDJUhR~u[jĴtqioF̩j*^漻(fal.z-bv2W3mUr˞JB72~yU#SR[!T6%dfaR,d[wh0*.[*F|f@ IDAT;YSfjkä K9f eJfLκCkK87{KZoodמ\]e{C<˅ ZWe@HeDɽ[VLQ|x}K;\fռgNc%ESV4@ ?Jy}uҵ' ZX6B!h}WcȆns2tWX=BԈ!a&nv{8-q;^T!D3#zlHn B5M_VzW !7^J nUZ~Q[}DɋR<uhDbpBmJ? B!ڤn!B!BB!BHY8~@!B) !B!e!B!,? B!B!pB!RB!Bʢ7h@.;SB!BH7I$5$,r<[th Kڹ%7-nٖ-H 6OK:bvcOz,|B!s\M }_s?HK㗒yeIIlJU/~ Cy3 5 6?J'G 8/iƵ ѫ?\7 {:E*_{!6'cgOFX@/!|^ܾowf6`i\;`\9f͙ ۹]&? B<s-Nݹ@JO.}5oq椟^QQus Us^FCKy{sڛ.<U){'~R_Q~2`'Ӝ *'X;}[}:̍z2Wdݽu+F023s4L8~@!yav 'L۳|a[nmH>(f=֮#?;Zy*^*~X_eM+#~,e=kh›/ @ܺ#oYRR| @KE߮Ʌ_F x׷vZU\s ,B!Zٽ5װs#g!_<0Lg\θu>KF"ɳ̚)4!B-k&7K*oN|"{*v>(Ct8sȇM8\d2 @$+(:07g)a/k?ܻoJ ~>F6)" }G( $ROsjV{zv}?->xS>R.07g߿bAׅE%C2jxV؈ѧKe78~@!j9vVIO<|ȸI];5n̾N&Щ__G5<~CI4݋;xF%@!B|'(_RZ]a 9!B!e!B!,? B!B!]*ΡON^Meٛ'B!BB!BHY8~@!ˁ"?,Mu:Ϟ 0j[N Syy;fhw4RSm/"vK`dr;Fk;#O'sgc y'23w;} 4I.&e<;:Tvq!BZB3jCWyYr5 ,|Qz4fW7|DJ|RkPd/:u;7B|_;+CCfkCqiY+vI~3z~7-}b789i$ _9UqB!%=y3 5 6?J'G `?8o3wu^w5T51~h7Sy yAQzzz %b7vl+PC1uퟮ8nr͒O8eLGY0O+h-[м{$R"xk_.l7/!Bi9bGۚ^X @k%6v-#ǂDr8xxDfKc"C C<;q&UꟍM.ȥ#`0nEmE2qU<B!t~(LvG(,,rnOX}QRʏ]83%A{SK ̇ |o-WR|u~P\ZaH$_$Uu< !BH۸XUryՙ'8~itR[K2KuQc[Nzl![Dsy{?]@,<'\L& pB!%lܜfFu0}@,?UY5[*/0g -, ;WzO[3}Ծ6=ѣp끵C^.bv[?6w{YV3UCֶۢgԾ1f39Wݿ\Te6M3˫%OGR&? Biɓ;Yflˏ „ 𲓮d;SOd6unyRIMD>R#%hA˩oM҃^jVՀ, ";GelI$stXl C=}­g VW. [_Xh੶Smń{JH$Ӟ*,ȈDl\usxrHvAE-ylR.jŶ߂Rʮʍ\:0\Y,p+D*e7D|B! 8ُRb1}!L,u0:j&~Y~84 ?vX.A—|W$v*1 MQbY,:Is.ս[&K[%~ua]h DDpB!m\YBBT pݗTPZ?1$cg;^'QG[͈r{gD/ْv>wݥ; uQ1UʕM^3@,<'\:A?D&RFOxUni0mB56`npr_ryqM=qllm cgfoI; ^vE޳'0-^3aar^f+;ǗLkzwIgb.v3^SoN\[ 2f$_^]?Ųww!j6Opgu/?/7n^x`ύ}L\ y<[5 mPcfOjy~zdP(\n]u?l9*|?A}^e<1ZN=SZq;*4ffvT>kx/`e8r9 quUJ!+&wIW < Ze~~!P+xs |knM2ֹMMӼ* n5yOJ%u%N!UQXɸL +l 6˿#p~?؇f c*oT}$"B!ӇL4}yht G tlBqv(^ǀsgW +lts}`ڡl@ddmaF$N!Ҙ8@13"@'2ՀF%D")EFQHBԕPVQX]nFd-T)p A6pJ[#2bXe>,A]*Tg\"B+.~| Gb_rUV?W VWP#) 1Hv];<_B!B) !B!e*vz>?!BH*cw;mB5#ˁ"?,Mu:߯fv}7\)<8R}$ X-^\4Շ $7v4vvMGy*"OHSk"2pw"!3?3-~C#hv]L(ywt7맑wW<BfC3jCWyYr5{bz8dC9hAkO[9>ܔ. Y  )-v* ̨T1YGV,?V^! &ud|ln )snxa4?×%ymNUa!ǫ0o_`U`=+jÄMpGfџBa MfJ l- =*UOOP8{v'9ZsoVp13 &?Ive4Ib`;HW1f4>lN!j @. ?*. 7ihXH=M;TYɟR4&J)h삂yq%g> BQ$26z2{B!l9aftʽ{;|˙h]Ƣ q{CLXk׭Êj;Se9]tҙK $d9۵:ז ⽃ a43WWo{?!j6Opgu/?/7nk;6(13'5NtwW<`Y= WndD(D@ :pR6{ > >c{M2vy-f-&v bTŽ*X[Dy B͆s~eKͦ/pr_Y#el'8Ӏ fڊ9g;} eeYD}RlHyIxpD5~2o9pU_ќ߸:*[ UOvUDݫizie?N5KEN!Ҙ{ЬM0G[s;m:_Ax#q녿lj m=ͫpf[4Tx o/rDl^#b % ;hGL:]y B;}D3[A.zN4t G tly6\R&]fzqi~f x*=TQ\\'"x)TRA wLRHb S hTBT-RiTU$y6\R UFҊ2ȈaiDTqDu2Uo󪴝B!H2nAETZQP{T,~TpI*K^ļ"!Nj>vgInCd[rxt+79WUm[gh;VftN79@ntY<0ć ``-cBqiYA &Fv|s>8ඎv15uު5j"VYe@}Lh44Wa ?fJC)`ev'l,|g'm!BJ);Ξ]ٺЦ` IDATOcw{\IA3 &?Ive4Ib`;U澇"O/vv,Hט3,V9@~TH[V @2ͦnCsx}A@HlqriLdHz wu!M<q#A.ȥ#K'1Lne8>*q)!2(CLܯKͼZ??$. O/.k%@tiuJ19EJHP|uV_]X@"*HI >.ر flbeT-4'б/7ǥXk'*>M4['77aV3"^w7C$p gg! GBQ$26z󗐮2:۰Kp0"&[ջ :t07g8̌Nwo/p>ׇ_Y.8WA"0-^3aar^f+;Ǘ,Ua߫?zږ軧c?8) *fift} /WnTSᵮ;i ΄-/U E9a.$4k3}QY(蛛b.(*[R>HШZ$Ө I9O[I+8"#QQ xCWTh;VDZ]_{v\u!͐XԄeTvJʻ %R/{*X\]yjW^$ZǮh`k/!B!B!pO.ֳ{SfnuU'! K!T@ilP`KmiώVW[[uˎ ~ZEd:gO007E3 ^9~$Ho{\#^1R7tߢcz64pw"!3?3-~C#hv]L(ywtzۑK? ԬּʻV#4H/B3j$7Nܡg-9{@?wsp4mo>v5ִguvnJeC| )V515-`rjd=7snxm`S_/Z8~PXPMHT1E۲V],5aSsK{K u=y3 wZt( G wKĥ?vhy|MT~*J({IR(vcw=ܳuPu:fL~Ɠʪ-,,h^=J) ʟŐv*5,6f*o*MޖU'B&ɄTPۣ7I޲ 7Ԅl%<5Mb*P%ZlOnS͡Lwב7qFK*l])5asas8 )%ӻOhꭲ#<j+3}Odx`v]-^3aar^f+;ǗLe߫?zږ軧c?8) *fift} /M`h-P?|CMHIa[" γY ` /{ 5m_R&,yjp1t'y jp7[kۚ UR6G'w8c޵+;7oKܦ:۳]F uNcA xff>XRGƌ1W dD(D@~}r)N4ugҪZy&WaPauAyX]Uq~JhkͿZF&A*!wo )),bKy6k;yjp7j`^4lF-V?otc-|Ŷf97T3%7]Hx{َM3vpr}KWpex .>\&wսu)uy2z?MZ~T5 sT 6G2eǮzRدY?2(K {O~|\O׋T%?%/Ƨ߂VbP78VO-\ K*_]%<5(BZuoSL;M 4Gjnܟ&`cOV[k>Q] ukHk/^.\ڽ{372* -}~| BUf9׸nd])p,ǿ˱2ղ7}لUO_H.TEYMPEIҮ<{?P(c<1N<vwtt 1A bT2bLC'm k|P1Þ-p#2bXe>,A]K8~@!j9-0~@ɔ?K!B!e!B!,Rcl&eO_->=ۂOIͰ>sX))1A bĠ2AAHG4Ż{uDӞ. b 1A% Y\qAfa^nڭa~r_]aYoeYIOpB@r LN{~cHsmtdIbn..+=u/b^_Y!y'23w;>":iŤܜgqG{.^?=}Fd6\J57a9UB-(ϩ1A bĠ2AO5׫ ה%`1#JW?//A YI.ˮ 9/vxٰ_)  )-&:ڟg6qgC.+emZ~BCSG2V\>ǯǍ0m4?>92OS5FTUIeuD5 wB2M]]FQIX"٬AҪW~7!j6Դ}  MX"5?q6݄L;| SbZ%5AhA uoHü˚cדM#RNz^5VuTAQzzz %b7vl+h:*ffg<ɮn@t|LJ}|44K*pY4Qdo )),bKy6kP!ST~QK ؞܄%R3O .CS=$#A n&tkT>b[S!5J5Sjc`XQ>#&7Z\)^w_dl#7E\R޿U d07԰w0q2f{pw[ύ}^9ѧ=Avl5#Vz^%}}%a /.p[*n;7a$2֍qf;eMTb=i*MޖU'c{M2vy-f-&v bTŽ*/L#TBM҄mY[^u (٩L-0+Ltgoyx/۱i.N?x)WRW@rqB5YXTuow zg^;e_.fM"w'L2oߕXTSO-Z);vۖ~`R%?jW>~BwHluU'! KH~?, ?ɾ56vTzkSA_`#hqygD W<˦9}#bz'P,A]?hiN7NƴӻV#4H/|v k:&ZJiz))?O2s?ֻL;M4S*3ͤ&Km ̈iFVW[[uˎ ~Z4?PfDeXlonFTRuuzSH\K4\].#2bXe>,A]ϟ0 xfHw:eGi?\m_B+*&֑p(UvyE3y"^3[ < !B!,? B!㇖c7zi;¨K\u!MXԄBCa0ӳ#f3wT/UEM/!M(¼ܴ[竒rVK0m'wc.'nvhH F&Nck:S17y@Gb:]1 ijGsbRFAnγ=LUln9هw|BywI#:u,j~ i}Ψz^4garהCwvz :dW%'mggu;7B|_;+CCf Jc?3*-YX{~7-}b789i$ _9UC,I5rTV-q!$ױ t=y3 wZt( G w5MnZuj|M/2v T===@垭"Թ_k3 &?Ive4Ib`;U>YN/gԊ0"t\ǂN0g0XrP~[uō̼ܗ//QYJ*!珃G$o8[4&2`h삂<:X,bo׏֍~.etu02tsudX &Sɪח;X!.UL23u^:! !CpN"nڧz&nAD"ovkH>s vX.A—|Wԩ{f864Fe^$FvV6Wn/.mՅu)$InV_qtUewf(u,c+jVn]ϖ<^г+N %:SeN9aV3"^w7C$pϝjwif]Terƹ:W'G]dB _BcU̺Km`ǂt 07g8̌Nwo/a3׫PLGNGO9wq{CLXk׭Êj7O9]tҙK $d9۵:ז ⽃ a43WWv@j>{{Z&nÎ'wغ 7Y̆M6쫻l^>vb"WՀ, "­kNM2G`0ȸsӫG:f^˩AbY}BB6i3ѷNXi ɟJ|eK6cd4KP(??#HW @!Zcw!q % 109óTv9lj &)Z4 ;S24@!h3j;SH"62L"@ZH-hL*.<]Tcs #iEGdİ4"*8|Y@xURAYnC!Z W\&\݄|PH"Sa%ɮk''ZK!B!e!B!,? ]e4`_v!B2<拐{v!P3(¼ܴ[>u~vQ~~zGaki%:Ǝί+6 IDAT~_P}މ̴ȣNu1) 7Y~5 N~di;B8ɍwhv~Kn0fgz8wE_vZiw>}̮|Ƈe*!KU }Lgƥe ~7٭wms㜃:^[8ص(z0ě"x̀klޱjѡT01B7Ͻ^p²-G anU,d ڻW.G達g.l]yhݧα?᠙$yk `RJFe1dJM*fق7i;B٘3,V9@~TH`2%_vb:Lrܑ2!@HlqriLdHz w[mIvӃ<:DH*7r`dbL[Q{]2q TjHW+.1Ry B-d?J}Q&!Hvc4kmQ0_@~ឞAg- ܛcϜh)_V6_ݻzrXC)$ID>? ]U65hejbB2qqv3* ݾ"+*M@%FGD11{o.ADHUR~?"Νw{;M$NIf5<8r9Rڥ} TC**ɺ#t7S}>lZ,s6I94ӽa_ E"QW]n@=ׯ읢':B.Sd(ͺ˃XS]-x{VD|?9%^P| oh҅ <>t8jLz!71q{Ġkjj T{Ɲ;PjYD3]B!e"=cަF c"m2dIv_-ESiK5}46 Hs8.\ӣe?K@bPvld9FJLƧ6'-> SUv B/ڙƂM3Fyan\s.7x(UW]d%oݐbvc#dȽp5cvU[RZq@`:-rMFoDmo^z*߾=%:B.Tg@c-}._p+~yXۨDԼj`.+9vmo* d諓AFCk%n1?^ڌ]}]W߮h8L۸t-?tQ#T$[bb?:z8xNn>,M 9ض[?!lߌ)w ]B!eGz ̐^R^qxϴ^Pvv~diyXFJ~Lp\ӠVNNQVOő3bTT~8H8zf- m@AK|^C;S YUeMiB_.+W7e(8aɖ]=2nɂb Bv͖v5eݣ9º H}T"DH$3jի~;ܤn1yNğ!*6e&e7稩m>PĮN=ygT p@!2@UU5@ýG]Ks[D;n2(Qyf8{lp, Cm9v~36bK L9($^jYz2}UUu\zQ*сEJ@=i||1D! bf?Kl57c R ؛yK@M\'?,t5~ZQmicTfM]U>mywnz_H:^FsBkSlޱ~mD@!CXKԼHvyNTk@$`><T>.̖Ⱥ#t7S)IvZ,s6I94ӽa_ E"QW]nB!0**97BfEڳ\\ևO5<^Pʣ0Jj燭}41~qïZGਪe(SP$^555tE*3V$8؁K@!usFؾ)a5p4;J܇O^tcYrYuP^sQD"p@|窞-U}6_28c#w6P`7>1G?ia? BI ڙƂM3Fyan\sHbkmʕn}_:;YE=ZF >{j˫g~ٹ~oN\ۢQ@>jI/uv!Bٸ1nA]BpѦg^G R>&Ɯ2ZFf5#3-A~r~Ӳ JôvM_+Ȟ}v{>iB/ \u U>.TE5}=e9"PU:1{ˠt)9t1C?x!BtUYꋹ<9s mIt pY\Ӳ J&+dreeE&Q{B!(:nEq8M۽y&އF~bPx%%k?tMs/!B! B!P{aB!j/B!Fcᵲ#:c&=!?8Ds=fTs竿^oYgߑ/Re֥@"(0Zqf_dM u‚+\$ӆ/ ^^4@:?I$^,g9 |TJaINf̥>ڝQ!B Ô3jɊW 1_ҧYv:G1qz̓mzŅmԛ`֕YFm wT썾[]4Y5V;Ka-?֚ZHb"IN16د] wkg2mH^!B= ndƜ_|YfIؠ_5 $8/;Wֿ0/́i@YXK$Cy@>&vem~5ʘ=twV;;iS4t^0ٜ'[]u]*#9uUn, |5ʼn#Jk_]phDI$h,+Q.dl dݹ&>":,VhbK!BgQs%F~*zl~{&^N}x]>Y`ftg%9yYGHntߜsgFgŬ)JݫwOѼַl7B!z 7Lx lOb\\lԝoFoFeO7PQlXP>CBCD"{wJo>/^}l7H$xtHR5vrSG8?2#//N`P)$C&fBp9VDBvyNAPJ:L8{x^B!$R}$2hOۺaӈ G7#xy5n90B1s*ƺ]>]WWyES\ :PFTS]-YT#YRui1ISS^U\TJHb"%5 n^R;u&x̌*==maB!ԣdxU ʙZ @&SrD]~PFM#cE sG[ihq|Sjxx>a|L|Ð!k5 {/Ɏ~tМvw |3CLh>Owq?k|1Ϝf-T`ѓ$ADQiX;sk).Hu3:?DKӱw蕘zo:9`J$ 2}䒰@!.ڤSp10/o]G !ȿ椬ԛHN_]83<]upĈ=ޭm5u\AaaǡQ_Cѱ%H>0$nيe+2I9#,O ;,Yo8^"!291u|e>/t+3koge%[YRKE?g(lO$1Ē(i7[ض1ܳ9ݫ_|zI@hygI/u¬!BHqc܂å]BI^B!BB!B@!B!B!B!^? B!ڋܽz ?J{8WGz{XD萔w֧Ўyf|]+h d#+d=J,絖H"I }} "N}q;1%N}B!>o?3 W;F㗙U1_;} ɽ]݌"ݫ:L1t\Hb"$fWlX}JwU%@ Bw|#Z5lcTc;;iu6gzKA+IOb +)4AAF>暽MIJИ>D-NӆqS9U&l5;rx \t`B!,mJf Q0k+ǹ6xĘ*TDм`Y8*ɽ[L~/Q Q  dUtH2.Hc_ ^x;B!ry Yzc^؀z,9ԧe"me6HVu8"}F ̽P$]cF} '3@A])qKPͬd2Y(t5tAD& T?\-owvj?2Ij<.Ɨ)B}RK5ى_PD"ћDbOufuT S_ގ*,kIDP؎@$rsnZAkzlT]sfj@]jv|Ik_#B[ 9Xhiׂ[\.<%-͑Z룈$PW&2ςSʛ"um, KἓG(pXM D rVTyuV$H#"HB!n0%5;%4zN^XP;dM*K&:֞t{ɒI$fS :.hj7Y+oʐU3Ґ*q:l+[ ۼ1/Db;k׵KfVzʑ ZMeu~G!B}:z)52kfRXZ8UȨE>^mɳ;QEmˏ AWfIˇ"B!~ !B!)_*pFg̃B!B!B>XdRE>:B{|`6;Bw? B! B!P{u^@49@E&D!z9"'+-?'qEQEQ?ps+I/YI%w[zšw!z .D=/I =Y&vߌ,J>S`Iꎦs&C!.9%6^D^CW ?oksB2*Gh{h4>;PvB׍G׍9翋 0~kk\x=מ?C:9kIuV >VE;15e'$=%l݌Q>Y~kaΩ]j<ˏB;9/?ϳWA'iCPzqN5W'Bumcܴ[| wXwxɼٯ&^?fl_B¡5;s%!cG4Uy޵?]B!6Urvƃ?Pbڼ ._VkrcxW2ҎMq]x3&BdraIVz5:>'Fy3QP`|̬+&Qs޲RC+_W3ϧڕg~{f;L6˕Cdd^G:ovy]Lk9YC:B䟚-(ZÜkk 7pc)&;Q2ttt@TTk[EE5$QQiVv!坜l0@r52 Z}֪u .*9_mZ]RFB彭 $o1eM '| >m_1yT0BsH@6_tԲɛu" (9'2"|%=d?g70%XF;=o|5ˬʹ'(|Ąr+~̳eU&+!&yyX60A#n!TTTJTg--4${-ћhҗh=q' CfJsG@͛Y~@T=MdrLj>wм+P{;Tw!*@&q-seJu97ˡ)~}*dJŅ//+/Mk]ve͞O _"4J)Ək/ p7ؽt7cDWJOD6멱4VìcY`&idTDNGX(=&ReF_-;]xq"@$Æ$AJJΞWowJl[K{;=B`"]wi嫓E![<#1Z *|] _7Y99={Zݒ| !Bh|֦P2X_QF"HH"QbCQ>go߳=iK"EFgRd t8 @`He=c,fc(B@*G<>qɅ@pUE8u]7Gy$U=IL!Bd|ȿm8#7)Vfu:,rD$q!+bI Nx(DB BY0۬($ɂlZ8ݹs猟dʒHĭ['kqL`tt:+w` 㬫[x `A t,&~.2` ̉W2T(J˜=3"atBUruiwt{QeY wn7e XK$_a!;$ f-izddeYfD/0xP{}CR8 )̬N3r0.&σq6 ƳDcV>~:.Y5sl2'B( c8:FjHHD""( '(o;,- AIU~w!ܴh s$fs__߁̡ a Ě,!I9*'fD&"J@84rP]Y% DJ ek1 GI(*Q2"'B(PE"s#^,'O)$Zc612H(4(G)=`Y[BP8: B&/p8եg t"( &Til"/)T#"g✜6T뷖 Pe 2oӔےtXFrԁ٫(][m&ub\~"BŃR_Yw swaܽ]".uO SaeTHD#}޲s.]=-hf|~`hQCNe:޻ij۳yEB!h};xңcֶFcQ>GO#͌SB!22Ir B!M8B!2!xn]]>xh3C|˕VK/Ŀ+zs[cgJ.!gNs!B(`B!2F!B(`B!2F!B(`B!2 !4K/]d[\Jq*ɭ'u'ZIVyaB(Y5~9~ސhDIl={~o8mWv !4bJ\)iK,l'$IZI IR:4Bh"b^/iK,l'ŤHJI󋐒3du^i%<.B!y0E!BXB!y0E!BXB!y%^'.X}>K09gZ}Xav> Za8B!2F!B(B%H[DՅww-U*⸉gnN4ؤ:u(e%yJ Ɇ}H;!d+ X,5E}M(!B ["wjqtMLl TU<֦1<8 E'ї+ohAR pC[+r{|Y"XbI*UYV_9VB@*ȩ-QO:vu{8`BD YE[y~Iei`jT22 piإE09^` i܁\dSW9::b6qD⼉i&)1SiJk3o2/_f8LƝptp-V+=:+Nxc!`c4M'E"a8[ Kd./'8 F$zw}C]l[|4)Ѩd!GinYYdac4;CNn4(ΞKN >pWW׆ 0E!H .,L?`s]'M ,>;2Ы..X#$o=<p_5 poW' ⚢F W*f$;vvJ2Ⲵz[F7%]ݣ@e媤&|UZW#dʍ&dEڦuYl w/Y/bBCTE91ZÌxzF}dXJ33SQ(dpXF&e&c 8 e9YXBtYZ\YiޞMR'bZmYcL ž_4Rid\)7G"  DHxjKi{GBwǟsX_R$T$٥"{m%%9^:wCXgXmP2cVZV'V)Ccp5g]c*'.Mb'=4iإ"Q8ޠftĘ*c61ґXRP#qܴiqVER, zyNs{[F)Dz 4"Ma-]ݣ1QN ru-cϺ`BWR\$:869%+-X-B[` XSqy@YI3edW]\FH2߈{8TrhZvkNeO1)Tl6S\첸b=Q,B! ,-.˜蘵Ѻ:ZIC;{m!٬a6/bm_b9MqLZbJ*ɜ|g]0EhYԤ +! ])LcE :h_&.@4tz1ֺ>W.y32qיf\Jb^ g\,@*\nAi͚"u8nvҜҲa*m `4aF Z˪M\9":bJ<:]/,0F|_y𽭥CCC9sUɘ0is76lcvwpBB),7Q\U]vtX2dTRgG{@x wldU~gF%!2ǖL.ʔ~A5xY ݰAwF~ߞ_$~~Ȫ:'|=RWk7g:WIJ@L<~{ l7ʀD_ZMOlON h+Gy+q@iK*r=-tFڠs-1K'UDbÌ?+͡ogF%!2ǖL.ʔ~f+ ǜz]-8.ۛuK IDAT|;̇]$vrg$c@qIZǿY*"Q8ޠj[ R#KӦ cE9r#(I6?lo(p Xcw/%agĦ0wЮQN@QY40*(A!pU'r-9l֍|ܽ?qM;b0LðvmGn|?9c֙f_ixDa,*.2jA[wHPn^S`T yd2||.Y;<8蚸i̹`+ GJL9YHOPdhPKthhKJE0ux9Dr"uuu;wLB!V/4Rk2+x@WZ#ՙ )u{~I̬G!B(c^-%i'6V2B2*uB v]zùXBP}B QS & )D.yu@*v]3ww!BhYpL$<Mo` Lt*5yu@*v]Z!С}EXB!y0]e,.׈RB!t]) ¨cpt[ :>vb+.{{B)u A=6KJJ2Ⲵz2ųohwuȸP1#,,_%N; @J MZ/.qu7z!y>x{]SBh "W޶!7UVuqmZ3V<.HN[KShD&v TU7 T~UA E'ї+oz\QF"Qf/4>Ԩ]_rڱ?fޏ^}wFgt.3N/^?g!Z,b,oIA@H[2OY2>|D#(Q@HAaP(!C(cR*ʼn5ܑBTNem|YI'|yN -Wn@|Ԭ'{*/|K+=ld +kBh9Q#eyV/K {h\U@pykr"}ތ|Ojc.ᰍN ҤD&&IT%dyBOϞpBmc.xL{ZJv+ѳz lVo[=PU)>7=/^ 6iV!r"T* M" nnSCmP_ yV 49 Zٜ x^Ʊl_| a1A  4g?4D 1Wp IF]bGB(izz{#lFM/.arbMarXꢰ:!yJYhPjTldg51]@SX+pY,f&їgLuٜ'<^` H`mɄ1ׂ(D q&>!2GX|MY9fRݗ4@ӳSҖT{Zz c>cA=0Zb|7r%%rRJ$?8N18̘}ޛi&)1jJk < ؅"J%OLRP#9Q:ݽ q4{[V_ttCryZ0yrՑ_sZ㙇 4;'Bhu c\d$^hea8q,˱8a:17"=u϶(K!  =I =H쩦.v~1 \Q6}1VN$SW_\S~ qph;m?б6Cu?Bۿ v[~79]@!2iWZRLqa$ 8Bkn͉,KM_ rY0XݐWR\$:869K<"PQudo=k& y3aE"5޷-ノ1<WĬW{unMgo,BI-Tf,fJAe+.hHޮ3O%VfQ{ˮ5p)6貴x3 BHzVp_ ji(@!Րi/Z0GH$v3s b#%DG1F]]RşsV!BI4ՐqY̔:D97(+ D9IRM!P:p5qY̔:D?\QjGq"!B0E!B'âXT\lJ"M~EX|vU wDjξs4/nM#BqQ, Y"ىIbYU%ylRm~}"՝Z!l6e sN{}g/l'!uUkmVuSIED_ykM"u&o":( LgN ʙӏFsEᩑtr=G, %G$1Vw$MZW+u9>Tw5!œB 2AkSW'|\?LW~PZ$ikj p}ٺm )\F"Q6K3`M%*>o%E=kD?,]͟o  fl;l_?W-];Fv X===?o}u^_<@Wwj鶴~o_/8Wm6Ƿto2a[?ߟtMw;knek)l}v:lQ@Ww;vY}C笕s{ݍwu6qf1B:ʲ  2Q8 hme"%U&g͟M ؠ?0@X(YJ/ʲtJmzѝo̡d\Z\uN'.8Lޜh(_Gz~ץ  ?wǩYyOT^,յ5*￟2dՑG%cJo&l^;v O?x5?Sb,@|=ޗx௶3x⪵SՙNշo馛u촧\lq_q:^wؽtM7z8wzSuS1~O!Iᡎn:fz2B=4\ r59~oFJ tYt55՛ XҤD&&IT%d{z j{ zYg+.Q*JN9u})âu:hûgQiX6']}gG9xG_:׆|Ioѭ)O>O_TGͅkg0мl80 @Osxoc8;:֪U`klref#"̌C2D:!dY`4tea8q,˱D}i߰bSn|hW(:RW^Z |X_>`TxN7hqGb *D2C]]N|1umL\MsQWyo|Hc}ty']x7$=uqphx+_jNީ:\kwl өW5O$v?;w =x²Ӯ,p}>Qzx?_]`tC+v|q-wEe*k)Q?|=F?'5`3}tQ?pGz۟tǮ?Mw|&>ߞ|n2!tJ%*Uœ, E[^ JH kLY3Me/@ ,8_#L7bC).*6i"cC=!W~AXl0^՟8!#ظEG@q !;~Qq+3炒D/r sB裏?yٹzb?ݮΜ<;Xl6]xopcK6ц-^:~믟]-hwex;K ]Oag24}[~p\^0{֙D[>Us߫-|OyHd{o>^?n>6 W^l{W\zҋ_rD.|Qė8dW+5}7sg/^}QzM  S[?*h~{rbI+Ӄk8" %y['\{+մyBN/!,4Guԕko}>/f:3~}<nʭR-Oˮ=XYpQG}.kWuQGu1AqohSN ~|tr앫NG '[r%zwN:'^w=gF|x[WxU~򝯟zsژys#1=xKN^NE\m"\#y3h;:;_;-c '+Ƨ{h\U@pykr"}<"(!G*6m^_|ILLR8JG's43Uӳe(柋Ƅ7Jb$q]:3GdWp99A QS84&UǗ((%,' fv@UNؘD;O^̐e1}+L8`MeOh}ZpUߴ/55I,NA ZvvoưxϻLZgb:R?dؔD_ZM;F-l&"I,>":EP~o-'\$Uԏj Yݷ IDAT:{4#L%k shq&jɯ<2+Q :kqiLGQ ϟp.?{?hkvi{—&v'r)7\:(qf?MSo?sN3՞Ua:M?Y+9cwݢMb^wD{wD1Xuү_/Zn4tTzN1*. ҹ:}jz`̕|#jl<{e&IJ@LF<~{7eΣ(T*X848+"I,>":E agkNՐ&\ㅆ,H? @6Ңr oڴbp@FXwҐPoJ]W~" tLP_Wc\)}{۷|uZXY3oڗЗ'm҉oN:hkWg|ݩ[ Tt2?Bk Ia_p}Ȗ_stVWzU9cxĦuvI+8m1V%~f;V?%KI6ZЙL Q?40h=B-::Vn~KY .9Ws)oΘh^J-Q8GD u9o#ZaƮ,pŞ}MbxA%OV7-h8s}da+Elgd_옂#'P cIO{8_@/⅟TͧΚ'M[=}k6+K^xnO/}H_|WמѶNk~uY'v}/ޝ{cд? `w'|=';;{~Y"o/;owǣ\fog1Ccn~?ڃ?z\z~#;~+?~/߱r?=Xmh}|ǣ^ۯzZ}QqxsgKWR\$:869{+KlDr3d]]Ν}l0^w8& Vuugɀ!Ӝ 0:p]ʼ"`j,j`ץoP:'1V _zW_3wG}$6{w9&1uHRwk}O ;GMq0(Lg@Y$t5ٽ}2ND>VF#(ht84jm3MtMto),(/+*( , }Q.rQp",E\ ]h)ݗiӤm̼eJ+-fyN2<9s25u!bwLH$o=>_q ޚ]H$$'@* |@wKw+[[{c\~".t_)#?pK=]=]c6܌ g^YʯKoF,ٴ'ĩc?o] /Ċ]ݡwDW<`Ē/Q ]>JNNNNm8Qi-)C0Nt΃=,kCM#w'8{C:/[!QXjyHH{H&JѴTzu- 0`\yhϘL4(H+7! f\V$ɦ-*NM-!:bz:3xp@ݷDZRl5Pl-ermT( _$S @$.{):x(]N!pTD8Av~R?<,٦o{=oM#5b+.P M3ϙzK^' giOˣSWM3.qv~Π?a K+fCVO˦l1{1?ar>9G|}j/9g&W@߯H9S+fJCXX"6s大6=6t/ӧ 6[h=!O6l7 6lح nEzlXtg/v0SVLX4N5"w ~b=:SwKu=XtuA20 ` 40WSM+.5~@{KLMghwB <'lؒFEUn-w 0F;2u1fCf[/"\YQJ#e8#<8GqT}[G&A{0QO96woh}GEwťI5XYpE @"֜^_, ("R{4ΐU;dO;vFgdہʨ(zT^TT&Nzxy1ca`fNm6vKŴRoo(>@^ɪSplvHݶ~#ov]TΤ ʨ(Ҟ>qY;hkc }jI_lBBw Qs'2 NKu}Yty1Sz%$ !WSrt@"ܹ'ğ)/y6n0r;`@TRin&/; ȃKCF>9В(+({~^L;@:hEx|Z)>yEm:9Uye'kw_50v˦ 曊R}u9ZqugzY{$ľW%Oxzњ}Kд*Ugr]|hq! 1wҐyI]q/ 98.=$b6J%0`\yHTVjDi,. +˶3.g]ÉYUyvI6­RJ4}zذa~}1۰1{1?ar|+D<8ƷCdpa@t#&it` [WݩRXA@t\4p\ 9)'A4jQ_tZE.,jK][vq\%eV/"\QQ]qiREM%Þ60WsU[s C=w2SW=ʋZmq  Hc{* ԝ?m)e1121c”k7q{yՋ6…jF$ijRq1ۻNv Dsd)i}Ae3fGD̔g^(0B}HGuԴ? ȹnG3%nfr<}ZOF_}c J*pBa q w k7)z{5ryNP4)I.W( QgXk\EɆ xnO#) vu*2K~я*KM_,q"Nas.ARNL44h[mX' CWt]Q3*-O,*= "4*2v@C[2tyRqq xJm7WikenF- "] -z<&wWY?rxaэޚeomX8]"DnJE\ 狛:udH|E^|Z 0ij` IDATm7۞45b#IiHabli~h6~ 1ϓ2[7:bNL"U̐6<4a 8mJ v*n`ˑ^QW_p' 9芌6/\W] .:uǪvd- _x`Dؕ['Yf:o}kcS_ڹ ^#^~mëJ/1ϯ>>;U_XOFs0g^֔{I~rxw p{#[w {IESC_| H,#kYƅ =VUƅ{ڱѦ:uX_I06PG@ô/{ޣ@_q 6.+ a@ yVPHHHHII"]/  gl]YDXyto$Y#fmLibswߘ"“yRb]Tzjvnzn ьA<*Y]խRXpf彇;pѪ_w[ё"5qD>>2P^vn͖Cc{`,An@8\.P'y ;V7fŢy ?Q(5=<tЌAAAY,  ,AA|мX"/X#1>žOnju/`xɷӦXvaNK =alJ?|.ٍ ]+,R%a(OtLf;³wr.x'QfUh\(1꒼j. eWU[55e5(&z\Z +_̘-_wmW噭l/EikB_C]"_` |e%z8AEjG(8u7/cSeߺ& TrWTQ~R3/"_s=㺕D 0Z3f ݒ(xkBw񡽿%FܩO\L5v_yh'ڰ'tpa_ K6I:q[=l,+/ڸ'?~4vם:ѻW.>|/?|)^\#VQ.>'۞t4/Ċ]ݡw{k<|C\-_)9yWbįx1uwAqQNvh]N 09G|} /9g&1j1Y9=䵑"JO,ZrSc`̞l'_\ߐ">^|5aÆhYU\$E#i̞.)f$q,Ok3a{C=3_O’3NJٺYaæ}?oذaÆYƶ; H 9*r  -gਮ0Is5T@LߺRc{KL,6+=xAF.'<xN @$Mw]VhU(E/SjKyn v5vsr؝4Ν?x pt""gO ?_u4ҝ?m)e112-g3$fY\Rҫ<4.F]ZRՒJ*kRPjO;vFgdہ<ᤇ3_u -Dz ks3^,yG1GuԴ? ȹnG3%7赔]MMȸy 0r;`@TRi[Ə%nNɍ ~yC071ghΞU͊H9 $ j8MZ ^)Iϭi$߮b^s6XW|*.x(,Ŀ)Ad^|\W M*>= ǒ_cW'KAZ#Um :lx!QAFU%QuhrUN3/\T 9F)M9:ਬ(BmͨefCY,q0 V|F؃p6ͣ/͘ gk7IM^]qQs_q 3XbE[2sT%M7ܚf. HQ~ˮA4\jy֜. HIȀo^>.mޯ:n cvoIOD7U[R΃m4fn 08!]+͊~2s|& dR.{oI,= [y]]3-G( ֐zF gUֱn4DRy8 /GfZN/y?l@dW q4̼/+({~^w뒪 vm w3ؕ['Yf:o}kcS_ڹɒi6nhVŇzN{_/']Nz*j<z B{ٕ3u]CX<6#5,[\˕MWVUƅ2`2TE U_Zq~^9ש+,l蚲bYXxA$3Tʂb~Xd .P6Cy^y+?1>GBBBJJJ~IHЅQ>d]>I2\G^豳8ݚ=.>j^n@Ƀ<)m.U*=]bi ;V7f=ImhFt]V;y`muA# 0 cunEc r r r8SرI7d,͋EAa\uDA)Xݤ-f   bAAe  H"ݗHq/?ҢƬ}iYӑ7||j5筓|K6ǒV ~|җ!%|~&mASEM~y&-[ i A?v`#Z8>1|WU߬YԷYrȀ<Ãe2*5/zM"߿T*Fp\UavҴӬQ [A*%mtoSV[]jR万DljM;MW/5KJ{D@"[5:^ց\.`\κB/k5%$"ݓ❴$K;^z0X<:u1hG}0?{iO5c{zIB:\9驱s~MzfOƥRljX͕ɸil/Z1cƇW"Laf/v0SVLX4N泝~a*0LlzT&/rNTD*1. pe㒤@#HFIRZp) \ozG4- 2ld!PWxFG\MF]v70$"HҞ;w+ϞNEEyA68s=lluΟ̶Д˲ˆv0awrH!C{JJ 7.tsgieņ)Կ>g!F2Pz-,z=.RM?􈏏2MSPwoo.3YW2 LP gK:npg$ah)xzٵڶv|Cnm-CBbK#Ij8SE$0vkh>[![ϭi$߮b:07J4 "q@;L~_& =o#E[7fʜmI"/eD^ 56\ڜZk:5PڶʃZPUi ն~bT%J@ D4MchxJmwZ{ 6 eҥQs.s8|-TW\.\.F(J\LC\mQtWA 3  ď(OIyR{(+(KxhWA$\kn S%(y יִ6Lˉ{^r>OMZ8]=D)S||@kfI~hD#/鋇^lML|oͲ6,zl?iLFL d~EfI`_oNf1IXSېC zDF s^xcH_D8O7,Ԕ6'R;Ccm7@Br8|izI-!!XyIHƅHU muakpikԕtX%Ϫj5άN苯E#uidr(emQz-BRo#0Y[Xm<8uYm5+ [HWKzpvtY'/X_I06PnSa[8_wyM)"& mVk;BbmCϿ1fu#/ #VsqIȰY[>lܝ7wtt&X^Y99uÉNa`L;\wvt "H7Suz]u-DAu  ,AA|P  t>(EAA:.ЁӴ\_F\(ӪWj,N6(~j< IPDJ!8bEdx&XKa˻XP{F<2iЫ!M25%ʍ-Z.A%Cঅ^MG{N /vKZw]\:zy[J'nIyxzwJ-+UwUn[ A= l[ }CB5Y6L ҰGN<4Ӗw5߂zFJ-ri2/W91J_zs׻ >tjd x2׷9$-m]wZ0(>gpЍk=cٶDAVQ:o@: A}@wdAi<0hװOڳA<[cN"[5:^ց\.l1B7h`_iM^hqfF'iՖdgmQcq2ʊ*D1 <`Ē5szP|(@زҶ~GOñ!8k7cvzNy׊ t2m5/VフguZ 4P2ރ4l02r/B .]JؚYqq\HGB1^4#lqR\@pGiiKJqH`quɗ[ѩE;1xf_O{z̨ۋԻHԹhElIOm3{6~ u}C] G'C-O1+ u;) G{+&,rYsk9Ax^^B&_cP-5S ٕqg$8749uBIopm\/2 z;M}]2UFEi}w=ʛi:Zm1 0#CjluoͶ`9}cdgxA4sc"mJNc΃-RfEL:$к&0'= .ݿ^UO QADDNm6/XbipQYmQ4w̡-0iIBI4aܿ?j᪺RH[݊YH "kLJ*U[;9$\E :Dz]-O6VVgs~IwRɵ?o>o#E[7fʜmIF~IHHEQ:)n}@c6Y0f>yajKcM¯[2wkUW\.\.P=S24G%'LZc0 ݓ#9;:DQi=p(pHoIYo-yD\96q+ 'M*jެeS HX[3"}SR^ _gk::{`IZ:< :ɻᛡCKn FgÄNZo.zmG Hf .VRUeqPfWG>K6;z_аRtvv(ęS{x[:mܓt?ǣI?[ۏ}ׇcCOa)C0Nt΃=Q  ,(Q (.> R?pytꪩc%nю`v |Ӟ3j"+,,,u.ZrSc`̞@Lȭ d+{x9՝R~>Ԋ3>`[7k~pb¢q/7/1 Hw[=%jb1@ښu?yDF>ο2*J{da<{:ڌΑTթ;2BS'.bbdEd3d#қN`m c캨ҩϝIArnybPV <0ATTNy*JTу$HNK];ƋvH{}[xz}:$\E :Dz]-O6VVgs~I͆\;_ŜG<ڦG#Etj)ߖi' )QJJn%i-!wFz旦p`utL킢(pŅP;n92cm!kܮjiY'LjRm낿+ w7mUP 7pp1yw[螪'.AOxgػ^~?-: 8Ј8G^n5&'j⡗?[r76u͇L|oͲ6,ꢳHA t-[2z*HJ;mU%;|6/\W] .:uǪvd- _x`Dؕ['Yf:o}kcS_ڹ|S8W$ǩw=*:å}OPW{knbPv~݅  t>(EAA:"  bAAΧQýppgUA}x{`+=]U ј/34 #ok['|;m^/niҦq40Udo2.AˆU?T\AuEiy:-sr[[Ty P߹Os/$lP nW#]Ǖh,V$+˼u]GڦNigDeIZ:|zÇs 6?__߮>g|^1|̸ y]/>!Š|wg|Z @1׃ί9neGijV; ȃQSZX6I .\,;mr܆ yXIu=ec/dUVaȿ23{Ia(*0Q["HHzCu%o|G~c1ʴfh\HʷuW$YS1|QW|vUݢ`e &H!F)mjټ ?8:?@\9pQk}bҏ# Pۯ͈ [o}1_}c|6%xt[:knӊ =R>N UeZ; cIXNB+$ u<-W+ W BB=A2,8*WIS2gZ0<<:ܛԫ4VhHbs~꥿2hEduKiWxOer?W5O,\jq[>g=_njHk$ K!KVf9?&?gù)W T07LfL&†'sqcMa_`,h(ET^r9ȕ9)))Y](ՙZ|}9._ήzb |UM+ĭl(yFai.4Meb92o!/5#;j,5 vY zva8 : H-qDsxt $ځ2*J{da<{:ڌΑTթ;2BS'.bbdw # m+)1@DӧOL`|v0O@0K@Y:aShL)0B,nU4-3qX~]Fr=á--kkL@(røll. sZ8{{{gܴYpA@KYv0ϋ㲛&$$5 tUd@lX5PӮِ$r5t( QgXk\EɆ xnO#) vuVs;Na5iL{U/?6a[ ~Ƣ.@e|P3eNfvi7Ma)?$wk%%:֟;LVqx`a,.2437ԧdi x`}R[?ζ 4a~ne^(̺CKyjjj> nVJ%Ͽzq_ɾآa7n?&yr?kJV~n[aEzEQip(pHo1ඐ}KfnW$ou3m玢/?r0 <Hl0F#OA8f_u pRNpw^ܴ&wWYYc1'.׵cm.#REDT1Km ^+ \g㛪{s7Iwo҅"ւ}]~(( ""80#"𢲨 8:hղu6MtIٗ{s-B[8OHyν<85]_TA3ztFYе_ .Dž: 0=G3Wȯ !O:9Ct?lyS[{fǜ" d2Ymmm.Er:" QB_-b(mfs\h3l7]K uSlrtuubl 'z'00:EFN kJ*u-]Z\1{E"}EEw?Z刴wNZr4:ZJ|MAl Y2܉=6iO^½0kD᩵J܈3F8tt.18s|$K{vĹ].8\@nc}T6kƤ@i5b?i\N 8J #!p{iGSC.|CE%{tdxsE녴>'r =s,)/VvLG-%B޴r#Ӟgw%/xE W֡ҤLeVEKUr ^9H"?>y)aھk jMU>!0Pݏ}pbb֟yҀB:<& "hu@ bq^e"T@ 9W1 ͼ`X,@ b䁼X@ c`eJF tAzEM%kCfꋋ/~#0&etHutm^GO9)jcBF; :]ո/)ybx+#x@u/zj7\\k}Jzھ3'}  fl𱶷g|0ؽ oӎb*@jLe-ܽen_ ܛ|Ru;/85?/_-`ʦ@]gI!&3UZt`: JVo/.512!ɸz]}I]'#dV (:3(3Ae/>Qr&c% C ̋[@XПV[x'hWv9`g}I?~d|sEIɩ>2{}0wd Rm^,<'rk2}4HN'|'Vm},%H,5לpT TQ F$ +M|S\i1r\8GxFm*cre&&]gIc|/A#ՌΚ0.%ZD䌋i99999c#$vtzfvvq_Wڌ ccD}=wwkOR\$6ټ>R_龚Z)_YvذG;_w3^3o;x?Sˌ o?~kBqv;㾝/Lec;{,Yk>ǟ&E.Gp|ҵ¾Swڟ7ϐ$|1Ak?"}Zz&M+12`chV|w~L*B$@JL~㋟#ίyA:ey~u!G 4>5=3+k0YtMx̐yx(l|z(r WbsL#鷙M%_FO uER OsY~~~~EkcK R 9,/^eѻd4;ϟEldH#)KsCǐU]6D]]+8B˒ W=8eMVM vl})=IaǓ/)ٗNwa[_){# 9WFdg dXԪոm Pr,4S?zꝋZ8/{q G z~?bP)sQyGVk r3vŷ#?;w~йą@(£N4"]BVUthaE׶C XLIS${Pmm^p8vwMk7fn&.aSx|tw|6XOL['1N00gKUO[L1rco(-l#x mFe>$f)ޚŨ 1`p8#ѴwG,1II;avs!gn : 0pB{ lc)?<)8e269{':P*8a2kWȴ9g^3`-3?, "}mZ-J)B1Deei+̓)h k>rX0[\ӲUg8e@ qPo^fsMshyexu66u&F Hyy|F1Nׯu8tUX7+U> o= *A?^3 o0|{IE]H D7j/[z@0a2#Yd X\,+u4^nm}XE5}{?cx^cξR<1X,; dQ6l&NSR~@^>Ƈc!(*]7i wʞibA}[sA0*e8AlH͐y!:02|u43Fk>ܘ~q{HD@[: a"ܦCgx @z֍sVĩ!գ3 "xj9'hxӻU T&-)ρ(E`{gIY0,V𷮑EQ8?AQrk}YAˬYq<f͢oōeS|Uxqz;3TEQ8E^2伇 c14:E;mnLdT;cJ֜g~*FFX~}ͽ3ݥ[۾|a#ouLyyyjvC)PM-br6u4ubJs5R2;V/97O6tJh$1PF^:>n Mh4t{R_O@;D9]~bVc+($vcMcmltGM˥|H3nC=x<=CCh&y"]99p%B޴r#Ӟgw%/xE WWRBGeH NR1l>g+8~u%{.iP+w6q>dJΒFcmo|y}D(\,QtF%b3.AkH됄OHSOYo[^>.i,!U])lSV  UM]l{3Ðda㫓%WZNouԔ˱j3C*ئ&'ƋHNWZlUo(p?"9U45_[LFg&Fgb=uy1c\n5sWѱ1=K<`|hVgxmD_pi|RʎK4IQ֢~'Fg{*5IU'zrta #%c#M~^d{3ɋ8lm3t|kcBl5Y)nXR5pf R;6lcb$C:F;,n ׈aS6/`kLj~>kj:#.f ݚge޺HDz,E{Gk>lu GW6R@c9KoVoWxMY)tsmzW3j6[W6er5{>ؼ`_&%{3n}>> ^ zC?\ {d6f>+LbiS'ߜ %d;uϲnj3і/T~d%&){'n~.MAQISIJ^W p2L&bք:?2PmPjU''bdoEei+̓)h'80 D|8>]& 0&kTM@Jd!~̸hpTQ>Hў#s؜O-;M]7N3&sYL6'qT)d> e0 1@9:g, ƕM~~XUl8CHQtky~+)ɉptǏI-ufA3@UD5H2е6xoZdm@c`~:a%goscBôzip IV(E4k&i/1E-uzv{7>~ھkP*1>k`o)oQD Ã;}=|> X*Eq P,a8Q~ѰHMqWD]uD|K/!~.[5 ȇUa"Շ{o{alR7 e&uSlrtuuʯtTU>MkXޑ+ey;F "?`QqR6tWEE{W新)%hi|2#q3^YŷeN?pe+#E$AprdIh/C 1pRm6{~nw*[.ER s|}lϑjb}uDmz&ɸ,MM͎EǥH0^z0!u| fC^cA4:#TiPEu>+V\hՄmm y6E!{6<19#f'\)t~e-U:6Hua 2I䣒ϦfcL4|<]ώU:迲]L Z8ee3ذnU_<,[J]Z4ctUΦ05癷_{soЭ a ]w5|%9`s^4Qy|xwܝMڽxl/Aڣfl:o ǰ}@`@ ɠxUB܅ SRbdmF ';+KDe-j^[xbE munFqQ;5sWѱ1=K=`i>ym2D 0f0b0jlqP>ZWzHH*u4Z<4j7T 04>50-155}39}oګk(/56fY[R#D' ]{cu o|?~iZـxMϽ~9%oW R{ oZypō8?m暏烻IQ`k|c^b{yyyyyg`ϫ}=yy~oe ϊ̱K|4+W>;_ݰs|a~7@ XfHG&5~L JNP<w{Uni"SF)=,h$1`Qr8JWU_ԍ&qtbrq]lT܅yGRa$ML?Wfz ac$xYrLxۊkj5.iggB2}Q߮%4au}*W rssss{:w.qVDπefTOOsOQ g_婥uWM!o@ #ep\$d JMqa-xppWUq#XM=#gR<)#cS6kN*f NϨ=[}nіovmZvwKn~G[oG!$?0]Ϳ\IJkjyTi|FD6NdB̢j͆p~wE -O[}eH)&'?x  |>atcu6 CC'<~t\ʊI>:F<<H28}zkO7XX`Xxgk[qZxaMw,4c8$GHQ"ZajM\lKLQ]Z/@u6e<~qu:z>篝:c{o@ #Ë( PH4`XRmʣ?Ye:+jEd)td =v(P$oڞz+2v)qq6ǿqARR]?} ?ZM(:x5vbQ͚EMElTy( z\ ֳ4c{w A 79%+x0@ .vR-`8Gq-V;X::HI\i3@'+ 60c|wX q͌+B7DDYF|K/p0Pݳ~wc¸ɷN(3IPSܜ*fsoLV~mil$F_/}X)i4Zhm-ac'SJRb @zƈ듥=2+ q3^Yŷ;1 ʄZ&ǰXknW4cdzPh_׬:Am]!qߗXq"GN7cL!p0hٻ3S6>'|ò`-ˁ ,_ە0kA3FWlhSK:+Ysya7v_}} `ij=T;cWP@e6n:V}_۴ldCQQ `\ilt8e\☘pڨ7X.j!P əf=90z~_~>+nd"Y^<_Ifl:o^%{>z8zQ޷K.<1-@ d';L1&,?!'n2A¸9Y PqYrvΘ(괬$y (&_fvfxpje]6k./nWJgS]ǒ'S'=NrNKruOL=lOO.Xt{.P8͇6muZZqʸokEA{FX;_%ō:I`b"Wmy|WJG]q1&SHb}À^ aH9/V5OQ`b5SU|ٲé[: Ro4m</UP[OUv]a^,){rt\{Ցm[eVej|g~9}xCs.9Hf vxlwbu-),]gIk;.Nǻ/W)"޻m{{ZțSWo+08sg& \}2}٥9WeZRWm=0饃n~lY9T@Ed|rlK/] -; ڜmdϒ?m-lx|Nޜ> ^ <ӟ `Ȫ6{nP +G~S_}ouM:&]cqt܅yGRa$M/+OϾvb}:+5o}Ի7Y١Sr3_,v)Z,pՃSdmt "Zpoևrۣv<>{x^[S펥tIm<4&̍O2S\SבYZ|_wv\t}*W rssssP_jtި+H\ȵD0n[ה7fM/}ɂ^ep?8l\C!O IDAT8p+5X9BK"X۱EzRfO,a"W_U vpI,u75}djpXWSֶo}wMzA "sr8yAxk돭mu*Wr\Oe>]h76-;U4eLRR?(KRR$Pj>WUI&&&T\qj>ky)pjBNR : c`8!NK)쾢 -V7)dt.Y}p$`.pvw[v\ <RMN2~Dk5H+]$ Áwo3~- f{tB\SZ껚3}6k6{F/q-P#Rfk*F+e.77([qU(Vw+dbهcʏ}mQaf}w\M7w[My|@«@8p1[Jc(pzcݪG)X|4b<&%dʦdw45{FQ"1F-6{K[o;{^~ajIy1 OVp`'o|=ѣә,0Lg 6' e@Z6/ɉ= N@<5>rJddfTN EOV*' .z (rR6;YGIa['O$)2rb8]PLa1%'eoLwUTР)uSlrtuubl y,WÁ#LC-d%@ƈ듥=21x|?RYW新)%h@^@-%qR> w`7TTn'㐂;W}ڭgܶPڒg& r^ rA[>n+\hwcv|o 8~NL&zÄeB!fN 2 ԟh*s|=]X=/9 Prk xgt=;N996Mu_2Gq7(bZ ζaStg)h~qkFp^$891ӭez.-{7|~jƧD●}X-޽evZo=a=OB8 G?]SB\e ( u3uca R i.CU/n?yܴo_տZ[Mx~R %5 +>moq}5߾寷?ؓ3O<9`={|7*ޝ1wgS̈́tg}y ʚb&;lX7zO)H{.f yhQKA#h˛':z4;7N"iwVL(;Ԡhc3ILXרm9`-,mr?6='kV~qg^ksrr{rQopcbi`ٕ3̀*;` ySL{~0R3{Em(}0¯b9Cߠ9j8BPHxR$e[sݻw˷nl}P+8 t0P9B 5l6^_ 4@ Aev|o".x!7Ρ=nW@ K0P9B @ b@ #"@ F;N8VqAriD{j*{v 2l0W}q'h˵`߃`?vɞ%[:yᄌj_@:/R~Xk-ּ/˟9%n.ڽ~33xvjB@̵'3_g]3_|-}֣^: g٫?o쑕s?8yqdz!b3XL$Z-$b#6EkcK R!x~~~YsߞVUK,(IPP'mUGhE$F'yB 7"" eII9:~;$lmS PqB%c$ncsKeF>Lu7#|`f~6V1(~ c޺OPnyh+ ijnU@,QO{[{UamM׽s[VQ E?mޏQz*1>GKWyHE]/E,Cn_>i5O&j8QDB1@0A-!Zh3Z,`Y;}lE/*R=:#LdΎa/x?0TIpm5Y>ޡ=!Rw|xxSwwX]ƞ5БΚGkfF_qAUlV+G(dP& mh|Jf͢oōeS|֧*,Kv)Q S_vSx|J+ ᆛS Ћ@ CIZ|.'RfCaAaJ1Gr>Π cKdb#2I8W'vS'JLdvEJZƵXv:1Y/벆b19X !R(lIRƷق>q P,^OjEz'/XZ UQ |D~T]A' 9%223XMW*'˄"'+]Tl\'|0=RŖ&CT$Ke ~:Ae54N)FK ,ngȈF QqR6tWEEmuSlrtuubl ngewSlNW7ſ?*9߼{7}//A٣P;?W_9m/s{Z:+Ysya7V`|WC/QJˁ ,_ە0?\^~"Хn7/ߋME_}&M'[bwL~e{Kz ޷;5Ÿ_םaD/7mUj_"7iu(&^K{۝.ȴ~|M$ d/WSAcjУs%Q.}u  z 4@M%׵;4@ }[w+@ "@ (E @=z4^^)V<49yȠI4dPE nlH;o,% Oxߒ$&$qm=/`غg~O&]׉>G\HfC?bo-<U_x{?SN} ԧOp_ZD߀!@64>rn@\rR˹Dt㇄gD/уY,_p-.¢%d`t+ 5\()d`DO#PDvG&/ܝU豁Gf0h <7aםQ&tW_ m'#?9p:a/.;>1[|Ň?K5l\qc(zS8ˋM]ݕK:}ZW_Vhe2[m8A& $aa[?ְD??`c;gS!mQ4DۯU|yݎ~gVc<NPBFeK4•îWa{^v_{Ҿ~6J9㴴d~{}vvȁ}.uw;w҉N* '4YMCYWg뭖#;~I#?5~ٖo?4dͻxfqSW}㑣l#tiă]G՚CdsZڑe~уk'(hCGy*([3~3RƼm_5.Dm(#_^s?|яxQ`_ZS%iIi2t[BɪeI)Iy \J^64>XOJNJQ1tՃ!|v@Vj[k1,|@bRJj1Ju/Swz^PR^"E1Jbl5IbBٵ DPl?Wr-,ѧΧ=}.E,~yiKvnM)l%r/.sibg}uʈp@FO>yO co:BsRSSSS/MH;q;çV 3 Yظfm_X$6xtɈ/t?(^!(z+~5.T_W*4BFJSѳ<@3\8I?psV@r2)=q̹Mxv~[iGRSǽwԖ-)BGy; =)8Pwʆ˯]x?ț3=IkC$| 6\:_hh4MOOϩz9l?C{&E|z &'===== EX\p .eu. OĪrΜm55z&e)5dUYC!$IblXcqgCQznP0SWmy񰰙j@ė<쨨ח%`3ZmDO`r-eź>M ?4~%OoSdKzqZ>jdZw5K l',VwuRb JNO#TR+]5o/Ě!SX]pbĽ΂KZkjE#KjO1dr<8AmrZơX5b`9%}pcľ褄3-i 2@}+Ri&/zy|b6f@;YYT_'STԒw"t) g,{ @mEDm1_u:f|M!͔7V.zGdxQ1\|pY`l\Y}~Ad"60pm\qT&&m .ƒ.!z$2d@0+!y:&ylF IZmLNv^˿Y5ô4ܼ;i7[D}c}J!1sfu }oLr}@Ưa][fC[O_~7>=öjvٱTNto}I|׫>*0\pm!gNaK}?ow.`󋽻g粭^Rb+`_ۿsƏ~[S|?~RooADhtvQҜM?ٲ}˶d@mM׭wr2u: }RC\tt†r1@Wew;iu(GcOJCW<LRdztqkb^c5 SX@ De@ b@ }βX:<@ tCw\o %DjMf/ZGf=ް 5}n2^?w?F^~qu%*@ IgYv%l=@8x=^ j 7A@ W٫nzPrr?-Hx'bjO / (ŮOlOńg8MFEL5' \T\CiPYIXuZ1N^"Hop˯]x?ț3ӞOYR4vޒ؜wfLxe'#4JPeZjO IMMMM$Z`jj7 -xSwu}1/gOxha/Hi\qNN =q̹Mxv~[0穫8I?psV@rVu(NӇx" :b=vhqq C45Vl7ru$ c\a4,tk~B-KI26XN X?IPo+i /?yK>+ҝNYR?sfeݚ? 7u\q:)Yv%6\."o:2,{.:đ Fsh91%˅8U~i:a7:Υ[$rtȭd P kV,KAq0?`\ 5<^4;CnzK_onX̠I"uTN,b1 }ğ=(ڂ^ҋceK2;<)}V=? `1Y@c6BCE!R08a)/T"W .GWr܅ K[N㖜xv˲ElP3jP=@EQ2QDLתqP)KVF,.߾bLQ5PR& g,{ t*UK\$x霧&2ۤכ=^a7IO͔7V.zv2@ܖ`\+VMOOoW $ حN3&~sqݗc~S2꟯=?2JʰWjo7Ϧ)ʶ[>* Q ?{Oe-+ky4`E> a[3>|nJھo&)v[P7Wϭ|feʌ]u Z(~2BFsH=?|bFq8ns3' 3̅~}.J!u)IUzTܳxӫ=?iV.@t[ꆂ\vrdj?B_Z퐄yffnryL4UBN o>E }[;\v6!S*< |Y ¾ Ss:"q{X,`$t{[7s@ g@Y,@ X@ D,)$ MNIJ qsQ ' zV߇?LwbLaQ ;q4MNI20ʟi"wjI4âSn7I>zx_/طq 쬄f=㻤,xʆ} 0`wǎ;gڗ34=RCL[ŏG~;]gu?ͪQ5B: /8~Hg&qذaôw: *2ۘg#ʨAM*7ij;&|IdDZRVEFY67.&^cK5[sYo7yn_Mc⨌E{)c:scz_lߞ->CtsR:W֚mCdj7oKٹ@64yFGnc¦B:Y0!M&7ƕEȅlp[+J[6زm((E*,Ӥ+)5&2m0e"<[r'Оռ~RnA_Vh )m%"KEVT``Xt^ݺ?BD+ATWU  _x~xz g5yLrz;9sU<&S m/ U˨q*c[OiSݧ4_o-Ab<5{֮ܒadGMb)o蘷~#-yJs\ι?VJd|oՎ&}PӦ@&a2^'fͧ nSd쬢h\P} V̝4=G6?o߶ݺEe;_VZp)oR;Ts!iO᳟?Os SG: T֩z7kDP~e'rJ}U.65U2LmZ /M_vgh ] ɏ^[KSw(QIS#(Q ~CUA~hB,VQfX*\% %yN00*"H M"Ej@6lYje,g+SGz2T(lh cez(lh+'$#;[˝*c&GH[Kxy el\Kk egRnFX E]IwL&KxZKbuՄD",B`):s& [&ps,faRyZ{xBr-MhgQo{ dmIk* `r; 7$Fo"V`ƿL~{\`xCqv\tLpKQ^pc8Wy.T쵯N.z[NȸGÎԌNep1O7 oJ ]}TJi_^?{崿?%D o?gysF(2-5u'o礦>U%0sɰ{h6EڃT]P /NxposPs;uYjjjjj6k5wwO`ĩtk><={*k=5ut;8OIkDj'NYqB6h%9̘NF,|i.J 6v {K3RZo*N%*?]c0R #0  dX=Wl)Q5g3*lIFӻ|z &'====9Nt:`,qP̠X˾TkˬxJ%Vsln#/,XRy./=====̥z [Sښ HJ+/f8q#>NHTش)ͥs^dg]:[˩N}yr$_2[<@M,,t-IzxySR@V5\Ü/4 C/%%%eذ!lfPҥ՗.TsTTUg$L&k("HgV]ݑ<Ẅ́&S& &~.QXcЏ۷`w۴wom7n=^ZWuLW@ B'\0:5ǏDGJ˪eaRJQ^VEc(4&Zm)+ֵ DGןwKa՝,W(>VK>Q=K9 Y';ٽMyYd:E`Y,VOԝzn1%˅8U~ilٵ@]R?sfeݚ?ަ|u%CBhN%J?)]c0XD J8FcM&5 ,f%g0&f).wwzz7`.cu*v`(X}vʮ=൙,$uZ`E20,"`JNX%9쒨AQ2_RqVIR*1Cǽ^`r,0$[<6p$I$G;XqXNfۺp_$TnHO) C?C(GJ!c8S/Ix+HaL2f\FK}tF褞ĭ;ݓ;>Tx|ͭ/xZ<b1ۄA,]ihD&_yQ2GOtӲ˧b1&>&Qæ:;i٫"Y4DOu}/mݷ<+~wդ4Dҍ2t]]K?g]5o/Ě!SX}Ou5\$B[d(jQfxŹ' 7ԺqzǛ`Ǵ~r)ʌ{֝uyla; aޖ4. l%U^,ED^4ܱR%47^#9a T ^SlU3]p>^E pW& 0 c0D2p vO!bB) IDAT=8FA;tb)88Obd!Avpy+n׺=\z gK^}~zs &۴hlgUbsFaʇ-pU= aAも8DBi_|@߅}gj-YBͨ1Cr4E+UK\$xL1,V6bYJ?. L#[&.T+!N:W_S+1_U &+oB/Q4Dҍ2t]WGFX:1E/O 1&B'%+U# sXo_1uQ~gq|= D'KQf+ߒ{ 6%(Dy,$\.!~:-n),6ˢ( u:a)̾XU/P@{:]f8`,LZ]t:("4ׄ:2"W_Tn2W D 6:Kb"Ŷ JNa_g%8jJQl 즪* +jea&]q^XKa7VsCBi.yEH V'zvnq,%HoJ.6R 9k 98ۢ/.oX帱 ].,ʐǽ8 'cl*wzYO04bBşн1\fzjx{E di,. Y9P,4ܼH7>>)h:n~a>ժ־d?#ώ)lkƇ-ܧ;ޑ=41կw6 y|i[>g%|lg锆(]duuR ݳ~#j̗!D0?5Mgzk[3`m,k_ߚ\vR7;l-2cײwhN%J?\¨D)cinIf˯}GblS*m2mbjMl(meEOPY&ye?w4t+ 6SM딙S:ph0 \u~źF z°!|kCZg$r?&RZ( v2n]G{yOކ/nv2 %~us;@XzBܴ[o09!Rv= W/@ w yZWZp)lw@Y,@ @>To@tҳYfSf_7}@ "mpyӾ]}b@ }"@ =U!))IT-\y!8p1 C > :hȗ))_$ƽ(zTB7j]V$i7g^)Oxߒ$~~wرc}9Cӹ𦢙uv>-s@;8MZW*ca2%a|F/lܚz/gXa4ء;.G-_ig86{o>meK*g6lO9o PB}o 1ce9U2LmZ /t+K_/Sg-WS?׈7u٢ɡܦ}nD9JڑDm&bm3C>Nв,Oikӿ.K4%)L<靵f{hbY~hꦴK-MSw*(D)y۳Sd=N]Mxv5y>0̔@k+^y lH)_l)pۇ>:)C$TWY^mpx# UY^IWRk"0 QP_H\PWX|f"Eyj +>g%R41%""h/2E(ʂYuEz~Zd*̮i!FUpXTcqZChVvpwa5Ov +7b'iٍ>d/ _QHhׅKz'MȌKEV~] dH3xhr򐁑Jl5IbBٵ DPl?WE"^"|q`.v^!@,W u7i!! W/*|Oń8TT zK 0}i?62jEPtnq`*Љpc8Wi@i-|9Sx_"p*>Zr6v {K3RpR4iQ0OyK%)[Av߾|ML:D%JOtGjR6GW;Xҙ)tyJ̩gJg]ihD&_yQ2GO>a\M an.+aG;XqX&t\p_͠j4bUn\pmUϪvΖE;_epoA;ς|ajHz$k\z"Uyu!+]#I{In)0(Tp8D%4<qG8DSco+m`s' Kd!/ 2J.|j`8uw9Tb, I-܄x]y^-N8}"'4y+1L77Q'SM^;oq]6:COA\.bF`\}FX3d'd oV%k]w|=(KRyi[S.ώML(N%j KK;^?%%6ANS,+LJ>5<[]A>M7sC\CG~~ x8p'jMsuUV&y/,협4\.YYT1f>|16= "rZ?;L^Pm͞%*'bVMt$V?bTDY2ȔSNךt25ML'KQݍSNKsxxHaZzg#:kÒl.a#FmCӚ)o\/+Lտ18,BqB.vY,"<N -rq/Hi 5 \qHsEn~1T߬s$|zbTB3*di~Rbpl0T&X.p:\+Bp2Q^.p)Y[TʋIaNaGc_r4\Q|X!'NҲ=OS8&Ou|ojH` V jb %Օ[/U5BCy].# `< <`{]%Ui/`_Ws.C#s~gR'WJi[7Ϟ8h+hXnQҜM?wTfZN ;ޑ=41կw6 ɡxpZ#;ħZܻ =]Iuk,^me-Z.S+2HgӔKi϶|N)C0C^sK"g ݟີ_[RW:} k?#ώ)lkƇ-WCY:e)KRyiZA)r[v͆ڡ+LM7ݷV&~zz[UtR'YZ :C(@V6k,ͭ4lH,P^$HHbHgp[Zcan[cY TH8E5vXcst3Z3C@z\&}Q٭yGMQ)7mX@zMGKv^)|>`xǾ/u0g7_yF)>{߮ G>ekfl@uY7QyxT\IuU0$v@T@2ߔwH.IfWd;^*;v5!r!#kww@Y,&a6_Yw}xVtl5C~M/xK2ujؑ so K cg0EWݮ),`߫W;ȝ/6;8XVc#j*IeB06ab[fBt5Gae90:66D^v"XMbPm&永p!ԲH @`yu]zP ̕unM,UCNWQ~8?bqsx㶞*Ξ_JfE:Q)KD/Ī|%Hw nȎWO|ugfU\#gZSgO= -hXC3w] ɏ^[#C}}p{:eo21NO$IzyB@µV3M}}9oɜcDMVȦЦmǣSdz|fӌ9y_VZp)oR dYrKp,~b SoVw @*P֝Jgf|6<'aJa|Nfʼ wV4a~lTqFE(^Y0HULap{Y<Mxm5˪mX]Y-)9,v45. 96ʳOOh^,B{$?UVv!*Ţ_ߠ媡?-4dzdK g>:m4!3Y@8f+pSq  y?KB=3e%eb~=taĩtk><={*k=56v {K3Rh ?(vTx%rV<6Y,=䶒ꯟ}@8.jid}055uWJ>n[ܧlG{sNN =q̹Mxv~[0$6xtɈ/;y 7g$ i]T:LKMI9(EQ8wgNgU.雟Oy ]ٳk,.3 B"=ȤSw2PfXQowx&FDIپB}030]Duk2M235ݴlU3i^eVVh@QA00\~}/?0(x89yyyzH$@(kf@Vtʑ%wIGd9]ޫm-l Ί'ff{Z IDATVIgsTdG&Mp:m' CBBYQAAYHLHhy~9/MJv5w[vYHgYA[.늜,2@v{W&QC$w+mh Uy:[_~*@jPVN`{iOS9n=M] ('K\x7flYI;bp*KkC/ty{-Θ% |DM|Io |O=.e`)p1S}X ( TeMu#`miq=Ny>K sIxKPTO,7k}."O2y藞S?X%eGޕ,-mIaa7hR>d>QuZ^rRAxTj&,"Ǫ+6TZ.%D]i~'~^VÉ DzVjwYwplNJ v5zXqE_L#[0ۼ= ;VxoAs{[-"ߍak֎Az7~[4v@ӬɞQwRk=j˻ܜi?L ۖ,++|H;|7J?Y|`ݚK|BJ4-pВ[sl[OW6H녋س/}1R2}->I{lϛv]>tQo)[jM2{i e8 u!C@.bY& E1>:eX^c لsj"1e5kzMǻ4fgg_~S-W ZSL:3^Ξ!@7Ɩ<0tSzԄdM=`/|55^|xo<=wo޻q.l" H$s =13OAK ?EXF.`o@/e````M`}`]>'/֟MC:~0A C}L7f````````9=swCb]]Q ƾthK7s- &Lr\FyF]#zbaa8Js=]>sT3E=\v;:ctTT9}wny>(@K1::j(ⶄSIPFbm469!RX~[b KJ P%&*%zs:̦=68l}siʱVBso$CO<p;ԩuFlHȨ p7[h[}nh|4B'"T'%Eʛ.p2:RrށU)13u4w\9{K ێbIbSlv!KE` bz#mn .vؠtaS9+᭕ʛ\EؤT_+ &.טo{׮jҵإI2bސovͺDf@%j5I *Y[=aC(Y!bqa|NU~hY5gR8|Oj]gE cz&GWo q8LF];JW…`ս{" JYKQ! 0ĕ$=;_žquQ3V=+IJpw;ΐ?>|}yn #$[ؘ7)@~e$H/rGgC=[PokYv&{Ֆ Hãxc{?ټhۇHIQȲg9P_?: ]9Si6#I̷LJx6]Ku6T5jksM[UZ_=Ga>oطCN:}jUʒ`.e{jHZi#0`[]7CAbPbR]|ec&+abuBR0w{]aA3,SGspSM;pjIY Rʋ}+\=S2 *@`z$R>X0Igo-cv[%s5ixXxSgkIՀ `E\-񘅺`tpME$+nx[k-V cSxpY_ڇaI7˹ҧFr?Ԝą' $Ñ=XTE$Fd>--0oJnHCcq% F%1 l0jOORB׬?0{FF@1ضgdz5=3rî999999\t%?>n¬MoLE99;E͜ﲇə52y;NJ3r}j8)򻹓?裢)""Sk2 4Fظfn_X2@(9~4qcZ6} H9l1>sq_4?G}N6>}j>hגJV͘poB!<>ݯ806 > nW(2c8uϟAIC$,iE|no>qkӅHDh.; "$IH@ @AJO@KO@p:M'Z@J^pe$8EI @" 9 x,kKm_ ARU "=JyLh^aP,B!)w,VU(s͹RمDө6#Xz޻7hH !\F]q\8 ORzɁ /:q6as{fm >65C9u]\j(p⇄sՠ03NT蘨 cR a1VaO%pHweK]P5:kKTOI~?"yvօ,T ZV[i5n\d?*0Ȗe;* 6oykΩ?DP-8k v/?±~^5.h(a;][б[mlp{/FY7}5">M9S2EfUɞQwRk=j˻Kݓh.9?~@u-}Yˁu~gIY/WV||rCyuk-Y5WUtun3 ;m =GWv}Q{$0خj"1e5kp")[E uCfy`RˬXVg1lJcR3(ᶶh*6D$8v/ rCx-X|w2;;g]v[1J2ޭ}Dxp\ 7@}NLk vӛ%^?qݙ!#lT4_h$P:%tv-W ZSL:3+},20mPi)q( (m+.lz6LRUWѧτYX`cw /p#`aq8<$ a뿎p' ~2> ήitIM{߼]<8mz{pvPKˢuL3Qfj $}W&gDmmpvT% h'ӟw=?;_?S6}Lio魴I?OlҪS=?0-g{Zh` H5 .\CIP]QP1ruF&Š1y@1XipH*OLԜ>[I ݘg$44˒ĦXUJiǙ؇$X2V{`61AE s - /YˮO3hגJV͘poBgLܰkNNNNN{bƎ͞мż<#evΝ8if>rwW8dDPsj&nhTLEulW*Y7#MQui(R[a;;[jfL$Vr"|ppJ \f{}HJD4{-h͘]׭XVR4涫tai/</2_ JbjdOaogkZ76;Hp[~ml(WQcƦ ]<4,iSzڪh)ݲDca-^rni&Y Cx;r& fc="R`4]̊_;mݦ%' "8|F_K`8&t5rQJ;,?}: r EHٴalIVVG|~F&$>kt9G~9MH"(;H.!fͱ]+t7h}+.hܲB: Jܪp/9A[?/ H>Ktĵ%2tVE@P$%9!pCw:Ǜ!'- "5 l8l pQ6^";;5E00u44p$뵐,FId$] ,eRv8B@Q(#,"QaYÆ=־LFD!FS1Boz%B jQ2T՘n5h `A/ ,PjiCiYO:-e֗8޻{äSǎwj'\l,|qxN]o_ژl6mU2Q^"1~+/Zig%8l 8齫߽è}D(^[W hs.ߋt(/ǞےЩJuK\["JWx7/Xm =Y)'-ޑT;8K:-&/b M"Y[yiu | KʚIDh.; "mdNCR .nf4Tbzㅿ~|[1Bo[B0V*cDaxƪ֚CQ8Yך5F.C.1_?wiAaSJoNJ_ ?HAQ$IQ{6`8x7flqژ86Kkp=a~͇yGd%S].b8I]^g=GgL[Β soKwzOnSԿm F'm|rry=$=!p9髣k|O=ɺޚ`PIP[\U|B\@[eTie 2b0fOTͭn7p8,˅.`B`=m@dzZ N[L` dr!an6yW8 z#$b[m$nԞ+Y @(ț SRR"A"i@|P"?] $bDžgO"xms~+% %R*GK(P(T xCQ!!Bd"="0͇3A(za% "=; S|hcVhB3Te \1~&}CPCҐ(!AJʖ+YZܥ@ʚpFy1j+4$K8<Ȼ҈&"2(Ǐ~;DO^`|z 36y3a‘+yc/%zhK䓀'8$bXh'!p9骣DOů]p/zfbb>p(9AXPxsk@.fX<*ii*Q( a_\QL~؀ĸ9YлXD$8HM=9[)=Mjp QQѣ@Wgb {*1C+[~ Q'ksVD>A:Yt\!]K`]`}*OG(_ c ŭMg"23+s=$H=Mþu;^h1n(K>-,ֽ?%e9t'\YLQYmic[3hҭ sۭv*LoX_͆|`ݚK|BJ4 6oykΩ? g_^be.}ƻss?hLtr"S=ΖbNxmD+m|rMFZ{ngO<o;K6Z9imut \If/a<" QG'EوR1qCf"\fŲ:*x@b CHTWwѬ-Ǧfp(QwWjqXXiƥ3m1<g6'Yx>k;2{Ξ|4SCƻ/;sDxĐ]S6{{6}- zUk?'e~ 4#GB%bғ!Uu~r潰SkO)*1pYcԻݬ8xe߈BBHCRP39.cxO <޷6[;awm 2kBBpC华j(B.]74= \fm~پԨ&}cH8h' c$@Y,>ۯMEQ$(G푏䧣8,ic8>QA<Y[at)wƼ#MSgSmbp. Y9oӖdBac|)|铛>}"D;|okIϊ&*uCCgLWqhY+Ӿ\PA\ |O=:0B2ѷAHʗ1QHZOۦ~; w-M6 >$  vw)K sIpCc9 :OO}i0+ n5bа'C\C- X,07vk͇3A(za% "=; S|:)icVhB3Te \1'4RDe~NVX%eGޕ,-mRsex8<׳mrfߓ,#J#**@_SL?g=yQ2c2@;{̨} WNV“ Gk獕uXK+4BFdKʐ;U_ gMYH{N5|TLs׬'G م,{Xz1~RE|-c#pr iTA]W!-&X&P+ ̖U<\0 b6œBW6 1.>9Ffhz(XpPergS0X[gvhc_۶U9CEHþu;^h1n(K>-,ֽ?%e9t'\YLQYPy_4XfВ[sl[OW[y_>Y?~5c+Xz_beٲm`盫|4P'~fzúۘS8k(~7J?2zuk/] )Pòw (0ۼ= ;VxZ/\Ğ}y틑rb9f乃ve:9)}ig_1'w[ZBIVA`M6(LV] ୸kWw-;U'ΖۏL|ڿW5 gFZ^Zxb=T!*/7bM!,i_zis ݜH.bYI4nx:0[DㅓcCQ.\t< wCB4ki]0M=g6g[Cjqlp[[4=&#<ޥcǎu+R) & Z`o@/egO1sO־XЃ.ܻq}ј;sO~F~U +d`:62L)B#)ɘ@Ÿ@*Kߊ0X2&vAj.kdLX:$<Ƅe`!`rEz}{Iks6,######-IzbfXW8]^n-_,MPzl ATwۡl? XWQ`Xc2ܾ Tܮ`Xۗ`Yܘc-I[ooy.v~Msیn&ju(:bʦqʩqG ,bv:g|{~e ~:|ǼZO%bϰDቩòg큼 !${jp$xFC 1$!Lx:";+>@=<^Ĭ*.B7Dڊ㓠a#Ɍ% uu7[c}uT.6<2j.j$w W7:N;_2 -1ܺ즢| P-WKMޘ44OŒĦbm469!RX~$[b/?%hA1 ?2>N%Am@.tˇ+ᶄz7=:jj%_I &_Y$3^0!>X(tM,iohTڜ{V~UqT5jk/;HMnp*<2c[LAʴ7OųTG.#^߾]ԊNb^}F 7_=j|}gX6s8t TKʩ> )Ϸw< IDATe- >[ؘ7$}&|}U-hc&oؙ C U[.\S,{ۯLL {:ZWsLJ/ϭ!Rw>G58#Zc2y;NJ3r}j4Fظfn_X>bƎ͞мż<# U띡?{ةJ\vرcNJ]`;vDy Ԝ?uԝ-3x-HRɪ?}E\(R!IY0T Ct$`\TPDbv97?~Iw3dgϘBy'pu~V՟( iXJ;,?}*Q7Vwvj`"Qahii3YI.k2Z& !HA{Z*VR4s{(Rpb1EQ$lEtUW|ժ Ȓ(he%[m3EEEg/hͼОX{Hr^喂qi. V[C{kO f;Fv)w^aK>z"-yom@+L=,f`*3`-5jkdNtNsM\|.( 1t~+/ iқNgD "R~'";DDݬw[ .E.N]qS.QEGkuP$!N5`IR82o(+u\،&~SWACo7wڌw٦YL뗫1ƈa`qe5, q#{`Ĵ>Ӭfь5$#6?/{Vlqtƴ,P8&ǡe[fxOn30h-fZZ'  ,??t^mq$E7T0 1t!渹?VR6yw)]O |O=IfmG#i->U.JĄI߾5 wapn_*pGd"՞-M6 ',L.$&' /EO}i0+ nKX,rJvI`VhBIpxʑwMlaX,c~6 "=; S|3kT3%ݝtgIHK$&2S(* ""(( <@\\`瀠( 0 ;Kg},,7thNNsuVMT*ch J,zʲW& RrFD\y澴c)_-QIO` Ho3yFʊKJ1cʞQEE(Xἠ1 w|0x^ %"!46UDDj8O5TGq1I=uxq=G9q ð2 ?@ʳX35a2#Ta6kr+M8Bmǃ&TsQȀĸUG92Z1'ը&7Q+ױG20@)8kM'n4xŚO)Ƃ^{;?? Mw~ך7v]d-ڿmvgx)|tx۹ ]wYW{jӴ_Ԥp_eσ>eC[Q)wN~wW/{tl{'{׊Oo8c505T^ƓMϣDWVA`m6 DY]j<O}_N[my~ύ3/PUw_o@4a;B۾[%vԞۻrC>kwRQi+A3~NQ0tCeo)LNr eJv&[*CGiAWZaΆݞ7".=Iz`Ȧ3Z#Pظii{s/=7.w=S?>zɼE‡ 63!A K2"=#}İH9@="3=^Čs peLO1$!D-*}@^= ހֿ C\u{';{1g## ~~ޏv+Bs-p)!VD$5η81qHBB2#SH`dr7dW$K ʬ"69!ܜW=P+I,wDYOc^]IdC8gyڳ^( fv7[:C.|}$pwYxܜ=;D|=/&XJ*3zuRj,8gXXlfz\sOvc;F9eޤ׹_<.œ?6xĨ$ hmv {0:Ob#F;#Wcֽ{>:=2z,7WגXx8wG;\oUC'gr:v/&vm<2y`6q֋]g}2C}N+Hшy\.N8].DŻA%etpJHU5;02&>Z%NscEy Bqİ"U"mI)qDPS|sNE IXr\yW2ɌL5\$@92Q)fOy=(@ܕPkkkλhG\n?-O<~xճ=>/mg>6gvVva+E+o\\= }ndƵ;ʚ2YYYYY I%9*\ǟi v'-zf ӗlIOajpI7hG|0#FL%d糲ƿ{ieVVVVV}h'#/|=pìL_[ܒx_4E?/'73V8M\rߊ=Jup S罖vz_Y\G7D߲%gHB32O]ʚ5? 8*]s!:Cwѫ\&_=+‚ J/ͽXR'DȀEhsj([!X$ 0B. +"a4YWWOW\.E>Ё@=xSs@1G\,׿% /S$$Yp9H6!ߎ_Rc$EMbꋱ786iܰQ$4UV{E0a4M&`@+_u.&)N𠰮w()]Wƃoz7( 0l 7(_L:,q—D,S ի* w!AlhTs.kF!ꯗY&Kj/nnj'-roZ[ O=bƊ'#zI'7u@fii"~£]샆鬪LN );v$)ڂj6tc]=߭9ɺH:;O5OHJU xz]o>.w|MlOOi:ԮQ@ pkRZ\FV-A ܨ7A*p9T:7#V$>MD\sH./^oE+ w%lxy@ TkhRgco-gޟ, 5M%˛x\~`Ppp:(d\)M) C ("Kr\D@5dBƦ/XXeL亍znj#fwssXy1 S xY ui$*U?R^v꦳*hT3rs_ڱה/at}m]hD2޹Ol.;ۙ1Fe$ a<>0̇sMPI8W(ebNn"㋄>fRzezńx8G3Dj.7՛]WMQȀĸUu&քxPb!Eܕ0>2#2%MwG7 ^fS ߫מliӝߵ]qos;@77vcםb}y|er*znK60Xȧ.âּ}msu7;^TqLe'?z;ﶛ`c{77=o5 W|j6nwz{iGJcn2 =']YeڀeuuޅY]+? =^iگ}j,Ζuf:wڣyP0wApCevGN˙YB_Y!OH XZfb-USC0Tu.T"lWFR7 5C9Men~chؗtsm8iutɖ2q||aЕ)(& )h0܉[}d^;l;d[O.6@ \}C icnQ "R*z@H+uydd ԙ>[T\,qw.'=4M4 uEnv[@ @(KKsXtȈU4aѕ߹&$Pv[tX7B"As +0ϥ @߂b@ tuloڣ@ ,@ ,@ ,tĉ'NnpxYFZvfEȞEC #=N\zr?؁gFe ]|"|{fCpKC iQF.ݶx.TJMH1$!DҞZ!#32҆.FLW`*1#sp_ÕE 62>D X/{.>i/j}ֿ C\uv7~dc/<ٱ[wAa:{Čݖh~sQ^D$%EOo-<_oD)1F7#SH`drן1 ҂2+MN7UlyIoclUF!㥾Q[#ǏbӜv<8p_:CK؄:CǾ??ĐZWf߽G:~dϧˮgOٓ{ԏ; 0ψ8e:˱;cvFܷdWt_,kj2zka'i۳6orAn*l=c.v`0,,7v9u:dԺf'w[}lսM)Ɓo~^,cu v78Ū]c`% fаM>eiCy#1*cDjD5]g9t9~z̉fZ{.~_xE1T qH.oŞOf%:8XWUI݄y?[،d:Y=ᇸM||b^q!nwܳͅg}P"S)7r0:<}INmAՖA \.aFa&W{On6!a0Pr_$9&p|pxrl?~t4 !AF΂Α$G t6v"U$%MRyg.QW 1RI16g?DП>2^צ5*ޛ/1Ss0%x:t=ZeE29|~\!JzeU]HHPde$EppPuUnR漖-ȑ5d#wF9_##Ulc`J]JДh l0R$Eڌ7Bb IDATI7s.u嗛%1j^4ɩ1ƪFGBUr`>q1D&qhqހ"JhM( v$q'\,Ƽw; &d6y B+NnL =xFo0%۟ &j~޵UnQZ~/Ls)1rC7vv$IN;zSeU萖~ H Q:*s{h[mlWvq!nNM7lxI:M.9}-@ >L*&G38A74VQ`5EI7κ?BQadKn0FQlSɞ"Fxȗ4s?m<4x_ A߻ E{t5s\BV_/F5LcJ9e7)RLxWԓ,؊_xx3V]>1oWWŁ j d4wx:Fpnckȳz֫*-Hʎ ~vtu~lֹ랿5'Yxyx5\.MgL $?ɖ{LV @֑gb^|Mlq?:dL4-joB ,V%|>>ru+UbtP7( ЊaR0B!a -gޟ, 5M%˛x\~`PpkBfjʵᙑAܔ6ErՐ i*"Bǡ^vORKUA574 3LPrXg ã\Q7TG1 S xYͤEMv;Zo f++.)ƌ+7Ҏ,~y4T#>S7Q\RyDO}kݲ7{egot:@ ' Zx|>apAV&Dq9Fߨdo@sgkNxZ/]<8M% wr7͛X)XkuGvT~gZƮ¸EMm_2;{.}2c棛Up3_/g?遱5oƥ>a;/dw[NO>dWq/n߿ʷ L3VTʝ{/F8]kyXͳV-hR47.>_6_eσ xz~/MV knӕU;X[fo QVWߜ΂mdZ gvGy(*ޕ`KFzZ0hxQ[ߪ ï!TeF:/_ǸC_g2,M@tt%u3gcy(.15K;-2m3W'e^y碥$$v`~l,]i]׳ xAߨdo+!333srr||9 ;}ckbgl݅6_D:\>ʄ41E)sf(QRGFJԏVir]b w?`ni͗w+rR1ۨ:2<}2p$jR#& }y˭"As +0ϥ @NSh.@ IWn]|(C@ e@ e@ eĝd'N8qdvv2zuЂ5+F/=}= S?>zaϸYŃ\C>v7gg}P*L؛c|.>Sq# K:2##}DJS( IIOK7vpIpitV\Ya#G IpXKJGd+0\98ΓJ#gdިC@z۲O ۋұ[`^[aK}aHïllǝj@xdǞz|o=&LHᑼ'XYhlֺ(0fxh~kz;& MLQ6qeLB̊+byVƒB 3&p`<"Džqƀ"FC}#+]A;ãCE ԍx}x@!ov3\h8ջ,`o\2c岙QBsEO?}%yÓ~:o@a!.nYeYjoܯ%^]KRs?o[uLAatQؐrֽI?s?x\9ūld Sov7)nΞs>ʞ?àv]}/xodY;Ni0\qOAm}ƚ5,7~m{뀖duw/#ңU 1#SBx`kxW\p0[]^^32]E cMIiP;*)e8\/0X?x\^o%(k,eJ1"Zt͑JqTXr\y_кm*]M\1 mA6@xOɤH dX.Lw^ }pk?qW=@Ҷ}c~fgn oYtfioJfm=xҢgoL0})X!Ȑ:y;~&>TaG-nHZ>ʊuO>׿i$Ɔ9*\ǟi v/!Dz{=+kgVfeeee05Mwg>s3dVʚE-4UVCBp}+|2+J&L{-aKa{u7yyVF4ro͞\¿feŸ/䜭0-%99999N0W6`dApTB3uvb}(Fé{E>B jT%KM~qSOX'7WOW\.g) @|\0";Hk``.kX^#_1ĝTH @Ӧ;p"_48 ~9/HHPQ8s)ɑlB6Ϳl/rII 8T*)f[VSSxQaN^|mK̔\+4L kvi͡ cnJ[4IL Qyg.QWM<<@by<Ko2y1#*;e.ʿ쀞f^FRr=ͯ6*0K:IWJ$/nnj'-roRn"Ȍ0&^ VN*-Hʎ ~vtkV/j{[suAݡ`rn},3@l e-G3x`h:aI\sH.$f!pJ4K@z i qj256(,d8P/-gޟ, 5M%˛x\~`PpkBfjʵᙑAܔ ã\Q7UɌS_>Sk˵c$Qٳ![ucʘ{>=Z®$8\P"A2!McSEDH\zdFzwȋz I C ("h f++.)ƌ+7aҎ,~y49ϻu0Dj8O5TGqq Ku/DO}kݲ7{egoWc1 n++\.vOLMmmbMAXk$ЦK fWB$'Ǩ:L5h݊TH烳/K͛X)XkuGvT~gZƮ¸EMUPɌ_Ԛn~;W|u ;^TqLe'?zŧN)R~mWl͛-_g[֣y֯izkIu2БO]Ey6.} ށOcH_e|͟{~bMf=#%&tطTܖl+ v^V9޵bA0~=zP6wĎs{Wng5`TkTڊkL,@Q0tCeGNuրNTw$l,]i:]%9E\z}ׁj h [::-P~"&3sʝF0p5_~}ckbgl݅6_<ԋo˘ 2;|7o(2!Mc-j"pQDJ2\%~weTD 9䑑Rg"Do̼4Kȣ]퇺(w?`ni͗w+r}Ҽ_n|X"{APԑфEW~]J8@mbeS4`ΞE -P|4tSȾ[\,@ Ar>_@{ @ "@ "@ $8c֚m{߉‡&*n~ 42iPA@X\L\!f}ey $8>.\!nAWmt^q7P1ni@; R%447V{:SNJz^?{bȭɏ7mQ8MQ`GE> OG -?[W>ތ_LW}:^ur" 2·2TR{NkbFƺ uw4#>u$)F1-7Ѐ5/2o8 <_>f>b.E14>HЪjBru tͥ-NL/m%yh~kz;& MLQ62oΨSo.+r`HUsk"UΚ [ Ml0v;Y:Sbs*bͭ= h~Ɏ=zL,6&.>X@>AjAKj?MZ:0cSB6`N$82 fL&Wk/vveʼk2MSTx .ӉcF@$QNc}L8b@Jfت5涶t6ER)|sNE I$qz&gPk&xLj0Wi$$InuvI%=YB``H(4\w"v߫+^?)l %C.|}$pwY`nω[~`atv+kɸ9{vΉ({*@UA9eޤ׹_<.œ?6̜I)*ka}pŤ?kP, 1G_c,yۺwP̾8ee3ӣ抜~tEȀfog@S>k kWM~0Hkj>+nCMiGW\p0[]^^̐rg2TGE j,*eIqDPS`K$,\!3WgV}ŊCS$)H_ͽ"ZΟ9{ .[템 56WCaNNNNHk`vs$ 0B.`/xhh&\.aFar"|DzZZ`Ჶ5eEIϫ#<޼C=bgkk6ޑ>hy5O8cëMe=P+o\\= }ny^آ@ɬ(>Vi½ &Mޠ=9*\ǟidr<w׼/O˳2:ab=ᅯ'n5+[6'-zf ӗlIO h~Z~&meeeZ'}d!V+ աr#g`D⮹{L~ݡXozwO9 jT%&pEh֨k- J2_SӞgV 6"5e@' oX\i)),(hG:F+ASV K\f ȓHx>i02#mCx\ D'K1eRr$6F^PlbAJ{P|@[q[N45]pmm:Ԕki?}h8yABͿl/rIIvymK̔\+4Lmup=ZeE `Mm`GAZG^uPPPNU6QvQ}?}^eMkUl PIo[Mx]~4(7ۮ6jsFGצW*JLf")f4IpjTODFGVIEfVڂ .UѱX]񨨨 .+ >;5s+c}`&NˍFTff [gġ/rp8dySXZm)4Ʀ+AalhJɬ 74%|ZVm1zװE&a`~%Ɏ >A<.F6y Ž[HJ|h XU~߫/)NrxƤpg6!Fy<.AtO_ӇQ/-T0Q-r3 o 2ѯ "W?=;4M86iܰQ$4UV\vK9,PnoLcJ$(J uhxYQސ*MkB鼁&ރhv4\ί떪@˰WyA ܨ7n vU\ IDAT1}+UbtwA\[i mpKޖde&9'ù~_[%vx[J]ь_0OZ(唭ߤxXٟ^1~*0Kl'1c,#zdIO;òv`rʩϿ$-E`46t&=f'f3+AP|,HgҸfjERUUU0/Sq\?0Lپ(Aֺeo8aڈ@Bhӷ̣ x|>af\YHy󿌉D;RqdVn#S|yRJlXjyv{WVJGDr1iЕ:dKmr4U],j&Vĥ'i800S dSR7 5C9MeVNTwUl߼ vVݣJQ\bj$vZefuM)#㹴fhCd@c:yk>  z9G7?ugX_˧[ƾ/<`wկȧ.âּ}msg.6wĎs{Wngw͛-_g[X|ڊJs^~HTvwkezA_eظ emS/KvnGRQi+A3~P+Zه h&&]iInT"ۮmɔH\[-3+R74.K'[cBꙙ>d/al薵/E@̜w q 'hpe󹒖x+4ܢ&E$s+o$C$:<22WLdoWbԜ8Vq]ƒb#epUPfnx#F1"5I}dOHjX+`"Z$[?ي@ zl@٦j^{'hy=X/W K0Nve@ ~M:vkUn&i&Wܲe Eׁ@ nE @bl@/h7kBXWff~/񆇢24Q 6ږ/;7,_'N8q2{׬m_=KDhEă\C>v=dg펾4paCGfdH w !)i Aw'HC>rXrA\i+‡쐳dV~W1pCB$ߔq?4vLn-lR01\Cj b[L6_0۱ޗeC˳i*/ W#dR-]TmŗeVmɎ=zL,:O66ϛ: 568ǺrVk]0$6kH"Mg P*ǭ84ѡ[0dV~IYqElrB9e3KzAY5VB! ` /thѡ)g/J!T}o(c^ J+L67:dK,k+NЎ z\2Jg/fd*y]I{r?3<c>\h8ջ,02sުW'Ƃ~ @9eޤ׹_<.œ?2kd>t-k^0Km:͕wO}}zIYbIgܜ=;D|=+f7ʛ)WO{dsۧ=+9*\ǟi4&oЎ`J'zic~_0O<oy32S'/TdԩdVj?ًzwKJ|eEr'}dTå糲ƿ{ieVVVVֳ_@eeeZxp_9[a[Jrrrrr `)l񩴂wܳͅg}CFFé{EؾTV$QXm>|;ZkL$`\LBZn zPQXR]kǔY\\.: <1^-r\|>52Md|rjj ci4pj4;n2,Ny>`09<؄F%{>'$18lhup0 fcF-$R7%]_Z ڙt ]} tYƉLHhe+E9HJRPyg.QWUڑwh2_vb-ꕇ/1Ss0%O;uWv2zwKF%&Oht-U[ #wkOS+v%F+ASV3$Hi3$Eb8Ƥ7p4IFuEfDZe̐Y84%2C~qIoaEG38A74VW()]Wƃ%抢fvM'j^eCMWw`\u*098Sj%o/5pخ<7l=:t|'M^tbaTӄqEpqREF%NGYEaFmcDKz{s*p9o:>6h(jcsC8ZgJ!T}_i.k ssMJ"8bJBZ%{.j0TsǸP*Kl?~0D.xF%{>'\zi`ܨ؅\J@T*'ǭL<@ @-2pIĘaaiżM dqM9hMV=<3R 3Sx.W( P ""|/zթl2cO..474 3LPrX.4}lRsܧGK^=uxq¾5q vmE,ba\p]٬s:ȭ4Q TO05a2#Ta/lB$'Ǩ =(W'eRS꺮D^ 40x&?{Q >~yo]PHqzKǮ{gg㛨ևdIiZ(R.\\@-\.xݸp ( p" bd+-K[/钴MҤYg:&4t|?y<3gΜc+m6RMJvY ^ PWOVi8TeR>MYoV2i5Yaܖd5ζN6NqoϞ{ ~ogIYfVj~̒=?oٳz{>*ӛ_fR/8~\U+^d|ƼS8mсZi5mq~dכۏOUDg.\@ @WvJ/k)D#~Ka )Z4!C\6:IA}s@6T "0nWQiTj|klt%gJtn@6 #R8NN}m,hqIٕfwxSNB)\YXCS6пP*+vMGsod@ BNWu_?bGד8?$1(;_>mr$4ԟtorSw,R)3KJ8#d>B [WQ @ 26h))))))2Z' ~;ߌb,p:vf#|a݅f7!sX,@ |[9~;}2Uߌ9I]IÞkv2es@ K=v }kk@ -(E @?ڕuClXr2I[:Q[vm$gm~*HzMA⓫>s],}w- myQέ#o>t=D;&}#u}O B}4*%%Z"G$b#$! CSH<p5y|Vmi{2el6A|&Tܱd/Mu9ITVϢyyrRAxb^.yHI&O\M2M父Fݤfߚa/-Q˶>>RnAco,v1 Z{VuȝѶ'm B+1wb-m )qUC,bdN8-Hj(+շɝ?&84),xfA<;fFU߃( Ȇ³ '.z ]Yq,mI~?Op7юuech`|s9/CHul=G8b@#h ;̊en* 7vC]{[p36tnhk䤜nG5[ 'X:1gηO|)u{nF[K# AB/wrj zJ[t*/j$Njnu_6q"$Myg CTr>O^.xa+Fko  8 fkK"X\H nx.J$~\epH"r~21G}40 L`Qq70VMpxN&lPpX, o{F+D9,= Uݍ3Fpp|ɖok4zP9- {xc nhkT[q2y}/=Ə4KL&#z@P, 8pC&h88}yW#Zum{O B |ʛ+yq[pJEvY-;_Lc1 +3 Z9Wf4SXp*/ MMAb6œ)Ɩ9ޕfwl,Qwt}ۤNT枮b>ޕy9B>裁RX /,EZ/T Ⱥ]3xOKɺe2m_vV5)J؞= 6<9Ck?Β3_*voĜ߿-TƻNʜFw.]5K6޼:xm4o؞ֺݏݯh*sM׈/be(??fɞ7Yox~myW#Zum{5ssЕ]Z *Hl_j,iJILJ`U.najT Ms}$jcEMQt%goPt/ ʊёI)EVn6Zldqv04==ԩS4Z,%ϟ+ wh]#dɴ'þ睃,`|(hJc^+.^v\s^o"zPpYz$&e˚}RxߧVn{YnT=RmaʐXB?w" IDATn,Wwy9B>#D?~#Snt:|u|Fۑ"nz;( AC\x~ۙ[C kaX`VXtX {={nb Wʩ!X,vJ9I]#d~@ z[y{J@ b@ ϲX/(22؟qOHddn]w(']9v̻G@ }XJ2N%Dr_!ua^Pᮜn;B#D_ecǎ;џlwPQoGtܲo~):ŽQgm~*k=5#$-<ގp! ߵI#[h)q{$b_ ~2feBrᩩ)Cbeɳ_4qc8KME-ؘ&weކ6bs9v̻G>LѦӿ4ͯLuRRۆ hx5B & n2Z`l׵d"5cbt'ohݧ%L 41ȅ"bL42!69ky66y,lvxW,8ݗmGh!whh"i_%ǎ?]BYjUT*,X+C_O ߿) n]zMu_%q[@/;r`4ZsZݳh53Rޣf>+F9l\ٿ}ϥ@'-<%3m[~ar=KF[9qXOCjάGv.}}+cۓ/j`ު x=>ڕuClXr9mh{3V Lqk[a?'Ư93+nW{/ğB04ei),IEL҈q*iq1C%ĊI۴-Ԥ)zѕU.D?_B$VyHWU˘ej$- j-dݳ,OMP2$55>i`csAr|{k>0*Ɗ̿hM8OblRBkjkD,x=;?8-Lq((-Mt^{dԴB@5i޹'-왓J*322|x^_N =2M=<~ܳ[K_x=i,@e y+>-u\7=iFLDKl=yFvJO?*]BCd}󟬠S/HDai[#D\_Ygr8)Hq YHl$Ebm2>Rnڼsl196q(cwp^jTܱd/Mu9]yI7_ۼV&V5MZM&$IU#>r\uO=_1M !-Qaa$i5҃CC+MWNϏWqF}L/17UtEQ gF>9e,@DC!Op7юyl"R2|@C 1h{WJwxtG׋2VިT}\;%->YtJW3hRռ6{,uڔc۫o9wLTD!i;[//|y}!qb1``lԚ& WJĤ),L.$ z ـapl6_ 0P"2ry"Daz؜sW!so05s$*KCܨX5-_mM|4(T &N`ᓗ,0,LFo^U\J7A;,.vhkF *Bd^lPpX, ݢ!TU"̨֯"|ʛ+?'8902cpseJSpbU\NC啂~eW;?hqx!hl' R`nxgcPu2tqͫrOWQ#d9a֒3&}yzW ~ogIYfV_+?7nחqjfDS5b*g~7vph˖~ZJݞ棟}41o&-;L$[ZnFM,dCY :2)ת`<^sizzShXAJVSee#?WД o=5HBCIr|wi7=}2ɀ@[spe9MZ{9I ,Z}|xCe#I@/kI}|v,7e(KJq%W*|Ʒ՞r|{k@ ="v] @xelSRRRRReV'z|v %0ư*>pjgH=5(gyh,@ >P|mt;}2UH]qͻ(w@ z|v Xs@ YP@ x~ApC"# ؜9Bޚ#@)pcǎ;vl׏%i.ι߸ܖ [O5S>9t{- oPܐԴԔ8'LOw% #ixjZ a#QxJzjqi郃= !w 2$6Pv5=w-h鸥&lL=6j/60;G[sDǔxLz+:f$-<'!|@oVכ/D =_Hlʅ+&^kl۲ƒXuy!Xݥs(,!>pXKEk1N"bL42!69a35,Im6H|csr|{k> 'HDUZCyeً9>XyHF|{hgRkY%[|=D+/3h̼W/uԞުyL'-'|ɻjgs'OxbѦDss:J>1"͞9c45qqәOfKMN<1i)T YcCf(U*uyJa}*"Y{JG"b~U+/;{&lQ_*Ը=+]mq%:aXVU\V%J R nɍU홳@FBhrM(×-zCN"ٜ~qJfp\^&_dP WV%Сr3՜{\8Cc4Zl߬Y])p\. %ZS#0 =7uvyg_JN<˘ҕYV^3A1,^R)*ʫq{'@|GLkgwX5-15W֙Nʤ7R\+Cj)"[:;I~{rJb>4o@guyX#S8 UcIr 'NǝN'|I87kzbu:7ǭ|/ݗCGK~ʸ-r'`,pijIVp 68չ%w, FS]{`29;s/{v^nA| qل*4{;5^Zi*m}|N/XΎhe3ciq>|jҕY_V7:2<12KZ! r:+Gĥ,Fuy4bmnE FVCYMlӛZ4E5%,IR,՝CC+_{Y#ʨR&dγ[PaPxPaD5,ҖhyHZVM"Rx|t:J^:1yÁZwY,8d-åen* ܴ1]7q36[ 'X:1gηZZLPN ǺCuMgNIO']:_%meRcEfJUU\?"s0LE n;NBi+RW|IPtlTrI 4-KlB5;lJ8\A:tQKѬ107R4cĵ7Y@Qarq8rBРwpv <8Bď$!ᧃ9fsW7okIU;c @KT&H8Qw'Z6W(8,_SY\FMǪil7~-uw8D5zP9- {xc ޱKL&#z@P B͙% Ubh[ɫSgg[2M)>2#GbG;Ɩçrk/箊Dٸa9Mpp ðqeFE8` &SŅS+3PS PDDKKzNC啂eI0Hfx xzN]ivbuWO׷DKe*i5ۅU2@}QP>Plc!Ck ^|R.8>yE}a׶]F߷qgj$,Wݍbx7 ֮s鲭YJY @kʿFxC,CF̘~јs t-:PKEJ^5ggVjQ+{62sg mβr\Rdi U ʮTe-h$ǰMXHx|[K4LMyдpVZaZ[Z&IdQFb?&nXQv pXOdCY :2)ת^FM,ή4?:uF%d5UV6_Lm[nN&HBCIrq̻i7=}2ɀy?&=;r'?Xgᤵʷ"o(,vD\~= CeL 4h!ܔz8/U*eƁ[_Vj ]98B5G ="v]|ZaoG@ 7CDp𔔔xUɠ^6_gcbs ao1C8V;CnN&( Gȼh,@ >P|mt;}2UH]vsZvax@ DB/aa@~@ ,@ (GF1rC(t4l29@ D£*T*.!QhN&#d[ہTxHʶ/%$3}R/v55)}4 ؊;/t*}ccx뮞qe>>s7ǎ;{p%#3"գ8Oyg򈴴Ԕ!BD)R ǥfBC:( i5ۄ>t}k{8+W`+ͶŃfx \XKl}qֶr1i၅ +vϝE-Ϫd~eRMgmK3Ci87xИyxJo2v]-_ƕwu IDATA{ڜ}λ*cOdZjԁ6l?Qmk ~RG]ڙǰXzԌ[g|=u2LqkZrRwz? ͐4i!xzswf??SCӟ t!Ѷ!NgEPwsdAo_}p)h f5ĊG] ̀?Y*Ώw}JOdkK\_H\đ#-yy5Vz3B `ڰB bxH8ZiJK% fka!~Jc̸XԬ押3F]"C3!.bF4q2A[zGCRS3^A;洚mB:B5=Vs~ȥCy,n7.}..lKE0.:f"VN ͵()739K87~WQun1wemF8@ns>5!E+ׯ;޺OcĸĶk˙i8<ՑW<5[қqc9?xu7fN|7NF-z>!4'D3^LdS@5i޹'EV9r~Gf[>]=wشIeӦ^u 0~->FJ6yD7$ZV\Mpk d(dXW߁u_5o?)O.[tbΜoE[+=YE Vi5gM72Cd;]+ owoN)iK'VӖY^f|,5FXtjD^U^#o9w &Qʭ܎v/' BҔwo2UDGrjծ Fko[8l6pX&c)K ICB04HI$BG'rќVMCGܷ>J"6З"2p\2|~"i@Z~gC"0^r@}rF zM"A>J\}*3 1hA#@oniD" o^!Cn?bV3 Gp;;ƵF l- , 8pC&h8 W1q2YݳNc~<ЮYU\=v=|NJVa /`dqWcjO^`°0ak4P.7j?VMKt;K=4@ 1. q Vi5gMZ:52=]L']HDtnW':;ۚhJQ)wiˬ+/WRTPX,k%~-ԼJMCG!ʓ l",zM890 +lQ\`4fI($p+ m +.CS `bdA NJhx4R{ܼhm=]ŨќV];Gܷ>aPo!UptF@EA9lCJ~]f€ƓtnKa%'<ྰ0iXS[:z(~2i}\Z0H8\иƘ}>zXעٻg_odkE7?sx?'ۊS-7bX~\'@Y9{V/~w7sKM;z{׏zsI[żu4u4ZΥ˶f)٦ӛWg5 /[i)YwVw@}(`{iLqv֔/Y?|h_YRY}Un_Ú~јs t-:PKyD[wZMF ֜7v1mt!v}o?P~̝5Lt߽;M[Uh-YVK5MU~X]ٕ*ORԤ): u%5m-jiuՠVX'bL46ccIq uePi5jJ^Fa}b: eEȤӢS_nKMf&MK}tk`KOO?uTLm2D/t7=}rg `+{r-@U9>^YV4v#7V:-5Bjdĭs cL{qYz$&eק`p&)Su7%W*|  BĭClu}Nao76jn+rNtkB(cN//)3@MXtX$ .X,@ | 7e:I[lm?O D AMd@ GAY,@ .DFv@?@ .m!Dr_!T~ AػHlKKrXA9ǒ,{]nm_M؀coz@7{]_sرcǎGQO/Z-'&F2o8kSA@Z)i-OxTdX=/H^tIyZ0+^`G}ٌYu]AџlwP@}?6wM>9o6> !%}1p>:# OIOǥr^AC:<55eHl~tus7,5`#Ϳ6 ބ%4R1sRCCY #S 򀞎/bZ<& nˢmX]o`Z׸cA{;}w&46/jy1|Lz}iӗPO970MS;B4ͯLuY?"-N沒ӒYg;'dW(/3_bb̽X}8,TfL,Я,ekyE&\ܜSmݻ,"6'PNp^ѣBӢW*5; i޼޻jބ/#r}l;XAڌ'JКNEă7f4.a*I{yu'u&$r[J _. zf<@R"NC 4fޫs:jzoμfM^;GҜw~dʿ_}YI3+w^IhÓ\E&-ƒiaS>۰DF略/x%K헍+;\Iy'4fޫ/6kƆoo(NmyV%E{^YdmξV~~^G'Ch[Vؙ?Y=xѱo7. ^Y;(PV}|>-dCӒj귟nm1Ie9W5'DP0"-r *2Y+<؈ pՆTj#Ej~x?ǡ,VNSZ(Y0X# U{>GhHLH, X&k;g jmhLParq Y2$55>Ap돞}#v-+:sy^_N O+̭ KJ(|jFƴO4{dddddƐ:4YjX)705QFoܼW/9'8^)z`SzWqcm'>2׈3Ӯ_k;K.,:~O4ޞ1Im+ i/+{ؐJJ]^F;}+@'"9=sye0M^#~I1?2KRuk{8v1wemMIp^PjRhMm-@ӶԴ?䭓';:g~zСwnǣq<CD7ϝ=[m/j\`\9wj/<5MĵaAXUdRGO:bDJrbJzaptDKOL\lNh%fq87tu7HA#N -?zRFoxUIcnzﲑ{v5iQi5Ֆb hn8Ƨk>Db 0֫1I)45$fg<*a- ՞pDs?/:KΡCfܫ<\|t>3[fow64lK$Y;m.Lv?r*&*n!NEXuɩ=NykN9>Gk͚%8u<,.VsKz;@yIM"BpJ@򡱱_Y+-m!Ѷ@E,A/RTUU'?lr A2:ZKLyyg/.iJ\/N 񷩛  w zֶ3EԮU@ViaC 7Z&2&z E;q\6Օ'ckG8,V5V0W֙p]f"d^g'$mLUyj0X|eT\JwױrT^pw:G(XN 3_TnwYU[=( C*Q_z晴{bySuX@H#TM0OE<@btpPNp?wU!9 l61;s/ߜyWŶ5p Aco,v1 v'YҢMOU9l#v/i5lh=wL'~2N HӁD7_kLb4vsG:>Yd7״N%sړ(5Qaa$i5wGgLP6;I٫w^( Ȇ³ s󞅮5)#YTy|e?3w$֖RJ[ u( ,zc>Q@tD(,X\miKH4Ms2? L&i˝?'||g Zc`fp F|"]wC 6dT-czrtTkEsEJ N!bl(7a}C ) 1 0+c}3.37cohο{VMk{Z/=u\,ٹzNbyvղi}:Rr.wpR[-N$IW =g/w\.:?ѱnDQUi3'Q\on4ACFewpw>+F G&S;_"zn|NXcy.m}Ǧ_WsvXm7}qȗK6EA5C?tz23JkI5=)}m ̭tgp9q<=K<)L9"ZLZmn/.bԳFFC= hO$h1!\1vUR܃QOjT:k EH_yu0AV;Y-_>Y(&В6s $CCO~:9qcQk%bçgp$ʈq L0SS^OӼ AB1dk;Ց(͘4VTqq [Eg`"~E-MqGߺr˪zںkUk>8tFiy8W=L[II Xmy.ϩr@;LOK,S*dBvgYIi)6iUIgK%ݹvwdEJy\I[Ξ3%~;q!j=w-:x>4ް[{ =CSS_Ҁv#Fx7ek\*m_8뗘/7)(8qy<0~49pD=)S_Lmm"mTa!Xkk]XuW%YSt( h]뱠52u F#C>u$#NF[ IDAT.zTn[TV}J?)cBJZ n3=jbZ}۸!뫷^)+I۶C̎ToV(L<^ԺޜA}vμӱwg~=W|u3(1(y{Ɯף{>yү_z5K޸_Z`=k^<ˉ,KmOxc*vEp34pnXIiׯ^ Ru5ťo~`˟^z˻*xagy͞4{_jOl{"?.u?r 7+VDlDCUVA\zEVrekҸ{ݖ0c,$FWTFpJF!Ā<Ald4,|70;$uamni&"2geeeeeezC0L0Xtwok[#%!,xazw)Wb]݋u/%(7`1c!1R6."vO(=Ald24|6D/L5֙bgaaaaaa na6 +,2U, [SFŅIq)#<Ald4,4ɐE(yyFYXXXXXXXFުXB"qg#R&"N"&ӻwu߭ YĒ1Y~:.0cI[D𗌼r}V\=/oe(@]WxСC>?'n޵oޯ?.YVWM :1@d?|ssh/!, G1>77'+-L(MN ;b]Ҙq:ˑ]1>'7gN"\:3;77'kLRILV^N³:97/=lBy9"7xƽf/>  ŧ[AP\B!Oi DpTs( +O^ݱP#4ʹ'o8ޚ&ɞu5ϿkނEB6`+f▶vC>呅OL>ԛ^SjonY/Kf=[Ꮋgvݻ4l߳>dÅ3 YjA/ɬ2ʈ(ns;Xr NWk=wފ Òb5иH&Ge:Vn^sb&LIR782L.a~b֋g,".5)T5g֚uA][& PAld4,h(`ޝg`쾫n}J hy6q\'L>7&t k/}luQ.bh] K6ZRu"<5ÅoGkUOD$5:2cm$x ,l#Y)+@E޻`186Dizou<]p5[NB#{z٣_WW㎟ehw gxBy-z5 ?~hnr_hעU[c/CH/o? ֶ^q޶Ȏ7gsl8c+N~D?ڻ};_3޹ЕV|7TI%B}K1}/@?CUuN4PwbK];67/:.|{qY7(Uݥ76;>~:5^#P͉TY*yҋ2!Wct"MQtLy0ns|.n0X\nKɮ`5t4[;f*JpIeùNtT{fSB!g2A蛣Uj>7zQ %@ѵFFCr Ц䌉w["Z7HCEi 8i\prDN%l) ӄ4HI\1+9z߶';D*j~uw+.ҨsT3Cqյ?[iW 0.a˳P.Z{k~~/>>-w/(4'M ή[z׋3SiՑ) {u洛~ONTl/? _gHu O=zn/1V!>,89rR;Rzȑ#G#G50_5Pg~+gK g4V˩?AL3D·WTaXmT GkJS%DB[kMĤ .“ǎJOt02rO(Mݝ%HNaDzNNvvVfZϸj2v H[F %:n6M620;h=}Wl~Bɡq8@D@G{vw-fĩ7HI$s+ [0Z]iSsF/š~kC6VEEXl} 8g\"c8WVK0SőV *),n㊔)h8ݩf¿__%+R=:9Nam=\tNN[euw]cF$5HYB6 :U;.EӅTWyxO9BTtbM=A ߹ew1s߼{p#Wu >woުDKl|ؗ]Ecpz&5064Z\nvZ&dgII ˴Q ƪ1mJ^ބx p;wDQy8.Vio7r4[2Rq('Ʉr8R{颢3g+M8]0FzQ`oT =Ald24HHcu1(a28dA=@HI&Ceh^V*S}*Q]rFH5`ppT$1 rS@Y6x)D|CKK,C<]Ჽ/jBXX:W?[*'pDkLv!>#%\:T'$}}9nMW^znC=t\\K'%d(*bB[abJV~I1/_x7o_seʛeϲ@StYW҇PӈkBicGU/;:%cETyLz7م#MOR gT| #D8_PM X\c0%YwƉp-Z兎w7XD"{UMB\SB6VAkl# R|(cC9{azwzcc>D`pKo#LMբ?i|(@GKjZ:]4wtz|1h6^tP0!Յ@t6tܮ*m1dնdrG>, %;W/ \YL=ϮZ6Լ].WgnaFJ\.Ui"3w sSK0:I=W@tKr%t#J9}{ts& jT{_|q @Ykbp !h2%R.Z @Cs9M>~ЦLq"؞S-T{ sJ}G#xXyۙc%2L>^wP GV(SHuCl;l0Iw <ӳ"#RŤ$`=ix\.aK=Ald4K=n R>'0;h؃:FC!\1vUR܃QOjT:k EH_yu0AV;Y-_>Y(&В6s $CCO~:9qr_GO a(#F-} i]YWNĄjP߾O1XO2.ZE8   ͸(>?~WߟF7-Y[^tX5+uU7vO(͘4VTqkrIVbD$pzⵙ: ]ޟSsȊ򸒘7=g@KOv6{C՘{[tp|`eOݓ >ĉ]?xᕥϼa%Pp x8a#fAqpQH\NB`R.lvL*&p/U L=)SeM q9*,kmK*4Gy8s%Zleb;kEzF&C/m` 3Y=`2߫'QOUV@e'$*<&q\:->>ӣ&>יAIKkx1~zn̟4Qm;Hmu!Ek͹ 4@>iԭ x0Wr6}5WꞣǠs֧- l.U;'|9r|UteQQJP7Ak4 D]zYxVS0L3Z0=/ozwpMb?Mo(*)[~iDJک~g jaXƌT(B!Ry6hwzLhT""0;h=heq[YYYYYY)*ާc~' jaXH@b\v{ ^cB)v׫$!s|s9$`ޝg`Poeaaaa %X jaXƌTQkR 62%įА y&  O,,,,,,,fL$(K' )l2VqqaRxF RhaqqJ!d w`(UD)E8F RhDJ.DL0IB}`azwzE,YnҞ >h!)gnUVN?\i׾v~1+T_=߇:Sg3ch+f 3<8 K3ݻe̒>{üI ?YXBS\1!];>/oB72d$(0;h=C}$GQ V4'**9cWyy!+Fj/G&c欸GPOydO,-@O\d,ڵd]p5M֓>.{8XXF;mB|Ƅq}oc֚uWő)$`dr}' \^]UnMսFo> v:V7J]}`azwz3!$Tvu;lrN,|nLX!A:?^l 67]^"$=Ѻ 'm8qDeyj ߎVתbI⁑i.,X]c[[̓CUuN4PwbKn]`S_zڹxuO/{R4?jl N ~>%pjW60j[R~xyۢ#; \F?\XkQ˪1kL>x$KȈ|.JD :.{sU=K]9/=5-A) ,fNŦ{+H@ {쥧oOS~kzL.LT}$wI>~hnr_Ϭ,q8>'-LeHemoַVh&IZ p݁u֝*5b9˜X%^SzR&jlnU 1mii3T[;)Wa呑Qՙf\!B.G*2A蛣UjKg~mD(rLNNQDFad'M!+TGRb[0>Dحn-ҎpH 艜KJwDS iԑbVr$mMO5qwUwV\:hQf&ok.{{r֋eBA~ה.1)Nևg{܈2ǯO$:ڛk1&N!%$m?.ompptlj)wPMu8 ۼRsȪJk#EomO IDAT4Z+?,xwݑ*JJjee8"%EALH4T~߯D%%~h5>p=vj* h9_;J;ܶa*}c8WVK0SőV=:]78siQtZw gl_OUh[D'9:9NI=\tNhO>'-2LdB|?,E{)Z.<.NcCEeVe#$ThqQnK{*ctF'&1|HjbB|3'O9[\i.Av#GQIcޒEaIcuˮT^[gPg}0ze[]LuCdmGumM $oTSq@P7p.MeiEc!j Vߝxn4Tq(G_x7o_s%\e M).WW-?C\.A].K\]\WO?U|pSn2zߎ~b\~l;hn⪥|li<ƛz)J%.'&11#=khP:A\y9p}"OZdȄ~Yo9vƊjAL\z8m3ꫪt]{G$~h*/S#`U\%4nUZ,a"bl98qp;Pn7adKBiG&.ުX&!.PZթ!J@0H2쓣I4WT=}Ճ}0/aSa>(R񷚮1N]9B#8_/&Ƌ rSF`?~ej "٪迨W{q @YkbprUx&na9]e".R*0s T?94h,ٹzNbyvղi}|N[87/cLA;uݝsOfj[*L_,${20vgs'E<Ĵ]?t;P6@(݆8|cFa IZӹFdyXyۙc% B'tO!˓Ԟ.Ejskl&.\xOs8zHvg/R $r/lFI}b<\.sJ"Ѡԃ}0 ]V@>-6|jxx6@ L{NƦ IsWc{buwYRW3 5qyQ|~? )Y[^tX5+uU7v.(͘4VTў5?yk3r>vyK_ 3}SVvDL.S8Cz-Nud+~adtDg.,d*ڹNҨ8-'^i+)iCyҢD&xᕥϼY04>V+rqpOp K#]4 %GNZGy8s%ZlyL5KFח]66\p-ahbr|Bjg o}5EGkju ;L t5^8iD#A/L߭`X\&{!*j0~RRDŽ>s;.݀Kgz:/5(Iqci /F;9:COWo3vuVSV&mw޼.dQxuM1`/[7k"'(ۇ0m }|cd.CɡO}|ػnm3kX} i w?C v}B4]˞TZ~h5/c Gj@dڻgWn{@A6fŪ-\OmOxc*vQEcP9[lxsԟl3E~G;Y [O}f7kyEw!addDgu[[_U >{V{bJ"̤HIyt]`1Gt:(pS@uo v:ZQ0Inȍ@6@ݏ}΄: Hz8qsS \m˚_Ry FQ،H!@Z^(tV*ۆwJx ZQ*Qw!VilZN%  `i5u %ۢ199)ZD]~5BhSrrDaP$RѺwu?b:;?,,,,,,#\&ԟ?~ª'$6AlxMR h;kO9rpȑ#G e @ypP҈px}qr9jJX04y$DB孄Fdggey{J*j2I;kï^(h|IwC=HuFwL`ܦf0,nBVmvZHLd8EQO,q8͍](jln$`8e/)Ηh5jRl,k}*Ԟ9YjtƳ@m{b͗gß^Hcu'w$}7dG {[gwCeaop0 np kVn7adKBu֜.R#<:pI bҍv9.Ϧ&\zhRSck=~5QƤk|I#Du&7v EQ]F ((i]x]7bp\^ƹvPC 9W5^YrD*F.莅. Re Hr1_'˥|7&Cë ֙YXXXXXF*6k'_8SdTgiR !fMmm"mTa!Xke0vKpCRc]49pD͖ 6a@QT ;bvARG 2F{G(,,,,,PWZַ%D\w4Vմ;0.)1J!HS⦀k<*!V+Q6Bⲯ@k8_/,=+FҧVB$KtPHsqanl c-**R2Tm(%iԛHJm# pjjZU3I2!?C*ud}2L o,,,,,,#g_5Rs>4PEw5ŧk.k2]:vo|Utwէ ~8Gj8ڷl*?}ۈX("g/}K&Th4*SL1I^uƄ :; CqmDew7VXF.\U zCΘYg`cgG,u`4XQ@' LՊABՙ2 o,,,,,,, ́eaaaaaaaa}xbyȸ0)7l${lm \ܟ*6ܗeޚ?+<:Mn]cY9{szۜM[ޛJO O=zn/VCiRHO~޳CdS,O9i7/񋟜,K_\ؑC[G:}CrBs$Rx"9SJ~>|h!$}rEU` .:Ysߊ6R%Pԟ?~B &B2H*8: -7J!NHKh(Ap)Ww'P6+AI#4B=M.ުXj2v H[ePvh}%dI2@C#Zue45>OKRgv['II.Q۩{ 6{٧~i|;*RE'֮כq9( p`qEJJWk՞O .ume'SQQDwvm'9UD>δ, gtr}g۝NsUE=ӥ~ h8ݩf¿__<*v<\Z-LGZ+M0.<; pN2@CUWS!uݤl7:I7#+ FѾq8NQdBEq%[ǠRq3l4VDG& hu&y@9Wr \..Bu$ A*ZG͖Soy7{sDkLv!u=Sݏ]nxDh1ܯD)w>dZ$:Ou/go'd\R<2v|ߎ~b\~l;xzrvn:vDG&PC?e{G$~h*/nz7FfJG㤡Wb3vcFk tv୊hB\ U_9Gi0{$ې> 0IhhD31γN\.zp8.[l/t9rS=~N[87/h?rM5~#Nw٭4/$IK3=#=!$UEJfn8|Md@;>uϐΒ,&gW-vjמgu^í{3rS2g~ۥ t$1l+D=m`3J~?].Fp0O5x\{ \xx<bns3H.bԳqO,KhH2$:2:-9Uh'^I6@ܐI׍_,mz}DUO<ϋ/.S8; ͸(>?~Wߟա(pzⵙ#jnhfLUDG:}Cz-NudGsa ˹&Yv A&B7Ʊj>W}-n3ʷԡNS:y,fҧn"x#gOZ s B{; tKy1+^{u Pp x8aqa4Kusa:m CM q9*,kmS&&'ƪq&@YSt( h\jp+$LL ,u?r 7+V_~o>[Qw/>Ma{_|k]y˟nnφʏ78NV>Yφ:[گ*8Vo.zf{K"[mϿZDGy[g,'?xWCƢ]EcP9[QGT磝,Z䍛_}5s`˟^z˻*xagyIؑxOsTWɅLiׯ^ Ru5r!NѩZrk+H~ǣSOV{⪫uN3vוqݛseΐ!s :cuI}bd u1cs=RݤXZgf|G<\ ccY?>aL8s  #dKe(!.#Gٌu=ﯜV%-6I20ɼ#GT z<*JI*Fc5VG W& hu&yy ,,^^b_o[0nܬw)[Ӂ5cѮEM||'عڸh!7OCzSa/qCBo(*)[~iDʎ|,̂8dIDATR6#Vj4 !Hٸ LhT"$> 0IhhD31γxy峷}sǎ_ok>x Q暅ڼԯ"Rvl.dK%nsK39>++++++3Ee&~@fjx8<ANwe:'0ARZ!dF:C<J@fj ]WV(5)[eV -dA2@C#[uexAfAkgkbYXXXXXXXXFCRҰ+2IqqaRF:keDuIUsrsƏM.p.iLVNnnDeg{>%YI@EJ.DLD)EhVgbxx2@$⇘w,18|gl‡+=/_/O0d%L$ؑ  C dC3n„ FƎ˛Mv/U/!JMPvWpurn^zCBy99YcB^W]@U3eV5=dHSSLʍWk=wފ Òb5{q!qI-B66ӇiO$mŧA7 yT31YX|$)a9bni4y&;'sɣU ?ܞ kMEAKmB|X}#SH؁2F$q*6Iix̂+R":NU|滤H.'-! /j7[0) |.n0X\nj|mb߼p8btN}T31YFXȵlڳ-[ 7Mxp4hƙ7=45siݳoطcO"v7>i:)}{Os]gm߾2U hWa~\IOT[RaWHn~/;<(~o]-~=}볳[3k}׫v\*m{>=wK?޵/ޠr_$'MD((?1Dw O+'D;-H#SfΝ9>Y3BaLM&ĥgfDIrNTd䴴.\lvB\j3H@Ru6֙$ik7JEȲ~R`ki04[`)*iD<E$GPuMჿL199)ZQZg DM; f:|.@ņռY4Ni-o3sqݾ!o{E9i=U"65\H*Zp Sn1yi[Nyh%G+5??׭}h&}BnK{街O$.xp+Sν:sMw?K''@re'W7uw S^8v昌=#;v#'dHK  8č=$H(v{?޾}K@~.;۲fS^s4_=$t ;iA~ԙtɓ)ƸD4S|毾D|ѣŴRvJgHER׳Jճ3Tx:$ YⰠk(Ak*,ݝOs [ zR]x\x3O0[4>;KA,m[ K2 QbW鷦[$IQ VQHR靊snD(9J4dh"S m(PS#ъS.g&ti$tn^ΖHbʿ 4MO>ol^|w=w_]Ǐ<%Eߐ^7|F6R$1 q9<ߜ8.5[Lu #6hx䏼D)"ֳtA #_?u*ԶB>]\aߦ*p?W2rDtA]Α >֖chR6^B@|>P"i0maM7R<,cJm4iXx!-Y(30j- HPr^hiiRti19%;mq6O?#X^_(BRkX^_՛޼j0775v%MMstn!+_P[>ă=Ouػ‹5Y(,%+_?kFS_-|ȐOˌT{[^;=|`Ih_ &ڸx2z;r9ޡQJgo}_^M <~/XЏ'uzzȃDdd7{MV٣SLx-np"e'μ3O_='}g_|{/~`_w0]<+["㥏?#q7rK~om_}s+?0`LzW*;̓7~-Ls?x;#Gd%w9O޸W}s~|;C/K =J/{d=%[$E$C$:騬E ?Q|ե\ж-MfoOr"i:8Ȟ?YZD31L|.Mvm]ldhhu)r P3bC\!>P;zX1R44Sٜ(mcyk5ke8Q9DZ-T띗|k9Z.Uͥp+:J}Cu6L{#.|w>{y;Wݳ}IzJ'YxA!օ3#T5E܋_R5}//8f"mYP,rRZŠ^͛#T߱s+G~믿^y5UtmA[HCtv3`K96雕Xe,(FA\6[er"|aq,!Ц f_ʅ5JV229E>[Uy;[:B!v|5}!BWujg|%cB!F!B[B!m-vױ@is3շu5;l:VLG}.?Q8L{{@M덻eӮ4MZRQkҿej B!HsjZol隠 !D48v9.r0[kK=]};{†FG҄n +F!R,EJi;JK-|ɹ3,FTb-J bI}S*;R;[T.'9X`u*b9S([u&qV"!*\\.QslΠ0 YӚzYVXBV_jh6ŧ5P5|Ay.uM3"nY15tS%,P(r}`0ڪj څ!jRs: J4%~;T6Eۍ$IQ Vө(QHrM5`(2:q^;9 1=|#aSN+Μ?;04qZU* XkۻF~7蚖%/޻]]z !.K^xe̹-V_;}n$`#ĥW((RyǧB!Tum6!4Idl#ΈE"m /A`M@SgOL-ݰO3{j2Y,P*QI%ŅDNKQ5u&e̗(bB!m}=u,CrjpȗDSKw!ry+c:|=nwb:Y8IŐ^*w„iֻ!l|5@fnҭjkL<8 md- J!B](s>ch`,#kJhB!eMh0SˢX,B!>8B!F!B?dEFb~IENDB`btop-1.3.0/Img/icon.png000066400000000000000000000020441454653170500146430ustar00rootroot00000000000000PNG  IHDR00W pHYsEItEXtSoftwarewww.inkscape.org<IDAThk$E?UݙIO61A."$ "xX=='M=?7Ȃ'o"f#:$d!1fGuvL/ Së^^ xE|||RF ~O-?rY}9FPC+W`19$I֞[^9Bs;aHchvԚO}6OS'=p.%#eGZC4RIAZX\\&BUQŸRJ {C#`Z0l@o14M{P;qZMVVV"sF7Y&Ifgg}>JO+!BFsFEܿO)!ΥS<'2oTB*>@՜B4Qg`]prE^kZ!ݱ 0??CeDƂ@e߂kݱ [[[{HZZ>Xy`;~j iJ$ex4̪aȑ'%o)=JB'0*l6Uvk W !RW jmx&1 V||@Ey@ei2559Pz^!x 6 AhJTa-J)^}^,LJkJy9%2iE| !z{#.]> FÎ9ՎaƂR81?DQXZlmm]Tr$ǖ7(SJ)s2E5gf~SJ\scLs҇P B98&'zJs>Ax}_$PͫIENDB`btop-1.3.0/Img/icon.svg000066400000000000000000000055151454653170500146640ustar00rootroot00000000000000 btop-1.3.0/Img/logo.png000066400000000000000000000017641454653170500146630ustar00rootroot00000000000000PNG  IHDR]bHgAMA a cHRMz&u0`:pQ<*PLTEXXXNNNDDD:::_000&&&vevtRNS@fbKGDH pHYs``kBtIME 3kIDATxؽj@p+ ^-}Po8m ˀ_.Uຨ9nvs Wffgwc0!IL2'=xyΆܓ޸ޏ|= }A/$7}χ< /uϢˡp-R_4M5ή!z o7ۨdK{\ /yM5DX^'TqWѼ΁Rk0Ys̽o :Z'Jծ뾙9C&\- ^x'nxv1nqid}̻eS^x˪Bf<[5!FW~bƃWC {6J3K{PoTb%Viw/^xLꄷT|j"}ˎ>q]o r/%tEXtdate:create2021-10-15T15:22:25+00:00O btop-1.3.0/Img/main-menu.png000066400000000000000000003451401454653170500156100ustar00rootroot00000000000000PNG  IHDRt sBITOtEXtSoftwaremate-screenshotȖJ IDATxYR[/j T\|ۀۂ_onnnn>qi6  R)eqHHF̜353#Kl6@AWF߿Y1ҿyosS. 5kXK/ާmyGh.wz,KU"IU%!?aSUv>'`i7Z_f4V{7.VUonq~ƭE;?-g=>`s7kQ[%u$S{l^tKfTuw <+pNϛext|tz2˕RM&[say^ ZLDEK>#t=ikY35-,NLAdDGÁ ;΅z>R.TWObux"kjS6O yC#F$90Tg򬏫f9ͅӲbYʩr7R]%Aq-]%<;U]eÄ́;׬ u`lEK5~p>nTڄJ8׊[^/Kdiq6dNqY8od.'jp~~1㒛_l3S'C;Eb&)B$ 7XH6684 HDB"UV"Tt `TuwIwjG/߶e=l;xOVkx\nDBpACp1{ڹM Dyelt*.v^j* c`,V[";HhI2|.NHzz<yfz?}FbzaUʅ܂eYM8!)ηaֲ֥ۇ\ #:ץV3S5*uAMwJ0SVJJ%t#`Yvzzzbb>~x7kpig5/Ǜ'e"a4߆R+Oa:rw#1^DrJ]z޹ 09gKʦ{RQR0'zuiaxwvq6wgQcW)wǂje@z;U]eA}R:7D_Nzpv|L~WL~:'˲\(TyB86t_WKn4.3$7-cFH0MPzJӴzjk~[=ƍ"/ۙ,nMʒJD$7d4rD FC"-7Hbu)NU𻱫d^Rw>3yL]c,׋ gYb .CVD$I ։)_Euft,k =%d7F,g/rhM: g'BFD։3Dx<;U]eA]lXMn-ݙ Mz!kܨE${ hE'gbٹ,NbًS%syN'b"F&~^xg@Lǒd*y=s߆yFJg'[Oc.W %_+Gx%%X$Zr7sWoZtwZ%"%8v/)_`TvOPeB3KӬٿ$I??nYYYrS4ym|_?p}ԟC ^ vg]%'ȿ_o=UW.S:O}r21[oq3yോ)٭ϱnqAwzʼnXL4Y,%Sҿ>=8?;0$dLz6v>M˜ӳvJ'X#>"zM`DHx/_q|3Ϝ3}c1t-v'.b.lo4wde5gO9 1鿿d}Rt; ׸=0fYϣ]YI!~cw 5ٸ8o ^WǛwLV׮dJ|-7Hbu)_gܦurM/J:V'kk'ϳ'eZhjzlĚ/{Lp8||||{3>>~|||g ToQS^2  W0 ,[~\@#:y3z2)gG/ _jvn@Dj$'F5rKx蝍Xr򝗗Izl?<([]=4UW7Z700vUnH-X!bˡn멃#stuHx~w*t߬GO'yFm/) u٠Tuz~4;Ǥi A{9׸7?Dw?IN.C0Z_ҡ?3TL W\l3sOVKﭧu b|qg* 7/3*~^ /@?@?@? ~HWG{t t o21 ylFFKÔ#4"M*xIYg1Z q]\v\lk2U؜tP$"<>3Y,RUXk`~~i^,/. .b.lo4wde5Q%Z|mNY*}>*wYY\| yr֙0Berz\/} gkWTlш@DNoEG8%\LyͯN80(Fn4I\)㗗0&BO'2ۈ=MH:aKvwG"vFy&U5SyFZKn YYc.Ftյ)"%~z,ǵ>s+#26C9O]S37S{kBurrM/~wO67{k~kZQTM3{nn& p$E;YAT슦i46 qn˥͢hd!FTUSo^3ܪՏGCş䧃"lȍvTu]@0(9::d$YDZSN&by]A1"vM3{_,LVVUYp{U}0Uo*ak[&K<'`o}o}RN#Iջg6D ׸h1v*ޘqM ?B^łqc{%*"pO-}Zn(J=#:z6EnDJSVI#ab""<_ְuBq~dWj]Qj5`0u]y*+WPKIUwƦ}qajhӋo?񭽂JOVxtB\z6v~u&V1,^N0i,GtU%R2붚XrMAa5cYV4hs88N,;ZƇa"wޗk`vnJ؈ R`#Z|sSvql;N72bՓ$CD g.Fiې&"u@0(NLUUa<gTUo*pI+#.3&BO'2ۈ=MȍԬ#dww$"Ï*7H|5hIDj-Q|2{?qs%2ssF 2/6LhHc,icf4e.G[`|o- ]h kee]zYLsKI4j^ xXlF& e!˩fr% RणxV z!j)ϸo0 VInmE# 1zx{T㭏?mOEb9̉eƭB#{]?<]?OHåSOCFӽSѾu.QNTN2s3xY+)7 |\,>Bprξzo`Pd& .'r٣2^N0 mb?E}iL63v+m\7瘌xb"Qh.u],'.Ui6Mu߹ 01I MUktw8LDj1{q񡧑0 1 cD/MGkX:C!K8U}2b(d0.e jyy3Q @AtDT-d`b9yKW|#ҳí3a>X&DžazfDJSfV+SSnuCt)bTR$ֺAg'I]K'FRι w&ne \tIZ4116}zu.)wt%4@IV)V"1gB|:qFn|DNŲpؒݑ ?$RkԍѺ {| O,,]v}XZ414iM#x좿q_̀2bq9˿VVVEEzu8tf,LGGBS5Jz.MsxΜX9o*$GEEB2:x!O[A_^%yB.z2, DDK֙g+^R2ZQN\W  L֓twf.}~3u!xLp-gxb. bӟ&U >瘌xb"Qht>e{ FegML|K^w_l6?u̟^e@t7 olz|WSv^` a3;ǘ_VVV>~8Cb8d[UP9gFC:=wh٢? %KSҐݴ7|y|΋Ѣ!lfpt t et@pf- SZ&f!b)yx"柛rYxY+Ulg |;c~ܫyl#:*[,S^͹OŶAr41KDmz]?<]Zv#bE̅fοX&̌}5)2r[nx>*.52{W!:.4bydy4o&5Tn|S ~{>.u],'.Ui6Mu߹ 01I MUktw8LD&VeUmV eta=Mi6.A{$U'4aa'|i>Zb YrǩAb(d0nݏHaɇSUzBfR";dj12N> YQ%Ɋsʹ1'[H}LN vGPiʬjbYl$^x\*)? ̍k59&|qO-]ܾzvFDDR`#Z|sSvqG!cӍL;Z4116}N!xvnЕxtwy^Tma8N<Θ3 !>8o#Rp7q>"7Rpؒݑ HvS7zeE'q3;;v!ɲs1s}}8FvfDF#t(7Exy$:[ohF_+}V'v"Z\ץ8bvY`H2>RTM3{nnZ䡿cv|ʐ\:,/y IDAT*Fb4MU5FhX~>/%[j u@tYq.63_x+^q!~Rq2Ç߾YZ|)fe-SSnu] R/J!aE(uOS^uWmp5ޚn|#Xηaֲ֥ۇ^,ic9UeF҈abӍLXdc5YQDZ4116}nuBCDnz(uOS^ul08m3%1,Yǽ#&r) 2/hH{f-0vorM8Xﳕ!ibniv9F[뺁gs:mF5[{ vUIwkQlf=ݣ/z|X~5P0 ,[~\D։3Dw" +VߤqfOp)j$6wb4MU5ЩW?^rTV;NĦ9^eX7nvTu]`f/+++?~5=bW_}1W%)E޾nl{%]֓עٯfYy_[e" yFa,)(XS.3ϨM< BG\|?N(Jdp"kXBc\3:,Ub?mOE"ꛍNmViD(_o= OA NNN&<ӑIRhp냤3=ӷ*xׂ:v֢#w4ֿΠ[>Xzу-? 4V̦NOϒhMլɳӳԏ}wߦz8lTˢyۃ㔝N9+։TK'Βм9;O%ϒRmZ!]|SiTJT$v/nkM~ %,DZ&/޼1xQe_+s- aoDd.yguEޭu5 k ,zۗ㦋ri<7 ԨK*g2Q AD[nL fοn&.^l-ᧃv͏)md-dMnW|<6[ݜF,ϓ,}PE67N1~ac7O-/Pl5.:zS.x,TYxэlhjDDg\PS^N`-<w#]ο;cWg-~ w,w\y^|Q-.NO:LTuBQ:omS:Ď9LDƿL1 C CD=3 jb3^xUI^{9@?YaYC{ vUIwkQvٯfvCz\=P=~-걞j杕U:5Q:l ,Brw }90DR>Yq.63_xk6=2Ç߾YZ|)fe-SSn:0DzTR$H/>|A֢~wճ__켇{%/zZc=;+k5bkӍLvs } ={2R`#Z|sSv1JvGTO6V 1;NJNoC?]x87[7OS7scA3^iK/t}-hDd))VbLN;!''ew3 wCpOY.q0bLg]> k_)\p,,]v}XrM8Xﳕ!@9dfZiEhsb śi3CLsKI4j^ \C39BploU){ʫu>*?h/jw˕tՏqy5 i gUգ͢hd!FTUSooŽsי2g[\Mq^ 0Dj'<%kݫSWݏOoM9::d$YUwA7YCĩb.k3y<ӿvۃugj'y1rDи<7k~ܠwoۋ>;vhLGnuw0DxuY{Ogs\uWmx|t;΃?0k}p`0kԼ?AWkL}z[@k8gFC16y}uǵt90x4MiH=A{,XcOoա#۽^kke>cZj~ ::v,N{SftKFTp<"b{"x߬%mNO k<6##aJPh,n9_>Wn}[2U؜tP$wqi6r|wtE k O9M?ދ%"^(25냮Ȩ'rPHMm1j>.b.lo4wde5Q%"1v*v7G̞%UK9X'Y#(7ZDD݆qM ?B^)GDS$QdSl4FxP^$ʵt;Aqb%w80 1 cD/MGkXS *VRI.kWSϛBϛ=0xޠW7(~)*2ä)XN:0>|,B[Ű]'+oBn뺀2y!=:+%Q\l3jnmug8VZo C8dBw̳7槛ML|K^go-.փn8uYF=tj歞m1]҃Q_VVV>~8Cb8d[Wzm6`P΋~0?qӥ) iHe@شm7Oi^C_z9*?.}6pֳsҢWOx::LDCR0%(Dy|f6CDȍ hd\Sa.ݲ}o'6 # vadBSUZ:]S+MdUmVΎ`Z|VU)d Fi 1FOҤ}Ŭ3SۃWj]Qj5`0u@> 0 nQ\l35`L[՝[/WL$ )OpG{Q齍41MO>Y:^׹z-܁^!i}xz=VwV~?<*jFeR[Yu;`?ȹ#7Oygkki!xT4!.05J2MpWZj^m`g&D_uA~[ң!*_21 ylFFKÔ/دMWX <>3Y,RU]\v\l4R7/_gz*l|:(E-˗+٭ϱ2ӤX^"u,ssa{}/&+Zfky3[Qgs߶-mW<K~|sr5Z7Bk7O2p[nG*]יnޯ%E_ޗ5!`K5UBYr~\I_cv8OW#|V%Y=,*Fb4MU5ЩW?[ ڒĎsי2g[\sK A!#ީpnhrR2&kݏd"RZo<gX|WZ89rEg_7JC(2mCFs\엸VtwƙGL}c#)ݶwJDw齷u3$""K s䞞V:25aꥳX,Ums1Z qO ;E-xJvsLsS. 5k-m IDATXڇU[8{p~vafUI^_gÏshtQ񜈔RQl*4Ykig}F=Շ1XOd-mWYWT[\N9gt9P >Xکx=b W"c ..G`dDCL/:g~.>(<Å1y"s3v^*Ãr 酈n$>O&OdvzbH Imse].s)~bt.QT&W҈s:m|Y#2[BS#҉]1V{r?^xj/B?˅=ָ~)Awk(h/%D|*3l*DBYD=VRUJIfQ MDl孵댼XuVֶk`q5.qȬ]]?n}p˹YtYHH*Nt4YrjnfWBԢ8n4v##c 0͢zg!dzaRY,'bJBb}rVVQ<^z!""";lJ`Hۿ۠CmD{OAV ~aŸTs6d5RQ>ZdE%*UĨx9edHoA]c&DZ*Q)Nd"kE0k*U)e5Mc6㴺ʲw=ևsٵ_j!"xgIXcw[tDP%|Kf]j-{}XǙ#0,0ۍb^!IJ a`5Mc8{`>곲J61 SvɴLDBdt Zky}uΧ,9"oW kl_DD*0J~s3zGC)*7H|5hI3r%eSxmVHl0;8OOA ! nzU'*/4M#4e`ķoEE3^y!Oy !+eϼ{H3Q)c/e\ @Ӵ*<\?K`=N"N1B!]"懻?[^*$wg# \|B!sE wƎgzvVVt5yg*Q$(Oȍrغoqv&VGqV=1>~7/z΢or)eE̱*_G6KON!s:={G36HKE΋,gfS$sby&N};ļ? Bݙ@/&VSaRuw_W$՝"6/|DVO@ʻ]8K*m/zm˥uj鍥ʉjyo%Kj+?I~\\|97];B!BB!B_8~@!B @AVmrNn_t:{4]OJHY ~ՋY>5]v3df !B!BB!B_<i(⑟V?6Q -X40jU$rE^++YOӶXgcUI$^B4S'hme ]$z1B!B_^^? ;>ΖWmzWs#]Ig;$ƇTS;!M|qa',33!wq0 "B!a("".gx8q[`("ʘNS݌.ilC 4ug4t ptlxQP(Ek6{WeRrS͖nl}uʹJ.٬jKFje!Bנ?<bsm}t7g_,d"TK/oelbf(O8j6>l4UoGou@XEu(8ӻZYfBjI:M3*i .Bo$IAe#tg Cs,AڅB[h8uњ{+YNE|ՏYHmqNn+lTR[|HTU`-6EBdr,XYHU][]ܦFÞzS?__-/DK땷ūz(KF p8Edbb˜{A X$ fl({xv!rTP~+B\@EQU)ޤ j-ДTjSwB_uٟ\?vDs;W>Wx5IMKӡPhzza BIT,www/y GaAn0њHg'mO=^Ie)XEA'.tZF.(Kg>HoU/}]K^wYֳn(.;~tZj߈2YPMn'/tT؋DYn3Wl4ٷ 't^RFlL!3To62褮4jͰoԐmggSE;ݠ/+\W[ꖳBA̧2ɇ\"[>6bRZ6h-HKE΋݇ <3󟟐.}Z;t5yg*Q,ɥ9y2Ǫ|5o%)H ԅvzU+l%VB!0In쭽;m(Xmt_ڛoOُ og=PZ;R„@*m/N.&V^"B!!:!B/@޿H[zB!B@!Bk`@}2}|lXVЯAqA}bͼv?O_8ޟ]s'k枿]wk4Q0K!B!BB!B_8~@!B !B~!B!ԯSI ]e!B!t zkP7-~pYU{f !u3LXX, <5~HӡPhzzaBN}x9_-ķ Y !$ݓ~b۸zjoaeiaaaA!4B螹}ݓ]_=0Ko !B!/? B!B!PpB!B!B/!8^|o?V+/0K7ͼ!]!B~!B!ԯH=E^>2z99|,>6uy9C3~dĨЭ ]/7Gct#/??+y#;JU[{ͧuw}Ӡ z97Ott+%t7*lc3uV?X\nqFXNnPN%t@! گÿgI)yub~+n_4sJl>k4o"k|rm4^(90ɜ IdPmk%ͩ`pcVFjٝD!DhPnQP(% 0~@+lJG6WU~=~cV2ttKSA~w%RG0Uu!,!ݘW5c^/&FjMrV2&E8@.k#8 lTR[\!eh[ՃD?XG#jb&_k˻myip Lu^l+)TJ5rB]vaЖZ5N_`|?a\ bl?1̺=J%3{7~xpy{ t@ m7{v;5%)v ԓKk,+F;beeoM̈́ uSZMz+oB!_iu5d`hݘ˞ydr* &$I ㊅IRTSk{u0f ).)_;Q> Pվ& D81(|-ቇD+xƄ/О<n=̒+Iqnp,VUUPc?KmbQo}5'(ŭNh*o1B\{0K3B"B9n UPOQՓgvS >~;6/~@w$2co @=[RƢ0<+?~sGz1(5cS{'ko*>?1Y:\zf3WVn^=]wH}Ѯ:r\愥1S=)3'`0&&&Bq^__pp |źf$D<)a]NK^R# ں1MO)*MQE N\KL3K}Mp3a4@>)!xqJpԿr mT|e𸭹Lljx2YPMnKٽ??DJk9i~?6\.GwY~/ɏV%'~׵cS{'ko[ ("T i0R +MeL}kn&H`X$xhMꩣ/f72g\NVwFʥA?~;~`Y\ TH&s!jf@7SHg\Zx_x6?ŕ̘!:npFH'*ObDM!ԗvq66vޮkb7THXcFY>6bRZ6h$s?,!?(R~o>n_>PȶG{Gomgg~jcS{'_֬T" t}*id;XY ґSf>Yi÷?if3:_o?~6P?k^[uF>BiwN1:;Vf3>qlRA8ha4~vťͯ[K|zv _DU._=C|N&_zk62i}NOpώr{ +CB!t9 W*?{1٩nuWW!DB&w .g@ߏC!B}B':m5bgjB!B!BӔweOZ 6&t?n >y\2G~O/-'q540Ў] G˅ [ ܪ%W;E l}* \1,܇ /B0#!%UYh[{5I'hh,⳱*_$My>.gx:6;e_[I/ :LiU3;\S 4ǣ!%v5>h2KФun=S3c6R,&֓UiAv#%~jkŻ?OCwһE^+:߾_<Vzi%u*4DvDMTE;[ΞkmD^Kk|2EėnwybB#JUoռr~yv Cсi1zcрlrgvzZϘ/5W77[`L=xs\(R?ٛi3<8³#ޘDU$Y5{Cn!^104:%@t+[My0l|Hx L:k[񎏳l0=\G3ō\߸җJ4<.;~scf" gƛQac(j㭣]G#_ʽa2ؼ˓dGع[ +w[iUhv0>}2jx48p# {,\r+]Y7ѮSWutnr̸7iqupt8=VCyjI{Y=𹥸"nT* 2 Yÿr,KedY;6{WeRrS މ1VkR ]+, lFa%@#Fw\{ @%B _ | .єk<|a&#v#)kTw 4ZHg+c;Nuw3^tipcVFjٝD!q PJ(;ƐCF~)\QYk0cF}X LS#I|ҩV8o.i~5{,ZdjO\Kfd@ c宑 IDATFN[{K {nFF|iE@e1CjI/,u 7g_,dwb4Ja{H[HPEDkMfO_iSkRgacq*(_ !)L wOi>_@~{5̥eE'6 Pp+wE- L=\zy'm6RHӌJGB;DAg$-gMmLM=s 423=TYp8x@PZ$ Bkm;K;;zyXg{oiIo^?o죠]U5Iy1+ޤ\ى`cqZMz9Nκ14(k0Yb=C?Qݯ>X[²`wE=&.a}te3v6s "VR\Gj䨙\Z#dY6+{֦h/_b2yS_Δc^g#as-0 T@$UU%XFQ*\(蔹\;4؆irN KiktS]יq%YpynWJ͍}?x~ˢ?ώni|/הk eh[ՃDs>e]+eVSnj O"VS  \dt*)NR-`1D+5q &jٝ"Qdt b1<oyH*챜+`ΧsM @qOɺ %UUIB(SVDk&h>w}DjU UI'q fl+<~ss^KosYWуWA?NNXXXhe3@) >1vz[-qZME!B.}z[}͋Moшvp/w{xv!rTޔV j-ДTjS3[>qzzZ&apOҹtz4 ;5|]DD5ktb3DU%\"e̎^nFy I7ԭI1n#L:5%t'ZUU-"S{屢`svE흵ŗϱW+ h~ PUJzhplLvƏWHnkAd[_uO[h/t[|/ѡjn-m&IH)Z} ~o=ڶ{TQPN rm>ןEW>DW>-m@[J$pq;z12APE$3`(rzbadD.YyqBo'y4M(4jMoI`=-ɺsS&63 (r*y<iLahV7OAvacAa bG^!U{ mo6EV;jj''ʥ9y2Ǫ|5?ݯ'H}e|_H陙bB , ):,DWJuw[uGܝʗsN1›B>1i,o=__S4bT9𹿝KdpMbt|fVy7Q8Tx~|5zh JkxOLZcB4! vKN!qM>|he㙊o8OҍE^>u{s7S85FѪ(l%“YѮ~٨oo+󚮹EAPD)Hͦzm) Kr;I?'Zhd, `juQ]J_eٯo3@/!Bv{W1!B}ww[ :m? B!Uq;B/B!BB!B_}~y>vqv"/э3#!%UYh[{5C#ѰndQHnkGUvJs,:6l5rH^^l?z<*|ryGOS-⁗ @UUhV2y27{%u4o}n}|0aBzic`iuPkC5Xr2Ze7 &wbQsusyԃz؜PN%D~2Vji9#<;1R.Եٿλ= XX^xs1rM\`حU i$ _ Nz;;V% LJ] 85HWxَl5IGd!q;>ΖWmzWs^j";/S#ԯEȤS7j3%~V?vQ?PDtn$v-Tx ptl(B-6$8bAJ}uʹJIQYV@UffqPhKbfrӬv3ceiqupt8VCyU;Z$Mt!P#֔Tz(,  uO(Ti02|&( Jz=SCV4vfT'cJxɰ4) "q,ʽ2@)S M̩fK3@ˡеB))r]ŵHU7tr5SݢvHcn}.\MGGMyW_rGn(̫/vUG @TtT)sk}HY<ᘕZ|ZVnÛ7gLV͘F| fORp˗g]DY Q8404r*iF#+*4Vnj7{hQ>gImا423wqF(rz;L45o߭M᠃RٵwKoI/{fyg>^f@XEu(8DQdYV'w9cr|B9m6YwI:~"7δRߢv> xcvCidͥ;.1CO_An^>Ki&bzs^*BHB]$N AeǴ."7E0#[5]+eVSnj nΧsM @q/Ȧ?jef$*Zl6Ry$Ing1ImqNn+,UZs[e2jϸ__)IGh W$2TZ'5~ .Ր'5Ύ{^XX; D81(|-U yVd# UJԪ>@f{m@ȖO<Wӎ Te=S-Ovȅ ` Ez]j3<+Apc)&fs|rΥУP}]z|'^ꆲgk.L5:Gbq}yU)?pU z^"=ChѧdY'wt'Q ҧ%G(uˡg'B OU6]I]z-:fk|[g[K}߱twg@BsPqYs;kI+?hA6vSxzy7lݼIe)XEA'tC;& Ի wY&.{m馼GL-j;N6V=_2uՆv3~L;k0~86o[Zk{E GR|ko1G}%а-(&r LO)*MQE 5bc?"s ~٣.;~P*mDKFl 51CtZDR!̅hBB:|<3z;|SX3h1Zxw%:O)B#NtD_x7= 7ޜwJ#ۅx1h.va{6?,7yG'J}X1:lVFpnm—sN1')B Of cFZ4{Xs3OCfS}ll<Я O_w{,3OzehK-s,dUj& rh${8^IX-vJL]61uJmXU6V濤-p;i#"F8q[wU> QTHfx{( L]@ P;c7xY?o}j+5[{wx94>z@''o7LmKE8LfWb@5)\H{62+LA4Bhg$]_,w` "wW_Z,'>BPeQ=x"!%w<+ļݩgf̛آkj"B7 !B~!B!ԯ<0~O}E.MܸDҧx353f#bb=Y"/ OڪW렬H*WHm*"C#ѰndQHnk0puwd"䶰* \rk&& [ ܪ%w;E$ڮŶҨrjf38(% e1`@}>ө4:&QYV@#)zIC\~\.&(N|LPnς"B7jPSpՈRM&rύ2ZEJ3KK#3C t pP=X}_!a*'rM6w9<ᨕTǞU0&fj$N>,2W *.W%ఛ:W@\j=^V_\ M3$40~f!B_{+YNE|Տdz)Z WJ͍8A,Cߪ$ "VS  \dt*)NR-Dϲr|)̫Ci7v*Tvӓ/^(O`#as-0 T׌y43"b27Ax.-|p9A!tl EùA0ioWRG s-h.,v>u_D蚺C!H##3Ŷ A|3O sIU)IRo, NMڧRR!AP#6<r ;xRǖ8ZߋkƄAl~_[x.]2 {gCp܅Bip,ldԣv`phWtYKJZ| {7[!IEQEJ 7s\M@l2꭯DUUSogRA=|*2i庠?ψ2]tPAڕz'BXdP0RGoJN`ev-rTN I"eu㷉|y@{k㇎J<{](m7!+eɵ,`BUEU@F*xBöl\ne$0>4EI%vu;H3"%e?b&t ě&p$`nqit<iG^Z Ȫ7ZVt ՒHV&T U~-IiToȶTKgvnvBg?(彤#}!e+'Gn;{?SL+ڶODdTζ:\31DUM: Ik\&dn))3ɇl6EV;jj''t/1rW{-Im%  BN 4w/B+k`p:B2C!\Hft^=۫y(o}_ o6?z'س+ɵJTv6rg#|1ZL{kx[b´V.|.! .pD@6 P+yP]/  !=8=! a hC!BWC;W% bAnlfB7ZB!?(t a hC!BWkB~k{/~WH!ЍB!B_s4 :wB!^3fhpbI4#|IsikhOgًsÎA|u50ūׯ^<}0d)./^~97;=QG^NC SgΓ6:ūnK].&_:Sw'4h;ׯ_ztfԮ{{g[[e峇a}=_שg7 ʠl,@1&2{+K{.5_l-n| L](HFo,Mgƌ. yբ $M$i}uW߷_@4v2%ry:`&T]7ߗǔ=-*/5W77[`L=x/c TBTj0l+Tn# ]Ig;$ƇTru2xŞq4h7K3OZ^j94ZVji9#<;1R.ԯP"wDԣwxMsKqKEFU Gdž"Բ;lC@}uʹJ#rfmV[4R+of)3.aDT 5>9RuƊ}>ɐvD%;tVTPUN Q Iͣk5 6_:*K ߟn>}/u4h=~t^{ 2yltT VZz4d3[]͡3T}g 6{WeRrS:W4bCGGMy#f-KedY;ƌ'BATkM˒_cI5;<ի/  ; >fkmȰ(O8f߼&V `LV͘ƞhF%#SO_z57t}'7˅jmmا423wױ ujܩʝtD.S4ͨ|[{ߟ^XX=vHժbw&vuJAHV-cbo. ,wSgrvֳu\ԭ;`jq(C$"˲u42R{Wh!i[ νz(8'B`vSJKRޙܮW@ 0QRvԋ ՛ El)NĈmmf^9fUV鰧׬VJ4ycA1Q}]yu(օrz|aW$*Zl6Ry$F1Nb1qR;f Gʧ[aGcAn%:Οz̡G vvsnS߼^Qwx^? o[y U)\X MIvPj?Z _ՌI㓣t.ͅΧt XOasەk6D.l~_[x.^->Bѝ/i LOsATvz[-tWqDJ/-gx YWу}^'>\|i"c A PU?X_/ tZF.߉ӭ])o{g-)k%.0sՊxn(EPvމ8P:eAA%I"h#He$v\s1E}bFW.6 nVUi\VUU83Kh*Όjc։We)XRWb^NM7䰳wÿmֽqj b *IzeX\_^h;ePbbc?"s h!3To6Qk~K=צnc=3E&*?{ж6 5 - Y}%ױeelpMeKB) $$0jW4 @:afbGd#VqXP)e簳BiHzb {öHٮfG]wG\b ?bȝ_nvpxJI>{أ^'Fuf'a[]ƪ~l&"fK"~]L>;?e4vg?9@7d/J_Z OjLz}&GVkQp@ Q&˪#2d6/E謏v$'I4ϛI5uk2)ArW/:N7#>KLym j>oN|Z ~v'sTZgvm[ ][l$ ;)*mn>S w:1巛"T|C߿1=Z,| ~1jŇϼkAMhIhlPUz_w1ykͭg9m,ȝJк:1UYI]/d,3rxK V*5$'['?S8ʵ OЬ+ : Vz|1tgtFp? 1ة8_mFLG抒kjʣUsŶFI$'A7B@y_s{C[}$OZm3{h-w$'I$ ~goӧ/J!;g?9xVF@41XFIS$'AԊ?3Gw؇}PrRE|Tx8]ÜO΅ +kdE/hZ֚ (bpoڍ?rjvDb~Q;Mt`Cŭ7˭SoXKa3b8Ǘ3<d8 kg-m8#CLWE #  ͺ 0,}N- =\-!@%اdxWFŤ@caem?P͔**lQxekZgA+/J 1Fh!ShO$"kV/n*Uo68 b=ĢA- ~hս/Up FQ&^LO1JnJ&o/Mt(DEm:mX] U,ٙTdRp)t@WٳrލXOdCo&_kNÿ3z*åv?Jm$Kۭ׾ep%?tK9:ʹfZama6u!} c,w7Nn>N[<ien3^tizKT QqQ~14(c>6qk[T2"ɹD]鋢rY^EvJ;؟! ۴3'rg7"XMmXUOƹr8|Sz)?a}k1/VX:3J]D2x& ;lsv_tn¾lɐ!hFbAIgMfzড&3qnKuցn3@YɅ Zs /~n[;31er}vA Kxv>|Q#rxs:"!g4N%2y\VE~cNĂN KaWapʔEs^Ğ>*VĺN;<'ͯ.Yɵp3rh'g[.ig (D*4 B[p"vk(Q;x@=6v~:y|ŵl2щ~.{l@P&})R& ,,-9z =Z,7_(JWkǭi]jj.gOx? M7+֓3\I,S avRDARY+Q9NnÌ)|=aBPͤWuyuiZ_TGo"tQtfq"8T/`]MV$ĉ O5a֥V kD,7#oô.wN3 9wڔzH&"9s|MUlOFAlϟijpBxd<D99q6A?ǵ/AAV6z  5r   qAd2if/}Uz`N "   EAAAQߟLה%ML8͔. |:908nu0&+gcL|jF|&_|vg(ɝJ𸥒([(t[b6SŠ `Xe5Sͥ -e؂3MHǙ(2~vlg1`Mjtq!>~)J}M(9uzWَeZxȯ`0O_/681(lJ}TkZ-oB}}0P FO.0GLz˭N)} ?!iԴg33\c{$"KdU,خw ;s\Yy7\({{=F_ăvyWF>ۗOFQB;4;hdۆ$A;v;rR@S=#3`'yF-\:k=KB&/)3 "` 8܄^ɷIס]fJ[bS%vV[lQ"A_it>ƛxhB{t-z@TEg5MM5E 06_(d"*&˴ծtm9d6 p lrrUT@6 }rJhƟ 2A |r[ø >?`k5⼉SSqH }+ELéAǟ5毨`E K ;l\]TIgX?X&}B=F1vM R5vՉŅ`htMηT͹4%?_,1agu"^AYİV O?w3 !6NSաTA}v3Lne]Ba~T vxu,bG%<ܜZ\!~e@Մas}cmt#^YA[7Lz];^_^^/M?ֿl|A:ӰD ͺ +tpS­TzzNY~a/̏ B 2 r$Y>4QkNXզ4Ğt(VV=QsFǬCYÉ䤰ȁ |>UVF^^,}N-=tҳ3XwBrqk:( TE?ɀr=?׫Z($ц)3 0T#*]@m  syZ~3/(:@ޢV}UQ<=r1sjRߓثNS˧󳰳_W33e*Sԫ1/2&W2yL|i¤KF&b@Bo|:P& B^S{mBv=A[r>WZ@7[sr w[.ߨ@W345p,ޗ*8cƑ1+o%8oՋɽ1M@Otb.߲,FM =?Wۗ{Oc"^%{L~հzNͶwۡA1Sï'[B}}ܪ#QU.)4*֭dv*X\\"ޮ1Rywk k5mxlZі7X m|^eb(O$ϯNohgmݨMwSj[eUeXMUUhp8{_(|K( ӿq kߜg\y) IiJ{u!Z] k!Q@0\x`|djpaD<Wl;[K :ǂJ=.$HʹaXױI<&I)$ E,DHUݾ0hJbͥp|]$c;UuGxMUKxna |G pIX{MTec]ׯ4E51`a<؋Y³SVKX7 NqrEl+?$ ЄSa[$lW B*Nq9D IDAT&A< .rkNٻQxzhEʺ}.WBw"ˌD$)X{^)(׉{QBN{U"G2^8ο0HWI,6h{ICPeI<Ofo?Xjҥ"tQtfq"8TP=4/{:(B;]W:(6Cы*RWV9;cꜤO3>$|"d?$*9pA@Ieta$9[bmaf-r0cJ$_O"T3^4tV#X~N5}DNHw`FƝ'V?>. #}:j.kOν`ATϿĸ>Һ*dHMK{Rr*lX Aۗ'7bݱىF#6%A<^~}gⴼE 1H$w!}fMd0yciV))uTxrYhqL,ӪVm <` 8܄^ɷ  Y.J DqIQN]YY͈ @,iWuGf'0,M ko{2Ǐ߾ (w:nX-* KiRW']a<;Ŕub͇O/%4lRauv)`BrYnK♒}z-jib5& $I2 T]4 @kZ60@Z1qj -|_%§˪H'aVzg-~I7iWli-W˧:U33e*s*jv2z }W=0'$_ysay|wtK/ oL/h .v%=3>=F[E (Λx5%tqH6Nw3qtNÿsƜpdZ{|СY; ~jQ́dܯzD¯I$O`Ɖtk"ǦumyxOƹr8F)O$ϯN/ob>(fwrjd`][_Qy^Mk[0dw0V說"F(c]IϷy?q3~k{t']2~hv+}r 87e\6mr ~D$?$8LPpraN Kfg_Y*v.Bk`W*+  @:afb_a$QyDEGzu6L {"I#4a(uDBvyve򸬊oӉ)݄O2fIv? 1ة~$OWk4K/C HB${T%?qwjQw:Q䚚h\DI(am$X"Vیz~yc~D$Aam$AkGaMTr-L?]psZ55)ϼ{!~"~el[tFOC+_]P2fn6R=l̾ J<;lp&B6$zMѶ`mo1 X9N{t[P0@RiNO8MЕY\,h@Tr̾Xbg@6 lM:^&~N 7Y]nRGD}Y{rY10arEZlz{v_kS^k/tjA2rJh}^~ѽ~pbou G<<Aq-a\I8o9`i&iU]U6rl bP4jkzDzF^~m(l;[>̦kqGC\9,ZfbNC̰LXrggܩdme< ORcwC6g~ w_RqؔhbڣjCbX|>59⧄<^M}It`c_=ۛSo̰[8B_ORX-;0j +;%M:+E5YMl|v[3>z09466m̤%?_ p?{av3yu,>!;~;&K8F1vMn.&gX|!j|ܔ[Y^^.OX"v{Ry^w9):zP;4[SUyIEҧO?j6d~Z|ǿnq//z4lxPN]YY͈ y| %@'_Wvؤ{h;`3lX>XΡ5Ol.vͦpm7bme-Uhs.; ^y}Rzp!91z1K{Xf,=aC;M-/////ݯZi?ߛ.7>w7WK~J+eAIs;Ht#~ry>\͟4ES&@Xm}>/hZ֚ (Mi\^ߪwy60'u#Q1Fi,uQ^5f:!GܬSoXKUOO| nvaxercU*<)Ex=\-!@%1ksPFp"9)lG#"(۵NJXqUz-OYfkir?[M< Ьvh{|Sk6 Uet !cz|9+-z͡`wKrXf,{59Xo<7x @m6i UmK_z6 f_; [ܧz#r/%lĵ#aC? `6j\>`)44hG-}RG2O.֪mK:OɛgK&]j7GG5?E\:# 57 kތ2lryWlJQxm<ҏEs޻eR~bhtV`䧉v; kkM a(2*aɕ+.M~eǦumY}۴3'rgizkp^h 8e2jXm%)yʯ8{w>6ֽyK Q뚔A.`ޔ'WR_%3by+l'\9UƒE0EqcFz̆|Ĝ7 s6=pij%BP?pk"`օ!&OĬ%r,Nn,c $&,ͪxf˘Uw۽( yԎMS#2LS$g,hKpͼRn3@YɅ ;$]ZSKOkYs /Gzͯ.Yɵ` '/bPh7i7GFL qY%iXEwxs:"!gѼ&LUGzl ;{_ݹ[X;fGP ڃ> t^Oqx}& m{c~2#2p;8YCbl(@Ժ><8 <3}v8׉{/6Oݓ!gkw]%goo× =z!b:6Xeyк'=wm $bZ:߾zvM슆FkiqM|tr[[띇{R93gD9PBśx)tJT6ۥj.cK$|*Ǚ'j.gOx? MJPν|P""ueF?NMIetR=whMza/t@<" u.muɕÌ)|=aBPͤ \j =Z|:4`/v3:1~QxPρex=qOȤO9I&g^}H2XlnyH}cƒ{|V?>. #}: b5a֥V rjQ=9vS98YCk6D?Uoy"tQtfq"8̇}-z2_Hm~<] F?=s/߅JN _ahآ>u<^8tMv"0Rj>-d6/l$~|D9R]Ʊ}2Ӯ_B(7>kn{WaOAAdhSyx  ɭl<:'%epw?y   qAd2nNW#O?/ +lӮ/]t?ͽ   ?AA1yIJ/f3@}3)C3rW7Td-9^@z͢t,;LA(&8|)- O p?HP~Utpcpq91yk34 [w(Pg1`MjtLAJ;t1Nrܽ˯o%ĺcKFv0OAǻn 187in{2b7A<*ttNw*hWj] 7,w*q[,PGƆ_q(3l&X΁ܩ -; t${ZfAxrYhN{t[P0@RiNO8MЕ Ӱ@؄a)'8ba2pjPa0yciz|~By ?YY]nRG㢣ĄLb8_lJCxiE@q9$A_piE\OrsSjusl搚rYOxK N4,I72zM.n,ċ{}?29*Ê!vхX=:e &g'F Exz Ьv_dĎgO$ZUvW)hw|G۹v^W4س@ZD <+!b8O4ܢ{/ te1l*TazMz1Z?Gd~*C|l?m`]4kȎc(O$ϯN/^]510|Pyrj:7*Ehp14** EYs3í]g c v_nfZama6iF[~(܅s^'i]6*ݡ<1\^N|cqr]4.:[T2"ɹD]\#W4@0u>ZBIg de(s|v"A< 3}v8׉{>qB# hFbAIgMf1%<0;2eB[p"vk(Q;B߸&ʁ*NN0.`U޹"A~oUS=4/{,"tQtfq"8TWz3v&~d.K4Z~wLӀة:?gMx5a֥V 拞b%Sj';7x0%2}7 ~Ow:Q䚚h\DxKlTa/8<Z(`k%uPL[ oxݵ3׳*A<-w$[хz|߿蕋U2.AB?ODsUYh$$ޖ8@AZkma/ڃ?H"I-  ~W@vvvs$ ϟo&{@AAĸH   q痈߉31&o >gvf5#mn;LCBĤ`JWGë0s%e56Tcw8&BkrKZ lbitYfqF_dݡ+ g:13oï^Gٵ`9_hkP˧s A#Y&zf}jeD;T/fn\U2:w<ʂ~+#K"Kg.^_>ϼ_ R_<7q+nGا31_@ pՒ,W@cXX?>4&aK}yt5 À8Ot^NU 'MEpag.#kxn.8hhp<*[+m~81yă.县| %V~ocx.FL_o_E D%yxd"⢺f"QM WK$d..Nj:tAVJWr~mmM`AN5]F1@ס]fJ[bS%vV[lQ"A_it>ƛxhB{&iU]U6rl0:`!@qޙ ot /\NruUQG6hA c;,@*+P/֦|g4OrJhg׺Xeh‡Pkm1N]Dߎ ;&$H9;ɞ騣uYqhy8?;J?Wt. CrNaLXrggܩdmecɭ7E->_(J_q(3l&ӁŏA~l3,ҙaw,nzTl܋^?PhR˕tw=:ƭb*hwX/*TzxXM)h$; (.:! ϶fuc`HBI\VW9/MI:Kڅ.M.NvV]Hkf F,,6~2V /-K&0T]e*]^Ͽʕ:hewipޟ*u4x. 3 5 e@iӄ8cr>/0pŪvvbUcVs}MX"v{d_Ik6 .W50]ttn׎ Zbm)` ׌ijդH!Ba-3JfJKڻ劽Wm㕗 &/>D9]tjg%;7NfmuIڹԩmTs_(ĴOȯua1e8,6 LUCІҵsǐpw%wV2ҫIA K޸0,{厄QeyV*#N2~(? !ñ H=I @kZ6b)ͼb']^ߪ}ܟ29*ÊD[x*f^2Wb4g; sjSm@.~J^5v0EQcٜNƒNQC?!q~;!za@֩7GQX,~O5Œ˅ 2G}w[z-^b+Vk x.dֶ4j0DnSyxoEh[TAx 'zV5i fSvPAfQ< }ߌ ̄f]Ei;۫i]XSapwxZtU%y6t6 h|41jY`>/; D%{p`TUgTUZV!3<5 46 ab~{ґ\to79v۴f!-(w8(gVv;,o*wr0lsVC&kBx1:wa>U ,**mz&ߐP;Նp١\e8@dd"F8VjHkάFAgQEC`pʕirc!5BB}@%G8!;wofS5;^ 4=AR̹ިqӵ m3'|c~qav9Z=RˤTEѼmxmZ\ѩ?PfөTH"$'(t8됅 P2 Ֆʲ is^,/5RKhmEU h\DfDPKS1 \C1h,u*m xBުj@޳k0 ]o80 +08#Y zV_"ll*ev; @ZM\v}뭒ެ ฽y6lᠣ;^@*RI&6ROMvol(Q]缣V2qA5pbm{\rxF$ذbP$ƸDӆ(*_TF2bZt v;륁/2˙O6USlB y͍\ p}|u`$ck1;+Ҥn5,٨jz#d6_l\ZZyO5Bk?DO;>YCl*cF#"]9M:2SQATv"ofv>1ԇ[+mdz=^dbmc)M*T,^ƀ,71Z)?pi]jSٚ AҩRg3: rg2MHa"W/uinIwA M4aֿ.rpOo_}K6+wlgskѺX?;J#+Lu7 ֩ m,HB [Wzd}Y3Qi_;EΠ|+m.phŝ/>#N'cHIeR?eROqluX_mH1qc̊CsayEčA{l1SZ5vGwxn+j_tWx[LɈ[95>khDHO 'B!LxƮ 35P_9KY"owP&Ob[+MﲞeuBIjkm]AD$B@ <t\b&>}Y\\\\\4rSao߆l<ܢDsc_ЈBOB,@ ^x$ ӆ&Kݢ\ B"| !@ SA< ?C^J @  ?@ Av=>^_9~ﺮأs}̱Wẛ*Z&>~K}b@&drg7!];I3͡~{2#]6 04I(eӕ?OvnAɥv."zU\\J;JZǡX2sHr|Kv:05khTX0cxi5ɧue(ɛzmehR>8=<w)]azҀoqqD;{?N~#zsu3xg8"S_g-w _gs zo,IK[ s`*vR-aɮv@,LSIkmw} DvqaTɤdqݼۙXWxr9OgJqG5ڙγq[fOR!Za@Uq͙sG&\u\;!7O7걁Xlu%<;W6 LW#"[dn.-=6ZqE,y@"3a#Z543W@+e׶ s |C*Z)}\v> (&Tc$2vЃ<wgEog&?3-:CN|uo> t9л϶ҁLxjh$ON.ώRg݋0BƓtkl} ҪǹJ5f3yt(sL(n  YD#[{ۙmh(z p㬮!44E>?@ k! ׳[ ZK:J ?0L[Ъ4 S1oUhf6J<%c`V;*|E;lP ,lhҝvjf7k52N_A9/ dħb^;cHIChqcȒNgz4Cϖ$F'9qJ-SbZLC:ldo$8#3eJd>[1+ {%X]N~C?%gR;I&WudƓQUG:lAFV/rxңDwed?P'}}f)p_'zxznbXL>xVu<2۷_?Om5b fW0jaF*@3>:NC?j+B\@)ϚO\Ͻ ]-vS^ r u|v˷o7o]G|Uu2etwN,~vX iLi0'` 賭96F@S_?qx.B<ڞ͐SpT~q6F'(Sݩ CAu[A nlmc7ovYG1,y0Q̗ Un 衄qkuׁԄ.GҁoIwtBKP4qjA:rА-VRi_l}>nr9v:yh4Ģ*J1vmwPEVӉ rjyXv-uEfU7d@8ADoukiWw}hrYQelMNQ}T~/ղzEz{%˿:K_"d -xuhMP/!*ile3}uU_Jr+l(hJHwhxpF };<;kхϾ ٩f.v))!;6a ٢#:lס3.3g^̷TzY۠xߪsےq="Ƨht:n1vܝ~cHg剏~GFhŝ"b,4l5qۊBƅ30 B͐p1O7[u%<>lۓ '5MjW_fRv"1qN[PB*2XIqc(֮V{}`v׋+*K1׍:^0! =|Ъ-satCO]aЧ7}nh&0 1~*+v۴f!d0:hkzwJp\ӱ?gKe|*bh[DZRu];տG:|}thE8}2lI IDATsVC&kBx1:g+[7\1ܬqis@}.7`YVUae`P^2jP.;eX;xd\\/p\^ 7ANWc5+$^qguC 3\*7֬ V!UH! O$͂|4ˀhND̲.(}|-FQ/2p q,uJeR"xC >is7vy3=.VBXBӳɩqyU((Zʬ.nrqެ cq;GQX8hT:?DN"?4!fܘZ;pTkݜdn=׆ Cfa YmK֛#1erFRnxKd<`)z5Pm1D>՗ nUa6v8a2Hhvm,kD]eH|3$܄rm|6{jNBB,Q/3~+[1Tꮉ]iRuy1ݾ1B%00czVMn3x4Uk`ҴJnӽ]!z0p|:mze&rm@[i퇟c@J~ t=%?hŝS5P:ZK}d4΂,4>̼nEH|3$܀r]-]X ݄Dan} zij飋-MZX+)^f>eKN-|ک\ Gnu >nxhXg֩Ek܋./ 2ZZZ"b֒y)+?nBgkS(Kd-b27 3q|:':QƧs Jq?]f+26$6g˭N?@x 7&!](cD UeA8Z=kBk=dqtؐ8_ d@ B-n/>UBr% q~Va :բmFK!ZC+$6Η?@ =14Yn.q]GS.KlA @ @  @ @}أsV/$T" K- ٹI%RڋN";kPٯ3\v=8_cy@shCD>? _ٯ z@قS 1v-w*{@&^֩;SuH|}  MJt^{w2?\1o spX&>eFx$df%YlpG>‹̮>χ8@Ḫ^ vCIț?yqͲlX2sHr|G`1j.^To w9xJTKtqw7Z+vf3yB!pJP JZajMp:(LdR gRQ>v&Cvl *gd ͂uVa,Y[ωuOW*Gs6's0rfq ǫ=@U>Fٟl3b\i玈lÓ~i@,L˗7r3<av{9#?(*]s + Y(JY5S!͌٭LL #CM9& ke&O<9鳳T?;J5+ۅۙ؈uMvf!}1bh|pb~Oob:ϷTUiHA@:[eZ8 Q6'spٴF>F,K!hg~D`C>JF05գԣq!7z(Jt6bڕ\HaM7mlBx0`ss㴃lяoLJCKcR;c>ݽzJqR;I&W{t=N,=<٤Sbg%;p-Omu1oUhf6<Va(UQoI(9K,zvo6SŴ`u22V? /~rF"R:o>Wi3 0 j|*|smc@)Ee@*5&BY{0ZZMw8!]HSv`N\ ?wu9fƨI:kW6rj 9@!TU{;![=1V `-:NXN ٷ79xB8'kkٶ\^^^^S'}}fѸ_>BnWw&b>] y;g('{6>D}&ñ Z>Ua#\]+ YGa OuYݨA@9!=y&m c[})f -@ -hV5֮ͧ!vt`qQV!toػcvh]BZy{ "]7ܱSŸedCaP3hꖹrPA@s ^(Z@k =4X)]Ax<9N5#?|a?Sk)=ڼHh@ٵIοY.1 }>@oyqlZz*~"iBqC(7K`|>B*2XIqs]f~8{qYL0:*^G}KuYݨ0-/w6(Af۞\ѱ9Z=sz6Qw_'QpPά[amrޙبqr9p12{,^Me@U4@/l)٨xPCmܨx7߽ %t\!sjWch8{~į_ܚ* )XᩙdYoe !0`%u/aMݗvaq99;'kk'=w /0[ahTi'CJZzk7'h_5%&!Fvk7*Nse MS 鶱wѽcC4  8M:k21'Blrm{1dD*I1q|`B$1c1,[$KMnK!Y]-sIb[,iqdHW˗Q |ږInꛜp5K(8,,e bw7ΡMf\^n0!{ϗ`u7-G dc( y͍fJ!rʬ.nr30.{!h?ݦfZqT>N%>.rXퟶ@׺cR߼PJ y@x$Ti(4;lٜgpl?W Fڡ"&uq&ق'[\ivo : 6kݾ; ֺ<5[_luVN~ZC;Mx7!٫w9xB'Ǟ7BHk)bLŧSWI>HԛTT̹kئ=8͡DP:Y%0BܤEJr|Si/u/,E56N>uF~9!U0XOluxmp$g?ECTDan/fhR#w7a {|lliil <[}^XK&M 泧c<·]cRg<3_@Y"oh/:$3q|:':QƧs Qϖ[_"0^Xs~31x)CBL|i#/n@~˂z?IRx @ < jq{`OcR+_FD'Z4TU~—?@ =14Yn.8—ٿD @ @  @ @5H|y`!a@;2{cɨRNe2sJ.ӵ2c\aŘ޸zHN;̔. |0SOCN IM>}+Fѵ&_zwŖ/Y( HՍ>pB#gĒcν w/=HCjK[=>P~X3~Ძ^N#2:8CR|'c/!sj<<@ <G+=5S seH'fc'd)o‹qd0<@ ´|1P?'|̡D~E>v.~X3"3a#Z543W4l:SQ73XA,1a'LW#"[dn.-eZ9 V8B(O|8hQۙL{;ӑޱM5kZ(@BfVA&D,t:mCS5ײbZY͚`D,arY[^^˶;C?l6 75׾"@>ZY.CJ:yQJT$\=pv:&@Sv`NgBdHɮ|w#~Zavа&\uJQ1_Z:770 kPم/߾-_զjYxQS)ā,cS~, mxׯ槃 yw|sd`vwrK;y@8BqxEo--g1v2M5fBܢH<ß v]0,fjUs9tkf%>sZb0L&,V\- KrZ{N1[hު z7$DdϧkkެuMP7d$h`ȕR^ /ʸal.RZ#g0%nnX?lqyI{Z)2 q6BNQ=Gյ_;9F>ٿDx`.2c3-:q?ɇԄF-ޮpgng wӰWV@MNߍ;Iqu ժqAuj|>C?0u!.=SWQϧ7 B܂WD*턤f۞\u&AuV^`H{6x]/V+'kGUUQו24**0lsVC&kBx1:^J%bq99;'kk'ӡb*V2jP.;|CeUEPB`KV9> K;V/DEyJFNW :!O|z;!.wV7>r_\ɣ(GUo.^Rj'2p q|iir]Lud^){kj@5[UM30t Eʬ.g?л϶cU1;+}}"#Y zNmr.Ck}vU# 1R>EkH4mrmqRϯu>L^%/Eɔn^R y]泼P"JsKB8 Ƶp`3O,UumX#(_ެ⁐Qc!khdҾiT𸣚kΰU.YBӳQ+;A;~gPi[kJi2 &]4y~҈?<6'|d *hݥR߼PJ q۬vYk{zsAҩ; ҶKy 94.VʎکicO!5 *>O|gAjz^/ѫ(r]-=d*Nۧ.FIa[ȟv>,CSNꓱ_gi]l~dWËp%hxoV8L[! Atg2zaZ9}`J|\ ?(ATY%rv%& aq^d6/XZZZ^^䙌U>Ѩ[ӹFDB}1B^ 1l"?|>n2G{B('1nNbL|~Ի QNQ,L%z3$ B?^D~˂z?DBbvmk{l|>[ 2T" Km/ /Ƹ5{l}f:eW ?--8pYCirGBYa`Kd@ Nvf P" V"m|;m|?=!Ky^ k%(U5|p%r턇 ip١Du[=ŸYY³qeQlLz$:k~H:>f~r``lprv4 MlWL,a,%_:NXuͼ֪nOz&;WV+;gϘ/+ҞNzgk%43NE\ISNrD+G PO1@''V* }B` F٫6ho=ncAP,VRiFlCD[Dv}K6s4F'Nmp'֗[{$d %&LwmLJ]'2:g;y eBX-Tc7J|G-G>jjFPtjNE4d1.߼3/ ϧ`4?Lx$>b7^= ?j!CM @iC)y7(ioc[})f -@ @V5֮ͧ!Exyab[5z掠ZVP&/zVpPe[󇥥J < Cʘc&]lTrǥ!SpnEk!dqڮ)*Ka|Z$\DşLL)db\u!'.;FPhgs"P'9vb־Q2P)G4jv%%) 6\oaP er;g |+|Jk'%ض+3Ź<ݖu"ᮧs0~P._%IR׃Y}sou9"@-y$q,dlۄFj ;X6{>TzN!rB-CO1;+.O}ܚn_ַ0mҷnKC?8^:8;խ-MZX+)^OSo ҤZgsw\5W[i7x$J$?~e)M*â {zsAҩ;uJA|K@)2>sӻDA@j-BTlc(Z AˣW>-M^`4 &wqs8G]osP͒ο7VKXꥺ`fGO,HAJœb`vU9ʅYw]ɹg}u J`z8߇[\ωNꓱ_gi]l=2|iu*q3Zn灛"O24;kmN}ىb[^./nꠗr;;4Tf򏥥%l!Ix`-7a(hߛϞҏv8ϻPNQ,LG1^LɈ[95>khW'3yr"@xY0^XtR| ^J>1BL|i#xrmneAX=ׅWR @xYſ4\I0:բmFtK!@ @艡RwsC'|)K@ aP@ @ ?@ A!?_cν wwx~s5eƒQCjK[:mO'fJ>s'!֤&>{o8?v+b 3Lz,`m'?R`=y>Bbvm})|ss,%!o1?!6EJN,kTxCY&>e^ɩ\b~MнÚw ]5uO22b.neƃS'@0a'T+-27vxJDPJQo碍5c,26[e YC33q~;뜥ˁ\pɬKʙʯ)_ILJ'ml *gd \Q?G|.;ԚtPk,B:C7qvy2jaomŝZY͚`D,ar&k$leEtAP. 4(t| a!TU5L.q@0L$Z:7G? u|v˷oJ61vMZ *ɺb\N Y}R˙S5f> q)OkW~edLqr8鳭T53)8Rk+]?툹_dOJB`|oXmpN;}w4?xf!!syo}aM_u#N>5q?g qUYȭ̿`SESվnN 'kkٶ\^^^^~ᓇPprUz{y>t lJJ%117^ƄXAXz۾~2 `,wt3;;#E[|cdbml|Šm*>bX,d2Y.ڐ0v 1]YJ"XH.s:mP??m,}K.W.wX^MeۢP4𨕆4 +@xrei[b#y>¤#aIS$pz!] 8i\p&̙)A#M)WެAJȠ/(&/zVx\:0MͼJw1Ҡj`|ND^B甠}:KH|`} _yܙ?r&M|j $Ir AQ*t$F®mPȥV #-"<1ǻLUY!ogÒY"³3LK TU1_VמX4/|3sژv_3> tYB|m֤pj]e4X#LSmc1S)!^nQ$%GzGlksl-{3Nj:e5,^xi,} K" ՇJ| [ӝ?(rvv6GC~*az@ZSPQv o0%bH !%z6Yip ɗӅTq8!&gkn:`v n8D,pF9ٺ,2삏\^;P]!,aM).SQ7q_ϰB$ =X&3FN4Ĭyo%dPK.$I0̻khzSm3݂߅4 +!r"&*4=൶ۚ8ǕX +~KIƒX8G|9N%܋˟$l_8C·Jit 6]>9窦LԞ\8K*k1|3tx6F s?,Jټ{[L_V ;XtauBabzfLicB4o]ssy_l12pIK3Ms(wΔ˽VIKȀ^1{OM'˕3&7~^7Gfe {ao`4Kȶ9;UyO|JЮOJ3ͣc<&[[[OmӃ{۩ [ސWrT!|+<+SSEUB)%o0yn9ܜ[f2(ϖ{๠+م_٪ΟL]kgꅣ^H2(!LY^zz4'`0000xziRxQC~g@/,R0_20000000000Ћ100000000000Ћ100000000000˔lᕄOD>N~2i[}f>]&b!95Dmd"ⲐحOΰޅĜNc[ϧO /ym4|9>o e b7O2i=z^ľą<7Ř#tk-K.>IצzA?OdG ķgev|лQQwi_Ā&a:穃ˮ ޅh0.{1KPus&]!Zf~}KyfMsw/|^ 4RN*Ktnǰr&?B7Ì?(RSCǵd";~3ѥS1khi);T`a\%.7 4 t9=aꜷb$k`vUD0W#BCydc70xw('f;+f)DF7lӌ vI ʙtWjɜO󻙱Mٴ4>yQ86LKbz &MQ^)H!{Z(C9A=v|h4hfŪ(LK\<[bnZj]LXbgqylI`Zmԯ[Ԙ|ZX(nV6ST&l0LGR:&4cTbBeIT(YV@Y4["Tc/n0e{x114(g5N!_ֹU"o.Ky4j̩#UAb; |9H_n^i#3ybTV伩5*'   @~`kj2 7{ytyT hOb9Z4#tMAsk^zD>MQ$b}eS9N-]CzIR7֕%| 6_գgmd7p"Rhcʹڈ {Gd۽gi[H^\F3 X)%^^c5C+r߂ v<\]}n{>+O[TDnH)Ku $˵Z3ṪG.'Q;kk4q2/dS)tY"`”\ q'eͱ,LKnR5b.iXN}OuTsp:p.l]7_U]%16/3;4Og+Ͳ˒kO<|BЮC4QR\tpo IDATpdC|c=D@߬G#+v$V&XmB=ۖj8kkKj/UZLR{nX<. aW3ѕ$RxZ;qcP"ig_d4E׭^T]NN~y=`,fU5]8=v6ff'& @[6m @VC?O wӃ#[|8>%-KndIkӉ1U4 -͘zx'[#"63;Fe9M[(;emTD!`8^\%N(i[6mK*۽^?xRK 0O,ǃuZ^' EvF]}2F!=?q{|ND^BK?o'mܙ?8>??Hr:E% +E Ԩ(aW9R;9e |; %GzGw jTH*HB]۠rlɪe%ȶc&<1Z^2x0}/ڬIYUZfNluWo)pڝuoZiVvUUqkHyq{h!߈|׏idSUU1~i?浝`&WU vR+?a8 K멆$UL&(a@K2mBdVcN[PcUK"j͘QMj1 a(eǷyY曙!7A:O[PuHkP鄭֫%A݂oש7,ab_ă頿MFsg077g6y~=%`tSU+ڻ F*)υ7EIA!B|LX=^ܬ4|)IwTUpgU&p&z76#'TWN1H3\JEUAٛ!NUUbE$}UwD !9{MVOTo6vʗY+GMO]agsl_Jb5_#Us0L Si@a̤-fd2-..͝X?vI ҄*B&ukLv i0p*Wl4M n*YV :DҠ.;εzOb߈MKM*nli n|8]H;׆hҫ!=Iq}!m1o;0^plv8n %WfE'g\34E[x;BXAQf$IUPZ\N$ļ^(FH79C^s]q5V9fLJ R\ ZMuFCN1lDZ]7Ca ,/3aAS3ILfǀym(o>&n#\^;P]=E?O;hVXd6u*@j](+aە"d0hשt;YY ̞VJ:޾O:?2'zy-9vi \.j+ttk=s1 F睌SdSɳrN n7ݱVp hǰw&qV♛u][1[)J8~'c8ex։9^z ]=C6s?^ַC1aLJXi}TJL&cO۩ըP7}P$&sjO.}oi&\^7iwn_ҬlT4 R&|ޘ_xuPfDt1JؚL\=t1v$!^Q'| H v݂!a tk52:+dNjh4@TNܜWD]ͥ-Jȼ&w7O@B1|3txіoL.Yz)ܽ<ׂ=--=y-`}sn#QuzqR,铒ֲKR@FM/yKMv|h0˨M`ǜ?`8d'aIMVwK!vJO ^)'vށ+|9>ygJR]%I* /gy-o7#]_FvN^#_;%U@èMTY{ n_ kq2 50000000000p<q@xx-@~EH&T4B|zfkqs񧁁a?`2qYHUbG/|^ 4RN*Ktnƭ`5{Al͌ DW}BE#ħhj&<N#u8| ޅh0.{1=.2`bbadO7%ϭ GX">̙˿>]O^-3hEe35Y흣LK\8u|>n-ģIlw۰% us-'DӍ)tvb{N{z$DeƥyಋLsLisDkoʠtD:xA\=N:2fBbk1'im2!2d@%YbApPoaߚ"Ov r]v 2)_ Z\\h fb_Om#aţXv#oVN9Lx=Q0!ϊrny/&RG@]5yR;'UZxjeܑv#ѥXJ$.ֽ~X%ٝeO*0Lx?~ѷ %-n7/-{7㰷? LkLmPx::dOw;tj%gT+Nmq:FsbGV76G`X ܝ !P)I!ş]d%mͣo?),a2M؁6k,qs{WżqcpDH&<+jД# wL|;f;YwAHG@yq$fhyK;|q#3r{ܴ-D\Z%$)E-n57 jG|wkk7 [[[[[I:şV/CbZTI;I\IYObtA~~i ?6VoVv:Md K 5ӦP,fjt윀 wCX1_~b ·.X.e MM|nc' x\)f)@4 Ld9@4IR*n]^y-\iim2!3|Lu[qߨ9%|fo'6uHqLhMͤχ`Z-lSnZ-*JZih,gi e,jhիl)WHR8M4z*MɲPoq;mn$\J9I$_ B7aK 0O,ǃ<2eDl6O f l[⬍<78ڄދdw&+ cI:şvOaR#V1)n+2fG!uFiN栝Zn2ʛUU\G㸪ms8BaW3ѕ01ӠMƑ![[rLxwEްŋ}>\\ϦZ2|ׯɄFOOLz-yq|~~}'c,ZLBBXm&Ja_ H0@ =XqE!&]92w$Zf2ElL.Ji'a9lss7@݆*_ Nj14{@9\6Sl |U0\]*2׾*42h"أj$ρOboy!6kRf5vV~/1fZh=IҼN7V Q"?;嘻séT.v9,eofN7/$?E0L~ALQTPAm IQv$iim2!=᠐N AZ 4QNO}RkDd R\"*!>=ES389snnl6-w*pݓݎyneJt+ :\{4iBH}^U*}IWdZ\\;;;N![LSUbkM1Ciq9iiW;6)n6NRgsW dU렢V0*m.ضIxbUU¯ a5IpDlg2vz=H?=噽UN1H3\JECi>ȴ94oJ6 Ѧmn4[`s:FahV@Y ]' 4 MӂH])i>K/$@N+i *:ٝ+3M{Ί*4=൶HECz v;RMXy^ʬ!Lf vyJ5UL0lpn4&"ϓ3-f bN'w]ZlGWJ Re 9ȧ9apY#qw#( oSS7C*=cڝgF4aC^VЮkj"'ê.jtq357[7^ʘϣ]l,DM{]3P\Oίru$܋1AYWUnnpoׯɄFOOLz-yieL.Yz)ܽ<ׂўLԞ\8K*N?aYَ̋aYe({Zu}sT<+z6bb2:%$y^6ȕܙ{qSm\:/NJR&#|W=|1V>7# "c |)< (I AӤ*b ׯFOMLz%y4? x````  (}CWd̑ϖ{4Y?3d R\"$*%>5E385s;"c |)<%/ziEo``````0]^nτ3wmA"+B2S45^C? tALO[q)e OףVw0Hŋ@ڽ]>@"+B>S45^C?a/&ff\L$m$n &Tn=.v11^k˦HлQ!؎׷ABUAv9{=Ҝ `;7x;wwϚ*:G3/B2[Z,78Ѹ*bqľąxw{B8Q;XI0{ImH KٻiLbI {'k:}2,oӾ&'~++a9:Mq=Ϣq#a|0g.b{h4kоy-H};{.ѹ_ d"9=yrϽ]YSGD؉w@L]N}Oq-:-ՙ3.j#=CP;^69f=z ;CJO„ݬ@C9جpؒ=?H{V^1" (*((?oA"+B2S45^C?o+8գ+kYEUosf @:l0LGR:&4Dש⯟inOfW;[UzCh}ׯzwN3.y6_ㆼݳ!z#ȒP,+(z)3I,'|Xx,ܴX?}pC.sif}1h+uScծkc>㰷?W# IDATW1뙱5sG8Z@} un}Hw!G=wtTK.xʷ'M";vpfҸ#u߿х d+,NSe&v #вEMh$pg4j)g štFb+E X!cEݝeO*0Lx?~)ݔQQhE-9õG`='OdJ4_T t}폄evΞFM2zzv> z5P8\RAPg"IES̱O!zdf.w2)_ Z\/@i/GCՍK2'ӡnr~mEn\qktʞWc[+ SkvOaB0)nO6d?ssFXxccH{?|?<78ڄH9gXhWCβ,5c P^ p]ysBDWVb!/vԠZ=rbLp0q^XTL4oڄZ-*JZih rŎ 5ڊDcԎD*2fGy9&v A?T/ r__ B#J/_0n@g@Uo(K61Ex<&w5T7D%zN :1q\UU9r k';8<l%˧ߑHqLhMͤ;t/p-1̨5-*aşX^t|[[rLxwDeLq~3D=ES38jQqD A;fq %Hyj&I jkN2iީ>JR&#|W=|y[h܌HfH 5CD$AUiRx@"+Bn!!>5E0p )e OyVw0Hŋ@ڽ]9@"+B>R4<&i 9z <XwBBUUd&-ݘN/[Zǻgwuշa\1O^_!3=uqo3ٓ/|^ 4RN*KtnGzsp1jp̯ţ|qj뮱D>|3}R'R/ym4|9>oHl"rZo1\}(35Y!ŷzl4&ؾD>N||vo1{oӴ/|zøESݳ&a:穃.21A9.NᨪM:xA\=N:/vc2Q8x-!ڍ$'N&p2w3 DWdBE#hxLڭ 9z <݂ѷ *?UZL_pĿ.ps4ǪGi ?6%?$A;Q&̅iS(`g5y:vNj&A,'AhZ=Sp>$vwrL/K%&>}V͇<.L*"%PȃPvNp2l^ׯɄF?H27B)SS/@i/]XmB-ZG44`s: VB̡&eGvK 0O,ǃD`u#RI5:{ Sax&op\ 74P0HB~7 eiG]әwʿR/+n49(ǬyS81ħ.Rރ [wam aqmrt,ԟC$\KB*{sVl1MT5ŸVIqi]'ʝbg1g847$=󢇢?6/|c~fqP*8ea Pxpl$Gf\ޅ篑$ ' j@Nnvv #]@cIş^aVO2iN)?8;AͺfCfi۩ti@A0:s~'fVM<$BX=^ܬ4z!;Ӊyms:gLfiׯɄF?HifS81ħjQ!=vM.qqUO48N㷄V}:rx2[F.w8Snw/$@N+ C߅뉄La.Sv4=o %bUI$,n2E1gsl]i*sOR+x&0s[]pwi,]?[wTM37's&jL*l?uPMI9sΜ黳3D,pzCqr6nBEPՌzAzRѲ6 I&t d,K]v-f S1I]~w8eYm(7q_0JP Ks45c"qwGf'n~MQ2EfO؇U*Jq h0x, b -,%c떡?),@'{t DWdLE#)R9\Mhy )zώJ(ےf(`'sn!ꗩ| 齸RRwb+w^}X87S9;q)\ZL@9w^X&1:;})]-߮/RqJ8V/Y(TN3Y>UtLDtQCǓD OIR;qĚX"$Y8(yó m@hbBĖ|6Kb"[Hw$PCzWs|}[?O@(ԳC ,$ʞwǃ]p/3 WZibk_fϞ!DLS!k9v:)\tM| ;unbI߭rv:Wݷ?G@E{Ę]gQ w[=7'*tcͿ]Rᘉj.WL[(\4$d R\"c*ICzYqs4 c2M׫˻5DGO 4bCpz}PpKt5y/:| `cFez= ,w~@~EHT!>"uG]hy )2=8'boWfl_)Wݛ`7sx- /o쾔4b'U.>,{؋qA ˳azL$&p(cM1d R\"c*EC$-)81'xf<8m@Sq7b#93p3qoZGk">!!S(4s4<5dRBO50000r6fg,υxw0zvG{ ")_BH!TRd```````W1H/;˦{@~E)RMCĩh*y I)"wa 2X<ԕ["^SZ?h^ng]3&o|am[ IDATkqYd@gBlxyH0{.1糙0S;d 7̛C+oT/ꈯ  ȶJIeWëk󶁀f-qqmlSu}<Ȼwү*7nꎋpן@`+]./ҹǽɰ>țϭ8cݫ2p"@`t-@~EHT.>"uHSTR4NP[ YQ bLnNHr/ &0es;?<#zAGr21Řg7U1id&:_Ob+ '5:ٝ݋Fb 3] +_H8+v̡x.Vup ̇ RhD؉[V`$.Ԛ|\?^~EAoA"+B2"u;d9CC|R>g VR9P3ybyf8}| \_ kn16'G느ۄ[̧r{2X/Q((J"/HͫbWV…V4P1UeV> dU.z 83.ddv'?{''BEf.jZا8taiv+U)x,o$\7Zw)NѨtr,0jHgt1`(:@ a*ߑѕE |Z"uL7GSqcOJl|Ԯ?j@bIk#=ln:fe#p6;[{B KYl&bl? 0-D6?zj?3 @`9r\N E 1$%߾>WgU'ۛWF9n p_UrW 0氊;;1uH_,amevjt֬͜sa,];Q". + R(Xz6 };B.zKr2(׈KtN˸Qh}#,Rwjteywd[uvEq(Dqٯ[*+Nng8I<1٭fpYH??<*bZ}^n (o"uL7GSqcOJ=y׺=,p3@{?s߾쟷&,nas/a8w 2c@|~% @Q J1Q8MSO%VZly9HX^J`~ jwl 1nM&(VoU0 TcRD)mbk8OrҦ}Ś_}yEo61guo뿯vv?1x?1hUJFҾ63֛, ;o,stZi 7nׯɘGSh*y I):ʏu;&F88Nfʳ,iwi) 0 0ILfBy.` -ZXx[@N{&0N #NaUob=8cqFy" NggmQ}X/>av;^S>;c%~GJFAryb'bR:x$ '鴳_7>iH_;g6cE8iFQu|_+˄w8SinkKha)|Z1aj:gCG'{ DW0"ui8d9CC|R³'Ƕ f>ut{X>;,[=1y98Z]fxm5IMڬ@ޟ;7Ӆʧ$)Z8{u|bM,|,e*RL$l(cJ$Θ0Ṳ< PO]}2u3Yns[rԽ1Lb߭o1pP%C+>@H( Fݰpm~Fտ׻j4e3BK*cvNLp=V"Lf +Fhn2K@2vKW bҊu?#c➅.뼍go6:Ms[{aG^/٭tMFDx%5ulL«+' 0IJXFOd3Q/{Ss>xϴm~m5,_=ibħ@n}z]:Tއg$ pP" #cz'&2PS\$͘HEHFȦ45>fCPp̑nEO߮O/*ײ 4QdXl @`f3x:'/JK& cBk R֒gF{K WBwQ ʗK{m6ߟGkRE㒳a1T)NaB=w?Qē 1Igt1`(: 4މPtG{=Ze&Zͯdtq+}PX0߿Djki~q45>fLh@u;'X30xvX;䯕U*HB 4q=[8iZ)^%w#mj+2ww ln:f5%,_޼U%q;ߏJ4O777ye|č Q s!>ywoҴi:E,Og%aVOV.tBwJ>I$F6j5U(ۘ@Mq 3b"!M/fG׌_\n2BuOnr~ғ\eYhArOq1,o$\R>8n]bUXjKr2448ϊ]Sos*] |>x0 Rgq@˷ޒ&f+ǨiE<cuFl(Ai@VDةx'b߳tk}#,R.G\?ヒ_ >b"# M%G2IӟQ)PJ&!hESpV]l*ڼQ$ V bN?Cgq$4x,t6Cٱ%Eqr\ W(ͿI]Uf][i ѥ>/ׯ __1S]h#IȘ)3PN#`p~?8-@8jL4);hYVe> ä# Ýy,p3wh C0i3cN-Ѕ;?i @Y뷝ݟǥM&_ryz Vn/#.^Ϡxn9VZNdS:1յ&>BLA).>1Dk9~; I2 *qPa}Xm$@Nz`%Lf vyR}5gYm1Sk#qvyrs0348v٢%HyrwwSC7Ci q h0E L8~'c8e xV"e}; ҥT>j緎8ç _1cG!uHסA\WRLVp%6_,k%ˇ *fs6 iWd":L .,D\fn8s1k(3I[pn.䲚׸:I7n7\\u1qfœ+l3rYv"IR~yhZj-n㞥@A=O%;x*#>ۻd FO QPK 6.R-QL;1~߯VP'g~i`L .rJ.sRɶhAꖉO/V@vPy^۽A&\-O.*O{fgbWdLhTs">BL$CڑF+(bv 0~0Pg뇿 |>zJUM=M' Y\Է "n&O+8&rΠ?7c&'\?yܿ#4V(N#Șь}4bwȘ&!őEi```< ~{Xq4$R\"#>}Xſ“3 fqԎyAӤ,BL$Mo+9NKg seO,r'E/>G!$Mo+9PI Pg#_200000000000zya#nZ)~q bHC|$EuĥNL !LG-9]pDGt N<g ϫ2~q ;bHC|$E>uĥNvL. wSKW#["͚K^N\H!neh1G|=~߽ඹ%^ 96Ko,,R6}R{6\yg=/Sh[G; Y%YƄn"j+{$[#ԅ䡗HG4:;B|vqN>Bdœt߷m,.0mEx49պM[?7_Zi\f. cVtMܻH羾1+? %z;%K=5Њ9" ;D:)i%G(hEcܘv5`rEl }H@2v~ ̇ npyq_&/Goe+ '5dwv/z劭.T*ǃc7]N;5ȼw)Kz5<-5ғ˩]vͫEn7"{bnj嗀#oT`~bJ__^Gr21Řg7Uyi6'3y<eU cp٠N/Jd>f!x$]ZxII98*)V1iH!QrҎV4fi'J\N &W+js笣oWkHZJ'ŴHL9Gj۫g;o2_~m/^H8͸Эβ՞ʋ=nw[wbyhOb)j0U_JGkRŞJV.S|rw:Knp"@4a@E֋Ŷ + 6h6k0tUpa*ǡT#`&O,9ﵑ2<K4pDH6JbǙKrb5Mɵ\JgDDBE\KVE3 0IaoEQJ{)X3a;ﴅnKzm4J.}\=Rp#C&T K(J *%jNkK3Lo.XxaX] !SHD44#v1 nL;Qvj0"S ,KlW·9o+{ּ["kVVf3M]tShlonn_`i;.R)W?vkNjN1.UT!!$I83jүqߎ!spwa%T{T>vF%DRo8aUc  -מyP. PZe|č%,_:,ak}߯7eDcI[[ϤB1]6[tQ^̡O ѐVFDZMd2)_1iH!bOC(9BiG+ƴ%i+b33v FgI !|,@6}K`Me&]bg:0?G寃g6O*`IS$:LM=Ml nw_ӄ=U_YPL^bU0k8ϊ]Sosׁ*yv׌>q\e:!$LJ M_> k\;;nZYf괩[PoIN Z+WͶx ZQga|5dn)rlK+Œd?6-fϫ]n!*z$NƋ>0uU$Xz≑6 A)Zm;XBUZfhfz$0hZGEP IDATޭF4NA??x D1zŘP"ie[2*&[k9)nnBK#0Lo ֲ-- DWdLE#)pQrԎLĝNL)1kxƙ};fg-_,;T8:{Un@q*PUO}b^=ב}vO(߾ey>:czi.EQ?'2U[A_mV((7_ɲa7Cꭌ @ռ˼ R㩐$ 0|U $ጭ.U>y @AxS,JD͌CծAaN1^-k#rm½ GfǖxqNqhCj7CvZf8MS*]w!" ;I$|QrҎV4fi'J\N ;&VĖ@_3'[/ ;u&*6c1ILvsЛWܽ<9WYEH\]XqJ9^;g0 '~^q,ACGiH_;g]^&~1L.[HsN=Mn'ól]~wX?b %bexƅcYl}q!RvBVMΐhN&La.S괯gq(!hd6ߺhTL`AaJg@$~N@:D,pzc{ݎ嵑8N<N,qv8΄flhM$H+Dz"(1 S~1;[JHѩěXfvLn1X|#>fłvׄF0>7tU)7r?~]oyD;R9{ SYNn3Pׯɘ4GRᐳ4#v1 nL;Zvj0"֏+\A,mJl*g'x:\I~L.oU7g|2ӯϙ_@n>o4]~Wx<86_PߩfjZͻDtl waKb,)QF"M3Y}n!Wk sWLeZy7{&>m2C*Om3|s7ÝE5ybK^%1];O${! &b" hi)G(t,1Dk٩Ċ@"Zrԟ!;w5vNן7n骲=i%D\!ne}& 9-6'\]uj~ɀ{,96K]_1Q ssD>h=txum6пB|vqɷ%70Ҹ,Y]ĬFcBvI_m{MO7bs Oi*acT; ^H8̸ĶtVsqN,wfͥ_ у /MƃZ.2?~'1"b)˃pw DWdLE#)RwtuSV8JPъ,1Dkک䊸fZ-U,SGDN9Lxvw\ j.܏ecB1nJ"3A9~d3Ԙ}|9ξyS| g|%+_/%W<eU ytY˳At|~S9;y4,ǰs$̡x.Vea{ʳ؁-6^4e)s~%@@yNd R\"$c*ICd-]áâN8!OVC{?wΆ?3ybyf8}k 2s|Wxݿۄ[̧rpvx]-^T:e3|rͫbWV…V(]jNkGӝJ{F{K WBW'N3.t녳E/r{L"fa[-"b[ڕ4xQ%J%EI ;l~Gfv_eEL`K:o='(_g.P7#9Qu'?{''BEf.jZ6T Pr-6f(WMB8IS SL >p{{{,Ҫfs0Mt[Jvo\y=P3~w"*ԥjT_Vۤn-,u%f%Ϛ) ZJ'ŴjoI:C$.9vXdyG70W]5DH* [ q#agM)8s;[w{UG`P 4q=[8i8J mjDOۨDn!!SH"44#-#ةɤzFXx7_-~, \`AukD%ZN :Ucs@Ҁ(cIS$:Lnn1xw+~u3|(1G,ƄHk/ pM5Mأ^! XZ%R}aJAbWh5_ 7kuItz}"F\-m@$`';?0Qjnܦ2N*8I'4$*TZl>H:<,46.Zm͹XB8]ڥw*l1{^t+ yD'$"pIbXkvɏ{eB+^0f@y5vȨ `a♁,mu8BI8x0jك람- DWdLE#)pQr};gL}/1 o>en:M6No-(JGܯ. {-^a`W<)f\%"fơDV,=F*ALRe?0L :7ٟ|z}A"2)_1iH!&B](9>Lh"u&Qr};5y޿eאLk#qvyrs=" F<ݾuYB}hp,K-l1u˄w8Si;BXAQr#וCd0h)uڊBq <̳},hjoFB=^L#8nrFS<˒vhPՌ d&2 S4 ^ ,kv"7Rّp0U9ۿ$SYNn3ׯɘ4GRᐳ4#-ةIk}g])z5P~yd h`{S<'O&qa_V\p=AA-ѕxOAN9?[ RSܿdq]D"+B2" ;d<Gɑv qǴ%vȓuF].\wo'n kDSM.mlgxxLU.>,{؋s%r蟭)LeiRX~@"+B<"-Q;D8R4k>q^H7;1@~ET!>"uVQr]C\1Dd5dxz  eY[R|KkX<>Ǖ 윿p&%ݬ*YemOn'f6LT=Lةe2 ̡Q[pG|MeEUʦO*a /$ff\b[l:{[cIp7o8"o.2?2 d<^"jJ1|3io[Rȫ8$QƄn5a}*z_>;j~ܱoZyN6L]f\h_vi 2ay;[De!eS8^]|LDu*]%mkV&]Z_s_+^e@H:1¨N.vJ82)_1iH!NYM(9Ү!_vy&Z*X8ۡuS>%& ̇ v`^6̃9>⹪S09O0ktyy[:(&L0@m6[f81(^0[]T&2s(߷ =6zy@2v1C۽=Ew7w]׋lO,R4p~)k= ɘr{Б73ͯ?0rv;i*w,0;2KvXEi<teeVb~/|}'ጯ) CveZs88#zo$qAxII9oHqHC|$E4#YdkN8!OVC{?wΆ1'Hmg wQ ʗtZn IDATv/z@c l3r\( @zon15;QKY`K(J nwؚ޿*9VgZ\#0vViwm2@sb|k R֒gǷӋJǵaC8fS ;l~:|una6h2`}GT#+#IÈ? >?U~8H_]bf\ gًjOBo>ZKGr05 ャNbCP.́4?Ywߘi|Xp4Q*Pyξ{eUqE֋Ŷ + 6h64E jr#XHX;,2N~N$O*\^?˵^r*b;]hN{^&o# 0ѷˁkd R\"$c*IC4.vȓՐ/e x]!|Qtv67wrjsssszfM8靭 !ӥ,6I16efʞ5aZm^~f*IR2,+C,"4Ϊ,4O777Гr:-vqJ!FV@lW÷cڇDRo8iHXViaL"X&X u߭gRx!rSk|s԰G\JAt[P;qɢ % .lo,#nL)SyxRa "Տv5'qck$Tjʥ9&w}ss.77777.U;QNYCɹiS(fOdVnWLd, &!,r)8s;[w{,=`3Ӛu.qY|h[;ABdrKKK/ާQڰB 8{{ 'E9::%ےFX:lW ^QV5:zf{cݥ ]lVtWSVUza+2>R!jƇS88!!WAq;0yÁO#r6rؔ5JFMp,+2?HU5jw$N_6aSAx@2r߻"DqlڣssQo`2psBb3\d Jl%_o$!_'mgcc':E麎XAzW( 'IjɂlfZIæ qMD!u:\>&ŵ.N!o)J9,)I? xOB&1A]ͥZ(tTfWǰ5(F w҅7|Y&9Ausr~7Aޮ&+gdy+NCV$@ZTڮUeէ"e}| nw^ZZhcGP KV&z2,\!>ak#-" ??-4̧jwy7N!ÎӱGi`]^# ["sH|NaēRq R˕: ƿXi?ѥcάg@7_W ɯdg6a"g R+q MC%NTpƞ$Je[;t:B<6n,<2y /:4s)fhCTlaܬuAsݛb;iQkSv6-"DoxFb=х(;Ֆ|ngr{'6||㤪er"fWb{EVf25Y1] ? ]LO|JnkDl"V|pE߇TG^z;}j[pHoqC-B.젝=5y]6uooWo{~+ Պ3|@[n(Ň扱ټoo )SA((D7(L4:S,ˈ~yhR֙(",C*#~/E"5>l!ys>#68v/㲳nWF4tf2[hJT =X3so}=1aٽD-x>Z?,B&\ʍTr?0Bŕȕ-bnKTX}ohS>%LܮE{ik|CĤMa7eH?f$7Ԟ Õmg>LM~X]: aNPKǐ irv܊B[ IV>JbJ^AKޭfw[9"&)- @ibN7KRjv@xT,u빝=cus{iKlzqS;9nBK7#ITP.%_Jì{`':)@nAr|z 1eQLǂ ZS&676B,Xht!0;*UՇspPG= uwpgXlZUPz\ rU= |>,bvaeeׯ#(uhxOW2dLN!_y:MĊKQ'q=4>l!ŻNC%B!@2x"`).K)!x)vކ|~^ޘvqqnfܸI=ݎ= hwI\!9MƇS88!!ؘ~{U豧+.!x)vbК)҇yي;87;{< )fYy6+>"C*'~Es5z Lwl]\!Zr!n0 3S܉t~/~XEϻ;mHۣVV=sr…(엕 ҇ `ǣ~q j5b &PB'GM،4jqor'ɵ"H׎`+2>S42^C.ĵ\rtG<أOɔ':l(WLz6r5cyw⋿d; Usn9Læ6[o(.<wC_^'7|\\!Zr!΅q&l?~J c"l}Uo~m6 #l6/c',Hn&VIX>7>iyyi!?=Hߒe*F`#-4GWSbo?d쬯չ^bj =<.k_Sd ʙ߿wiXnw"#oV*uI]NRiy,s~XMfꬓLhLSƦQ݇:!&9^$F^OzGkw=kxay>Z՜.ttkuC漓{ЁKk {&fzQ-z]lVtWSVUza+2>S42^C..G hqp$tTvO^}w+g*MYjB] UNgsʕæt?%# jM$baP:bmM]?h\_[_,U ơN!o)J9, Zl|Z9T=ljX1,u|$Q+NG =jMS]jVU)]Q=x"[pȭv+226jҜr:P]Ns58SL,cnKUO,'U:AW9p1 I_V2xM0~QR x:uV|66V} ֪tjFs>{.g_ dgvIvfKpc\w Z=L]ybq?y&MĊːNLz-ǖ(d2Hdnna3` dر#t,B@X4 LfΉp(R,Vi!`C:Br"oBsw ; fЮ AOyl~ѫEϧW?76_8b=Nc+΄UiOJԡe*0nֺrѯUSmW*u8:jh?1hWDpƬ)xQ+B 5|H>ސ0{r} bY3L/4КٝtzL .t*u9T;'Dc31'힚 TJ-Ḑ*Wc+>>S42^C.۞xܧ,Qi}ƈ:űwsf=F9񞿩 D[l*7<^Z/.ޖJWX{w?2YL#g񪰺ټoo \2{nʄ A\lJOaާܸz伎X<{M{XgDa?ybSc v\lba/L:6nN~7&bWeHE}Ghd&\f;G}EtMݗi RǡZnmvyyE.Co%MH{i"'2ŇgFR-Fm&2;^KPm)@4ssݖNu,s<9zB7ʉ-EB RxKz/xM{JEsJU=VIR1{6}vB5083}ȨjRFᯯgH5aQGid)D1|5;̟Z; `Х`#ÜɃ W*K|ښ[ZH~K2ُ!NxRj>oXQ+@;x(MĊːNLz-?ZVG} YۏN>uR i[;I5BŕW׳]EH nD!?.GI*[!̼jd+c#RzK/z9n%5>!bŦ**8+$}Jt]=mWI\ЂOEHě b5&vP.%]QNo+ ǝ񝖀/w]Q[>nW*q).@nAr|SSxb3N"qQ>,K9^2zI+] Jrj \_F^W^sĠO.\,A+++IJ&S̞ "Ww~&bW}HE}Ghd&\w[YΣsd\ԕ^>osӫۊ(@GP։woL0eA!-7nRObY]~3ms.6+>",C*#>:E#38By0{Ĭ4$ܛ0!C$ЌلIRuDIWD \!љJr!y4w vϖ7:"TYtx9y&0GZu27[L&61?].2 g6 73mA4؝CqR:a'}fYƌMv'&wML}hXm,)tt&_['0n:hUas|Ѹlj\h͔Ul}=zunH{Sz5H'ޅ݅ti'GE|фw-٦ѷ3*F!N:ǡkCg)oWKsfe4;;k6/C_ͻt7(dY[`F#XɠYSrj[8c0A;,Hń$< p1~}Iop^)^XuUOҩ|K3g#!'wʙqZ;׵ DQ燭*@ naZgffvru۷ono߾o w G2&P\*]M*RXcl6L\N I.iN!o)֪555flRԔ5Mj<#EҬqZTMmתu7dMOĜA7DŽ7{>2<} @E麎Xau]+wӄlO'K_ke*6f׏7\kbuC&D"sss 3~@ g(R,nԷ5UPu]4U5fCTlaܬuAB<6nph͉/ߵ+O9˚azc{ov_PS웞M^v|ro՝ӱGiPI~ڙ_=ӎ o6_8b=!\G;90z4MC%Ҵ˘|yrD"Va{Kr#I'B&3yInq ؜ь YtС@,==,3}|9ywWe.EVWg?wCpY]:|ʫ;4`592v#B ޸|l l|o#EeiX]^.'k6/:۱%16̞.>3+o_DX@ G+C$)pi`bn793Y'YMveX1G8ruo}t;m˛(uyzn3%WrMH{i>aLқG2V/A!İ,©@J ;xB>T.}DPM[#]ׄkGY~/lFm&2;^K2Pn@ ^9lI+v %4x1!Ufѥދ+y9!YtGe܇ RZdkBcu>L403ݞvvk};m3˹?g຋B&\ʍTr?0'M:GkdR)zb6qpi ǝL1v:w]#@xPRzK/z9>S.% A|v?3*5˩b~/m~t)zh X, @ 4<3ɂ @Y'޽1x0}s=şۥ' dњԇOm+? /&^<@ @~@ @ ?@ A?j2*]IENDB`btop-1.3.0/Img/normal.png000066400000000000000000005011171454653170500152100ustar00rootroot00000000000000PNG  IHDRt sBITOtEXtSoftwaremate-screenshotȖJ IDATxw\璐 Cd P,P\ nQڡvj*UT8D d/2 dma>OrOrOjdZh4ښ~c^f3p[zڝA|Bzs)_S37OVV>?bovqlLa1dL}Fmn"|jB!󈽛m>~Fe _/Ia.3Jxy_ۏeK<[= N:Bs (Tp۪[/Ϟy"Q>s">m v5>-#3mvlӎiEBmHV7Bu#^۹t΃ kŀ|+3$U$O5)t4ڠo չnLγz(7.>/wl!Jd>/m&Hl:8??OkR>} Zn5I333{u! /\:Bs (Tx<0-0 cZrgUznj:OfZA%(@$B ,z[CHGw"Ӫ]^>ܼMLRPsojP\bdAK^L(;s*mmAhmQM _t@?a!i-^0g4.x>KꩤRjbJUr!i~mƢ :VK{$T))7(ލ {dDEE*agw%Imab`sz%u}8^U&04(f_ʎ_} "Pa@\c3U@!dA׉JPީ9~BT*ʿVRk\l.'trs9YKGg^.㞾 W?Z]A!O?dѺ.0x񂾴cŗLf+@nr())0m™݇X6{ ׭kQZO T'B5;}}}[WxQGн7̚de9n/Gz3wROp|$GG/!IwX̄)^rYmDOFISeibGOx}/@,QɭxrǨ~ښ2n&ii׮'s rCR=wv~a˪@wëހĹC'8} e FO/_>kY<B&X(<1֏m >Of4dT<;+@wWEς։B3 @Ω?$I8wvqKX^ݶtM܆͢[ASP: ^YV{\\Huc]{4rf BP O!𙜬ɿ?B!j[ mtDB!P!B!E5B!@!B5!Bd2aμI}:|Xz!B꡽ߺ6mB׾x{v^Ä_]nPnwvFKzsoOJx*3[FvS%9gƄ-t}ow-WB!P/[Rjv~ϞՋt;ٜK]G"2uvgz?RɟOzM }JDq3o]ü\YiV>LYZ\\-wb }6*<@걗֜ngas~@!th߾=$m|~kB@^#ƌay};/]sDtyY^;uP,u3t[?Q'Cͪ79\ }W%C׽~ZNX{Sihh&xB!>&CCF:ZQt{ 4W㷳d` p7!AR瘝gn7 |hÚYOL I=@px<~1kjÇiAǙ`dB wiGda-#Ͳ&nſ3OK"RkI=hy篕; WD͕VHTPPЩS'B!Z2,oIH/y/OPmޤ4=㗥A]~=`цgo|i9%A_Dd۰x߂ \#g~y[l݉y\jm_uj~b ߯HXsAʘ0Y 9=D"":E}B!j;;;'(޲RH]]nr@B!~@!B) B!~@!jb}}:&RmotX? B!B!BHQX? BoOD_9Ǯ}H_]]GCz uwc߼gV|5 0 g~ tg:#y,:x@K_׽&}ѡ9c})t5OZx/+W/qJϏC!R Rc"/Wv3y){2Ǵ_m |9j5WuRt5F%`2%c9C^LNc`S/td FxL6iOc6}杼nDeFϔyZg935t[b~c4%q|XcB!"6.L(ػ5Tt;٭'"Yc/ up|.XuR 4F2P`S뇪JX'd R22R){|y(tOO0ʐ;,?<Ʊ]kgsNdnU7խNͭfP&Ϝ`)>4!B*b2 7ΉgT{mHؚ[V'Hk+TF$mr̫(*rrHp=WkKawjhkH5K].`fVd `X&Ņ=U)58B! 8)))e kooDŹ7F׀1e;dP}Ikc̦Nkc+TRhk:IB {s_̵ķWEǓK"IYB@@SPfP<*Zɣeãɷo7OY#:٨3YQasDń ]&*Eqqʽu%NX&L(=!d^D͈=tI&U!BHE8.0Ʒ. SYˑX,G(++kxݨLI5e2 L5;Gd G&O8ˣ+bզ C 5]}y>!B*-=L+T&ܽefW$LJr$_L&}D&o8_+'[*HNٞ|)t$HP(A">֡h׵i| M=I$N7e=L"<}dĄ#ŦCG&F)7AB!^A2)d^!*%O\ň7)By ui^vEKVҥ좌S Qώ(`~Ir_]{;=ν&ޛ"}g|ÑdnVܑMG:E5>mB! ;;Ugiƒ{=bUE7 rj%B!a8ދA]h!B^P;$1&qK$T#:M*█e-l VB!BTPȯ~/hK!B!EaB!R!B!E!B*8)`(n^╰=aw@z Z6PwlgpdZToNˇٱH?ODΑߺ{U`#NY2'5nsOtԔԼ'84nZ?Hu e@^b!dr2B!ax-ݱ`~˹/'oZ1Lˌ}ƌ 8&jL[$kF2b 6UP{zxm]/pЙLTl NEڑ.r.J).~=fL {L\͘irB!"6.L(޻5٭'zyyf} ^㗥VSQ;wL:WX%W&eء$6@F&SdH@noԮ4Ugr%6gSn[[Q @upK>\Z%`9}WHqB!Lr6@sEl/{]"1}סPuꋩ)&8s(бc#m9U^99$݁ǞϨ֖ *pt1ðq[L(>;w+W/:MtI+wĴ~(zznjTķ )ʺAYDP%`B!hh B!L4*hHN_>2IN%ϳf֐lw晬h"bBք?:WPmܬr/~] P58fpD/"fD.}5A"ɤUOxB!Yk{k:Ԇp8\& `<28"h;SRBi׮@3lgX\\/,Jf6?h԰nj󵺁TA\}0tF; ;á1t4_/^fG!B*Fֲ1fe:QI \Uu&e[WOޟ/\' &\<՚03;uYֹ nf^Ggm>_  D$ E@W"xC1/|߼rDt<}dĄ#ŦCG&F)WI!RLŋK^{Wj=A$}=B<] 7%hgډrT>Ðg%m9|ȹ+Tf.tx[.&\[]lmߙ-pd!wdӑdNkNos7B!ԆьWu*H٥LO>UIb/ܼ~ײeW_auuשxv;jiZ^XfkU{=E@!CaaivBMvC{XkmIp5bt뎮Zڅ B)0У|k>&A ?,C/ NK!hFI޵k3u. S`ã^wt"ьi4["iRD,k`k*vB!ޔ5Hcy-T >ljr]B~uʂ"/!B!B!BHQX? BOXw@!UB!Pc>-RթCqRQ. (ܼ+a{Is|7.kQYzƉgxq6u|'חc4#T;eNk@:p1ek$a=vF¬?l^( )'+BH1s Hl@mkI1+=~y-'RST_Qx{zf^c:^[2لs#\wY t&SUa#{̦p ޾4DOv#*0 t$mV.(}Ӻ8kY˦Ȑ _)R/!B_WVYDm3 n ;w_@wvIxIhbFM$L!I G=STRMI|[ }&nխNͭL:8%DL.Ϝdx!R 6DSӎ:VLr6@sE/@{Wg׆B*g_  D$ E@u(umEFb._0SCno2ɦMYӋ.x$uɈ ]GMM*Qj|< "B$jڞ_M! D.1{|0E/3N[솬XM; Qqvꞈ'@΍gG^}Pm}ue+cO^8Қzo΋ GYqG6IVg:E5>mB 4F޿*%cggҢC0=}=f\{T+7XK- b 6qZ+m,9C+,ZU^}#j`k F)v!b4t]xXRUBAq>ހ*?H}Wn] 6qZڅ B)oO'*^& !q29A6Kr6cx&S i<"ssSU@F&SdH@noԮ4Ugr%6gSn[[Q @upK>\Z%`9}WHB!S?~[kU  PP( Ϊ$* (BH1ǃ2Uj4 4e%fQ߆M}O-l"qUqi<Ϩ@٨3YQasDń Ui ۸Y^Μ+[sp~/4^D͈]&{$L\? BѲ{_  D$ E@W"xC1/|߼rDn<}dĄ#ŦCG&F(5>!b [$T ~u Uv0B^A2)d^!`@U0K5Wxkݐ+i!*N|ȹ+ѥ{k%܄k-A"}g|ÑdnVܑMGe5^}PTF!VUZдM7[CfggҢC-%X:IJ^sֺn_Poч/eg_AҾl> ]ܠgҴ^icɽZa֪"zQ[5B/F.^;RU9ۊPF34$_j{ˡXkơP{*Эk ]ܠji6bPjZ(.B}( C++wsEPu4 ']\ T*E&oޛjGд Ǔ,C/⊵Y: )+ܠu *NAy(͘F%&qKIJ \Pb!Px%sX? ӶggLSMύûێoOD_9Ǯ}Hݿ˱W;K @ h<&vMk~5ĝm]8k;v"C~I>!99:c})t5?E^sW^<쵕RcőϩmbMIԑwsuu5' YpGr{шçp8 ?)y|u =6ېkLkKFz9t+d1{̦p ޾4DOߍО/fYb @3eůnj zu=[b~ot?+36MUn`<BHI*xJT.EAjlϙvlo-qqfBaޭa+n=@d=tRvDTpCU6* KI=ٱ.%Y;}L$J#pߞ])o_;4M$w:0+[[Q @upK>\Z%`9}WH?@ L_4We.MK#>]WwUy .g8gC7G> 4X]mx)ieSmT|U~_ ZVy{˱FQW+'(>'3ǰ;J>Tܤ!z[UU`fVtz' 6 b O$}>!Jr]cyvj{^@SP_R![7ZCb훈o^-Uuvj.5;8:8XF6hLVTXE1!k->w7܋_Wԝs%Ix&d_zQrD/"fD{{7$*W=%RcC3^ ^hzPܖlq-ٌ7S#5XK2b 8Nbt?g;Y;8Iu@&g'u皝^ ֿ S^:S}2s%d*.CchT W_80N!̢K/S] ,4=@HInOE͸ ߱/f7!Mqǒdy`jūۂDuH@49/7ށI\jIjfoMi>p,Xg2HI" " H:~-ވ$9t?Ob=Q)ZMYK.x$iĄtrĨ>ħ%JO;ܡ&l BO H HeT|F$'ۢf\gޱ'f7M<`hx.%%]C}{u' ]=rfb5zPYw=o .+6Np[u׭ӍG;ͮ%gϜ~w4ȝsJcwRYb4\$[kR2;>i,ekHfŝػ+A@Pj:ۧ=BEӲv2[=b)Quȯ̪eId^<-T{9ْvZ'l֜C֮]ׯ_/H~?8q, e)D#NXYC|2nP6wRͻhxשһ7R>8qƑ"<{ή{z%؟ǣf[n.eu(/m`#HNLϬ~J2Hz]н;"_xY/!Zl Ҟ 5  [mim;uw6f\ji6bPjZ(.pBcE8`2"X[ɐU2 1:i^dɐUq29AvhxשZ$1&qK$T#:M*█e-l B!Ч M/!B!B!BHQK!n<{u\!>Ls7)1&mj%B-V {@֡z` ʥ8WbcNk~:H+A_)iZ6jL a>|sRuvG/X1tp67c5oAu# s:|uGQ-pܕO8{meBH͐:$vi)[Ba鱤\PGO%R 1:޻?ĶԘ{|b1~꧘nKvW%'B-bBc^lNmp¡RZ;g>pb3RGTbaUkJZ\&F~^2+~z`UϮ7m>!1^,Z^fBM@w3ӕOY/RsGąU2 LAF&SdH@niE?=||ul5L[W*;5 @upK^\*H?siNFZ8 !Ԙ[.LFSW/4=@HInOE͸ l?qÛāw,ɥ? .g8gC_-,Bubjk'Μ{fII[`urrHժxcX}u V]&& ={t#@M72;Yl%qk:- RkU)DPr_P&j5"%-?5:[4(Ƕt{Љhh 9ˏ0ǧ"};?4I;i'- -EVZ}٨3YQᏜp. Y\CqwC|;@Ds_  D$ E@Wb _XsyyÉ& y=eDI>LՇU8 !A"@&>T^Ft}λloɤ>b<=poNd^B,3fAbm8+_;~HG U;0V*l:4tmsb S.& zY?Z!gzYq'xZ-E/aBjLc>UWA }ջsuu5g͋٧*i_l0¤}Y`_іu4{So_yāhzWU$%9 +m,9C+,ZU^}#j`k? PeyHCjnkwn;j4mSn]P7x˺ZC{Xk6} &-ꅏ څ Bj`2"Q9sCf0ێ\ 3X _k3u2~W( eEд Ǔ4q LRdbHvAROK"ьi4["iRD,k`kB!ZOP? h8 !B!Ԝ~@!B) |9;Ŏn><{p!>cX? Kn9My pס8WbcNk~#Xz?_$՝Cq֭u00 g~ tg}{E/X1t$=c{/L2:a=vїbNo\<r⩟gjcQ!US˯ʹC]pS!8l] kI1+=~yy߳T^dc7q5%#M87{@g2Pթ*c6Sy' zQYQ%&ir@3eYcL o&떘X6}El7MIx!>_"6;?S)UuB*+ ,}])]ř {޻T;$:FH?YLQPT0غSL$J#pߞ]")o_;4M$w:0+[[Q @upK>\Z%`9}WH~@!rXu.`$:sxjXL& Px~9@bbb.9n h$rUomldש.F$rlQ!#@ՙ*V~g_mDS_CuknҐQ=쭪*Ut3+c: `XqײoN)58_B!#⼈@eNN|\UH)DM @Ҳ]mŨs# ud IDAT'Mg ֯Tr) 0vXzgߵ\uD&tI+ AqӕN2~̳TAAaQ3EY7~ :$B!TfFeV/\jAm,S\P]I@+/&v C\:v *M*o!QEg¢ ( YHMni۸Y^+NN3 ҋz z4#kI$T /!BѲ{\o`##"=m )a6إXX%`0*l`z9l?05쵿|naca9>' cP?Wa) ~HP[Hޫp84F }+5(BH4,t4TjCy=}WUwᣇrm\.g'plX&_y<՛F1JGu. ,K#ABڔiEUHsAP%B!Ps!B!(B!Ѝ',;UKy *! Qc>-RթCqRQ. (ܼ+a{IAàUsRk{d@y5M~ZZE?/0u|'חc:F"T;eNk.)yOp"., hXݴ~0jx,/;C '+."d e!bx[F:5PkZc s_N޴b>78| -7{KyN^zN)lgvZ`5%#w:•@g2[/*c6SP'"H w} ϔyZ3&q`n|&f4V~@!#(l?g&FvxR֓Luex\W(,O 5xE,ZBH?YLQPT0غSL$J#pߞ]iT)KlϦ$f7L[W*;52=3OWWd}2JN?sRC%BH1Lې}XGOM;ZTP[b2 7ΉgTkKLj܉.DY7÷:S5);XNyPA2Q[ I۶* ciam1ΠRuV]&&X$b~ƛI$l6ʘ̴0a,K:F8)Aw*Zpswm_2ARU)}5aՒJNٻ@?طY**ZJ_ҾhѢ~奢T+U{HZR#-"X cfR09s=3s=e@#ٶzy~kܢS!:}# ח RI@*O3O^Yaq-D*~e$BH<oAte!S( _I.Cq尌;CГ ~uKRtg`=!P4yS 8lsn:%-xXd5WnIf IfU\ڋ $Bd'!޲݆ɷt'b((*hpsr1XuKz|}Co}Ux rl_MI=o}`$6sX]FM^Ԥ1Ω3YN~B/i/ \biU/H84E]B0lڊDM'ŋ cVU6=ڥoϒ6[$2p@"q2U/GBoUg^`iVUmj\V+_LZ9nZXJ%*w!xX c@էw]b;(1xmzn u薝KR'PmtNv͗;\9lO۾{+mϡ!en"uG5JI3$Hr$؅B֬%]?;%ѣQbbbh;zv{b]^4v%m0`E{*z:ʼ4f2??Kq,i5]:2t5(˼,an? B)٦S{HwkHV`b%n84PdԔI@QGŏe~1(GO3%x! %L(rr<#l #l`Ht9 R)OHIQJ$g"5t>$/ %W|N1\~;@JoQYO.xワ яR!;}\ri븣ھd09)vyw373 Z3~ϖ2ϟnMS^GvWJֶvzh+rNԿʹq>tQձY@ee׼0ܝ0~@:IcE+g:`"'^9?o&mXsqu*h6ϊz8I%BH<naQ#Хzanٛ"`Uɗ:W3[:ζ- J~YY9 P ۬ؿgv7zK*.*3j^j<|WrURH,+O (.rkWMM5$*? B5ܿmj(*(dB<4GTTx? C wWMsזssgztsoϨ ;ٌ*YPu M@S0jfdGJH3h2+KKZ{SdM ? Bᗽz"qQXҒA9OT{t'\7Lsgۂ)CϞ-q۹:} k'JO{Lif^Y W9x-D+#1B!$ !_fK~bҪ:ҕ'S̭,?>:ay2&6/7|d?x;˵Ips2yw ^cK̛ԾJ(#8|SY >po}@p2Y(lB!ZUi…kgFf%ϞFPAY(ШR`nΞoN|&Y6jz&qN6YrB̀/uŢӪ^qhD巙 !BgE1+*{ O㫯S]5+xJ"J'.UgI-}p8\ I uu8z.Χ<?@vV|'b/V-?=r|B!P )]v,Jiv̅Ճ>qnsHDzkWbs];\9lO3¶ g`vPykSMY^ڻn^ >Uq\,$FaجJ<st{5$A=G-.S;f>!SΘkI%m˜B!PBrҍ𰠳)U%X;7[ԷYvŁ!a!W[5p\R3ˮU ?Mӷsl3.zY 𹢲(ߘ욣͊^ >ޔ@ J?-5/7ɩCOi IC/i˜pB!Ԫ內Ø }GnZЛ@=m7[g_pn +r=j+xlj5.Ә< UI}ti_6ReiIKb+u0VT2 Xԅm嫩eNw<zy 4ATm=$˒݌J/k| K!BnQ^UD{A_Y^<0sqb^fuoz]:Gz]HOԷRR^ѻřO*6YjHw4>:ZyFb H ;zgj -rK+?l(Nx4.d\):]d^K's. /I_:M;OZ^CjEB!PBQ|~<FDc h<.INUK~ـΖZ߾BTp@::Z}v_{}*lbUA.6^ʯ9Q(4jYP(pQ\Ǩ͜:Pee;nz.鐚t%BV)c4 ,V~dKN%_r --پ0w"#3xoSџkͺ=+WT}'[W%ӋxGQc*ݯRs.^B!ԒhmdcYJW of-//\=z]|߹^za㿑*BҲ˛ۉկ_,4!E<DGg3{GAst]{|SBm(H.Q+Y}cԵv=N~YҢ*I+ѽV jGM= ~d-$~kCQP2rǓFDb0pBБF!Bbddp>Zan/!B!ąB!pB!B!BB!BH\8@!B?A|PC'~\aݴŠg1 }z KoN,Vz~j2ĘB.!B:~_߼U;Et杠;,bWfcBv[ Zf(yYHX!Q8B!BIjCJi5DESSm(6dܴ>ܲrl ZWvKN\6 #1υ"su-iK']:B!B:б)"Z\CkEg@(t>H(Ur?{WȃGo+?Wj> ~(d |ql4@!aAt9:T䩐E.B!|>Fqܖh4>`?>P($4g@6!On'DUϺvRPd :j+VN)yee63R*." E ըtA BS=~T+Ȭ-]!BQ\\'6/x@N*..n0g "I)/T[^hPF4nUq<3[d2Y(Q0'܌Rd/ g\K8B!P#竩TD,+//B!D?dqlKs餇  Ҿ!eTN Qfi\.gETEJA[[WQz=#B5P(gP$4uJ{}IWZ:BQ*T5)d C@OӧB)):.kYI2kMF*YYJFj *MNHY$ PlekHaG!BW&vj\BC캰Rb2;դ4{ ߟ/Mz/ji^Z}-FN?e:-NԼDk!I'Lyio01Wk~QMA]EǛ<=CUXeM^SIGh=rVbjKGZgS9,^K!;˔֎jve8鱯mikt? '9 =d_S1rߋ+sOv v- \@N8+\2hLQz#5[4vDetSnjC^~WZ,YByMNg_Eo`Has>,ГN]d23n:6KvV 僴>.SS5ʉ~NWmӋ5o)qrՐ15gŭI$텽Go> ҽqNq㻒bl=ftT`>w(]bʃ7|Լ.T̨5(ǙL&3q Rg_?=ݘ_ލ}vqk?Qj(v|H|d& {'1NF'/ŋ k/C( EkMZ=ҫځuڞ'YL&3+3< +G'"N%uWc'?By9mJ}YirL6hiVeT|)Բswe)Y 'C鄻 |?=@D& !8j edFk$|N휤n~k~Sݹ-cLk_x6yxy9gPry77+LxM^L>jIjjLr<ČSsm֐FR۷aVɞG7Uttts?qi O#th/E.!Kf>{Fx7ne^puuu @qw;3fpslyU^'~JE삣c8Pz35'6t_q:ڄ;UP_=z[FN۶Wz-s"w!I6GKWy"Ko 3tn4zVaslHKβrb!k龉N%u[2JBdli[cW' ?tQQU-)![X'lG^$Fv25SGW= ll2fɹ_sa]Y­sO UVI,N>I_" ^f;G҄D?3ݳ\{<3,1GV{[ CoA1G~~koP)q6 |]<t)z֚yBK|ٱiz;wۼH2>?_ LtܹsOs:)Aѭl<HUQxc>]bZMϏS S @XWA@nv N wlmP۩*Aa9+8/0 @OO@.*$ MuuM)o$<D?eJ(t^ƒ;%ilөTKFb}tj#*b.XXMMMw.}v8_(A4^T3PP;kII5I$ _(lxn &uV۽dϋ}/y6ڶnF<.V{-^QMK{8` BԵk鴆BqW\[K*N'D5 d q pZIFɼvhqsy.dCZRt).59^P(@Y{qQh6t\.''U鯐\+@"@{!]T4iyrș(qHՇl` L4#L^@l .,:Ͱ4eKf#< @}`5cэGj]n-YQPP @Ѩ5z:(W(qOe ͊NRnn۷<'wRT ))aY1c&&qp8\뫇xZP\Gq7ԣ_P1÷S(IP5ѭ/1k9z ӎ ̡%-wI%q_[lmGT_#CRFU_5KܼSL޲YUVDddQyy+ixwl%Ga @h"HK>8K{,Lh`cT pU'|>FTV@F'zq|֎-f5|BDD4@ZKpXMp}۞&֎&;L_uBJV{n8%MyOC ?槬,#oid|Rł=6pRDGWWԯuBq&j.͡}yBC[75jz;S7l J22cLLl:w%͛/@w TTj7Uj@P2`y>p_K (˫yt4I"sYjBBgIdXK+%%;覭}1&Co!٠+ @ŋ-SQV;gaU3 )ZrC{Nߡy댉|ηm-Q2P<q%%:d39z,Z >aiqq,?b{DKf\|~f1XkR?W$~eL6dvVOgDw#ܩe$Sd+iukXZ)o9wwϩ$_ճH}9qfu4ro z}#2AbmεZq7lWJl6t08+We$Q?FuLTDB33`5rŶ1{WhZH‡t!$A;ZY?ҋW+tB8otvl@[p1*-Ys;K- T0!dCLY5QOYXtk>\+(L=Ԝ?6؟w #ʉ~*NGU]Ir~*[}QTyYO.u6Apaoorsl>7= ;N~.ӏChtg *KJ:h GSM#Ⱦkxו펿yUC7./U9Uvy,X=*,oY)Sz$?OJtlT!rXD]:`{W/}DV?qNm"܎=8Щ簮A󏨏7xD-rŠ[I݌MR/gW˥;`0s+~}/S Qĵq6ecn.˝ y[k6kJ7p{x̺|GsV'O)#Bz2pNKu|/jzv>M^:V?jeYI/OaTlOÈ0w+щCNΪz)ےW7VqCԝ)o:JEt#bR?$sFY:[%;o{`M$9U{ފKMKz|zq= "5Go?K!mS"^_6-2O:d2S1[whg͘)^E]v&B'1\{ 1AuiC#Lfs♉{~ܓƾY:x%G,5[dˁZ‡C^tcYw@A]!Q˦}0lzާ:oTC.I}nKۯt\{5AG׎.g}5S\6]Ygn$#(<?^ Ta$-ϿdFL%;'O-(FՈU]kPTR&ck)н" lM0ߢglZy'$ Pϕ%KB%tcLdF@?d2;m@Cb>|H|d&K{x:uw1.}q횢4c[sW~zI[._uyeNgMgʑR>}uֱuуA`o'|vĤIM @>%hmZ;׮q~e%0̝:|S%L ip pyI$텽Go> ҽqb%xwy5nwx-ےǍJ=КfӭǏ$7h_~\d8Е&bhnVm|u߹% sra2㼬8"95)i׌D闾{\jTQq}v1Dũg_Eo`H 6%uj#1|;0*Akvz-% uѓ3b2j_{@I 5b2(cH̬[}| [KV>[ǾJSF}#Sͦ8Bqw;3fpslyd C'\]]]7'hܶm+?mv;w72zeCbH`xuEw(ü?>6`eKSEE$9 >}9suu=éDck w=!{G!wNSF۶e_;{cU%"X6ﱸ_ a"pΖCϥo2Nͱ5hZCKUTT(NFy/ׁj<m۷aVɞG7Utttϙq/=>yYNqQOj||'o?nm'yާO% IW.4ooʱ;t|ull?̓jDuR!*c/  Yx8NM'mp\hEc64@-{>re%E"~.PQzfq**hu4PTTFL&kW3%EU5r4)FߏXدC-_ ~P52NfJPt#XV cיnFsBrJ'R>mSNֽvE2cvG3\:=~D%A@ ˏ4QrC}a [i{Jt4[(i߆1׎6 u=-ےR4tv*Х$)tfXJ=8gD}E[c?&W쮜0&QATe%9tY*khli}!WZ}qH፝"e,Lg'S3(vQva[w(#:kҁZMU1~KPy2w3lFBR.*N],T +ÏEv}20InK`Z4y}SU-V)Rt).\t:qNR.ˇtQaФI$|lh>#Ef젯 P5+Wfx V "E^#|~=!d]^|vIn?A \#hddTϻ?rybyReOm%r Lt6jچӷ>ɩ͍L/Y q ee? U~ )+%ꎍ~'XBjwD!W& ҵk# q-y;qu{qrLa_w2yΗK6 sR4|z.1#=Z53-a^t3{c_d8N))co@JdedFx8ћ8/Nr\Tqqwޢ^Zc}ކi[ֺըÂSﻐN"7:#<WPHns?M1pr4*P|2FGiroas!l]/1gv;^xݖ1} e3D6ɤf =dWĩYZGۗP_: ?(+3&ew]uL3癛@cnIIj_rXSF<8t\sYG umM{ӫat|AOٯ炸EGK6/} ?P(d S($JqTՒZ򗂜6P#& $-M n Q}m0g?|%Q8b{ 9Q t>E^:!wmtIsV ɩT IMؼ\Zao +N;^.788qp iU~NqP5aU cY @UT)>o؞a-MrfgS1#dT@H 8P!2g<(7~]HceBo{SծT%f#@(Yz#F 2yOmf 9r7woտ*^4:7+ M@䵷.GG/lվsV%Q"Jdͳ~HI /Z%',kɑv9V~$̙\:k\6P 2+5M;R UM5/ IDATkUSw;/μ#:U0/xZwUW+OYض3O]! >@q?kMuq/bY0llyk\uuNۊh]+2pw]*kΘi*GA֣GU:ɓl[.^qdΰ?*'+@NN-6ebQ6c~rX'a_O7sڄ #j6}{nƟg_/ ˎjla7o rѡ6OquIEރ0=+@\p| !:`)QLSX 3þj<`.Wwer]߶3jpиQ+;RE嬣Ǽ-?}qy|4zŗ"ԇ-}u9ߧl4)v ;gvz=aRZK#h ]QsX?31D! 6Θ???1`;".^hwҮVf>{:&qܪ^_=r#4?dK?BոW#lxԒ=lQu=x]?s|3Mu>@ =t})&) {zP5jljúϼH0O|Iq(Evʍ-n%3O-ԍ6Ogg?8dsXנGGQtwZurŧ vٓps\p$;_[02Npfgr񠳭F]?|ᣈ>|xlf{0׃Cn_?{E; :tډ\jKMwv/کK-qo¾7 NJKTN|E~aaV2;wnmR3~NXٽ%:_:jݖyj;k;8|QGڸoGרޘv=zP%isܓ9]xe^ZZ6+s]ohNr_a\n+ ']iq &(!ڀ 6Y4vbg/oN6ui;&GIsٳ5|"%N5=B1~Ҫe~=gwj?YJ6"\g#kT?.y:YzmQ˦՛/i2ݧo?~/,yVbd-. qۆ1zyjjj"WRR,-V(r" {Y[[/JEQuJOz_JSTT,-nl%%JJJsU-h9.lBu|cS:ʓA(~n"t9zwт wnjt8@m% f3rR&A;)=CeInFQgoA'բ"|peͼKibr"^}9f8g\Ҫ3 z{,Nzo5jvu r11:<8qkyִzV4$2M^UU}y{tUn}Pv/,#%H(9?b.@zjv~e0thâ4n eDzǖ|V~x&0Ht:ԻQfr$Rw9"$ (THCTj%ٶzy~kܢT:B:yO=mW>/aWN7N|(xp*D -p@r @I @n1YډL"LQn ?D-NJtC>pq)McG2S-S uI;GzYqJV#[ ?p o1΍UF.90&՛Ook$6Bv_z *9 R>*@~˩$?Uno@zv)Gf=IR]o'fޅ5Z asb`sC=$5Bُz|oYݽ1|BxH+'L+@(R;>Y;'D!3>/,gU"N퐣[d-V pTҧdiu0M^omIud5z-Z)]X{S⏸fNNnntgԟSoj$q~9˫^Wm2-;7(aT߷ ##*a']۾ͦ6咫</㒋鏵dJuӷХ"Qlv$&&6V{]|^/KI} jTǠ:}ue[#Ů:\/n nё䆿6|ښWat|b kTFq3%hD#S̷oe[F6,wq1u}մO$( !ѓ5YǚGTEɾ=-ImiӾ1"(RUJ1mkFZJcO}u}6:^l,ˠQT`/ YxZE 3߼v.P1"äɉSǶdgR$G<aag 8EDŨݎu c{j"X 7C8cʿrXPE&n{qMG,EzmIm~Ǯ 2n=-)7vzο=Y &+{]i攔#)GSNp1e_=?fy>15Q;vG?=s`] Qh|VAkG^/p0X+ڽizG`IsgԿ" GMR%7Ұ_b`qzEEL^^QQ@c ~!=gx#+r-d[UW%3-70l?ӈ ȷv` ȯ '$>`IxA bkn {+~z oap||xl` ~)_ n>yX j+|cQKAASK  ?   [   HoIAc[H|l ? 7C 6q wvX_AtqVԹe_Gh2K!"C$jX?7ેKbm+;!W}hp >;g8Y͇D>c"9s߈}F5<}| M`#9tAeU,-/v T:.|&k,Txu%s'HzD(23șm[ELϱ_9zޥ36d⢽Y֖5$ˑ;518.gí3QZQEHً+@W Tsz߰VJ-<-:xu:AdRzbêaK={n}Jcʛ_wΖoj1^|]1ީ=Q ;`o۠ez6wY* %fsM9͑Փκp8<&pMt2.T_q!B]K,`e 8o4R%KS{{fC[h, 6l/AlkOr0LÏ- hIKzZ// hJJi|gd>)[yp]+7 |%;ikdIw6QcDih4It^Z \sJjhFZcm-[^$ۚYEȼ{+N/[[z&2߹SOb6) ߠ|.zJEA>W7Vc /e[Q3 (i㶨p2mfdf?}xuaᙶo6]wyjmj&8d4TmIi"Qǜ!Viz_ PWV֪3^ @J"І=JooX} yƴp >;'$SrBxci_$* g=݅" Hg- VpgV)m N- ҨkL,wtzV#OX ")))v;(\Ȅd$Ȭ\xM- 0t7R/LxOj^ݡ4:w:AZ]9BP(%yoE() =I(.ͱZ֝xb=Xn_Y@ :ti|f@ZM| "%^jo8oWn3$Y|9 ,s jbO"a )OZ}vXmp'CCíj XN0 СCTAV}Qhro,]PҬEs~QoGJeyL;uaAA:{[5kSG:9͑:񦝅ⅦA`0mq+L26Ғ|IXpX)` 㓫'Xqjs @\Bm߁@c1mD%&8e_xe種_XO7hY/I򆩪p+תkj%[^LL7 L sE.m2{"_B}δr.Fk `4*J Sc3J߽(9ښjj+*L(+?lruPKdHH je9Qs fnw>fo$c c{j"X 7fNKǒdI|Ն1.Ţ1]?,Ie0~,aX,f7 ֯FD9jM}FcQRD Ǥ$X%TRě:_~: h}uFA~}qѳ% NC[2=ۯԔ :6T4u,dnU!_έ[Ɵ>% \AIy :+f$.7*8vxV$\3U<TELs뻮%_QnlJb^n~zNϻT1>禙P 9=lGl#zCh ʬ>L>=%" O!?7XnٳQ_奴wIѮkIѯpt8"Dn:UUլD۞3<_}" ?GK" +dT .6p !  ߀>,U܂gU48"Dn:t 3H_A{EA~n)^#%g@" ?W_BAA AA-ZZSR>?]FN{TCY9]VNm@CY9(A6))J3EK=-r|N +"Hʌ[t@yfQcR?))(@LmQ_ni?A~?ytmj[1"GFNj:=04ۉb?sl2Zq)QTd֓wfȵ@B"G1G: IDAToD>#cccc>ㄍĽ2[ԧWwn#A*L&Gl0%L.5ؼg_DUY'2UYPBA [/z Y.`b܈GA࿶;[Lo>erz z~$tKSGt 28NPxaΑ<1d:k˞='LX$'9XUC0\=Ch8afeR`Y΍`b,9XsͷRXDWLK{rI @5¬vSFs @$%ҶTt+um\ueƳ^ҜVqHFzy7oQu|E4ԙ86e}gpGg ~l BTy, &4}/ۃ,?9\|d%sM7ofzNjϵY \bꙛ׆:[>d-&#nץE> |gt?tZsZYj@Aw0;qC;m6>`e 8o4R%KS{{f Mu>cT/Q~c~= oLչIO^͝୯ܖ,a6LmP@qΑFY@As` @-+2yHs}JFRE-I"ưG`\[s}cfI.fZi5}+20LÏ- hIKzZ// *k _mt֍s0FG##lkf ?::oiGE{Q~$} g[+>(A9P,4]վCݫhPoA*NqV);elٷszYmB8zf dXVq|AN{M9/X ښ`wޠaK505<9zlwj@4Nwo}9`RCC7n+^xB~>=(/G;xc 3m]߸-mb+Հ[4TmIi"1J\ }qXИ sBr6=nZ5-[2@q۩Hm՝~$,[­HPVOs! m[14Nkxavn߮K@rJ!޽{?qƂ95rƞ "q;VzE\*knPYiҴ ww5ͻnϹ-KzUV:;=$m=FR;Nig9 wO@gBH=|ª3 <_(džP􈽽=`D!G fNN4xjq%e&4S(EELFD633[䕕+g62ё$UU @7{m5re CIUj[gKpIYu`9KKNx|9>qANRv'SKqω`@+:::iLS+Z]=8ٱ{{F+젡)}T*|-JB|[w5D:'CS>a5`$8@"AÓg|wOqZŲO { ,"YII 8~HL'ijaVn۔Ex'׻5Do?ټq}$ݢӥznGs4PҬA]]-Hߏ_ZFWzbj,(3odz~+`08&@A |[%NP hg { Hf˫Z@嬣^S~y)ou^k$άxq7 09œ0Ym 蘑^/V'$>`IxA uY4`d@_ >fmSs+APmjnd C폹҆ǡH_A{şó4fO (#b[A}A_}E%#%g@" ?W_BAA AA-T@ XqK֭,^ 7}SAro|No}3oD>##7ݎRwNm!W }4 7?~0"U3q_ |q]~|lllo1yD3,E&qN\߈yzd[G;K۫5{2q9;dva%ٯ_ج+ʭ3:Z@&9v #ד`#9tA-;a "GƽPiוuߝXd``)_#d\7KE,5d!&U){]zbUsZ ~t/;[L:kNcfN?N#/Z~'Y4dǙm7 /lm3(Kv{/Y0SO渞>.\zq夙z u~xyV}+]Zq &j~a<'|X˹Ax*s<-쀀W҆AFHn8~#"qxۮil {rjaNew);Fj3U1XYc?t`hT.3^ZBԚ 53~Mg'YZy /ߋ&^|}~vJc[wFJ.GJBv^^6v{>,h}13sk;'F9 Cb6O'AqvCA@PN__jH{EPhNOQ>1NLxyr2[zzz~^ oH.(m ΅2|iH㴆f~,`&;;O޼rQPP3ܻ~PPX "jLz^_k*ҘCmߪf'8z.ڳ+wšYC$FSdម.7%h8A.%$$02 I߭:zz jQHd|$* g=ӄ oQc2k=o ohtt&%3ǖo:QHyQJJF5;9̵EĘ4` n啕+g62ё$UURw\~s[`0D͑[噡fu6E1We!1Gp,E+ѡG?;vw!Ix!@cfȡ|>tju5vs̑l!C:T{?x q^C~:-^Ne)髫Kᙘ1oV>ܷ~[$=މ[[2:h.4f> xG|Мtזy}5ҧX5iiiy= _uu릳KzRՕ2Q..MWZ5:0$uT^D&3UtH02k'[v1s N - A<ϗUUM>XWaw2ŭȏՕ!9,N)9sj9,OmÝ am=ǡ*媫>ig#9HWVVA. NرZ m}] ԧTUsV |PLإv[H "MSP 򻨝#CXXIUުlq%$e:?C%%9NcY,4'ma5Zk, ʡ6޹%]G%Hj;G+&3\oսsG|!Z>7#|I/znR V%xx{*uTJjItokӒ3K50%Ng|9;i7V^.¤*-q)zn'Se|>a|>R2])9e CJNA΋__X@~iѲ/MZ*]_//]Fu;&;lM/L(,3^]$rYa1IsE }%lsz_&ܖ;[>_L L;i,!G2@\g<͆N߁@Qe%qoQ b14*`x_wB1a-7/}Iڵ|bVhr4#LUUU@@JJӗT]S ..P-/&yZ*' AWvՕeFo߼ߧMxO Ƿn_@,7Dx%GnjXטQ^Wȋ]O9)g8zhSzAXS ٍok)6Ax+[j1a/gPjۻD{ݍ k =wA a݈Ǐ/'wwQ$t gHؘ8ac ݳ }F*L&Gl0%L.5B~ɅB@c[#`=Xb7N3{/޴T%rfVSFs׳MYd뼷KBN8DQQf]Mnۆ0lմR-Ojpr^]ix;9^X[ZXs֐\/GT D:[+g*Jw)Sl),$G"tRk+@%4ItFɘ[`-8iWACa9zޥ36d⢽Y9NI3-8n?mZ-*o~])qŪx wYz"3K8+:}'qdgΒ>`]&guC#}8;)Lg((IcZ tzTAeYrE75 ѯ*KBj%_ ;=aǯnMKC]3͐ͱZ֝xbH[u9bt$E?8" + `V 3'E!I\<;*Vc֌GB3\ܱ#dXLljᷗI |>tsD' #=h_ҶcU// E/OU8ϹkXx~e.%wt'Gn9Hd 4er ZKwn%Nxn.W ׶b;W&MViIKpBp6}c1mLhCVDEO:IHqtզȗ%Tae j_~q Z͟jE4-+璴Z*]_>6Lȯ/㜭]zSt_N=k*j xFm}T8fNKǒdIpY/h]6JHtNcKQ*K< ut r>, %X$C֜3WYYZ&1i4Ij` NW#JO:WN("?LK8ulKvWO aw9a(4U}LyiXܪCv3(7TglƝ:Vr9|׊k&G){N\}׵:ʭMДSθ/y_ ९= |ņZY3|6gkA8P3CIз=/J8L}9`0}gwv)xW\+є]Զ8(w9i&BNGKY~W>eFxN_O ҆Xƪ0c齚Y>TtqwVwJŗl>*#@-y}{G 8mgg@9_cۅE;4j+H`)m)Em<G8Nt4H\]nٳQ85ƒjVVVO|/{Zg~{{l3g~/Sc[ȶ4!n),AAߔ4c}Xy1e"AA7UߠsWqHAAA-T@AAPAAAU2ړ@@=(/AAA 9Ju"ő 1r{Q_ni?ƶ D{ݍ k f{`h ~!z.O.8 7?~0"U/B"G1G񃜹oD>#cccc>ㄍL$d2L&|uyzj ߏIbCIҏ͢bHҏLD~I6AvEB>m5nN\7|찥''>kHb `sіh,v%5" +=ʕI~LhLv]JA;n.JM鱍Fyvݒ@`:;fu|̚>m{ (0;-U]˓#N5GҶkO@_؆r `02 s ?˸Do99Db`蹋|/^$NP 0rOrlZ x(۠roXžw' l=W$VXdtb'v}'ij dmUBe.! 4OkʤDC+헊ˆ\_ʹrh3k'\~Db,ȓܵYQqZ`Zq3qy~Q1?}gu <YsN9P9oqm}@c[ȶ򍫮vI8+ij? }{Z|f?kCt;H1|q)&B`j@A@?޴XД]OaIFZfo$ȣq~ 9ӆgVTtPgb JX&Š3~X,NctЙ,&FetИ,&J2XLFk3˧b2Zh? yA l[G]|l{"b[FvJSowt0j`U![8}r./ON\םMgp^| [(3+DM(?~(ܧ̈SNƕ2??-@`Nzy^s&P%Jsp~\}' Yt]SW=_LfH" Ql? o~çhG>#4ܚr,BXr,&7Ȇ_A\UyŜ*| >B=(/AAOJXK]IUԵ@@i${߃ >aYVUic VUic=QlJg@~~ALC]]',**l*k 󎧲n۵g"E(T+HSB{XEiJ."f*;+DqͲ]+|?{s~9t~ig¯@kEC?/VoJhe@kEC?/X(($PP>+6z2n(%/+1o1G[$857^ __(`l=׋ .DE>sri#7ЋV;N|Bc"om79|]57={铘k 0k xBD)By0HVg)ʭ%?yÔܷ/׍1zlⷹiO{˲kK$KD<.,)ψJwDKbԘkU^ Fc~FG璖ڌkf$wڞeNJVrIEAAe=r%W nY*vƴxv.Cc0]3W7Z:kKa@Ŏpo/}ۂ#jj݌i=%׹w5*^xqAIS(n3jc1P@PWav'p5{{g߽riAFd8n9L_ I}}k朑zֹw=v"e x ]Aooo˩TguTE9y(l2h#d|mo$jzi({۱gu]SvHKK[5DAAA9NFa*׷1Y)IjyQ?#TI󱭽MM1[qZØ Zjѫ#on4 #iSp2CCƮ>2 3nK%FFBvaQMX#rD^ Qm񉨔os_F9hH(4g_=uՆ ʷkͺr*?^XtF 0j{sPyҳ7뚀Y|ݨ̏uuLDs/JmD.!Q׮:@VFz30\d) d %'<0/颣*&R(&VG.ʏ% :(enQAV]VF$g?j31^v]Vsut|)w/t$k,l!w) F+mzBV^nj镣YnE*8hھ7yώϒW:QN5l2IWG_ŸYWt 3D (01Gd--|Y ߜ]K6ţÌ7)QA.r$v6;bDꨳcƜRW6U8yYo uQ"BX: _B+~vڵϤHMŷ> l*-MP HPriډChhxH ND?Cooj~0X{z޵`u*05QuQR'imݕn>xqT9tùֹmU%ܬcmf:[ڧ$T%JdJC.X3uG)ED5궻Lҧn5`õrkx'ɟJHcʭ80S__폈~pZ %yߝdg5a[$g=n]Vp2Eiێ:L;} M'܂?Ӑݻ-șA^#U{]*]]^:P Jα\Vr W}! J_Zk&l,3}l% bg|El2FL =q"ott*`\6gf97YjO ;b&)*7~rc)cۘ]1b~!"܇!kEAlr4%m8ZXX EZcFxAl?-aiEDHsg_ 9Ooo^iX]_)Ei5m97{a;*Ku,:&10͏_y.R!CNYT[;7U(dq1zuG"h4ATYSZJ%xfGvFOEW 6 ۠leAyl\+:^xl8<q\ 78So^PUM->{flD#3qA}gcI WOhΉ{,Ĭj{Qw\U)b1wY`-@(yT\VJf#4PxGw_7}9W6Opw|(0wc,"OA XB@aUUPd˺S\ qQ#9|dmzu;U6~D׼pe#KɼE}4p 5]0I K `pߋZݩ h {x}hMuM3@ZrZ+':7ː0asKiXP<4UQ.c aRl\YHa"޿6NGC͓V:@SN36&厉k&I?<`X,_LS#VlbGSջ5J(=2ZO=buY-o(\)dHóMK`ka1X-ѓ6ՔlX5VRVQR/ e%.k׹=ߴ,`pںa"FK֟F|ͅ yӻ`1XKYhh&v9ETT~Z?ܷ\ryRӷ5xZ]͆PW0;1k7"h4GOQNPlcwC58hffۑz->t  NA"psq. n ӝ5/ot.,ş0M| ͺZ UZ:+:J 7'.AZcFwn8R.g[z3k7X_afz\x pJy d2NgR@9;G TTPi4 H@$u Wf)?; cw.ւx_.w|j?'u &X|a2:3gyFBvq 3Y;d\aLG}OkaQM:A1GG>Kc_woŭ{HRCګ.cGǐLU4&0K1ݗؙ8  @o#IAlr`-YJd߷t`JH.4#"|Q7`0,,]|$/ ,^ty-61Rc9hX\&\dLfN!F{wg[Ht'؞OGvx嶌ؔ6k/EeĐ;S9L p+N4Tiy/,YwTUU <;~Z XUOv#i$[D* {߮ ̎ė>IF}i'y5q!+Tڐ {_u׀"N‘? {񅰵X;hpW_wãE'@2?fgTb1]+}q.e73:ao3arb1W6OpD"!778D%+9u2&q%Zv]BiT꾵) a+fGsC@u=\ҠK:ߥ>I|N7a zF/4<ҟa}(,ؕOցtLqIQ8>7 qs3*O|ű1ѕ5Du^D;.s4~ -U~{_=GL:-,'o^w:hjuᩕO,`7X+SYb2?1""ԗ 798]b׼͏6%&$ ңvE|^=*giΜ7\ħ0b|cFV5xnN,FN-"$%CBia8 ![f]&l5|_X$'M )XmٳPec &9ڌqL}[v3xrgw2`Zm>7;w3Sb̭G rqKMBzKU^,`9G˗"4T=E#98GΟ4[=brOQXQ>( $Dl+7+HDԔ kNRSӵuĒQ$(/-eynO#]5UM')f,YBfTmv^=Փ Є,^ىxfA=9tʵΦ\P*Ml84| -;.=:z1/ ;# JnYn)'4gR aëfjh*A`v6k=ff!;*NOoOm(PZd5[ >Psd#] !1E9Q<䈏Zğ"_Zk5ЀG@fȐ JF\l Ǝ ;)y6n|v]~fS!Rk+*Aͯ9j+i!9D!kI(UR}:;MU+YvS >fumk>h7مWyg73pr".!'fN][y_)WV0ߧ qtM;1mۖl g?te+t=pJaѰХSNr۪bn~z\ġ]1Ü؟q}l;[ϸ: nfk8rũW+%(Q~e v'0jބzgkȳgϞ={ٳ %b􃐋u-(!Ƈ),JӞ\:U?y_y"YP(JD(ʀ̂Wo1EJB5Jϸ頩P10ٿ_= F`D }~ﮬJRcήc{f .d^Tx~*->+n?]# 6}*sMM=׮&Vk77:o SAb,G p񡗈 "i3 Xdm``` Xy:Knap Ѣ!.b)+v"lcoye39\[EF}-_˻ޗSUَ1P@PWE9y(l2ifg(=w{hqB{J#uҕgroA? DE7ttŦTJIIGjd-j \φ&`Nt!7Z3"n׷V܉EW7m]$55E^IP$<:TFFBvaQM=]r- LFs)X#^Β[2 +|U°ysK(JYi)rٚ;Qm񉨔os_F9h{,鯂fw}^? 7߳%(8'L#Q!lO7sR&& J K}q= Vjc n俸j$ؖ䱫OF-*ȌRO6t.&5(/&It5O0҉a05 '14Tev]u6{]9u, 4h~%i&>yIU;zLpe<3L"Abv4Jh] @g8? s+*J v_ }y;D@yx5sUbwbZά:t<}0R~~FGcS#LF" J A77䎞rOvaB'@}5v_J )%_u@n>:x5Qux2ٜ! 1Lt"hTJ'npIK`efUoR,ɶu ]>H@m}WH<1:hRsC]niFLQ#8#gbiC,6unq2!d2^ʯC}wՆBs%wNi;2oSЫo2S@"߈WEW^-FvD h4T=c׷+Hs:(g\7t"J*$ 0uo)+vjj۩@ΐ5ueA'/@˗#ߝ? n19ζ$}>iTFW`0RBjjHygUI&;z < }"ĦY' \m%r Hm>qL0Dt"eۇqudΫY8֡+B/]]NgfJ7䟝dy&O="TkƐү1Kn]O0p,IIu=!NcCE1 n><@}C=SgiE͡^Yxdzb ʏ9S__E{[l[[ӞG kl, \^>9 MtvEo%㈖БsdP'@@@@\BS)D}~s0JKrm####=mmej:Z5i* ;enGAA 0'@M0҉!3O;z/3FJNzvvbkkk]O8Hi[9%coU\k+d1X: l#F((=3=o,!$U C oE1?V51 Y[kW^ZʀqSvO2yTX. 00ҩ0Y㙯?KQ rg׿2uRJې|cqx,2Ch7٭tmdH@VbB/Gͣա=Y2A} 7qHN(JMiK-Ij-ZK6Zpv>kH Ws^қZXEoKJ[9rG@s>IfQ*0.?i'WFvZ!e>{j֋tdLL_ooNUJ43Mt,aҹA<'++[AwZA2 ?;'@G&zIzV'w(FCN>doX55=9zÕrd}6$} !:i%O=fwhm)$^| !R3|˾cu!>K|fhe%I C5'^3DJ'pѵLyRC F.~;Gu$]qr' ;`m7o#SH@̓?ON:齱 vNAw ( GSn('***??^/--@.4Q!*kZ3?!(ubjpu ((((Ltv') =QU4}BEA8n2'\ IDAT/~S}lFGQ[toPw 9aA:Ơ1yھ)]Wjrp9̥?7 }+k~haŵ, $ Eqo$70%+NbiI>}Q^ӃPP V =]=we1V~ŭޞ;ɉd9:SXp1AxmQΞjӫ:I2OOaG0oOa{ $j#e}oRs)^lmr#sysJbpLpWs<αNd.8|FbE {?_y *V6p\dmw/trg~i}MyZY-L)A6$gh;櫐q+ϵ绔<`?%zЍ\1Vyo>!DA 5*~"L=z~ hmKd~.<^J v"hWc1K5qWgt6y9U\@`u 9\M <~\]|g%DnDfM>힩a}1 y@0yz%eqλ 焕~8k@(oݸp GۤS:,̦)L63D֎察7wX//(-o 2Mń 5#x>/IQNf?Ċ@lsP2mt}ySseKJ@Th4m{7)Ἔ*>Hlΰt6TmIA6O `h2ZsJqfq.7驥GYb MZ&%KXy}wz#+rJ4IE^#mOntb8'i[`qq: Q/...w..{-6uֺgF{wzNwNcq64q&Z._ПmQuañO?TlٿP  lkQshaV#^m9Ycev(6:`}}ɦIm,{U;VO/,%",RUU&Ȇzog[$*WYUi7̎ė*ʃ13"N|t"PPUVl|2$}"px:e"UÆ* (xb!x<ڥQ:Y WQ*K?,^7|΂vNc޳JbJѺ+UG#z{_2Jgdj *ҋ?㠅 _yQBGqTd]wbkyC dńoM:LzNZ_1Lˌ cim ^>:qM1%u8>r狏_@o>ЛMdi Q/l'č*0Vk t/,ԓ&YF21ʂrmr Wj羭s9/Guu4nm3"ڌ) 9orҩT`[L*Ad2TdtL&t#sдrw?Lןg,.kR XN)ee̔8%sQ\R{Mi/g.!!8r,ߜ rOQXQ7iL6'a܊LP*,z Б9}2?c#Ԅrr #1)OǍTn-}׹Cz,uqdg=JJˋFu*׮ckU4(J&D~+"1=CU~"I腅5EPSQɫ>NC,,#%%Y%qt;+͜$Bw7]m>cw4Q;y0F}3%&XcG!OzvF=NSKYZʹ}DoroǽC;˝P1 M"+0ߧ]uM ff{#"zϦGOSrMaS>G ^\]^_ymDYg{%FuVq߀ z!lyכ>1LvK휻5Ҍ׸ <_%Jj/-xzdzUv\{`](}fgI57ח/[kpT@Kf^QҔk{/ett؊V~!0a=[(6]jETqFnOV&+3Ms-ow+MlN95u/nuw p mt8ɰ2e(m>`3tm!i=N]L@*~}*6 PUݷ!)u"WpKK'/FEW5*{;/Nrp80g=b}qxD~6Z?Ss5ݹqKɑ)o]y9jm s} ~H볾|kSר!g9ZP!*B}?|wOF~Aey#J_Pd&l ]AlO 0bwƯ|.O$3 m ~*uZt$=k!_H_"be,@/! oB޹s~.#;܆"c]_yqV9vڰ!$: zIp[)tq>F+@Y(?=m}w]`LܦK9%RK" s>2! ~':&s=g|%1[K|(͉{\> :t~ mk/Ja )V]%Swu^V@Pha*/ì-+p1_$VQxYbq5Ɍ~R09jMek>k b$ph[szx`x6(>%4hTS|SlNUX?4jL 46¾ޝ>]#5m.1//-ml-Z.`f>WEZx+&n\Đ爛7Y>*V֧ b)^@6!Yq";NRg>r6=/t4c44 5x4x=%-MEa8{ k32SŸ{ +tgK~,{0yrP C yb:ёut =oފɫXy#F-_.7 Am=gA^ zs0+[x)n}I#Vb忦ʷ2A-IX U)?º[gLx؈pQ^X`v38]SyC5w1jw+nc VroϕF`#I؟LwQ[~ҳ] C3m#6+wDQ sHȹ| p/j_󙉑D(?|2ZX’9jvʼn La脵^k!9DY)9@55Cygm# oKLc1Bmx}km7a`dOa~(l-S|>jK.* &Y?ZQ B}"yR":bS*$ߩđZ*᫊Ka2gĆ_\WPȺUȍ%}f4S[L&\_Oxt&+}2K!ig'=rI*bvGbfm8sv9+9j֖<¸^5F\s?TѸڟ|<8(FFdvOb'yL{qfwh1+nvadzeFȑ}Aoc? E:؍x{չ\fjWԛnb5f dn>Rs\eko{CfʱB)gvxD._9uTT[&ETP1yb ` v>̧"b-( %0A8C|X=}ιg}2zGdgpk IDATsd'MBf`k2/=66AKi܍[ʭ[}c;R*~yySr4ܒuv;J*Þ*if@s\bRPUUMoxlÒ:7`*Rrr(APK{C}ahqWj}!TJ5Jgz*Ba9p>Ӭ93,, 7h&|j'!,@I z1^{:[`8MHR@@E?Zq-V+>M_Z?#< \onǏwQQ`"#7 Pؐtr(\]ӹLC/)rutG=ԕTNl!-åy\f./,;Pe7(P03% LioKO'o6cpkY99Vk.V,`4ĊOT^>w+8^54-9&ujIN[1՜o׿E~9׽ Vl{/;[GazzGn4=;Q{3$]w3^% &]})Aa֦mVy%x-?ޤOzud<@pٴkj`V* )HMS(RN:]%h!% bRIg)EaJMҹ*o#v@.ǖ;f&M.&lx3, C\r !Riep& {KU8fbjJF @ZYӥ (olV%Cj [GEEyեeJg_ciBqJԇ}LZ{£/0 +,̋eG@u F뫏<YO8i֡0t"`0q~zU3G>u"!7Ub'La^Q! Y1z`8ߝJ27U8%&-}~"[0Dևy*񃽽IˋSR .۸xܐ9GnG&8 .7?!vصҢtEZ(T˿R>ǝ=J`t%QO O0͸hf>B3v>f'b]3BzVÀ{5U٧:ݣӹ&_u1+?@w.Z!~b/h%Wl^dA KʾڷCT>bt*`x&wcxbqvX1]:` 9)A2lR]"ƷBf  pv!N9q8+[ΎXE Y.X^O);}K3Y-{x6T,D> Di.~zKzź3⌂w=魿6 rc; {o;6h5\v]w3.iz$3je+Lb0 OfDpk qq{*Ewij=*E6<Ԉ5G/ wI/e,u43[UzCIe4Т贉R?twf-ܻmu+^9ñԸET]{o(7Qo \@YV4`AF"dzvE6,!y@/z5haƩkT٧%:uۦճ+O~-?U?mn玾wB5*o?F[jrMm ̈-Q&C/$nj@~W 555xZJ @ *7IxW}R~:UJj;~l[d@Fdgmr2!#ז2[ Fj q2\6B *BBrt`}UdXn_ CBc? x eՅP yƛh`cfU+M!Hev#!=dsgRSXT4TT&IcccͺE o0r$ 3V;OClc盇29 sSDy8{Loh9?<'NʯjHk-yjqۯ>!6$zw<Db؊dCWB]knԳV}@yUfJe^/3P~!llYQSO-+g?Obclooa"IQx4Ga!? 7:*g#̋`3 2B6 eb.h?sMO9 ,Kw$m&w{ \Y-.7fqS6Jswp3jr"O=+૞cÇ4V~x5|>qWu^fqft}|պK`)m]VYɋmH[k7k 63H <Ґs'nqf-(Mxqh n}3C]JR"og6spT=?[`4I) 㷙_zt[[*5k6#ʖlPߴ%W|{nXU{_Qp>i5e 5̡Sc:]'uSv{izn#VY{'*N_s^h{OC:mYĬ)-.s/WZԐ'玃{ì7lts!1SvxN}VNy55u1?;Jsc~쏍[ooo%߆:: eIlaq﷤oۅnzX?8>9?SG?(?MoJO0|\c{`z#a٨iӌ:} \*&[Fa~ 槀oqԜ;ouq﫴>Di|;Pz4Ĉ*Z?~ D1iT9ivs :׀?  ,ˢ61 OS_SS`~n _߄>fS]vl5S w`ۯX8Vۇo7lW@7 Y{O_?w*7 |=a #𤰰I@kGXaa^E{X['u?0_a@ӊsL?_=n8銍|MtJVFR䫋 ?~tg[t'GN2-f;- 9_Oyo 2wlA[}7=w>Q"-Bswz]#pr-ޱrR~ aLk~*n:;/ԩ J[b[CJ,sq!WF6]6]+WA$ƽh_BT=gIHBY.˃qw88 od{zscC-țy#m Cv;%"NS~/U5u?'=BDs4PhĦYWva웪b9&cu{FsU#S̺z@jn%J|nzUa/Si7|23zAc/X 0mI٘H 0Y:&L4Xm_1k*\yϣf@d5OWJOYipH4 H\rUAVEjM`:U?%YkM5Y_?G,^,F9`Rk[GT^A 󍤠*),!tgorYiaeG(Ax١drÁ«*gzzx <4^]c:](vB7KDhOٻ@M>gELDRdL5u>fIz̩a1;jȹ|"& a JTĜ.(Ylp*2j"/?XE-O+@si[/ϳ >kk]k:2j8U24[q5\?x/Tt!' ;67)򢍙/TŚn1+-O/{|zNm]9EAP\ɹ`qpm?_u~[bW𦴙 EL AAPAC}OǗPRldT25c `<dtjT *FE7IsPVzTW2c;YTU^Fn{ulYi(?r-GG ܏Xހ(LRR3L|=^qvgSW(L}~,W̅}ǟm;݉-[\nDL|hLw;LgIhK[A#CC4VYSSg^Js@$> -5 `~9ˍRJ1Yx9?Q9j},Pgԕ5)#8Q2d2;G4~Z/ŽS18y}.1 yDd]1qr '@l\}*h.5 ]ǫZut*I- RƝ[2W@׫,%oQ12&w,*0_@)QYW@TG/"<9VMfVmӧO>-xɳdŽu:<VSLp_fӕI k-dY)\/q զk'MĿ Jkoi;FMwY;߰ x&ܨ|aԙ[U8:j7 ;)` C:x׬UtGSӯduROg}!1ps-ux fZ9jr"rZq?1e"apӓ#+o6)/4{mT՗z6kl4Hx1UfPr;lll~+ҽ!^Q?~Q_B>:Po>> 䆪^vz)%խ[e|Sd̹K6z\xI*|mM_JG'vUoގ-/o)E)54jiDH" I Kj[~eq=6Pnϓk9ޞt^po"d٘_<ȍ(9P 3QaJӤ=5WjzmjV[UAI{A+nk AyeSd~5,`ŷ L:EK,IfԔvȦ)gAXmg2Y88j?y8nI a4hf@0p~{/Hh] &45 l<8gM|&LpiKy4,\p@`…  YSM|iנ/۱{U\KG @r߅#nfիWOSV/ jH'| 9;NfvNw~e[񌧾qަQW&CfTy1$ 5cY qq]:bhK7斴nQPƔ_<^:5.ú*0)Q^^QSK˳&q|:22NuC7΍Ғ/*;DN Q[{"":3~PCGj$9rav*?(?V]A}^o☬9w(ғ"or# X,}sI H#-ZFn15PF&+WVͩ&C6e}Uf)E"t%3 '22¶_j1Cup8۸ONj+y3OzsiV/K<%=췙{{Ȍdc82jҨI#^vuCۋݮcK?QQ8{ndw1KO ъ>">֔={檒۷p*gs!Ь)-o0WΟJ=Xh%d;C/jlfw8 KsNĵ$6fT7=&z2 ^o  {{o7`ePWWG' >i-,7J&[߾R X,6٫; iWbkfJ-p8Ap븈CB=ݡ?;kmo|KbD |,ROҝadԔxu^X:H/AAAAAxf<=}|{h0Pp{<ho? |Ԑ^7_vcG }&JR9YC$-/H?5(>2 2%t2//ZRKc ӏ@n<èm9C~ %(((((((((((=PPPPPPPPPPPz e0`0,&} /c~D5AFIG.F#*}dɰn7&GA#R\r0 47ZQCxT]vO+8w^#szXK(^._PAl(I}}x {aWإUVw<]m%/-0HaFpeOm&}<^6UlSpgæwԪ!-՗{/p8ɥbr$!s%lmO''c}nZR+L8c*FPraO㗩M#b<̎'2Ta V%{yl5g,wwW@$}mxn󨻣(xrQy:+5~E %3Sޏ쇺(KcRǥ7[OǕqHƅ[C[sn8a@g~oQPD~.!pK”fBfjKfpw)56,-#n|rz.7j!ej",ٚ感[{݌;_9ο˽WtV*t˳) N$/nf'%NIf[2♸n,WQ?r|̻ >81?ET~zjz:Qmѱ-oNEё,05ikTwWZH>Y[M_y'4~@sJD? ,bqX,L[붤l &AA |S61)W|͎ 8"G{(ﴉZK/$ӅB uu͜uFx >+OGʏ8\>:&նr[Z%`HSģ'' b9MSUa\& ZNSQaey݉ uݬ|΃RBfQ^,OGRC~#9g(> 4w垘b@`BI* @@ȇ G)g77|;927/ `{rUgI/Y/\<ޚJ.Fx{.Hzz̩wka65n#$zGV,\u:T(QC%,STZSYitI²tJ@ԅK_f=eC&Zq7G((aOӝIOeBCfV 4d.GdtZ²Q_|Ƒj$G*>ܛg:+ƙ>] }.22ez$K[s6b8G\j˭D|o.wzCKĚe!$8~Tg:x5!D3̗{Vۯ;Yt*wM-='+)쭬vwC2\ͧrYbղ̏VVVVV۟uat/sRI=d>uym[Z>e;|*o?꠫XvE.3)q-?̷_8#:cf7߾d~aVmes'T r)nؼw2J|Oe&wp y]QX8 h]^M0Vga i|)94U9qY򜸿k|Z1*;yY54kHԗy=? v,(~spR66|wm4({w}/zrz2~C%7C.rx\U'@ќOc7DDj?X ǘ|~i1~N*di> @aHp=08oSG r%Ap<H]W>{i ,JzrFt869Q|IlQUItD2KB/6L|ethzQϯȱHWDҚ" Wފ.Ւ~Cy5}l>Ղ|3C|NL'/Ϡ7DNWו4  (ǂo|_gQM ibbԘ&*SER8<'E-7qk^is@rIڲI? e0xa Bt&Xz: eb: +nfG~tṞùKwxEձ5@ys-g Ȟcl;A ìK;q@k!QoN$0Jq3-0~sVlUTYLt c2[{ L(T7kJσ+*R ICEEIa)ϥ69`0_p}N{:q8%6~DjHˀrK[o[?=DE\o}ݤћ %,k2N@U $? .`GUhө啭@%l5ʢoш+hnf`?.-=eS[[C0w:T˶Qm?;rT[k(( 1#S%U蔂Ȅd)3bS,pOd62L&L&O"/3&3kex .;ƅ7]lƦ݅--O޳l[Apޢ֍>܏]`{f$s76jR_i͏>>ñԿl~fyJXÔ;jҮlY/Nhtu$ͽiiaɻtGK{[K>yk>0K>NMh~ayj|$+ėshYפߐ[fiRNZ gS!/ўQZE_us^gD H7&oߊL)hOhEf= a )))P{ QHVZ^]H%2ʲ kv#NO-, `=F\o;32d~8o9-W&Ů8}ib(o(jWPՈ)c h)^Atj0 s"`yEEq @[! @7X~m-6%lhgu… 9ỌߝAIiD5Z_ o??'Ϫ+odBT-K Xff *D @AAAyxԲ::7?/ZVGc ӏTW PP4~@AAAA% JOA2b}ʥ7;9SN}?ⴝᛞ%жܻiGx-pݺ@O(KiVp>dXۍ|ǏA#9iŸu O{9ǗL;r  [:ɮzW@-:2bKR^w*d? TH+OpݘJQXlnZYjٮC'X핏|5KO~뙊2P>x9e?iSid!@0Ew><3s;ֳaP9mSu`sN ٥$ K7W;?TNe5>ޱ߁5XFU[ٻEWr3(3紹XA@T3o3Zz^|:Pb~w1L r℔? eY%r!r.kkP9<.>[@AAi'뒍͵8X>)_獟#v, {M??WO>7RJVk,'YM/Kp K`gK uR ଵdE: rϥqI |w+: ]My?VIaRͺXyGoNS^l5~7=T}ZHitKo 6\m>ؽǪBč[h+:EL^mQCL]TFT}G85Sl /ʘqZ\4+?$4t!cJö":Pݤ~mZvTmN/TuJUS27kGƯ7wlņw5dϗ|0҆SvYG_JkZꨗ[g6(Y}'Cֽ>aUfAZKbr0Cp?Ov*wś{J12FSLӈ~r*?ݣ[z׶E#eIuYO=}>0ѷApPQ(/q7m@|qQSbz|*jlX":Ո%]Ne|?삒={^IieӆI(}S @6qL!̋>qh/׎yUU.dȽ-2'--XsԹ:$o:4)m70#m1Pg~qrpH'U's˪1OQsûG̐/gN}7@#͝ +܀, u6lF(=Y.&@m 8ccI(mbd|*7"YtM%A!jdwmC;3}aS3@fRAh~15d @? zg_|4w^q#5yx'opLthԈ?|G k ! (ɒػhGc_O٪$c(% ܎EG,KOo`fviŖ̀?HTj Wo?b^L@`Zqfby!InьXN6k>zDL/}KpYL.5ޭzZ[ !w^fnߵ;%'&]m*'GN^No@+6mmV>`kkkkKzBJuMJZHIpuV" h~69 Ia]6^۶I7+~p]4oms =W(9ZXd۶%_LJ#7{Tl\([/jpj*\2CZ)R22i&'B%G0l_y ɾrrU1whPsٲdHfFiA 6cK?,X+h藀:BhxÛI]xA ^_W$nKm`~knrFc}2>I 韚FtaOǧa<\YW!~;=b0O4shXN+{{{{!!}_\a:e@ѣcgelZ,NϏy{̹fqCeJZH`퀨?:,ʬ 睄)Q[Q1\]ŵ[NlEE[EaazBB0{xsνƍslͺ>(4SC"%}زsS&^fo0p_]lqp _ԧ$!оwD<06go'v!!?wҩJEAivj⟼-lj_Bjr -; Qx0kT\ ' 8XrΧًpY2:Կ 斃˞3}peQIrW Nh :EO^0z4MB@ ieܺk<|\bΓ, WHK2Ņ4a'N33R6u4:/WmgZ͊VD$| 7͆'XYL2N.׏ѝ1Ӷ<'SZByqƛlWN?`OcXXX&R]]EP>S(*ڔob?#, זLh6&p>ip76cP \[Vșw=.C9#+8YBmv{zz䚩Ioz;|9C6iP=,j#/$T$C"bN嗾͌ Y?i Ԡz"^6u 0( )14tFV[7R^:ݍ XxOX,-R@MҍY%' kҰ5QTɸ "nS۞i9t3%o~*} _ ht, ftyoxNP(OZ`ߗD_돜v['yn$*.!Rˎ(8ֶ?n\CUs5#$D@BoCHOLRD3]+ EY_"P;-n{H"?`J'&R]҉d́ʼnE#JJ LU;']2{VD(/LIɠOzXvROJ YBð=Ued%DNVOOÂz{I5Cp"r;XEQT 7CQTQTQT (*DbE[T5{g MM2G5fR'یY\E: HM6wԗ#{:\O0Q.))CI2vrD{TsQ:)5~P3:*9rvݵDVxB_=z8yפ/P`Yt|F-t@ΘBFTTԈvۢ]Pi`˂[)U'^o4ۏ> ZCDq~rG#y"Iɦ(/OQ^Q?D0y-zu~ S }a5+; R*+ٚ++h-2( SDA^C dI$y{gŬƯD7_ʭTR8dcGfSΡZDnonM#^zٝ`WU^(*R:@Era査*Ctw xN [3|xC&d^Ys1lozY)Eժi-rCNq\`2$ŮKC}Wo9Ȁm׳S7VwF1<"yK^٭$ ;B 0 OӿLe5IFHh_}D p$'+;1R6%7 x)Gv4p1Mf؅W\o?oA/N?6 *rc&-xx5`9y_qn_{|8e]V2=}tyî]k#"IJ?MOW=~ |(( ֥)ï7/}'8rߟ6soDay~ɛյDFӎ2fy`K?-? "I?lض??xGE!(3B~Oo}C:qK$Zpo mU.]Hn:I=FC3X֞=)g^pIOg/)lgA>jc"@&al3/jHu Œ}wP63xw4{uɅWn $?`t_lkШT1F$[A~ğlkk÷I*`/at.````````00000000000 h+XˀPF8[:g˿3K=QNɠ+;Ǻ?,-o0|nGJԁaډ Kt-9Ͳsp#G9zl023wA&;WQT7'ư'tzE,n+c֘o3詅-Wm/fV5{nPtzS@ZH<5X89weZ:G`$F@uAVĜ fDDozԮ;pZ/eDɶ'Ji,\LZ|܌(3#򩠤jhXM[?l?;FmyǷ˭'7 sS6P'sr#gMM#q,|GhMr8F Gҩcٵ\o3<-d;h e;C rr>+4O _( jkkjjI=QN6M (u7הfAٛJΝObKVX Ӎ\Xr*ֶ*n.uhdO/%^Ɇg(k~ow R IFbԫaAf |m+?ɭ6%}h;9#e0w0]KWdaX$3 ҳ rlZKLlܹ;_V}_ O'NjoV-ZUo=D='8+(Sr#0V$i4xq^ M, ^3wg;Ν;wn]'JR1SeYdٖS@Hc&Y\Mg2G6ΓȈ|&Z1cߜ~*UܼT^l m;r#d{#! /^K3p!UkQoYz#XИ++|3?Y?3r4*Z]+е[0L]!OQd{h6Zl]Zڥp0000 Ծ}uVc={hW-F:]X0g1"MzۯTV(*Hh'O+cT#QRҩ ̩d}6jN[u%e꼛|3]UQ-ɐ]hM<)va]r)6"|x!𭨺@IJvq5U݊Y%(SovΖ.{O$*I0WI}۩SbqH$@ U-[x,!|Ÿ7%Q@DU͏速Ŕ?sJmH*5FR {WpkeRu6(3qE CrdѲ)6p*R/]JEbEpk!8x)^ Ж,8NpܷND p7_%^$tX=4E"qDDZDĘV R%:R: IoR+&O H슶˩EeL1KE8/ _cy~dyѭN95/Re'hq d Ez[%jN-P54?7'$`ON银%:5<^$H$*yv`Ã+h6؝YmG4IHD2r#'ږf8nК1bZ%[ [1ċ8kѵB:mA,NA-ö3GHGIQ_2 \"GHJϥsb+.bW)2\*T+U3)HN(`[]UbubANـ*6))--$j(Q(38L&"@[҄tEY@sңD M7Q{FCeY ]@E}#t]]89}ITݝl߽oR^VjiKѣS|\ix!U+h)KBVYF@ ܼJ()(P0N j`Q}%Ncdx2JNt"AF s-bSLz*+ѤFx[9U&\}:O~ڴqwS6yRg ^{MPI)U پ-IEwإcx'J& p4vK7yr}@d?;sMΟ9p̉QQf^;fo\h$e)Oy ^bL_6Oݺ\r@hs.g]۰;ť1GCdTP9LQk5ذmh/0 l#= e~.߂`?{k?8/^*ɐtB.]WWQ.}ğ^RFׂdD6oAW;!̊|?x]D"@Q@kN੊B!ECշI*`?lHT>MO 6VPW׺om Km?```````````V:g^Vm ǫ H]40Xr3u?*[\ ?O 7=VW_5bܖ\7ш..O Xρ7vUT|waݢݡ@kQe~KWȒ:%t>"'ڎ6+#,$gMZɆ^kw.CMqu]/V)B1>o{e'"v㦌Q 9eYa7NnGsJ^+"PMLb *Kz~JH>$= 1$=hd–?]db!zb~u-Ru}=νev=oOB}pv?z"w@p%l{IPl.bbBՔ |zө@/O=9~-j5ԗՖ?~H@еw⢭)V?|:9Ovת$(\: chʝOA&bFfIynCͩ >pb;@#ʘ9lGsZwS˿+Y߫|L)5MP3a[xה!z"uC?x"on~,tWtDC6Vxw_rxyݿ^lKCl8gڶ?\:^ge]5ieߤ X><rxe>4b;Z4o^{H:IX*ZKtnWqw8e9+پJ}S6y =e8ݡ <(Iޭ[LkReћOtRw?T ϱo.h>9|${pf ]ko ܶ'_J:]Pu~?-k ŲC9ǭNY6&ZZ[ =pIn6ϔ>z0RNg0tAVMq[uvwsSN<~uUh~DPPTHKʯ'Qg%۞{p¾Ʋ)/.ߓl^ueO訄{|Xf~<]{s̖ҿ]?HmsBMiA`&oٞ5Ph.*9w2Ոdvw­f5S?+IRN 5_bƦ( WQ_|C%͸ʖ1]x?bӞ^*s+kQ>հU)i|8P*`U&x43Nض鿟IN80c?F̻)?j9qݒ- !BCU.-~#ePo-*H.H y$U6j9g ߻QS~Yl-'rl+DQrl!T7ݾZ 3x?(JSoVVr>>0Z $&JdoTiZnTihMfԻs!n ^H5pgI>u 7,GNj@C+fo雺aJj.šlI ;FfV6 OaF',/ZІ;9u8m&_yL~iqU]x>z5rEbZrTWxwaR b ex/&ɉi/]~U `rHw=gJqƱxZmjH&I< _tuBi kIZҒPVw.!1X>;ÌvZS!hbPA@N[1hǩnuh-X)@>vuuz6e+rj2~QwuS=U_/b5^J^˦^>H;=דά!jY?2 5pҭ g.]tU`j{ g2T| ˀԽ%@YYrMsq) \-ĕRu*))M OO y`P {{uGiɣΌe:f[T{ld۳ct2S7Ni:i{= Dlx2ݖoL;:vBED۰kK9,oq,C9vѹ<&4PCC~\}Su_49;<;2~YYy2{> -W;"iY>v=&{,kvuͰM/uBSLڼ;QfҨg 1rJZ.7ޒR |f=WOn~5(g8j#~:::-y3acJ4Q@%L~[)ʲ+eEG$pې|ygȺ[Xjxr BZ~wӎmTK*(,ߧ8X,:]AJdm?\Na7!J_^q6CmIP6Ԓ˖"9G}d!7X1i}^b|,l||ɯbtP3v8ຕT47`()"2V=XJe%%(dyPYŁUV=;]FeՊ=)f>+ {^օO'dr#~irߊkgv=gvny2zss`?f?GqVfHҗ "$.F6Կe=T YScɔ-9* "7E!Qn >uYY 4VT6OR])<f ulf7UeQ-H+XhN kwA5LfSY;NUS&j6W=C[.FTΞ7C +ǞT(yx)8^tRϰ|p0)7pۛ7[\Ad.~r.ݎ=rA -wo:|({/;{?m{>CSnpD:a&??xMCEM7:@b6ĥ^v.RT#OOO ,=cFZ祔vs²[2ɪ$%GFv zG֜~ AO{ Ҕ ʳ8VV%nGUwo*(׋q޸WFGDs@NYPd96I[Vj)&(fh+b쉍Yn e9RTS%Ы~}?뗝x@Ql{[W8vn*<%N'>. @4WJLDIJBk?;1E/ x &^]˔z&zr:VO(+]^EARj::lH))*4$jW&|ᢢrzzҮW79/V7R yX(j439 x<C! :t>_wIOG3q;n@g)-O$k;wӪ,wQ."xonm=sg۹'1͕IfO6X_ώHlPsjkl!71WBԵI$"S #@* ҽ1nVK@zrb`#%~A?n(jѭ679~nRէXN -͐dbkDL}`sҴgv'UgۭZj\`yhz?o&((Q5QE/*T,p@$YuғGM~y5oYyB}7 @ Lh"Qy۴ظDΆRE )_BشYޖ#8"@%E( H b␆^@ 3-.#<6 s̲ j3n-( QXGCH3Wr qDoNm]lzE wKPT6$-vrHd6I,8?PB@Rb; 좊BTN\k)kQ!.nS'8kE"DVRS㋇"tsTtI o bf۪^T1ңݎ,JJ(VU?t- OC3 u}Vү_o!8NjE nsV:OgKm-B (pE~DƎԒv]J-}Y(씗<1>dRӅX/>^Vʬ3!7i.x9E"<&X co"UTϼGfV4,=U8Įޔڒm5wyn{_PYy,pD"ˮBi޿yρDH++^fPצYyEvh wW <8<@$x< <Hm>ɖhC>jb뼽'vN~;l V WB P(_x9eMMT]F?آغ;QUUi P/_ߗbnd_SoH(fq Sz$?ZY3} tPRw*$y_ kZQ>PXX:@1hikHoiI?JZ ^,=bYDƦ@ Բ;+IVVt. ,KJbQk/j\*>iAC:+=.Ÿ %IVQpǽiSGLssAC:+.j1(+ᢠ%/VęNWVV. 4%}heI lad0+#/K<"~'$-hr>=k C6շE"Qˣ۟jTr(o@u-m:p"UoO4ɅKhPK9+P[ +63uII9' =JQ3pN$CS2Njx-%8O7ӨQvLL( c嬹k;J PV5)[v 8#)Ie ŌgKLJeD,LJjg"q*1fqZ)GAmA Thu vK3t4'_9 7&VJ6 p&io?lWsv>8Ϙ+Lnk;~}dC;Laah***d8աH}33HiqZ.idB)mÑ4mSsy!]&K@Xyq!ܖ%1ZǓdJ:+h*D@y|bia|"ep" n>N&jU+{TV-̸`ek@ D5oO3iw3P6Ci VB(*T0T#5ݦh mAr0U{hZ^CZZYFVõe$y>fYώ^vp:)x~TK>]~djX5$"KT׶}g/q=I;Ʃ ԕ!zSrF#oY׈f&Iu&xI^ەZ]ګnSujתg^2o)^,%\Yro4=XQdb&ЧQt[={7q"Fk\Xgǔ{6o|XwͶQg^%Rc|k1 .4R'T$<ܴr-YQALoqԇfν4U/v.Ҟ5YL4fM7,G {r=uGwn>znNS).M\zGivʊr2&@KkVs)r2%IRs7( _XTs7TҠe Ôˬ@i7қ9mѺakJgŽES?{gڂ5ʼn)^ x)XnTf{ ?9Ib o}WF.NK}f.'fep% Y$y7kO|#MHzzQ*-eAQeâUyI:>FTĥ:7LKĐXwì}n[kg-?/( yM%]h\,'&xp3o .s5 В4(*ה*ʗ ` ; I,AW$ԓl0V=(ddr麺"FvavּkU}m¿ ᳗T_zC+/s0f}uE^۷)Q,8{<|zc I̎V0;&cMDb@Q@ks\Nt`!*k;v)hUh-OUTU )JuȺf&lƭp#q?|h?Ea%:[A`+B~VW~?;X-}g f"J&EB!hvW߈yl嵺Uh(SZQW7O@̩[̩u_ǯW㳗T?2(-odP_d῭kjL uKm7cnt2e%}H)zy^o']jGf4l`gنCȹq6:}C ʋ7%ј=HvPk;PvC_LoWz+ԉ|o?%ΆwX7ce"'~ʺtDVoY\On* k 娳k'xDi8ěԆO[<6l4޻E\S֍w7o]tӛTz ^%AV/ķa3EOog=9wgj}7 wtN܅Nwc<ٽy']QbtomʫNOn }TH'KN$l// ڻMq֔EK>|Z"R5r@&2u`|A8G-uqMYgoKE@ձ8PN\xir=ǹj/ +Ӻԑ7b 0L$=~Zd5mgy[޿|5%1IAZ?? ~V< JPT":#<Ezmj(ט$ACe4CR Hxm~W{a'(;?do3_K+?݌rȬ%O6oJhHav nSx,\ ]Q%K4hTي=ts[Pe+yúg#TbdtMt۾xPE̶6?حJͯ+Lh SgHN_ g6~%]efo%f*cH;3HKʰc%@5W6ڭ~&Rz^ôܻTJ?pc{H9J3Np#D%NcAtPD 3MH.@h:(L i%.B:jUXU0 JئrTQנ\SuBNS1>4C\[UQ B\_!ACe4CR Dw=k@iSWn]7$W]It9|${!WAWiF:@o"3E<%'?Hs 㧂(#/~VJxT?{Pdf3a [Q$C2QBLZք xEPъjhs"/sik F0%i"DF_(যKA+Sn>ipDGйECޖ^Kh#j2.#ρ\, ј5 ı*$NIʻ'_% ],ӎ&rmI :u%%YD Vs; zq.g4D'Gt[n@C*$'h5r0ÑpJ֣ +' }i@猿hWceeEL2@%[Q?H8jBK =z&>ziP\fŮ 4VyU_ Q1 `Ն 2HrI^>=&#'(W^1N#u5CKu 2+١V%3}:4;X")>EFh]%%UHaGͷ,ahF~Rd:]ǫ 44)4 lRa׍ǎ >4C~[F$ACe4CR 5gF۸nZÞmdW8uv(;455)ӝ! 9lDs= I >y˖ q7lyXi9bö\(&੺ZB6p "K"j}Y>|,Hm֭]b N$ >. h˳RZN*<*CtjmEp`T`9rqzv@@yk`y_;v̾ۚU\c{5]sDfSx+]{`HE :Sn+;m"BU֮AQiuS#ж>XRBʈ#G]^.iѕ4X]M+M,(mC\ 0-jѹ..&X1BcNMEDT1)~SY",Ly%[,֘$ACe4CR nVqdǙPrBwM#;{`]o*=핎dgWo'7Pmzd's)I:%^)L},t%!k:o3aqӷs<ƴ'wGV9nCL zP &Ŋ*6M(FaQjԔj P&VB9*3~(b0KQyyJJA@QI&^WVLtV*`=er B}9y/cKp t϶ AV& ̒O_2?~,g HMm) GкiOU-ͪy\qP!_roVUK2~.[줸LߜWZͷ~CTc Ӟܷt^$䔌Q'DQ- .~oz#u/s7'|%VHGi!j8xhd-dkޛ{OAnVmkvj[uuuTܠ((Nd7  @P<>:箳AndP#Z͘/ YMV%Q;" ̑Bң %a(,J&X(JP(@PZK+x6!UNPQQ 0riApmd @ B$88`/K<}-ZfJ1^w5.P5`Zn]Wra]Jn^\CP*|p@IrAS Ww|[pGQ=]A@PLqVx8td=4R]:kN;Lr5T~L.sλ{[m\Mbljĉa$V Vf!oY0&$J IU} ~rSʭ.uC (n./NN?^$о> _An&7uKeUkR~yRRԝu~%8K/fhJ"ҢOJ5եW82d9%P*U[-*_Jxi73?`nc TScHEy?>8}(-jnx-Vtf˦la&K^J\ q3F=}tdHdLu JإxGȤgP.W0$ 0h/WVUĉVxZUO&٤Lp∴3;X[CAnjqdDkxvPpfy@}"Ik[_u=u-fQV: %Qi3MpH,ohF؋+qÍ(QKedpfEXݾLkJE(jJĨq5ҥ~b0$hxLXR՚:v~eu׏/nsc*g%f/C0jȦJՔ4ãT*VȾcFnj+L$5uFczcb..t1YE?a'o۟'j"1ʠS[mҮ* OMj9IQZnVȐ>uhaAQ%K</½9F # $'t;" ̑Bңniip V][u-Dvu›gFq]Q)ssNdFBG/gEfFEM&b$(֮#D2ֈL>P(l)ƙ; =c .ߩYB߬!ۦ oI,Ϙp皚zhtR 0jjLkih%͵4{VQ+ls 9G~!ھぢ0(B]Kr(k❩$sD`[ -]#)$#8I׻xjhM9XP=!! c3^K+hi @YP?ڑB&3#}8C.E:*vʘ'x23~_"|,ќwIW:ipC]/_:,#C&sdcֹ@OhJy/O :N$>[gK|< YlpͭȭVPUY@8lwߍm?x/)TMI_o}1{>euAHfB0f`;ҏi qK/9/l=-&R/8V# xu}!5'o%g>G2 zl-11̿7 lzXr%8ެY`Ď\(Izk7$&$q/}4ʛKҏu^8q/`,WP={DtP?4J_5'4[=. o_༹IZޛVݷ XN6Tw.)m8}=ozE2,LHW Jli׸Zu 1 ōcicCk]Q,fH_ATb 0WG>6U3 ]ڷγQKvhA>k,&Dk 3>:2n2G Izpp{|?^Mvԍg< xC x A 4@;E+﷤ƿ~'+w\O€Qa ~9G5c Lcbc]~^ՍwDLR7#Ӆd#3f̘y$#z޹o@ 8 PV2&dݺu>ZpAmފo% ,\;@0` ѝl*QshKEM(amgybNP>:2n2G I~f̘1ҘtZoSQt*m u|by#5*;mFnp=1}ߤo';" ̑B2ޑ3f̘1cD%m"I?(/1(:x3f̘1cƌi1̘1cƌ3f̘1c,À|d`,j?yPGT71}tdHdL8n'' 0cƌ3il$9i?+`G#C&sdw#֠Ww?(bA}sΟQV/mw"%=_Գߐէx}ijʽ~137RK2ҥK驧x-vb^e0|OBN7O{':%{k芝7/ 㡺_GDC֭pՊEc|W¦-{kG>|y1$. ѩ{߰fV  AGd܊e>~y>xaFji?lzNYha⇫fϰ{OC2g_GkW\<1Ј a?ѹXFL|BBP;a/,_0jf}|x @dŤQFN讃=;3_袷xI1ϟ04|IAٮb\^SM5;" ̑B2aˢ IڙѢ:,<^٣i'O c?SjoGLv=$)\9)GH k9N6^'j̣ZjV%(jXԤge#C&sdvd?k?+C;28xa'^i...@Mμj YW=wn7un32c*ᅰ#xĶP}aF1!a%b˩Nٸ'$ڞߘ-\fq'ډ]\ӳh:5v\K*g)F-G}IuҎ؏k&8𲶮Tx˿|{=/kGN.3?xnGqVs_)l[쬆 IDATT,V1d2qL)$o9R5@Mꎍr9w/ME:#B\>˱Jʒ%g᫩AcVXo 3[=u0K G@sC[KߘcX+Z_Ԭn4__z&n#iŔ+7[ԀopsJUM &*>FD0OU<"+-=m;`>bѾd)vƅ<%3z[Il%g/ Bf>3=̲w9e hK!cy:)OJ_<|gd K\rc9jJĢnsǽScx} owמ:MH MȔ\֙b!!Mi5y եuqvL(5Plԕ!oLCq c&qbPi$)Or.r8lj 큳>%wN8LQ_31jLaWr#."WT_Ks%s?9|qsn)\'ͩG`4`pފ/~]%>زa^ՍwDLR7#Ӆd#v fc2t Vvj1f:BE<+GuWLrL m=~fll[1aC}JwKL8r47MvՎ<0^'i"J{Rz=؂s{LvK/%;ZH^1t﷖Šӎ 52ܒ&'%Ip굯8Y8<~3#컼1I)t;҅`?,LH(Vδ3zbZߟ+6u9Tg8 WXӛ<=/J.e풂ڴ| P{n#Iuz$%7q/j}5}$/?$Tm)8}JXnްa7~9Ddy{1=6G`{6CB +)vXъj8[7lؖz 6lQyPxIN Pf:W]z 0F 06&!ݼMp_\6C'ƴ]ܶogrWiN .n?ue 0XJ%i8eޟ7|u twq+TUƠCDx{DȠgdO0 2^nY} d.8u7j:)Ш>:2n2G xGV*4ի9csc\KB(Jc ‚BѣW(gvr 6/---k?%Uh8YRd_;O爫!8UVjIlߘ/߿-՘Q4Ƨ>y5MW3rqTՙOWqi{j;0J{7'b"5#lT#wړ1+@!{.'k\MU ms[g*2 2Ymb {0+^aE:nd1`e,o)mEeM(e^Td5wHX fΠ"AOq;AdR1|MiYY$WKkuvKZ+)RQ½sVT`W֪lnn6r2rrNmkIIq@..ws/\* yTLsvܭ+{U$g'C`]=p=Cyٹw xRAAnn A5 \XV&$iB ݯ\9L>`;=λ! eC5 kq2 S8ưv*b/[)CPU)fƉF>:2n2G xG.;곟ޛX#D'WŞ"< u2ðԏr}¥;?LvՂso,۹c_X?hDDaʪN1ozjNڜ~ޖZiV(0X7>E/}ӏh|U*Dx/; 0o?7 @jkk`伌p'HeU`&P7$e6pw; OSE ;Z(59Vxq\IvViKȳOZ,'We$]&M]> o*r.nS{ĵ.Lv^.0N-8?RWŻ! 0B΁ w0}g !2D+>ΦYՀ_qR̙*:z^pm\g읡\ +e-,|H>`{RBQTVM)StS/ym?s6&w[6#C&sdw{O}0[wZ/ 13Eu:cijEkUm!B.do `pTU jW9Y|;HQcSkM/%}isV3u &zRP8.ܞyHڔM^3iP>|ԗvɢ W `Y%@UWo/iEE>^1WYQ_WVpqA;mwjBM6/>DtjLٷOݦ6M>Tf1TSK:l\= ˻!F~UJdEU:gQC{TҦʶ^ߟ8x8[Y/VΞJhQ'Cv}~wnSeodT/@wHMYX8X6 ʠu|tVD3ыjlÀ: .`nV:kԍwDLR7#Ӆd#U>?aRx-5m~wRG+w愰P@i|jٗ3g-3=;˸Tߪ}k~VQ4ۻ#KSR5#^ּ;}-I!r*}_+Spnr$g.S.v-%ۏ7DVRܑZJ96RZTl(n#'+GfMBSx L#ܥ̺=rd`J ssxSyEjp V M"hv쭨:H|A#5̑B"|fn=-6Bvr'  n+Кl|LA:*x10U(Qk k[`P/eCCW!Is$!3 KT\xi!>3ӒβeCZ9Vant2 Ki'n>5a6DZ N~϶ٶ3ʜ3oI|cbPEVrcr55%S;ܞB&½l\ gq";.T3tZ^9RrL  KεW8pcŷ77ə~IΦ;" ̑B2Q;<ɛܔ9DV%n{[qQM8LI_ow%[ox$?l?K?>Y<: ;u(ں`_lՊS_ #^zk ;LXzyۦSgi73|N30RpiHko9D9׹,ְ.g<5/cY}!H ? ;9YJxrR/Iܲ o9 yN\xuuuj4>xjԉ눔y]B/R++׍\Ϋ:'Dddkڽmqhsx̩޴O'k_,\v!\y0"kMʠk־$F|1 d3f< dI8JeШj@ì$Ny+YXJ@@F#||EX^Â&}u"?muNޛ6cs~.ʝ&cٶ׫:dy7VO:K _nǂWb-uM?/tԃZbk]'5fZB Y)O?QֹE5~Q'~8e+An䲗l p };IREXOȲԓWT Q^6BJ}Sd3xڞ;Dy9 ysB}xu NLGƛWoq{*kԜxzsRE˜\e}tX ͗w^q:jѢ;k>񍉢\u5%fZb Ip\B=fOyqv9t!Nvd]|!P@w 767W;v~ !G'F8ڐTʴ/ag7_L:e)[~QNWiKUwԻ㩗x[$>6hΡF3p~mF/E%\0eJ?gr R.BMՍwDLR# 1]HFgaˢmE-*U^.K{WfgӦWLbNYyXdL$h7dl#kӒْW~YKkR{I#}[sdj)WۄOM&5wO}иh )sw"  \w|d\[h~fD QyM(2&*lߴGZp`XU jVdm6 '1a!aqFrCqF߽,Hkm>3pF4zбBKGr<_<'5=%ŏ.+&oS9[ta3Ԗ|0^]6A$VCe =~ . '0ߑ4#C0P+R\)C^-Ul!n#ȐzofB2:gmgehs?NI{4:u+&ۨr}՞l~{˿|{=/kGN״׬Ʈݹ:V|嘨_A]HK庂zaܲ%]^.f;LcP]&(2 ԸLI$*&}X%5%BՓcehjHXy LU ):5czR t|\*r*`&4kȩTܥ{Ҏ>ㆻd.\S; Mxi `arwDZBaH=P2 cOQtX޽7`=-a-ITq` }U{U'HK>uOHlo,ΥōڵCf9̶c'򴋻Z6YÖ; ! I'b0!ql3]%u.FTM@&NLDžwΟR-`_>kͨS܋2v*5>",ƽS⠬jV`1%k%2;z8_iaӼbgLpShd_6eLwĶ7ƏgJ*/'ӄM}o2`$3l8fMZ|䴖n*(qPԴ*]&v}+b^Qave64oņ&%4}&.n_%2q\n㍗#u'.F2ՠ#CpD! c'i9/gY0ΆEf+7HyҾgz;e1w'U'IũiZmEigVu/e;$9Tڌ]GrUhTXO1w<:+&F gƮ!Q.|tedx\947MvՎ<0 xQjܛ 1^qfv0Q eF3viwy{+OD][Ig_筷]Tvl@"*}ifeOшT D81jk'IDե'tEHqK(˚ϝb[OtEQ)Jܐr0sBMuzʖ^3v }"9~+NfwɭSG}ҿT2p (Ve䄑yrEM~Cm4 ۬MݺiӦ?l't>WSf}6|J]x|ӦM6!c{ S]Oޫ#uڤOt9{3Zfh˿xM3!i5tBDKzZ4qAMj.GFЙth(]-k/ 4K]փ_ڵ~j\ߟߞ$7"q0Rp.qL4u:_ggd<u dR\]eMp% IDAT6 KݺG>-MoEqm͉e)h0Ơ$*9޶mVM.KsÀA).b.O"y>Ǜh)pL&T-JLZ;jD<嗓a@bkc+(V9쎒>lU,τuyk].~ۅ?_[K*Js}ۭo񼓲6⾟V=,( @-;)چM3;>agwxJ*-}h@x,|4nQn|i{z}{$\p-mbSG䈃@Q7o(IQnQq# V(QqE. jtstd"-8جWHp\IKFXx5E7w(}hm|f8bM 812PBYPTz^+_R74MD~[CЈ LBBDV|bJRl+QkN_ZkΝ$Щsp<.B#YA8+@GLJM?H"2yFxόt |-P[[JX Bjt-8a$:IBQ}jn0ׅBrt myf#wٸy2ܑ]/ ~\:`ח8S-,A<Ѫ΁#b' IsÀsՠVTqЊn] >:2GbϺvx?};h݆V5a+;9]Zyaح$v14M<}6) :*q]_')i}};_E nwJ~Ԛ|.X"叛M^wȧ_yWXBz+<0amNig]%4YDrZ9y[sU[>,h/*[3dyJ&0)J2S}_|IREs[ugMD .i8#A .3^j8[Γ*I c7[Em YvSQykօ=ÒK_bN;i 6M8 +Nf&*nj(&cM)d^g_/ U{(?^jIUm tcl[gM +j-|yMp.O+k;&jw2~ܲ7g'IMBIin VPY=҂ܦ|ul:j~jE[݅c|ϔ#N!4Px89b3oxs彿n\y.\;uZ}B(+ .x[DCm|K)Kc[M>~VBΥKͰ:ztW[tM$+ДWNɾP]H&j ԕ[Օm2~)w$XM4-#Cpd0C/E'=","? __}bYΣ.376-kk!oڵSnROD/c 3:b@<d8ʑsLP}tdH fHL/l]mC?G/s7?ldyDЂ JMZ(6'ѯrŊ+V:?Hxͼb?`5ȍ1li]rD%i@0`@IL T$k*V]R)2%qUnpڽ!>:2 G3RO5p// TQq 1?1cSJSjP`$R;|2ՒHN(i@ 㡏yÀW%XA2uxpb^Hё82!"3E/~1i3f̘?pXmy J.k/k z$ ?٘d1cƌ3f̘1cX3f̘1cƌ3f0``rD~ IBuGG{`k̘1cƌ3fS? HV1`&^u$qKёA^82!^jSLtCײ?~~Oyzyd3U/D P}xG:Zw7nX:2 G3_SaˢY[@[HHP*QM X9[ъ?\T \!$<8&"{[ݹ@k 3oPɻqr2@Tq&YtJm=T)ih#tk]&(.1>%BE}Uz DĒ:az>)m̸U P 8 0;xV.)GV}]#4K=\X!{98}W' ߫16G`=`ۿ14h=4$T7!}tdP fHH v {ͱ}=<0'a xWn#=bc,^Z4 |nڬ{E<߮w'U_^죿_gƮP6Է_* ޯly:xnFcHT&D"kI6"d)([' ouIs0ɋ) VqQ-.d9)I[%mid?Ҫ.ŽW:ԭ<Ç[ŊwP{*=  lU|h/wmٲH#blCGv>Vbf}[jٲe˖-(A۱+nB[w6>| h*ljl%kd5(v$k߮,}j",ajQCͣI̓U LĨێ[RߨrudZ9rVAT4mX"tkdO0? TrH*WJV!]kO׾92 G3_Sy# uPa_EܫeWPAN 7Mp#0{v~Q8RϪ3 ɫ~?xYmw|w?r%IdAڋ4ߜZ>E:{e_rHP~xzf=xPH`8݇{E:!H8cLGw7>UW0Jج&x)&]W&?{u5;3 [X;"꽷X.rwqDZN;;K\$ Q!@ewc6p޹i^H尜zE:YdhiSPRxlIcPͮ$񋏵P_jW(:!pϾW&-ċ08Zm4-R2OĆN]+kPH6Y+֯):} *AA~|OLj]msMg`4nzk=ЈBD^??X#F5u]Ĉoq"pX 1a0t5ArS05 7t {t|<dJs4 B/N:nvJYV*L6FR eNi.8<$Xk ~{/$X} 8ڽfl#{K!i::'A+c/,=O&M{v?__wfo^aU'Z{tGl6EG?'aC7cLW*FĭذM( NQCb?…9#S/ 9PB ֡'tN qqî$XsTTaDچEȾs'W͚܎^;Y?UJ9ZG 0.ZGh"j47 EPFX2lNr뗭ؼ8vDW%3h1SV8LB@Ppâ}hS(.10=Iw8/xp?$V MPfc(w|'s85(28a/:@@j6ԍni ,͗Av+lA0̝D /_RA9p0#cs9bܚǑLin_:<׿o]9 Go}+O=$==T_?=ޓ IDATw>~}'?~Ӿ0ׅ :G p <|eS^{ ſﷳ]UG^};_L!o^>_o/|[s`#H :.yF t7'6>?@c?HL[c)Ky+[/C89ƒUNcEqLe3M(%҄ kJ|hlm\48,LԞ_"\he:,Yk׭ZUMNjggfa) ,srxh5<.LVg[[ھ ǸTJr.^ '@Oߖ;9,%kߟJ1K ;X1_t&V<5Z5=8'YU#I]qG4z٘Xյ vr>fUg٩#e XkRoXƬޮ-Zsi/kW^!o弥pegñ+C:ңiNհc˛<'*kTt+fEw'=qqq ܦ8C{yqݺwY8~- DX$5t4CE0[摕I9;>~Zaq &DZNPsrG% #@H!)$FABBrgomԢTd2u73=#??)ZSv}CBBOЯԜ)@0/[-ZPjH!)$d?5d mJg1Yc8ɠ jN[H6^PiL6RH Iᰐ77T1,4~L\S `jɦcNK1[dZRH IE6H$R(&c!ewuoZ;Yх 7+]$$$$$$cຏ jdЫ2Q^}U7A I!) SHHFLAsΞ3-@M^EjeKuN4nĂs#Tܬ^wyqN6X7c Ofmښ;ݙF2D3ݐ,\ t︵K•u E; u8uŖ/@ I qHaLPpЦE'9\\.BmZ+BMk&ڴC/fP,vXJݶկ@N*~5:pOs7;C:Z{K(;&iW뒌cjUouJH!kE2N L%Y.V 0׮Yݗcg)UktΨizIrmPv JNTYԭveEfLS[sΜvpkxV3ř{;}k Ђ3yg>ٛw^&e̎®_0/!{$F_fHGֶ_݅:w4ݡGg.r: G-~W.bDK3sDx0h>Ϝ@sڨK={ٳӍzmS3 /sn87n^ޯ~僧}XZ᯾:5/-pz3\,!9?Q4H{l~>l/F5RvOܿfNMOޙm]fSnuu-.0%ŵ[0q$5IHnqڽ}Z/Ɲi2#d r6k1EKf+~ sy eF+_MV6%dž^-V_KOcAMK4faxG#HʾrZ  umz+jan[^*3Zڛ9"t2Ilt-Ve+A<t[~vJd2Ǥ[k M0˵I6 a}xPkoGW֖]5zlA\ӛᎀf-l2AHNA k,Q>*q㡷( A[5'9EAc,8yԚ OL<%Gc0wkMF a>>M0IkxЀ eőrs=(rrt&58&TIhSwD]9"N Y-Bo-c.u8, @<}m7q\ uEYnh%*(tB=ݍ*-ڹk٬z,G^bA0386KrTwtsƚ*NѨ[qb3kgck%x7Zc`ZKjuqe,^D7P4=7wdך! &?In#Dj_40jw}pːM41 #FG0'B?Ba2b)Dt.Aq f 2ɝ8* f|EѡkPr¦\p39斟D-S}8v\fP/NY5"pwF -s\#TMmZ$܈CWhokGkFsL1T7þ+MPsst}< Ly>}} DpA(P4N4}}FH.Ah¨Pa_ӥ<4j7N̠ABqQa!"[Ր$ۛ"(#,DdS9WÌ$lt^f|mǢ4^+HFa}}$yB6pBwǎ7(Ӫh圏=?[}aPba(wz' Ug>'{lG.lD#N fa)krS2-\ӜӢWg:qV&~0%Gc0wkMF a>>M2$'m#T͖ aKVݝLG,eWe~' 8Wln,-qT=D|PJVRҦ W.Z 4='\nHg]jUu7/؝՟kTS1A4>d?pdj(.Yxn6fVv\*ŋߕuݵ\Iؼ{)բ>S /X(.|cBf/MK-;E#=]y< >Q`цȗ::9rYkRoXƬޮ-KSBg`Zz4;͉ji>oTT,J4lCsg jNБ[q8rk3qƽGUUIƋhpycIn9Xc%_3`%_wtn0#gGXUkS")N[HMK$@E3BаpH {!t|dJsDBBBBBr472{{ZwٽG2.h␐.h>)(amѦՁСʭk :rk>Gn2u9"H\C?tN5d1X)N[ư4ɴ't$ABa HsG#q. S#ܤۗz7)K$$$$$$$$$$$BHHHHHHHHHHH]-ֿUybm'm})gof~ 3xxSɗs|Ó #g^z5^C/?%yi_f?w)JHx7|ث;Cwrھze3yƻ=7{~]jɁ&JY cVReaR3&J9K\ԇvjǒngSǮ:ݚcMsߌik]G],ܩ@xPtZs˅.:S%ܵ8d8J)2'؋E!˗+{,5}S"!vGn29xmMnA62gob%O_buU'w=#b_YvNO=~%=wWijxQbQby/Z]o_8s41c~}AkV|Е?sS-| ^,wMwG1TL}9zJxSp"72s~?+Yءg(/J.#<2#ӘԪ^鑒FDZ_Ji hOv ? 9cΣ"Wuf p壇WdXK/{Pּwt˅?+W;[}_<aNhh׃_I~W߾7WFa^#&:^9BOo=ܧ^=҆C3}_=P_o_?ځ;ϻڧ:իbN}R?e;ʯu/  }U?t,`h֚/\fP[6>L(~ɼKuL>Ye&z;qNɦ9Ib^M Do:m/-oae&`Zׂ9ߛFh-rnxgcϞ2J+  9;Tu=LyWl*nNwR;xa \]SZR#7;sDK^%`PFo>PT6'e{wi⯃xGlunZX(~?.Ŭj֩ ܐRCYU81AQ]}O S=I 8يMfW 怂(Nƶ7M~i<_~c=cw?-BQPfmI|bgsG#wp6 Smܽcw6ӕ$*u0'F[[oлG^rx<+%:|:ԃT`F26#uʺwO|YYYYYq;UOXOnxsO^} ~)#׬:Ycny~|oO&B]2>'oXRɃ/R oJvw<1xwC=rQAˇ_@I_6eee=CuvyXy]f5˟o买'@]E׬s `koT.LY,BΌ,k,BP\>hPe9ODl %G=TH :;-<}޽Uw˼¡ bQ(o's7oY{RSI3nԆM+ٸlے8>o-YyƕeVgF+bqE~:-E7N a0ټ#zz5aͱ@?LI$H54=w :rg>Gn29 %޻1[}J/37{?_rrT}P A˓Gfc뵥O;Dc_>>U_M=ǚp~eVTA{fdfsMJz{s撽oO`uuU_k/[;\XtmwOӭV+U3;eXht ӨGވj9r]]'|]Бw,H c9ڢh6G2m-Tb E}ã"BCyƆF5#|v6:"/gm a45?Ie ЧPL&%46IWń~àP m/A^o%.]c8U"m-F<`+jU{aBa]% @ȥVkU)VpBCgeK{kwf&LZ  too.4nU f>a8v,7bHihs5U;UҘL*UvՖt%\@Yc]8Dpw@hPprQޙIW'lt0ѡf ?xA/>_0y6Z5j);{^ydmY`~GLf3apR,fWU=/|ٝ~uf P(šb8ۅ.nQB񨞩fmE#6m,B 6Vvp7%\эFn)`JY(v,bђ0 IDAT@EFu!Pe,]Y*Ox '(:$;EQv̒a8wq#_8oÖY/x{P<| {`HTI>J[ ]CiWZƚDiZ^ѪEQx-N##.;wudlFT[t׋7Ƌdf$\ n%0;u^2RHa6Wш[`qA,%ǝNXs,Oz9Xі[ohkPĢ4ԙ~dzB[ܽhNБ;q8r0 `m>xǑtJaѴ^v~5Zٽt_b sOqYӛbbgĥ * ."#Vgʜ5KN>$zz6V>I*0vl!dG.^tqi5eFR OOU,lm߽I'?r{=P(BWy8\Ru';zɤXb)A1}M#Cgqث&#Ld[2PA BdHSzlomA"B-܌&FFQy6"#V{&8T~pU:4@/4,3}$Po|f(٩zèlR 0,ü8̻Yq0 ‘ ДSuogUɸ3NH|FkNVJ 5LM@z:zͨZ`Bt&e0Mz2I} @6h`/(P/'ğFsl~>UI1y0B|j҉BpͳQ L JSK6N\iA;͉@?8 b`$֪.6ܑC&ȝx hg+p/}Vg{o1.>?jގ?',Gڡy}~cڐd7;iCݚˬWoLc,\y,*6P~_{cƂ=t>rK\u@A iwue5JYG55 7"W>wx+͹_\ ŸC;Fr?{þLsgž߿}yZsXFIwSE 8{W&gH{ygɽ`iH0?cVVpBJ{{ .lw\Ww{~Td;*s͢^Iayr_VVv'>YVş`I W5~B m)s dnT*hS";|hҭ Ԫ^+QNinܕ E+z>V.vxJ11,\)Вue ~49ml/&j(/m2{;XE-0(1kY+6ũj J\OE[2bvh,/KZt}e嘹XJf-Xt}ŗuTК4w鲅¤_h#ѭJ3e]L]kduCKUzڧiNd";˓pV)땕eU,\eU*5\'8= .,V;2+oќ#wp6 SZ7PTo-?sǾ5gelRw>vZ|lʡx}?~;u9vl%à/zm6#4$kg\{%ZN/l ~nZ&~9H<. X]F^p&oRۦD8m#E_100 tf` Lt␹3AGm@6G7N:oⓅZ\_p{nq(O[}exw&!#pԗ8M۷mݺuKCWƴ3MK/G`l%Lp@?0Yg80u-X4bl]l1#Mi] Wo&1FP|A !!! @0BXM|65iu)rÌftl ¬7[CsܘǑLqHl~2YC;r3#?>1ig~>  !ON~yKg 9|p"\oU$“-nwı?1&?sƟAn/{gݫBQKb^ Əlݦ-[6]:7¾WJ]f[7_ רּrggٸe˦uE \?ERvXUI!㬫MI'c>|NQG:%6 `396q+֥F'31+o޲yê$G6Sd@m_tbׯ[m=^x˚%벒"y(m_g_ ?e뺹1 r;bavY+f'g39z/5mdftն!s9fܙÑۀLmn 0>^[Sb粏XwQbQbZҋ̣]q0-߶_Eyj.jx2křP\fbxǐ;?*u强ONmE:?ő*`$1Ni)]yF }| D.XbfE'3 N! ٶ&u=v{rN90$ma޳$uN%AOuw-fPzΊ\ }ݏv@zru{{`"UŅR5旘6?Zuf[ȑͪQ`%<am;}ZCsܙÑۀLmП)}jMc~:р~gJ{oBBQ}h=%/y.Kw|\9m`dݻM?J }G?:q{~:~T-x91PPD7=# :ɃO7~+^9ҫGp'g%z{04-%Eғڧ:իbN}R?;O&dXp+>J(zQ lUު4Hh1pŊAXd0@і6Wt+fh@hP7(hIq ]Wm!q!lKWuEi?ei g_kF' zK 2uk- +McQV[Zgr$lzF$fIK2)pBB @>ՐStg"jY˵+R ZQs,vs#pNfZ0$R\ڪ!@~q$T';C>XVMN`Xz4,\N?}b..;q^Qʏ^6'ZX=Ξ$u_-Ь&v`Ꜥ !+*j&'IB4ҫv9 70A"0qlWg]#7O8anjNcU՞,i9ȻPe[@<;+Q$+={Wn@(X 7@2}O&avw4uk2|5}5GzMt^Z=ӯd. 1OFAxhuk#LБ;q8rh6^۱;{읠UOS=7>/?<:04'ljʗ?߸saO<1x⻅P̮ry}`ω'maZ&3eTs| s3ġr{%/:u;ϼ|,zr97FwS}]~R77q .']:γJPߘ(^j轚Sb/ x^ ƒ2KM7nZ(=_iʋ\aur~(1Gu\ޑKp| URC9WbΓ4}ᅄ`#aEMyǎ,`Z )>bJCjټ(=8_Gߟt 4=Z a'. Ar͗x%"T!|}iҮ^S24߿p¢..P+.:|ChFiך@B_}짺ҠtSg'EO=|tZW[joqp9!S_Q֖͟Bwsqk/[dE3#0ѨʉNܰjɺ IH+?N%ƃmi 0<3%k4E?ZAI\+3^BiKِ3AGm@6G#${w2]{˞o:=0&8:Z^ap>H7T*+? 9@~ʟ &>ֽkw} m)y[iWǃljyձ.`ذ.~`r-s]:cAB98!AA~^-Z.vQ9q3Wzy/RD 3SCe-chgsyFon&B"X> ymL`pΥnӘ M`{OŊW_G29`и]ű$T60jR)D(N#i.8<Z5E# {aWt88ڽfl#{Kq`pbȟw!%mK_ClCA1A/>_0m[*P(ֻl#b_mW`꛺tZo(~ r ĭ ]=-MJ3fYcfc? ZUח[ EEqLEPb8E4mAD!#CmNnwXpu+:[xdf2M9NՎ9%i@P'f'$P1I0Z/:rX0--;sAܓkp1 zg.I5 .w_yoY9ڛC¦;}=gt.Lܸ,Z0fo]|:?뮕'UՋ[:g (U`lSC@o<7R,*\mY  TɺoDc-di4`nJe faB*5M/ 0 7*u9*ͤSE|&eiU ?@DzA( !3m :b(IL >~~|\aܠSBz[g0xIndZJfly9Qeؔ1O'w|NCP_sjR7>J%>j"rWԪTL !Ø~"\rv5 nH! \0S@mᾣ9;_kksqJQ3 ޘqOPM,TJ[_00ҋa P?vr F5_꘴n=9)g Swyi +(OF;9~iUK@@:|߇JGg{1t|M^ wsMtCŪ7_*F.]j\ Ș: ȫr [;2][K-hZ07sm FMOmyAZkWmIª^,`'>-+ʞN:jXs$ C 631j_sVkKKr0Uz֯|Z{*+I70pmO[ɵ/ 1ܗc˛< g%kW˫r>W˫rFb)KiCM&ќ#wh<..ֳdAK}E}dhy/~gߏwx8|Ӿn;ǎ?$wԐ5K$,29r !o۪{%]i K{;{:$B)o{JR(B~e}i e%PBg9qx{˲$kquَdɱL_C>:|sչ9E)hk_U>𛍥Jrs}1t5u?_خ $E\+{ 3T@$k^i^k_S]qx'$LױoYs*V|{ ->ky:kxu^z3dyiR6vwۉ(1nrd!A=ƚVSlm@mE{:#/X?pw@$ݖ.{]Vj>8w3|ӗΔ'_q>zUnƊUytAZ|Vྎhws qVyYmmU;"*?$ŋsL455vIN E|Uח3 TRP)峨$0IzaYymQIkOF 0UɦRVK屎s$KQ^)m0qUzMߢ ڪ?QOڼ?m W3yBP JI &9;!g;{| !A$~W?ҀμG׬^#yˣw$}sj^~&R\CN2?zEo[ޚчNuhw}vF (E{*bexeYrnRֽc+55LQtA&;1&?5?۲.2I2Fj;<> 8:|fx8yUN)\Vn[\M wٜm[Fik&U2>W\ m@SE؈/8<9)39f~ݿʼnm(|"ltЛFO.t dE~hRTb%9,C7\yGUH&hCdR1BE;qV%ʜ 5TQP0˱pu9@so3To5P>UH"3MX&8`/)Q{eC$쥧=f?z4*/7-H{.._[G&}>/wÛJxcƮW?z$+b'H!;u;oto\6Xqf4YM~ ÀQWqŞ=фUYķA\K;DA2h8 c_S!_%Ot )S)=1]G"8^" CA $D9@p@vXQ*,c?7[HXNow"{psel2_XdM-zO#{ %5Ychl,EuI͛ݮ W&@3n~Hhwd\1b}N ܺ,~@m/O:'9L= ^B25f"3MX&8Woglzu'䍃].saW>ɭ~@]?nxu,<_qFZ$OcOoNos\Gv~;H$"9|惯o=)=jX,C O@KVTT30Y=-3<[m!eeBna]~Vfܴ7]1/]/$YX|#M ޮ6"XU⌒^/P"^Xhm8Omïo*;x 8SD):$pY,{j| eq\_cM~lp1UiX߁=8EY2QcWUu~nG3)Fk'TI+Ρ맪+'I2 %1:l>p 4k]AA88@7/Iq&S4!#qvv Z`CبxG1p-u7D;yBb#( M9""Bl]}i.mӱszlEJJZk,`)ݽ'x ,~tg_K#`7Y$.@YM!Br ue([R(yF{LF:u͇s2 uU낣jEZ*0wR$?EQP6_&Ƙwrx ,*RM{ 7n7n<W"2MX&8ly @ jLez, Ϣ"Ɉ Iٹ)2xc7Tpr-sWw}M 0~z)1HR@Gll681QdS°h6#eoe)y'ģ=|'( d$lm`MEQ#>2Y!dL@ &O~Addvv0h?MC=2=k yiJ÷#Ay@Rjo{GRԨ <,+ 3yE%θi9ޖGEKAKEe k َR W2ZH5hH`ɤ{ʒΪV Hnt8Ga_&Cp JCW-pe92 ؒ1`IeF/i J0ęP?nx~;e E,by^$ ([Q'H1`8()<>k_r'W 9H[+Z7V\nVnC2Wttv5?kV.tx[O(@N*1+(*H-X!Yc!+]uLAZ[}-U(+bAx i\2Iq&?&8.P*ũ2R/xLGHûnM3ωNL0AFlqv:9 blJJ:&!bpM'd %θa1Y!?,Dı'4E1"$}qOY3@0\"zC;vcO;vh?r)k1kmzXAr`pӕ4\nfIqYqYjIje(K":̚3tҽ@@J?P?*$ EfB'L(q&/4=߾B#!COk޻Y3w)}/7||wxqo>7Zwgo^*+oީ l-NMB =wܐ/~>~Mrۧ!gϩ_)1sӷzfFqoo+Cݖ;qP)C 4-ZD^mZD_w'ҷ6KKWmdc!mFX^zt;Oةh1}eE+*c'ꪀK?@76 ,g!!͒Ul%#=c=nSZ8\^[8&aylj&oe::T%kPQYF4)䓊 ` 8gkT[.SmH ?m$hIImX]Ys^>8ك`yC9 *6r!5ψD3b̠ARd} y;Qo\PX/)_6Ey-̒tO^somԦ.,3ag H]p=m]ѱJ/ٴG-D 5DHc M3y„g$ c X>y_sE3ajU~/ehW. C3lR%/rSL,i&OPL_g ؝+ysVn 6lذnq>[q&Au \E!3hb$s[&I2r:XX(@fo74XBL0ę4Irzfr3 b3RT CBT#H>T l /GY R^=1rO E$4'L(q&/DCCCCCCs&C< }#bg7sjfRPPpM,4fC44444444444Bs~ qP,%a kn|7  L,i&OPL_g28-^zHNJ*۸uґ w~qN!?F6 Wrf^$ٛ/۰.sYsD L,i&OPL_(.H7M''|6Nu 0iN' Q֢5k N0řeK+V^8E%$*,_fꕋS[p5k׮XZ)I9qΪ8+eAEQ^Œ{yNIic 3^Y"H30}ἴV+V\joUYK֯̕!p4SVhqLXtvcM d3s IDAT/8Q g-]ZB'ECu@: *C&7!Ӹg_#/B%4 JI %7 {(5vl3NraauG/y%I#',o^I`slMa=XEe) |My@8e2Zn-;#aTcem GUR"C]6@qpy)Rexʜ7:{h߸+B0DPs .L]R8堼cp8lF 7cf~IkK^OHl9 5'0cHDf %ΤѪon÷m-e[_6|tޖc7U}s|kn"R׍dn׭o_>n$ec.$'_zlӄT?˫Gԣ E3~lU`ȉv.Fͺ  [!đbD.;yJ!~?&+X"OkpN* &Ln\$6zni? T3vjy7t.R9}-@"-?d}ዉDAK_ ,!or$E3K>d_1?/NPdb M3y„g$CɌmAHϻ~ώie}?sg gX\^x>x/7ԾK;Vx&d2CHE8ff S~?)(-J}~ǧd(?tiŚ+bUk+̵̓TcCU54) yn\Pm_Q.`(cw5c|znRSƟDRzc:7PUuLB-[OWyï* w!",NEN \` ƃ{g q4٩ÕVu}=ǒ++k!Bь@l dR[*ev`k2(k;lPMU{6y9JF3Ty{ӡ}kG>ӄpq?ȁI혓.!U&9:zƶH9W,[bɲyy5hb16rxN-Wr?ΊJ3Sa')ҳ3S"_$1ť+oz&ʌUq 850Lۣ%XBL0ę4IrݮT*fכGsۿeSHYߞ~{/߱⊗7,Z f`%]peii)E\~᎕IN4xrr>(FHDR(M;"(4?R y1*&o~W~_w;]Hr"conn4ߏ,#;FQ"cڦ(:ݿI& $E |]W_H3DT&EQ2G;^=ʏbs꦳0% \!Y ',&S`T(fC!gSM?L84_m;)&b"D #}tA7I}b$vQ$6_J3BS}ܗ+sk{` FjoVh &9G~5Õě=y?Xxy<\Z1_}hxyJ *>,.YV&P(2~M?z<~2AciY(rˮmj@%A|<ܫ7K\hfA_&fa "M Hڬ:E04UűٝA; +( Jw#bK&$vr>MJb#1q(2L%w鍱^ )Lc\XEP^JQY" grvdy)EyQ^ )HLp𥠌=mQ+m"F+2Gz|lY^0Lvjdv!9;%B3U?S C@}zqg@>!tZB%4 JI ~+WI}W^4 "]x#犼_?Ы%7wez_ur|GO~tilc/o{n~텺=ug{ e{륿nɹ[q˛"C3G.W+@m6 TM/Чmn,bQ~D>&]aŠt[:ZtS c[pa:9-vCT\(gѤl.b!L91;Qat&7>з Wfkm]EֆTk>Q3>Q pzFsL N$+<#A`{.0TLaAU8Jx̝M#wʋ,Ou54=էxUf觽Z DOve$+jŒd t#=!So4'R#SK~xz(kn_!Sk30w~X #NAYsd/j̉=<̷_8lF>yX֋, vw]w-|1#7^w+5$J(x,'qBD3jSי9Di޼ٯ>-EI l)*W%[o*2co kyҜ2ӿ4KR$`'JMuЌBqø=0L\DCCC3KyxmAb²;-朾sN}Qx9.,\ş+e?vΕDC39/Mb%&3yS"tω'(%KpNIXҴL9;vTIZa%K,^Ƶ SSK֔-[4WzBФe˖'Oܔn`0y2$0L*M`줡*xElWrZ~Ow/GN{RoV7X%p*ihhh -?CAocOV~{Ra_  -Nԙjé;cE-bSO0/esHgB}̘44S)~-K'>λ}UOXݴ\6dmPԘȚmWNN@4444s,;WEez:QI+~kVdq]}>}#AgnM88PՋ?Y{nH^7@֧$ë=~osZpѻ_^о(9\:?^mq6T[ڈ5\~?cQ*b*pt SLW 9 -]Fόj-\\dyd!Cӑ.;0tà.@PoS38ajj(˒]ݽ,:P䥀UoIH8 v]WI7,vԶ8"I>MS)de(l,wM~[ G"㌡H,KT x)|=dvrI?з[77/c5WHSa@JNt444441q%~˝$!UeN9ɑBV>փgK=wOw_V( }7 }(Eox|.temy Z?} kn{. 7#)E,n%LI 5uwv$@ЪCҤ,BYy5uuYwvvvvVaW<2 OR&7–%'P$YҴd<@0b!Y${Bp*)4%d. 'GF*a{ . HRD}r7vÛduWQ4 P?.Y?@JJȗIn]>{9?OK<>p`cݳ;Y`D\'0S3[==fK)&"BbтKzMN=`GG:[Yǂ2ct,x2$b>s|wYU]EuD:$bL"}?9 у`8{gG}C1@@aAD!1?#ybώɅ*`@e2B p[p74ga1B pOr&SSp6Oc94*U;ơ\>dc,WX,c:/}n  t\,?u*섩>$9qL85Uy>%(fIOB4uchI/3lůNC3,&!%I@pHWO}e`u/ݾҬC0D!b{> `+s]"L7kM).ܰbp|:ghhhh{ <}"ݲp!yϦ0To7 Fm}տVGzvpMװXL4^@<. 1& gP?V?rg^/Mє|*`zp7;H (A1QtC0aZa8;@29㣝0yd p$EtkS "E#0Q&iF6W1W}jSCud)9E)@mڶV+raI ՙ C=0NAx  u_SW.ٺ8-; _^1Oksɽ;7-~U?1Ndo Шnnm! 5|FCCCC3sq)g{#ʂ6߻!~g#ȩb|&@yޚjtA2@Lltsm% |as_'ѡ(jȉ6| G 32|P IuYA[Bq,*MVl] VLQP`J&{;<] I-VZCv4 v1YJV4M#3 FBuVcx8/gIDRAQݲK߻yv#k?t7ڧW]mP^xdz4 ͙p[;.7CmV Κcł k==x1_bjeՒyRH]y+IuH\2*v<wNPx!3L?:" /sC@"LMZG_v@,6G(`!*bפ)!@wdIF^Enx.M<}!pJFa BP\-}~'j*#MWmY./>I/y'epy%~/ݼ:_ʲ>=# t -\{@vֵVlܼn^mQk6=oMJ-T p% 7dq 7I#m.8RM/0a79/%I8uZ{ (ty}6}n/+Jb>~…2J)>^gt[B)R)A> PCf]MgdWvCD$or$Abt5)"$ \$T̈́4=K2JE\xK .~@G`ǃfPƣn,yI ny鶌Oy!6 :6Ʊs4`HsEnvh[/Rv}8@?${Ќhhhhhhhhhhh#p*JIENDB`btop-1.3.0/Img/options-menu.png000066400000000000000000003073011454653170500163540ustar00rootroot00000000000000PNG  IHDRt sBITOtEXtSoftwaremate-screenshotȖJ IDATxy|#g}0ߌFiɖm]oSBip5+\)G9 /)P( #@mSHGK(f^ۻ-˒-떬k4;%_?xY$ӮU4!NUlWYEbPL!KhVؕB1)9vyJQn+dyni^),-$W'}ffft-;:RCSHV10BNUtWYy $RAVdS E1: =mv^9uW,t9MR|%QYvQ™nӦ*\="6y&*ȍCELYåʼnBDeR4+EVb Bz%Viz2v4KV">Ke**RRya)@moD]'Dwʊ5W{a1j$l&n:7hj?٣`X/d6N:󗦒ʎfI)]i2 W_+]zbꯐFx61?^ 14g_mVrV,Ypa,ho5s!2p"JllBsЦ畱RȵpPԅ/pۮBtʲRe>ƉBk[̦fmz(T|ynA LJ$B'ɕCRsN=̌ϦVPCS;ںui)xܡkv2]S4Q%R%o6Hlkkkii䢦gϮvU2plnt>@ ,r;֍"k!opJHܲljBc^Qs3`hʗ-dsHn#Ap1BraR:{0:[?JPXUҡ _,wNUtWYy8&);|>Ei+$s'?Y^Gl'8NB1220[l ) H)`܆/O0v8%B>86P}{'B {E`|^+Q j.O1<[(L&@& DlґTNz = waW)LNUtWYy\*.<ٺ;ͩ+!+z'?jQGar"\z>Y.n9779涜ѲK%*]+HF[ @nPDaЩy|B:!SUV(JitJ)) ˝X& |>/p]T0dd2MUZzԝ]ON{"˧J(]Sn _Z a_}䤕yf.Py^M~'EpL20+{q"Ю#4WML4G84`.<' |ae\.biUWDZ~OswIEEzia&[UBމTvODQLp)D1[f aP(nr97jr(\T|8juXBDmwVD5dgn=!B!t[EFB!Ю!BJmB!@!BmB!BB!v)}78 ,v]irRøyOJthbʖQ-#X:8;pC;Z3oƗ}Stu9 E#'\r xvv1KIXpB! SS+8.'.ƈҲDg͖}c1ᡅt]l׬rKK H==/γ B/M^gLRЕY:Uɉl=;+s݇B:g@w)-oX#*MOUuY|$tJ(BD]+,S}8:OGi^>NXҜVה e@&\sN'>2~n&!BzuC䗤f%B ~GcԢʮe]kV()r+ȓ_qJUsHq9)J*ny6/_;?c|,\[nB!jFb07#C Tǎ*6gG $JSgO%yy[]L[]p[Cy|.23>$+חA0C~Ph[Γ[AjhJN'w? B$ZZZ(jaXe/"-OplО/[`o`M`V-xճ *Džφ Jiqd) s>q.ZW9ߥײK;:4᥍F,qo5B!q: bddaU!Z喂+),g"oۛ ʮ.(:˲$%!G3x۷oITF*I@`Dء@,+cKŖ9²,IL GҖN*659o$n霛ۼB<77 &4GEA5t2 s*Y/UTbHIRY,6g5 UKGECAW&eJ밫*t2dkd$)mYx ӥR[^^0dڲIx!Bhd2w/hHBVѹܦW;:\!̄W_(z>8Ut;dK S uq1sF|^Z t&Jl^*5дGu]N3L{%f~0\VBWz!>}Nqr3W•~M<F=[V~]r/ظR"2ˌR燯Y^}nB!BB!BR8@!BU @a~9kgE/N~iCCmljB!BB!BRxB!P͐ʖQ-#X:8;p8}"ca/Ymisy8ذF*;ɀg&6-YzƼɲ/_wcǜĹ6Hn:671⽮ 8@!˥}۞g 䁔]}yo"eG^>qe_V]4'Ԏ^gstr} ] &w8 tJoY9AA2c{R 4 u2 ܪgfDJt6qd꤫9uLU!BF(Jʳ)9{!tPT UM'b焑 Y{ٱ@&J{[sw)-YNkYҠJ)/" 8@{?*(-858R7hx:ܰHF28#ir:2%Llf$F*]ւb:|\z|q,f׉B!Pt3lHK͞ZHxG}Uy@&.6_]nls؈79. =I܆bp\ͼXB!:$jɤW@=Jlx!B`X`Y#BvHl8@!B,+0V&Q!xN*V6}ͶLE~?u]_J?w^6$ɬ,Wߕگ-(=dTCB!!B!T)? B!*/!B lip2 aʄ|2v|7wj)pL:䝞_b6-YzƼɆyy=ecNEtLuJnTYV\csSPU !B"t0tӃ,itu詑,8ݚ+*aTbEPzK)Usɨ$E[VGvѴxhސз:%aۢ2ez]K!B5B6i5bl.JPZ@k4B c(Z8sE u׮ia1s8ѹ`~l):aH7a,h7paR:{0:+rC{ Zg_N1Rt*# t-g r`,kS>nX:!C,KRbyDg:c] 6رz'Q5t$Ub^KDgZ2~~~)9^'ˏh[xt#$;u8@Ӡ5V)E[WӞ: gRŦIsd1Nvæ3,0TLX;8@ & #'Ջf@6K&.JXܬD=Riǽ!BxB@y,C&z5q1sF|^Z x2_c|({NKI{fe'⽮r8@!zFIϳg=+!79 lNR\%zf\hj8TwthR܆bpj33W%*XE!B[ &^I21~[@!:P`X`Y#6dbط7 ? B(W`Jì.4bbط7 ? `I$vR? e3"Q7$ɬk߷RyH{e$z~r9EjyUuBU@!BU !BJK!B5C*[;F`l0jKWg^I \20 eZy([s*f0iB3M6oQDReu[urMyb @^W9<B!T+rKKpDrt 5M&.aRsMRX~hU.ZzohQDBD\8ҴY4PUB!AA6i5bl.JPZ@.",l<ZHáAA2p]XZT.Q"x:\Jz]5UF!Bz%YNX0ddJlvJ{[s7^Ll19& X{!san̗jĮnQDȒ $Jyԓ{]PnmlMp{,EV95 ,)׶MU14_"nFb,XWHTܭxGEe䂿tz]pڎ ٯ/D>|GUyyD IDATP%:n= |l!Rt*# IAaDf'K r#hě 炓 *!MWC&~[SJɺo,˒XسCWZ0nlSu2荶eLώzY KSC[E?zhhI]]8U;]L*d+/|{ksHL*4`NP,6*EQBݒ #'Ջf@JF'AyxQO}mh^W ? BJ>8Ut;dK S w)6yv*^ "+ >e.F=8 z]5pB!T3<F= .Ne$xAnls؈79. 8M|6O*BڙbpM\ mVq0qWZT.q=^W |~+B!E(&QEDm0J(P.q<2*s? BPltj0Icae_, 7_}+/j8w(pB!tPqEf+,/.IbuH*BabBJ_m!駏j4?w\me2՟;Wy3$p7?ӥ=7F-_MoDF؇faH!? B!*B!P%B!-ZFtrqv6$ӮUmO k]K4m{3f[~>Dg@a*cc3~~.(`YVIjnI  }SZ-/SUQ1^B!T#dV/f-lYRR)/Er xB.|͵a_-qmᖩÐЎmx`%3z>MKAb07#C9`b3#1RirDjj #1[$ !бÝ !T/|ҁx]?[ruM0$ 0A)M=n)"i'nξ~/5ȍԤTF&'炓 t>Pnhc(|pkl;$ N匝-\pr.'HܼkU^nev-7s ˲$%!Gt3ЕlґTNz b*uZnicgG֥ߢ_6ƙ^'ˏh[M"C`g`p/ U%{WNB"'7%ly۫}V߲EUqn=TeiR0Y l:TжtT|%*ɗYUN֤fW2& @ C?qJR둓ңZEE*!:rgA懟YA(V[wm_q[ƹ\'*:2`饅 swIEEzia&(r UШUt. |}..N&.mw[&nC18zz]!Ё%QL&Je,-`b JdTQ;ϹY[P(V? ={ jC5 Ln槟~s*u^uPLF ,SW8L]b> 6$R9E'06mŹW[2CjK^X)B!Ҩduko+0vgmC8@-3>}K??L&sT: i/T:t!j@!BU !5 3ڪ r$"t0`wF!(MbP@[J y8x x?ٓilF??o?\]uAD?ȉSgs nFwc7sױo}Ͼˬ r$[\xNPGA;v >-]ާ~O8ykҽ_G[+nߚr'?U!LU_a=b_y "&&^yͅB J]>DLet./&٤դ#Ŵo AA2p]X {DJt6q#J6uVB 79k@պD2hWGAb/MO2yfƤo򄄐{ZE?/8 iceʬ}!:lf$jqrt*EܲV\rn^Ѻy ?Icțwòfb :o=qŋ1@4d2meV|-܋w|ens D_JMVaa$ƂlbZ0zepF8teJHTܭx!EaI^^d@H.[}M-*5yfaH'Eܪ"U*_}*ZKL3pfm 瓃,%L8Ut;dK S ZGt1焓LdetfPSb㫃yi)2qL`P(֞600pmBmt7K}nɍm/W$h.$k|ss ^;D|~+BTFIloZj5Ro2UXmox!PXXG[0ZN\D*Pj|aQ-^3!uN LD@XNr5J:\>v h{]B!BB!BR8@!BU @h={zw~SKoovdVj=Y&SjZ8Gt5l BF@QR]}Ar"֣gΜ>mQpmGXz ^J)`bi]ω6Y({ scTC}Pۚ3+E WdIJNJ6uZzG#7͟X~?%7U^HgUe{O<ׯ;ʸ,6M*&M P$ZISDmnVe<]Z;[T|ZK,w4q(Fe}g}EI⹙͕v^W ?Y&;k}}//GOz{?B>të%УGR[BJa\3W>K/-L-d >wt;-%B& 7 z՝V ϤӞ8\x()s15ɇrʻh@XG_ӏ%|ꧻp德}~ОFB g4ِ&3W/Snls؈79. *HvIVφF; th빙蹕Tmz]`!BDm0J(PUB7*\+NHp4rBX000poDެ\yڷB{pd2E~e&qTNl ;h[!uyU"^B!t\)FWI\+%mTI3+/ھ!:pB!B!BښZG,|KZ?ts7x/i4Ms|DA,}94T!5 }磽f瞙Nu. '_^X~?z}C~_u~ov㩽 Nmks+N.zE*[;F`l0NgFFt2 fZH(:7XI::,ZO<`MK1oi;l=v̩NDReu[urMyb @^W9? )/PtTy{ƛG^u,н8M˗8nq$翆j$g]$2ͦyq~^P['L_BS.">><&n{zП[eKyBu6G# ;_ sWMGf3̺D6S#YRq5}Ō߬KF ) XiRsMR(lH[0m|2%6%Qװ?,nlIgB X}S=#yWpsЧ^4.NO }'9ώ-\LYߝ_ʼnO=tWw ': S蹼7<7)ʥ@_~s3gU-zbhfaj5@~#@o2׸E."E$Mϻˣg/E$|c˭DzW Ϯ}gTvԄҩDHlX)w>qw.=o^&&^yͅB J#ŴoY61.]z/_,ǁȽ/m>z/y_z?}󋢏ZF^T7=els= nTqvݟ~*_z&kӌZ!9qgzhe!ݼj(>|ϭo}?M}gQQgW_0EIRe9~̙]zXmqx$IoˠPZ{LB ɀ-u='dk=d.̍R u(Diok\%*9I*"[(몁ǎМw.JkOfc$wBW?xW^~w} }Ҭ9!ħ|G&HW?@[fm'OIJd?'н׿Ĝd8J;6שoʳ滟f@*ks:!Q" %lR2zG8~裏>س6hߚ|`r)X}5&i7ͫv'ɿ|_ÿu߸am@YxڻT:]Ldvҿ ZS`' N7pPкMPH_g-hN8A(dS}_|%oxjI22ڥ) o}N|O[$P,Jc&S>0ݵROҥ[{Nѯx\bYſs)JȚ2L.},XV0jYn,mW{%'+}E{eY#:C{vJ8yG#b ɖ2P`2vQ/kuij(c痢zL.?zmv@3?4M$׮.낅k368m3IPl4 %_Qo/=Sܗ􁗫ݯy@ȣhߊd$% r{)]ix;o\﫞k70yy:u _( &mŶ|$sip n]Nv/_ko~rz?yDocr'~}o? n|_z>ͥ^ypz?@~~y9{˧$/򁧹K>t̓?]>?{Ǟǿz?RF1)MeO,U0/*bY-ҿ}3CwS ӏ}9͇<|"}[>8Ut;dK S `B3^eg '%0ȴ' }^sC&z1ﴪXL'S YX>/x()s15ɇ] @(k>8{.Gоm{ٓg`~g 8o~5:rs?~ۏ#vf|ל=e Ll%vP[U9CѾ{e[rcF4po ŭ%-rh.$ *B=m{4D^7"T5SxgyҋrO{zi= g7sw P] &^I2'ns ԛLFe;L"ZӶO3+B]'!(e.*:"B?{E-˥7)"4Q@(B~(Q@QI  R/Br^n?Bܑ{||ݙwv'3DkBZSM#K?AA(^1F?Lhd!{%AAA,  X AAAAP޾B.U۷zho^eJ-=*Za`9x)ںI}=<ܓUϫZ%R8.LBuYS,?  >/+OI˕I sQwt ߛQƸ!!uy2 NukTRGF7vV;yR1'U}̻S&'ou<_BA%>OV[% 3&4{WZqk>O&QNV'Ɓ00! qn1Ã]WzohH *ZW*5t:L  Kh4In_Z\] xC -ՖAˋ*͝*YPPPSS4vfy2d:baR46S:ju_-AA=& ?vNjM^, (|Q~=HqhegױiUy"nutGoa"!,78EGerhY]@LVI$ lzvznVPP\ *DžZ ƴՔ=â}4۷ɍ'[|+_@o? [Yox54~@LSڼzAUHHH^^^oG HטlTwqBb"3x+זoD>t;, hB '% ƂLk=2́ y UkuAAA^bK>ή=[2,  @rl hC?J c ? u0Tt)NLDO#= ? 8@w 24 M'*IpVz}J!  ҅Vc6?-ud=7ާK  X AA?  C;mμD? H:H$JZ 0"Qw:iĪ+"Q!/ɝOI-~,>'771v19STt3-iv]cYז~Y’yWw<4q}i4߮3z%It®ȉ;ȕAaav1$a KGx-`L;ЈN,x-E$]-=(ЅKmgA w@dl|qQVpEF pvͦ4$Ą&~|qv6A1h(;FyT_pk&ydv 5}#!]o[}W 7k{;R{T/Je}?鏨MblR]g-Q$`8q$YJ:Ir;R,'?W[B%-_rO PA2̼ͨSc\O<1NwfW0kPc}NMg- TYdH!"jH[QBG~c[ռC sQTe3mȜC7nnv#(̿ӫA4</'Z>IW o\>PP^*J^ڴ_ޏ$-tBqLC /b)}اyK+P'DOiY駋~3 !y"ŕOLꯜ[)OFߞvդsy'6,Oen?a~Vگ 1̖o_-opE"'Dy_ oiK[ٶD~'ɓT3)?Dï:VH[!rDs\رs-o  tǑO|JHTYQ!{=$<_ODe>6׮@X*gLI$*>o|-W*@k:A')/o4&􋊍 wѻ tqinn,钖n9PjzQ3 RlN2~\lٲՇnۄB!@}}=sV\.5}1iftၣ9ߧ?36n|ZI>dOsg;v${?f)ƭX虓ZLq΂1fR#l_O_sݞP\T K N R`iKm[5tw2OjZ~_lٮZڳ-[i{!qh|6=zcg)en}qȢ*;IN/-[Õ'[Ӷtˏٖo<ѧua ׭\e/5_gwa߱:sW(:z~̫ײEq@u 3kT& xRT" $DƷ%=F'7.ꊆt6Isx.>bʒKZhLh{#[2Nhtq h|<+E8k̖vf=EggU)._|ؿCÇ.u%rmK}ʁW@sMקp8vfl/*Z3lỵ.-]RlWL5.1%KOoX֍{פwM%b#*sүgɸ>7wה֨{2$EEvzfVVV)יN`^Cy+ٷ'K `̙\~yzn8P0ǂ,:@5."z1ú:9y#%mZۻ~;|).ߥ]Jx2>99іz/8ADB:Y:i5; Վ#i%EnSvݑy7.mrcef lG3O)t5UaDDV (TKb0 mW ` b0VU\"aIB);8>Ѿj  wn]@s ۖZ7VQEP+ h5e\dSTQr8 8; }sEk~`'ZG=<1&&fށ˚FN"OVtiuJJKu萫{;/)"z NHK%eY*RF[}bdSM+5jw[x@}r:@x} _4Vmu NnyAګf': iǑ>M4ٵ'Z/etn"%8w’Mg2Ӯe&- 5sB4F Go}yVFFffNyIhd{y2}Yƕ+W\/#7!4rllqh8F0tQv|fmW͓ajV Cm7UH8ꇀ (vڲy]3x*$[=aDgw0D>i.]~] DTEi^8me fzLM(̒ˈE ^Jo:Q)XVDQfnh8Q\W5]F/Dnaаy^wcߝ-}_?4~J7C$)pi JSc+$ƈdG^zP) 79ğĴR djt>[_UAR Y ,syOA'= VgB,]]Rϣ/Lm,z,  fv1 niq/]??V[o}6_8rPD0 [ԓ*%ўW#RRB>01Jbnd4P,*Eר,7ظ `e|k Q_hdOV$|wIqZ^mNabyr@W] Ս RPm][M[Zd5*|\Ş%)h4v0CTmJSNyLwE49uibXlo5~is\% HfMF qӦd9UڜC:8gfά{ҒRkHV#d>=UiAWa2a}MOVnI~UsK}y;fײb0aUZW<ǨϾ=ˎc^,Y<*5:y["k!\Ҷdnv:2U1yˌG=X;iYFeqHngƇ˿cNws-%քe&XSNJdS}2?mg<͌?X; )IBϥ!(tMY%R:YUqm!S%. D* D 抠 򺦮^&x Ƨʟ4=45L?AnLL'n֩> BփA_V,JzhwIswNI!71n7}c2MqvshI5 `)vLOhdl||lBRwDu r+&􋊍 cNd%n0deihJe ]z0%iY¥Q(L[{Ty@Pi4M NJ{b(/!M(K(/*vJd0xF:}  k?hkDv\T5UNnz ԍU2sk+J~t^+/.o6p Itl^έԂz\$ 媬*58{I QA\AS+48C 55E%lHO FթG̢>]i'>9 ;YPRِW@=‹~vdI[PU_>.B! c>n511155Ll|b|9Y"u pbirBBBz; A: #t[AAyud%ײ"AAA4tAAAKuo! ] (tAAAK   B2gn{Ou91x޲ V.|N]V{ n4K~<6_yoͅ#7_={2Dr쉛[0ÿOi@;UK/|s=V>`ߋ? , &_lE>pSMZ#մ,NY^MC"wgW -g6ly"_tN "sot8c)~zta,?ד~ }|#Lfߜao% ]*L2 @*?X5oLzb܋(j՛[>| I?4iӿIkiyHQz,ǂGt H>sϿM;"e_|}'>mV'~oWO?G}eaRUmW3q#LyGyQ/I?@qi"WGfy4>(dX{T*T J:|'Ϟ;VዷzLұ6NdskQ";sB:tܩ}_΋3,x4fKN;7oMkj0=Ν޻n#쪧F3{xLuHgV<$K-0%z\'ϞO:1V&{U <'-t[ZMfCM/- Ǭ A_'ǙLfo -@{{Uf}7妯G(~1tOh෤~_)g%e7yRTRN:5 ,jBln[`?&:)̈p\ ܀;>'04dz mU8x8 0\7ocs?z4mҶ FqXAJo»k4$iv c(ghg 2@&5v= /{r÷M"W''٭zP{pС7]5_3tСCgDZ~I'j]@Ż^:t :tW~0g' 㦺_RՔʊeXOx\xjС ~Sd۳gIҢw?zaĹ߉~0;o d'k"/[R~ЁSG2s n-#ԓg3w.Pd ǣ iސPgPs#T1^,hqi:̄/2'om3Bkk>A_Y6~ؼO<5"D'Su:I5'pToں#ǘ5gt6Wp2KJʋTfV0ù6,$Իz=j*Rƌ8\:sOyGk;_8M. )[S 6O Yv4šnS/U[)͵nuӨ 87#*xD N:0o؉.hMA]ِ$S6LJD '7嵳iڮY*3EnJ7&:92 Fb@g;9?Uqn=+j⣓&?1q@КY1y1ޮlz H32wdw(7kx'jCHܺcU:iՄbQ :S'"tS[O {N0&- 6Ҕd}+Sr/;ٵVyVĈ HwA"K'W%?zޕOj穫'M.yDcc 7?ʵuYS> .Uʲ>sPY"#&5g3bA/?ҩ?7{$cr,[ecYfmUg+"~3KY0κ7ːH ib~JpHBNܬhl(/WiXh_-&r!pdcޫ~H#2J{t )tyHP]@ mAA?   b)4~@AARh   h@ẅ 4 l g65y"HFN:mKpB3kmyϪCGϯ{p|iNJO H/b:t0yQ . 6>1n0j}c2;S.+պȐWhq3'N`ٸ GfaꄍVfժv+ ZȪEގAXԈwQvfuoED.n!Xf{]4g˩L%;Hi,.y9Mc*nvIVtu_soU0aW ug.M|-1a.tPe+z4[@'F-̸% Elo;X~FI^>N<hd5% d#}90t%a:6 j TCUĖ=E\򒂪WR (P:iWoT\yfDD`xf3l 㽊 O7qkOG=dK >mȍ_^7\`ȑG\ E<<>2IB+eW[G\=(4UP1M~i| ANT߼~-#\ʰQd%RSSsVtrѕg^URnNNԪ׮ayae^-\yV5,GWvCAVVcŤ-ǓfרDuOTmcAzѭLh FNJz}}]cr%Ť!GN?52xz 3<](q ZcK9_r*%dk'_^)8H & p7=p˟x= Ha4jWkcCT5 ol $&$2/#H#.lPꥄ'!]8R6]H"Q7q t&{ Fx\uBx I sW1 c:DBի;AR-}EhcUZ| `#V(ɣ4*MoзJ讑JWWW=p9vK/ gl1@ia0<(O+*NpE*V ãUH)YSض~NҜ-YF 'ۆ,/htQNXitԳ;r#kQGm_ AQE_+jedxzz6'3޾C'UJ_P8.n~>p񵻾|pnԯtz͞dW;&xLY?ݓnfm*00n㨵w1(PS_?4g>后Қ>NOh]ߦ:^AljϦS\šՄV(Fg0(XǏ0Jbnd4Й,**ekǥBO7jMZ__^.Uyׯ_v5TnUMaac{?0 [IH]Pư ;XSo'?@+-% fI}zY7um:p}>< 7CGtatG-i/BS^NE$8uѵWO){;A\yxxNY_Z,}@d(JӳJՠx V%iN#.EdUy@v5zqnjD'(2Djґhtr0p@@ll*V JQ~c]u~4Fź tLRY'&NiZrVppw?-4E %H;'_|-!  X AAuSHBBBBBBbbbbBBBBBm;˳ã}l:ʕe3mU8h<ρvM1G]%cyFF pma,@)s|Xc|:H$JZ 0"Qwz;(2Dv}{+bZ/??٣1嫿ro|?a/{zyWω4_jx '3SzԄ`ػ_/A G>~8?oykôߥRHRTjዷ?yˇpLKR\/3I~8} sۓϭF̅ I_Lt&@s}9/tqvOcڗwn&''''"(n#n=x|>+Z`\V8eUOXg<̈́Èw:wz߆涒's7Y=?vόb힓޿ "Bl 8asٵ! :آp : kvѣn?Ӝwooi鋘Bظ W=񱑾v-s֍md ܠJk4|>,Gz]]lQf0MVi5Z}PB-`th4W3p :IfL2 I7(&.."tՊĄ:F9s00jvɡϕd^vLeEfjjfR[jA=leEWep'?W^<&F7+UlqqёaveKhtכzAk9/M趶lW#ܼykg& +~\5ʖ3p{i\'V# y,CmϦW|v=̭/YttcGs(Ogl {GC'|,F`P8\&AhLzFf{-b́fU7]˽vu{]96ܑ MÝF fZZiIJΠHd*:rF›uhzFPTdgfeee+}Nٴ|IO>18>>>>!!“knQgD||B|LFyyU$W<|q|z%c7/* ׁ^:- )_?wPjJKJTF2SǾǫ[<h8tҔl/xy5N}zf:k@wt@ ؊?>=织iG~h:L+(P|FN^Z\e:p{]>0 g BB̝5dlpWvZQu%ⴜg`ҹ:B:30:#)Tee N)L;C*+4Dr PmB=$]#d9ZWv j]P0 ޞISx˟Rr#b n)3 +*T*:xU+uKd<=L1lW+5ҹ\1QP' BR[nL{/A\k<'$tӹ>FZNgs:rtiD5vL5M(`f2ġ @cBcG1Uv՘pi(\9I/ijzq1}}{]8G! uvOV6[);}>Y\`7mgD<ri%EnSvݑNяφ4 0xG>ǂ,:@y+ML\.iӊ_ޝK u.w iơ@sonh4^gNMthh,(т2yt\ji9:npZOUmk՜^7/˷!*^krEMƦW$]7@,,F}1:7^o,3^_{TPRJ ea|pꙫ]ZM4>0sH(TZ{Z7#.i,̪bDRK *e㟾FZpF M}Ӻ=T#gD^#Jޯ:i`-O;jv hDWDqϐ/htQL_zYT0Mq1L_FuxrIzF㉔vlqFŌ-`5JmFUKU;a!޹xiBŨ@4|'i%u.oZ76n峫2V!w6rܗ>fY(4t:s?9$L\qO37+Op?Pz=jmQ(8\:sOyGk;_8M. )[S 6O]ҩT*[וe!Y&.JH3{ۙūwvwX4eя: twgbƂD) C"ғדOWmFpXl Q^;V!Kͪ118SMb뚶'fhg9HHEƪ>5"gVWL=Kw]V~Iz]rPL=F0B>l14AgYt 0*-@gvQlgۨāg4ے,[d˶,c'Dh %4-W`Bn%@rN([ZNo._q,ǖ,_!Yu'd9ql'~=F3|̛0RT*9$HZ%&"MIBENpPJ$Igh25m@L8^N|>i[?43++W|{t uY VV'LQ$} ן?WmJ}<_@ qNXʔJW;U1_ 0k˥(J( Z>'I$ (Sf}O 14e9r-jYr0;gVfnj7^hx<5'Տp95ݴ@IEvO `w_V\ˆi%&ӾW<0 3=m z|s:nB_XS(WJ@83%4-R*nư^OR)YgM*Th]d.SL +93wG3~`If\<`niqiu. apg+eɢj 3}JCr};h1uUCkW[[@ˌmoEC0Ïҙ%ayyN\ZdTAlĴ* Ki29-Ɇ_b?4$M.P$W@D}v }]&~ͫ6u0 jcpHk7`.`uo??{ }3ޞi[?gs.d wlі_t_~ie}@(.A%*(Ϻ.,nް_ oqxk-o\O>^uZ vŜf^xm|+g;ܺ-y>mmouP<;><_] ]\2l~އ)߿1gǓVm?SĆ[?7{S;H"*+ %oU _{I~#('I]Ǯyo?rʟ}?ye򥿪EwA&i=c@G?}`V6"ba` j)Kh6c9 cdEhX0D=Bâ {]NIJw'>8@Zp Ea6#E"mGK0`v ލF#A V{FڿwO×KylΥ咞{Ӧ}{Y\V!K7AIeMv1Mc$~ |Db($kHq^Yi̎U[[~V~ѱvpDŽQ/@*b 2gb (>MA(I"$bNXI_T$D]>BSSp#"yfp] b8K̹JVpLk(Wr'5OHkKQl vRG@s!ԴcGO /-u|Lسg hwe5Bh>%X7ـlrpS UVV8:5$q_"x\%d\ɴsue`#u"cjӪB 7:ʀ&e_{4+heQQ=~:% lpN/Fc MGaK*WoXL)!SwlU9H=ɛ= nW^!4X'RR^'tyE )ҽ&FfjՑ=CF:a"y1M.)r&U:o[?>JQa6 B>/3[F ;Ki &9&a ;L!$HxQp($gJhZULy'Ҕ.*)Y\=|( L Pf H xLq 0iJ Si z&yLm6=nC^/C+$U+NU1_ 0k˥JB8P-0S.BpSxD5hOfNS#.Is&1[CyaQ] X=!xH o_eЋ^ϔRF L`]fyBA` MD= jWSD,춙,D}6em`R|C3~w",G +)sV IDAT.pvO4ܣA_c'|nPRaH%SaX^\dTAlĴ˒{x"0/QbGaʸ4T E^GYp=w}jyǫ|W+xAۮ׷g69BXb}=%e5Z`P]LF*7&?htF]⢥|.uL6I'͙bF-f"OkS8W*"QzxLJ+/%"B(N~0q-X韟kLFsd2w-B /(1B!JB!BB!B(]~@!B !Bta!4c׬;=#@#BD7+ }ѸrBA|mJv^QBGOuڍ/|퇿 - lNyiǩDm6{W?'o拋RfT'B͇ي}-) ёD|'/ TjD{}EIQ08eB3!у/q^d/ϩ= C\vZC9`m!wǭFQYZ(pAA|_JшcMX{~tQӳ>QE?ظq;#Ssmf}_>^Ҋت̞'}gx!ZfomlniiigzEjx9Y!=QskcSCG vllЩe[v_5}oB;꺻o}ZCMܟaOҷ@kV+gghcu',pq\>ۗ_nx7|ffjN*S!$ GZtW{=Qӿ~ʥ̉BX&p(ɯY 2Kd*zq_Fhb|7ޢx!01 >@4@a@ x.VU*aˡijbkӈzۍ?M߾~mh⫺[4~&'B!N~dJ&>q@LN"BPXwy%ިF !4Tn^:]n✑HtŃx[cg~~*'^eىi*uSض󞿏~VOKh폟{kW ɉBlr[n~X }[nbz,/wD:'B!>B(N~0 ]&cB̘j }‚0;;?Sxh\^NfKyydZ f^P#bTxLJ!"+ I‚0YB!Bϧ8&e'S?a"&vNJxAAR?"x6p|$,1u!B(!BB!BJ~gꊊ$3 B!T%R3$P&b$Y$9// ߶b+B-Qҕř)¬+V,]Ră *#lIk+K kˋUX%T./͞|XVTo4\rz N_")H(B"pDLĄg 8\Fnpu?9YK9D,iv%#VV&=DHtFז}GÄXSZ*jt&EZX[^Ba+ 4  8xVYQ>"h̻zKl,倛XDLD4kVO6~؆?>Qs7A ns޷ny;uG!t":aSdʐI]@|=hep& }\!/%ml?L1?'cŅ(Un90% aup \;KKzM*ݿG׿\{esYEB QnAߛn#E)-[V|ymUJDBh:Eݬ\e1O0uOCCC-8EAdl<@펅90%͍Pӎ=ASK{Hf~ig,?ǞM?+W@{.BЪB 7:ʀ&uFHhe-ҫ#QwwQi x0Rm!<婲x1w)_B;L !-(ì:嚧yo쿴tÇO~?4al]y_F I /( )3T48ZF2Ffy o2AN/Gr1^\/jt&Z]ZX 4 Hf81d"m-P<@y 8;>G:EV0!8/hp,GI0oYnݺu^SD" r@[h4ejqN'V‰(aC8hiJF1iP (+:heAa$r\I sLbn{z9Oa߾~˔{˾2Ehg7o~y,_Λߑy$;;pw-B D">El5dlpLe cY92ONA Q/qO1@mI,U%$SR&b$"B D"hAIDŽB 1q>)`%4B'.( y$5X$?b B- y$U !B!t<`!B!.l? Ƒ_TB!tj;8T;vwjX*r.9>𣴰R5IaHaV!?K'f1D93ujb昽}œduBY`(Ȗ Xo :ˊy\,sIBuڍ[wKO^}\i߯|ѲMLL'Xd9;7-kwZNBͧi? +25v4e5=3֎uS@]\wL!B+/rO3גN.6-k*rmC?mnZ*u:IN]=E{so|ḕ6e5&q+!B'D*Bw`@xًVTjB)(X\]bE||:qemeNΛD|aie9T ki36(niM̐IòQoodLLEY6 0q1?%cg#~oNqƝu`-dnnk߷oB+?fۮ{ͧxedL*^cggry$x`(Py.d:kn޽׺mhBF8z#)S$mTbq}$or}Z$PX*qwF&&fzmf}_>^Ҋ wmܲ6qƍw{@}C]h}vU~+$'B!GREo11V@e n/ڼeca7H3,&a{m,  dĒq:hd"gpܵ8&Iƽ-fHJ%omlniiigzEjAZbŊ+W.˗$8ي+W-p[Gs'wo_?oWVǿ |oh* 5 p?}KUv[ jsOVuFO՝ 'o?͇L3d*O$-|}\)$ Zq} rq4 G?|x\onKnش`kn`5,M~TڝpH*~nݺ3)֭[B"6y]fe;2oq5]õɣH(r J?˯?S('B!SdJ|1(F&ÓoXiYz-nբrhmi*54ڪᛖ!b %\+(\R_cCN jWSD,춙'͍a NX5#rz>._HC8 4BNmnd9:WmC5~|CR;;\ }{떷ZB;avX< PfG]:GJ &?ϕ+vDL>3ws8MnRҨoBfI).6{uttڏ|8N( =x҅}CT&QzeQ&|QN-z.aw.=W,ܛ6UV%*沊!T,TiZ<<^랆akrrxie3f/jkhhhhne%{FT:DA*1ж{~H:QNVjrʍƕ£Ʀ070|Y)!4BM;vY=dKK~gأ(/WeB% f6NtU#}~cc>V 6EbI5ꋲl5:F 1'JY%F%R/v2FL #%RJ`(!,,Q}#Z}}o _FhA|J-MS> P+NU1_ 0k˥ !HSRf(gM H*3`=@H@Yr6 `pPdiHH ,)E|R9yB1V(e1̫Yah_OfIY"hpl<Xs8.'b3o|޾ IDAT_;||z}WB/Ѡ/1`D*T {⠣pI} y:^)/T :B(KUkgi$ح\ή(yAU] vZp! '?Ɔy B)~g43ͭr4ߵ@ͲAe/Q:-6OiN`5~+B!cT*mwhcr/!Bi=rlk2˛D? B!҅B!PB!JW?SWT _DLDB!@(iZ)&d0%MYm]`6+rwA!Z8R@R P 4DB8 pݳ{WWNc]gݹ{]ǵLo7Uyy8N BGl,DYLyID~cSkO?oQgp{y/g/kdB!4RbA s /`"&K":JZ?矾o*f|!_?MS W/\\)קOr |/red.v!Bs.ݰLHDG/D DNɧ2/~ K#!Z0R=+* 3y P 󒈎R$xŃ1βD"MQSs>>{mC!NN?B\ud0%Mo|r sk;wo߶M*l-lӚh~NM^xNK^GYgVWvm&r!:! 8n&b$&B_.1W> 54444ߞޯt?Ar˖ASqHVRmwyY6aD1544444>^Mє)3<TVr$c$/plX |W'd @|H,{}11V+%QW\]qĹfVjQ4)$qd<bIroԝ2~yEuEr m_s.ne+t@\p8B˿Oᖯmzl꽽2;$AYYRbΖycKK>g?lYs#!4yKS9fVs|r9awr{ J?bAi Be,TK+T֑41e6hc1Wk $ʢ wW;\;yr='@,`ns4%}]ΣyNsF1ED<(GL,P'qD]=$&9#&r ˲X y8lC1`(a|@GNeY bvPj|66bj!(PV%'ϐcdڢG1.b W*+Lms|Ӝ8Eh}\u 4%j؝b Pb !t wNFagjqI~s:<Ծo"QиdW$׻iu:yrɘcC rl8lV>{ts$qġ9R lgZ #j-cM)2M+$n{:] $9:>0A%?Xf\sSY55bY\38) M%9BC- 9"Kh0y7icZ C,|M_(:۠vvy<( \rTFK=ήiSu!W?j%7×XǗJiju&E Gp$#@#  $xeeIJL!$HxQp($gJhZUL%Ҕ.*)Y\=K=N Ɔq{o<4%e }ĩq92*لqvQZJ$#HA\ 9(DD k@N''G@5J*:f{bU1_ 0k˥{ijWSD,춙,D}6em`R&sGC0ÏfwSW4 1t4j-s!sѾ̒-E؀y(@.P$W@D}v)/T @\Pm,. zgn W'r6ȭ[{Zٟg.]t}~'?_m^bBhb<--.Υ!J>@y(ثxFt9 ]ay&gnkc=ʒE"gIShv6lȄ(yAU] vZ^[fMp2M^T_[w^f{*aD="ʤPB 01].:WtlP}ٽIK_2?-X韟kLFsd2w-Bl~/( /|'J6?ݜȳ  ʢ,Wہѣ}rX?B!7:,vuX`!BZ[1G8 B!B(]~@!ZM?!^~ ͙AB!JBsT_u X! gvD]v5U%7HaV+.)HHʪk6S9)'|6ٚ76'o拋a5/l9m |/ fe;KsG. *[a*+7W\rE}brqBW-_Q_D#٬t3̼\tyg%s ζ !ҖUUζ@]\wL!B+/rJh}O[q;8 ) 'C'l~*^}Ǻ۽4ˆ#P$ c2}`fِNA@@mɞeZ:;>i Vڱcǻky&K[w>sYNE>6ulޞgl={Ëoi ȽϪ;:*dL?OjۛYO ?m-ܴJ5XM|@\'<|ek{kwVM5x4T=}m, yfjv]xri^u[kwbpT6YydÏ˷-}c бVkiKK 2Y Ɯ’RS~>f:W&,,)++)1(ۇc&#deeUYI*dR9͈匸GxB @{|G*,+Q('^Wo[\RB⬒1r{bYzl``˅1DE\F~IiIA&|1J/QݛV$JI^!'S#Ck % h:@Q|$d5b 0Vd& `gc { GxCo;W'+o㳯ݖ%&_]\V_ .oI_;y|3G8zug}A-|O_)}aL<垛Ό)<78?'-mÓ;nΉ^x˒smJp)O:}$7].Jm<[n}uou`p;5ܘW:ya uf}{[}GB+x}j,>eBxcVSQ3e4Fk2p4m_EEM '7&r5uG2!ŗD3EL3b9#,s?hU(bthݔ N4YOA W(>EY?[Qu/b_Yu`DlLTFO-P*-'5꘧z㴚X$46@e܁5+G``~k3M#ҊLJp^R:(1a$BL?s`9]rZ? |Ķ\[я\y$%Kr1G?}jHzO|>A]nҔϯhTT~D'XO {m>_ƟዋOxϗK3.x$x?s#Vny?Kˮ-Y"F?|&To;}oWJ`z+BHKAG`F R>xB.kaXۗ* %h|cJAP>1G}F栄qҌXΈ{4܏KG7v8YFɌ9!&!PPrGpHˀc'cƜ.YXv;設 ؖ^pњTs~)yʀ s{ihg@&A!Td&Q݃rCwt;(BK@(h4Q^"+|o~k' B`{%^`S /rYj_0FL^o8a$ !f <8\;`څ&D1'sXzH@ukϣA D |>5!TgIJ@L, 03|I>$K(%5/A]#Ρ zl>:-=͈匸Gǜ:l}>D@?G4cݵu6?uZnNbSmb>9.`uoe8e)s~ U`WUCqP,〕֭Jtzxes(AhY C2>Ńx?ED^W?^ǏoM:0hEή]x'y BeBrX Ę֯'_y59 z² ξ偖L8붛G獹5T3!7_~9I読s4 bWS7߯#^S킟85wgnLKO 'su g/!4_1AR.@<Ax<#1Z%"`~Hl.AɾWs IDATX zt25Q2W$T4 Fxx8ySʃ-H^[^>"Q HJ! gKR:hӲ ,C4wG+r!Kv>,m/ {՞rS/߭Û=tJݿ(7]MCm/ѓ">/Xq /?]`[/P_}O}.|_\;+| @§Dl?K׭ u/Ng΄O69~z_]/5U s/mشj͊]Ϟ }|J:Sv(5 I;yoӇ=EcB!ZB|֟} Bh1p[0E*B!BhQB!NhfhbB!BhB!.2~wQ,;9>F {-rW\WDZBHi|zZRLq12(!{׺}bŹ:jb~XiqIFʔGIo 5m>ϔ";h`)Ollwp@fd kw34N!1 M!dř}Ek6n9j/]tKCBhikSR#k|XkԌ8ZhD4zj{}L|ًv=/l_vHyU`\)+$f* .3ӨkjCȬa|wύe?|џDHr/~"wG߿o{l%_3Oo"]!暐O9v/xG\x`퇐wiSf%Dz=H4j%|"@bSCm6qQ%-c*L㷲D`]lm᥉T$%!Ppr-Iݭ~R(1~ϢmE:Co౏r)D: ,y sݗDW߲Kӕdgݾ-Mo.y)G]<~KIm;ѱ81T/^]'BݵUu>NJTU5RUg2a&뉞v;ٗ~Eqι[Vsyq@t׮-7nܸq%{ǥ!H>>?2a\zvtT ֨W[1_pAģ$V*B}j\l悤qZRq:3"32u .w4r>˰ϧC/7+NKS1- ݇/}9l>2puXlPV_a0b0 09l?-KB3KΪA'Pj+N=ǎsgĄ0%T(Pub"BHgxJ,,6L&0[ٗt"L@!v),EhY% 81o` +0"!Bh`0B!B'iB!:B!B5K2)O~N'bK%3dZM 1\5'f썕|hy*9-9N&$1G286DH*)رu( Qɕ2p BN\ u:Ɯ׭,KתVd áB1ԔhD iE%v yG흍]nq II)H"3 l3 c,6Wr3#B Ntzuǎ4F+vر݊a5߼sOe,Gu{K:{m6[oORM6W|ʅ^gM{vn2 j[cԶ7?m-ܴJ-w;7i4W/vj5=Mo{'|H~_=n9VOB-(L"Դ*+I%RO9v/Ͳ!+ E%PSqI2Saaqc,OTe䗔fKPe%j3VR %_9mC>Bn Wz]Aۆ@CXaXaX&D{seO:ڻo1/sәQ:'yY6[ղ6J5ܘW:ya 9Pl:Yw>q!U],3xt5Sv>uڪʊ^b'%jy}E)pKA& X:d=nR<_H~%K7@  r1Yq0kiM%%eyjGe$|CVrӵFOb6u ĉ8nbbHKAG`F R>xB|mA Yj.?ޞ>Xh _ziM fEq"`k펶PPN1qiE&%8c~)stg0!&9M0iɋ.9U?>ybۋ -VG[.hu|<s%9Iᘣ>o$'`>S箿i7wih4*{)R@Kb7;O3$﫯 N_D[A}ǯJ:! AP>1G19ByV>8f@P2WK`V! w)NQ2cNGc64MɎۛ:I\q~$Iǥ%- mBKKOwyN/Qclbwef]1A;qI ީ76AXH@359}Y:C { @Hn0-DV[{^;ȍTnXwm@Tk(8  D  #$+|o~k' B`{%^`S /rYj_0FLq Iw2<Br_ ywp˧lz@P]h@*F)f^F-'K(%5/A]#!<)yʀ Mp &v8'ù?,vB4`S A5iYpeeY a*`YS[]> 7wy)ևzCdBL*f9VєM87o3}sߺ%R``t]g>Y1!HβnD/Bx`+iZ9{% Jj8^7EY1AR.@͛#muo֒ `4|>"gWc}VD&y BeBrX Ę֯'_y59 zf/߰Kv}T: 4 4-5.Ss|k^/֍TE lasnܹNwZQ3B"֥ųC  pCEQhH $&zO TIJ!{M'Gm^BGX(Q+t  IJ26xϹ` Z1;^=l_[">F ZO*L+ֆ_Za3Taq@|#=VejZ~ dK̞,´U B"[!_S"ZhNogM}_$Ʌdmot.rYl>/|n?+VWGټis/z}_㆗~~ @ _>i3 UP|?Lxӄ/Qk|u_T`{iCƦUkVW<vԌBh!<^")%;Y'Bc#\̩C6k& Fz!^ߪp2\֖^j `;UYEz`C>go{ak$=5$[k>[Nq1GWy2z DM f6qZ~o6oXgr?Ꞹ]7^lMD9͍;~tGRqfԴХ@ͱE~C!ՙ%Zg RCY'DNNRvͯ0Tjs1G t1DzuX KEhG |qا=_ @ M&d*Vlv!=T(PuQmВh1% xс;9Z sL/ZB!< µG <͗ B!.l? B! !B隻(!{<)=5^.e@N!K1eQB!#*Q(6%+a{q'DCK=ȲST*t43sd5{1mNDFaN*_G}uL:pcuXVI !:aED S-*+:EC,w33|m\7A\)B/ ijc!悔62VK&j@+ ۆ YjI pAAuJf}˅MjB-B1-9NgξK{)"Um?Fb)ERQ+SIXXjS*niTeU'g[}g^)^0")I"0Y00L'd;B1#Q6iFDQ|$d5S-&Oօk*+z}~[C=Xj$˄KC'zV8!9q p @%ՔT͞m̙$9#R\8$Ip{};!QB"d,nB!tKAǐ.82KyʈR.zT׵FMԌh%M6 |^cN+neXf1,CKjikRt\otNOU0z=˘31oX%n R2A!d ;Z"5.<ůz:BD0> =Us{ihg@&AG,(a.k$&?,vBd`[iyNq>["ls(r5{v1gbt0@ Rei}nU֣7+{CK-$l! Z8zMlUZbt+0o~,멭r!04VĹ='QJװ%,4}|)qH~Q@ DZ,ǞPMbB-e~ߘ V)Dj Zmº^V'u x1X$@@~nV o>7 IDATUS׭,}?kD ڻ ab]FAdg9s~Pfky¬fISMﰵzecȀEN64ds!BKmZe9&E0}l.+QVqZV{e(Xo׷, 8&ವzTLsG9H$b6q|Z~o6o3_MMM ] [7RYuV5 28)7V[ ]FNNRvͯ0Tjs1hV[be B03 l? B!Ǘ٘0?K_B!BMB!BӅB!taGsmGeSGGwz>@6[c'-tBh1'ox2ҲₜdxdP2C^YYj2Ŧ,,)++5II̥J*3 Uc'N_m>xOD$d2 dُ}޵O_^Ewݽ.nBh.tI:˘2à\R{.(6}eAQ (OO 쫬 Jr|Iֈ=/2NLRoowŤռ9xI-Nhr;.kMZRMwl5|3刀wNLlp֋ dwo~Qbi__2ܫ^rM&d|oKJ 2 X N,ԘR$KV 4p?I".#0+^B*,+Q('^Wo-FI;jllr4*#c4ˆ]MOH1~o |HERx?U$D"p}4ˆ<\. EO~Ó *}aL<垛Τ@xCo;W'+o㳯ݖX%k7u:1X;3"Ngg|oUsb(_;y|3G8zug}A-|O!Dh%MInHwɥS uVUV{x*PV;PU8,JIT),iiZ9ퟅxGߡR#% YťtZm*Bw(쬈c=]= NT*b>.afnsn}}u_{w-_QAZI ~ث;|; %&u b'_PvZsNN#bFJ)Jqo yя\;}?jHNNHcӧ>WBKAmsLj DSt Om66 lM]눴r&/ͱ^ /PNa1#İ A. 2wMu][jԌNOU0'%1&Evm9,.+).0CD&l? 0=?v;u#O]?4iP i nk(sg)d#Ȑ54:+XyfsQNjV xVM82,z,gDh៲lUz~Q.X-Zrluv$EIo-׀Z"߰Kv}T: 4 Gܜ̢H*3ͥ O |ͧ~ 8[oX SyB-&澶_wu~qدuXk{^7_! P39eUI[G0ݝ"=E!?@~{oUAY3 l-y*ҠL+ֆXa3Taq [iY xm#eW|;J2 u<6l&B$~\^^>UNNRvͯ0Tjs1 fD`޿,|㢂m.tQ즦.Bh- ,:RCYծ9a "tXlxRF@I B#!*d2Lluf)PX9TO 8:b'>0 "\%@hY ^YM!B +<[B!BӅB!ta!B!4]B'麧~j HcYpuݯ.tBhrW%;tP2CJurq|hy<'aXKmq R^{u$X&c썕WĘST*t4ʴ*&!ͨSyLmw;Cs@-!O:ȿs7]vB!H%Ⱥ Ҧsd%MYjcZ%9}sjlHy_|uŤ'W& 9 ^$e5B4Zg_B7OݟΊȿs? j Ew}zR/g{>㗯Y"#qc,6Wr3c<w66vo{$Pgd VV  Z-(H)0.3gix1DE\F~IiIaVUzYV6cUQN<.50 [R+cBqT^ )b"43/vͲ!}$(K {l? Ɖ KD޲'-?⬤hdgݾ-Mo.yYDZHnkUyycxGߑ~ ɱ77@  r1Yq0'BݵUu>N_TU5RUᖂLt:zjvc!z1`eǿJKKJLRr*Bw8XBЁ +U*) JϟG~@۳Ǻ ː9^*evx!&Ev)A$q@*yǒd\;d&o{Ksapp ˌ9!er?Lੴ~}|𒷧 ShbR23stc2J qxl6M/wT…Oy oB!O,K3R9 @,x=&K+(Jf L Qr75Q1f``)%@Ę^SևYٚⷷ-g*sa\z~жӡ1 yQ? : IԱR5T8%鴻B1MvϖX,ul=yvl6<A!|\ڛk{|h|O##cQ6' /A˻!*AN=xrF! /J<oa@szw!b]FVZz1vOuiFO*}隋pVP4_<һt|䮯n˻ﹿL*~}&F%!X ?4)4'~F (JᙛV5 6UX"26IzjIިU>׷,<\֖^ 27669z*SK$XQb <~x;J2 u<6l~V D"ٌТ5}ynjjZR "i I9^r-7Bur[m~bVE:_B!ZXXXl2L&Sa:`Bss'Ui4J1D0OK_B!Z#.5 r4 l_c \*B!PT_fc.8~ !B!4]~@!BMB3FƗ\醍'p$B!t?BK۞xɌ?{~U*O@LR>P3 $Lu'W& 9 ,izig6_Bh(._'v^n͙r֋ A{˟U7wt4Uٹ$(ضf}lُ}R\r>F ?~/h} lokץOF;7i4W/vj!2g=?\?G!)!r^eCW@xbVkiKK 2@թ+JJ #J D5fs~B QzHafِ>˥J1L3;G5ھ!7yB?ݭmP]]qJZ =<j^/Y!OӉi+w>gιWT3JY+潺@og~JPR۸7hvݧ[wui]Bh!B֐SXhtLYg]CveDX60:$%Ae1=Ⲓ8Shb9,>+A Ê+|$М2SZ^^~J'6{;cN=xEtCGXee[n;=K-cb" aX (| x#登I-/w~&|-.bGXDS2{@kf6A/qI+BRF&k~{[#9ůLO{Nq>["h>X윋BJHOiz߼oO>1))>괂~E[H=µ}{KǷ&P(!`Yv|jN;?>{y[ydջ/_pin^.y-Bh*}|ip̓fC@8e֘*䌳׆/SN+|>X<#C^ah T9Ǔck7;-1S~>[yKua Hv]EC&y BeBrb'cSu8[~OW78"Âԋ?+朽qS)eڍ7O  ;V'K܃WmO۫_ %]&2=!<(  2$J F T2FEqw;)ץr>q|k'}i;=%.#+-=;Qŏﳀ"Ą_뷲[.Yi-mxwvvV9 _wu~qدwށqT?3۴EۤJneY͛P6JH0%$4 1-ԐÄGI!)/$T-ےlk-Y]ZU٪mS?$˲=3ΪZ9sώ̽s/ƪ~]]_=1, -ٰ|^G0i`YyZxw+\ϷOMءo?ph/O'ol]罸͑AdCi*&?@0]SXT)o7f#=i\"{ ШU/݅;K*2$L7x L6/)1onzб Ѡ?D@>8[!5}.Yq7_+r]YT8Aru8Clpz4[vԷLq  D6Lz%RqC 8,Bq2,JB"KY*e}8o9j@AAt$ɔ܂4ng[kP/NSI:xrLӓ 1P$Y;o/A&weY"]_+ҡc\Ej^UY Ѵig7~/%Yd$J[qlu@Wɻw[8_H|VΆζ+ʬ씡"& lp +llF?\X`ՑT"+۽pPeZFh97W>ow_PZL#TX sC=d 9\ʜoBdEy>K WGx޽w|ۛvAdu'U'gvJE g8XID׀GhuZBs3A ƃR_Z\i9*L D{bej95*?zЩ3)Ows c^ANFƄ=}m}> T6%@=ƺ48FNȘĨ:&S~Wk$bժaīI=.Wb#ް%%~Lj|}cwT44Q*WӐ 3K>| zަ6lŇG+oy WnvmҖ_l! ]LVgVɤR G=.Gf(5:clեʱz6vY~q&{1(?+'ե Vcu 0.6c1IͦW-)oVUFqIe IDATMōl4kSؖe[FX)Po -oI`q\? G^/qSBS)LHUJ9.b)XRYmHwk+B5f e$f4$# IN|noSolԢ;=<4ˎ", Pf-dY z:bVXr2ݻFeVIn5 4NwRОVWi^폝rCǙH(CmQfD*YHwg$"b~̜4X,?M* }BPsp{ @Lg 9(U{Oj(uRjV)gH֜]XZQ'LV۽է3@mظ#^YP"TB{m 2>GCS)PO>ӗ`M 2s8@OƽoJn%ThB(f1;J34A.3t0d/qKt4{#vA$˲\*%,ːd^f`{;㽟;] I2'''==]*埗z J K CJ{=JR"RB|nIu&!YXNHtyˊaW@K;P,P }tCpd}Y&m3͎&V7x D}ž*I3h )!>9 .  O{Uc7)X2ގvϔ~'?,:!^p{%hoc̎0 Apa8l@@ćG )))0KG'!W^s,ˆzY`!}lR( ]iL&iZ"]u%*c{B3:ReY$}yt%c3X%%4&mP͗==w~!,8 Eza#6^ 7FwXhg${ (!HKɂD@. #RevMO}}Oo{1ۑ[<$@(8&SHRQ4Ss~4S22E&BLj3 Z)Q27 JH~Rf,).(,KyZsZJ ]FZƢ4 DnP4%dvsfU\lL+\s'+ E,IA8(+њL:9I29M[$\NA,Yp.v a; U32$hM'FF9: t>A]q؞pG?`0!\l)AֱCN㒥N /)1K`cGC]"C„}Fh nTn2 Cظ}v( +l:6Du0PF]<اpX4\<}+|;~zIй[cC U._ž=#9 se#=jIG#m6 zW^gKs?A \s'{I} l=qPU_^)gCngKdylV ?ve0%ЬY_(`@5}]JJJ\{ XTm9iRi++v4^$ c@:^0mfI2=XeRMoEAAf?<[Qe?ָLj!3B6LQxB7d#AA&#s'l=6gan̰q~  Ą#c)q6Nr\8?ڞ?   2;  EAn[St#IZ 1ϳMP]4C⹴H2o! ׬?1E" "&^BG-E+kjkW.[bQɭ 2־̪&b1d<`c fH<I@M<47[[|sTouıoHszv`^ՙ$@mN?ӕݥٯ}o5x,@^'>uݱs*5#BU*ˊlx|W4;l+*kWVVTT$yUY%5,+K-eٚupfZqlаsF\cD}];+] p J% DV|p`tJ)(Pn7˕:mHT55%fSy%{uJ09$_MҜ@BYxnBb0\/Q0=QRF av(gt0t:MpNN,rV+!$I jvJRmKM9€&ݷ">7 ̜ũ$eE.}nmPcH=Ip'O]4C⹴H2o("Qh ݳu_n^KŮcw߿|dYh_'44PLsۖ[_ʼ8f6^nY_BR6tw#H*~x SdTXA9NnZ.8i V̡鰷3X 0A;aX` ((OppF WN0&7!zWdiFb9!S+H9nP;4z@N1T4<Cnii) fH<I@M<0n@TU)j7@y͹ /!T*h4:gԁ7dipwxNp`b4׮̔)κK5>qzw{4j*=:[ӝ^^j] qoBO߹x蕷EC.=㼕iK ֯3Nړ[ח-gktpVkD3 $ B"N%O}1vՙ$\N!vJV|:h5S; Httby |@9CJR3R@ a(3g 8\ (HWzΚ.ڧiZYDi*&n9Jb"nܶ<@׃q:JP]4C⹴H2o⹀sU=?^w]yKݵe+$lٲzslQc4髯7^bB?nF.wu~y!>}Un:?xM7m,k7oY n|>UK~So:ݯ>^z5OAaCҬʊccy r$ɉTeRѸPgR Gy '>IL!%H$a gH4K@K<Ǚ珋E ? ȢP0Sd4[yґAIѸTϐh.-̗x" dJƅ8AA9AAATk~~A`Ϸ G2AC|ϥEyOAA${T,Ytw{L&bu%4ħ.!\Z$7DxQ$Y;o/AOj^U~d_sN+Vfg utL.pe) i)ii9Aζɭ\f8vY ӊݻ&|ǬA-YzmX45 /CaMܺjB4?P~"^Lhsid%- 4x/̵C 72sUe!:x`V]~YF` \c#Dm%%iCD׀GhuZTn!3G JkqYidw]j+w UFQQ%#,Dc&CG#l%4ħ.!\Z$7Dfq/|@Mkm1V=zH)7~=տ-؈!rAȍ򨻻exD u6r_DOLU2bwOKW=T䔧e`5֚B1K6RR=AlV%@j5>׾1 |]; Q^ >.5Α3C!z\FaKJ g S~Wk$bժaěya?H%55˳b޿*bG2AC|ϥEyO$R*S^[n%9;E^V:."1)&rի2$/efNǓ+,9;z!fx4%}ꚆS&(mnuiuQLsfQRK2WTT.+4:r^iC* ǧ*b-JFKPuJLlv{C1g;DG2AC|ϥEyO$B{m 2>GCS)PO>ӗgGA% FB#^VHv2Sn9L RɳF3Y<~搟>z M i"1B._Z ۻoV:?$o{)MG=|g?H֜]XZQ'uRjV)"!wzx1$' fH<I@M<1M/ULyC[P M 9nXG,;!i7Vd|aߘ`{;==a1 1 ]pPP,P )ۣ,F{eݝ>]޲"}?DU?!zWdiFb9!S+yaĐ[!jksq-)ts0dE3$K$ & KJ&&)IrEQ]|s Fek횞rsnq?NK{=#q&@#CEt4i`%Uޡ.XR!a¾mo DJJv}RmfI2=½ ˜c3P' PHm mnG4I5}睌 Ip̵CR1vDgAA4vX3\|RDhu#D.T8;%'!b6#$O 3!@E 03/[3:t4/cH%4ģ>C|CA@.!AAqp&/~ AAAAAA#~ SY |kx$4ħ>CrCVf? IQ  T*ŒTfT:L I6#$E] jmKWTT./P㩩peYJ{M ӊkˬr\ {L{IC^b]9 " 7$)BzCK۞xε; HW[r;R2m޺DSZfIc^!x0@K|{p[c ]#12sUzƂD׀GhuZTn1;ر'f^D#h]:DNH&hO}Xf? IQL7>c7$Ҿutl_`,t!@Yѧz솓}'Ht::e?y];=R3kw瞃 Լ*JE IDAT}UeYM'ޔ@ 2,2EZqlаsFULuVvUmeEEUIWUK_R^]S]QlQ`(-2/YԢM_VQYX'.sh`;#u6rJGuz%FgcO a\RS<+k*G2AC|30܎hu 'v=|~4P/w]]T{=yMa ټ;#mټy'r]`e͛zr}}zseޡg\{zWܵwn\S,h|u۷oHwBѪi U!aS MH$"|OaɈv 96gfo]]pJnaR(mnuiuQqsWc1(3s]=O )J6.GӸC{ $ņn$s tX[< S!:3$):~JWx7(XY7_{ՙiB@f`{)Ș%Y4 f,;+ӸCb=!r\;e< S! Pq˲6Dm;οSnfC<|Oe\ Pr9+~x SdT1bGR @$phAAAB4/ A7Z&oLSbeMvP'qN l@uGYb6FIl+cOa?Cnii)k)\ < S! vDg`dd`4t%0uMg,Yy%?{]7H$ 0-k֬YsꚗOHפ8G.-o{3\l3GGRQBY$HTi&o$rr<9e/R#AQ[U?Et?kvHX m dr9IXgt5QqJu7`y(3g 8\ {!m9uO%4ħ>C= _rnG4Ix GT_}E@˷>|.t~: Rz<}Eo{kt9\ .gv<{Ko扇^gq7*=xΕg|}gEr]5$'  Dj^UY* {:w7Ś=iXR*%hz㠪0RΆΖޘ OC6`O̥w@_PSbθnzбVyżCAсNE)))۷sHIy&hw1f\N/{< S.;@mq܎h?34kv:;AFIIk/yB͞: @*meҎ]k`Zȩ<ARo2U1'+$jɤW x$4ħ>CR$)BA?<$ͪ(1.#$C]DC1tn<޾e|BA 3Z%_R̅V96^niIuz|%P+TX%AKG#,07dJ&hW}8%6f? P"ei@㛏'٫~xڷS7@ZOkז]/myF<AD|HͦW-QlEyfL*%pRUG:y9nnc Pc̒ T9TnAF]Α1}Q3~TWOK f 4:"Z^SSb]kl<%4ī>CSvDdhᇬU~u][/)-j~¼vs.醌2 ,{Ά{Y}Ad(3s]=> _aɈv 96fo]]pJnal2"VXVd!Ё;H hxRn7˕:m]p2kYMMuueE:nB/^1:upltG@dxg`Srj܎h u !ǐ}>1?fc^@=]% R!z۶scz)@Qܳ0A)7m #  u!h08n'8=()s{ZOyQ:&d Ĉϰ-2Ihw7c͕s3!ӸB4[{]Ӹ!<JH@dr.ɩs;9HE4CsWo9PFE v{?\w?P={}(dںiJȹO wl@@'i V̡鰷3p ĎgQXQ27Us/ GP0͝1[M1SqJ&hW}ƌSvDd)!_</=ZY<ٱo>xÛ V翺=׾>DQT+7_|l9 r ŲU։vMO}} }9O7ڸ*ƃ3@d( m.6|yJDʘÞ0{i:$T.:|%S4J&hW}\SvDdhG"$(ҖSmSla$rGpy\./ @wki=n(Xw)o}Y "&е{{GY +}ߴ$\N!eqy/7^X`DYd DmNSWKUo.s/MAXO׽n'@ T$ "B{7Old?eYk.z_ /:ZWiϞwF.㷯_;^xA" ._Qk{-ͽ9vjԔ%nzбVy1#=jIG#mf!JFBI͕?v'Tsl 鲳 饱u82 8A?(s VV*Ձj,1jx=II$@2Fl rYU%ưWC 1GoR GChl8<\,JpA%1jx?t$<>؈AAD\09 AO#    '^ 7$ Yyix5OⲎ  /j,:}6bHuy%9dm4muϷVL]כt;;7s.;e*q~wcoλ/o]֕ԁ :2CgUDiy%Uv (XKVR\eV/*1:w f i\2+r7@K#{bl+\28`fHal<CG4@LrP]T.\Rx<93u~.Juxwn1sȄۜNgWӗ~+ 'Ow7auқ?q6" >  >c7lNu|/0:U/o=@rޟNiߺv:6~Dp#Xkk  H4֥U5ˋm1fQWgSSTg+]QYU]$Hͫ*ҥ/)(0g,_YjѦ/(,BSQiiRLlY?+4ԐajZqlаsFU@НZ^SSbYe(ihj g&9i(.qsZ.ߺF^?993u~.b}N/j?ygLLxӷnƟ]ԩc.OWg5h;ߘ>*}j " tB*I!4os'LqwDi*(ηcBaz 傃 b%Yz~jy0((7vY.I-2Ihw7chI,rV+!$c%!<JH@$թ3Pa$3d>CApހ$. AEm[n})o~┛P'_{Th_)9kӶr pK\jQp’ g"$@[WJnL8;;yPzppRxi V̡鰷3XpEҧ- *7i.(@QXQ2WØ A7Zu# j4{.T_@dxg`Srjc2Fi]p ɩO^ :uMg,Yy%?{]7s(/oxaW)x$ŇiR&"(۷Yf)k^>"d#׿D ߹cWSW@_`c)’rsnq{ڇB=gPKDx xFC(Pr<,/%*٤|7'd$TN-})%4ī>CS1"N%[OON~"WW]g={idt;ׯ.Z~Ih=+nݪ5PopX}{6OR֥ׯ_ #d~slnq5lpƵmwyA_y겲U?kO\QCFQg*e$KE"Ly/.QV5tr es5)KL.' QƢ4 DnPƓv?пޝ̙ZDb##cK KH>DT1pB@ TNɩu­''դz"E(WcǽTm_]>Eݍ9WwMW$s܇okyck##d<GN=)=}@dGﻠ:+%̕'?5Wm|+V`Qx%r#/q=v- PqVY"XmfF)#c#mcqv|xbthY#X3 2 ,:[{Ⱦgչ>Uam7-ܕyFNuh'%VkNM1m pJjr+m=oPe[Q@;2]va9UΆζļX@4q%Q5An6Ю7E1fL tSՓ1"N%a3w8~@X? ȢdƢj1HJ[YcWoZlODlLI*ɤWƞ J&hW}8%6&cDօK EAA=xHUQUYYYYYYQb ;] zJa?1q hR GcE%4$S.ɩuI 0;dyY,JLyQ5[Y:7^ ˍ#$'cDօK WyL  Ob&^BA3$AA9>AAATk~~!))r-?ߚ*3 ܐaqz2Fc}F~ ^㏈ѾbAA$ T%]e &b1t#!>9,NQOƈxOċ|"W|q~駟~.wtu6۫P~di?{so_A8@.-ZQO%5n_u-hr+5oӊkˬ e\$ͼ )F"Q:H$y$4ħ>C,)uNI* /} zʍ/Y Ƴ~_x5;7K~^}ֵٱO8<@ZOw_۪8c;LG'^%W{_;彏? _YXWn_t':  CAe>UbJJuUյj++*MԼ,]bCamqymzl1 IDAT:q Q^ ѥG86th9F*4ٔCHfyVLT55%f< S!U)u>uS=xmD 7Y} /R~7n]wx ?y%~sٹ߽ nt g}_kb[/#ߛ2Yx?hϺ O~k ?^%?x>']gwUO:gqI'tIГ`0A4~/ TU@4’۹7rmv+fI,xQ:+^9+c'(TWWV-'_ftzR y ѤT!HM*.4)#\o23'o/a- \}Bn7dg`qYXSn=A?9㏈F.*ꩦO>G%zhr߽=plK\_aPՇo#ZNq'zm}ֻ^> z&?pm߿O=s.*r}^wOv+*J=C3 Eb.)3cVG{̏ :j4J @p{ @P?S'>iBv?zw@H|{o@d$@$˲\J$l!d2Sn8LAhr\;e< S!NSԓ1"|­'':ψmD LyC[P M 9M3x]9iORxEɤX Ѓ탄Ti*(^cLA}c+sh:h?=bPt{8`UGYb6FI\:8]!n9 L̅ߤ6;[j>VX 1gH\a)ts0dg`hXPNmqzRG0qY├;d!CQT+7_|Q튕~_ m$%OHAOGbLm {X m^x 8kJÞH\>NR4JES"PaiA$4Fh^ã\rsnqE9//|y9񔂊P@ Aڜy7Hr r<L$*c{B R+VjQk$_kBR17"S4:Z.L I'uD'# { n﫤%ْ|{x 6x (P[T%)@)c@x"E(xHόh|e˖mݬԭ iۖd['uNOݖQӭY]䵝!,s=^   @M|W[/|s]05`_ZӥY&~Y5pob=u|0tq~n*hc\W))ZF6t,(a ] Խ&ݑZB{G ZOpBkl/6 Jm^cu:+EA&3I'Wd8-k"9g5Cix}h 748^ 1g͌{$4ܓ1ׇgl&^(P6 ʀree[ yA640ݘ_z˫RKk0V^HBUW-ymD!5Uֳ"xt: hZ*q\BYR KvZ7!`zU_@P&Wd2ɿ>T 훗@޽+.5HIp/$IEQlRRI%S7" tvK%tӹ!ͷyD3Q@Zջ{M# 9W]!{547]R{<"I|1S8ۮ|NZE?Gي* (QET@,eks3DJ`5&[}Y,!e7gh!]OocH2?lF|}(trY56==1(a ] Խ&ݑZBioadKKKOBVuoi.>وul'_|n'SI8`6t$'4OsJ1sWk@`˲pnxg,C.+#K0?ݥ@f)FO(a ] Խ&ݑZB FÜWKn+{/?2͇_m$ aY+z_g \L(Rf WTRr{54#("ZI7l=IV(om|XMo 2Ojb6.a ] Խ&ݑZBK:&?֎c9M>={E͍ 7&ɹ=yPŶSqSdQVrz+;xfyI7~8*|rlPШ"#U.EG;qsdRj+[0g,---//!uH: 9pxz@VZ5$KKQ=ꙩh4zӭ@u-@! J4%4/tI :f/o c}rr]ev\vS):޵@kIȭ'B!!)'Lwcz Yg^l?hBy#Ų"C,@V^5$]$Н(uNs^l.t~+5" m Ե&ݕܖ|"Buɹ^J/6 }B!B!B!_8wcp7*Vw-PtGrkB!zJsx 3[>Ru2۫EhtjVǨ] Խ&ݑܚ|"Bb\q7/k79r7R_dOI3JNTSgTLOϷ kNYȗJB_-HghQ\ߪsݫ"7./-]a^z[][ήB@Cnࠃko@9܃jKbNm ՜_K%+"X(6CsYd.U 4$L_=Xz(b.Wѝ {B))=;#IRQ5[el}Eqzޮ׹!w%ىf] Խ&~]#B}f'|xs/_i@X^%|j=$)mW>p ZNJESmrE&F!`?V| )_`AznHe ,!3Ik0hJo7rNOG\]cӣꊁ4׽@=~Iȭ'B!OH#콎><f zYwvWkv2!Qܠ(bp-azTsJ1sWk@`˲p6ʤ8e3~6biiIJ-:m6y/HfkZiTׯ{z{D[OB4͜ S>l{W aY+u=J7qwe4:l\\h(ejE2rМӥookA''߰$Yl!"a;> _E2T^.5_b/SЍӲXriTׯ{z{D[OBghi*/;~`kju٣U?ڃP$8(wؤ~lb1>GrV8>@n?nG.0$saq_5KƷyV瓛gF\KQhJ8Zbmve[ _"6+ }շ Gms}Bҫ7_l6H#|񃁡 tE*"1ؐI@d!*wo=Br{o*rCZU]?@i.~[rmEvYBuхSxdf$Z!oTG!74)Q=xBOi4`Bbc8ƞqgRin$0PZOeH[ `ď+6 Jm^n[}Ngx(Hd&8*K^B %TsFs&VnlŅX 'fTܭ-{jq_[~ZI~igSQ݆ Bq )Oȯ}*(6\J.I:62xFgkzFYvSoWVe~Gsd1ݼyGoi7u7UL#'=Rvqqaaٜ|yfgM6kP쫡m`A$˶Z}4XܮA8:3q'xF\`ej|^[~͗yF~ZI~igI.C": Llf2l%ehWG bNm ՜SK%+"X(6CXd.U 4$L_=X75Uֳ"x϶U_@P&Wd2ɿ> y|BnW@(kZ)J$rf@Bv>}t4d>䨥65?{TH؛y{ToI3;L뗥^ݿFua%!Φ?J$ ڽ{6R~KK7PE2=?Gó^%ww3g]\TDH_ζ+u547z(𧓣lq J`5&{U,!e7gh!٭a(2 Yvrr3S]z@:|ao%:? IP> ($Tj[ D&Qi= G' SI/ 4HtGr)~BuJdMD7Z3/zul'{d1 IDAT߭Kh}8EuTsqRh핉,KH u(9hBsmN3Ιq' Y>q>xvhVJVZm 8 $7sMvH-6m5&X6`hiү&ݑK;B3y#!Đ" % NWZ\>/˫BY].K$cqrbZ; P<9VN}XmOFƦCVnQhwNZN%HԒfty2F+j~oAL#۶= ׷ZX/Ai&2eiү&ݑK;Bk+D`tjjn7nYr7)}˫nT\O= "f,ɹ=yPŶSˈ>%e[X<̓QVT9[Nв z=3xrgǣ 8t<~W:rQ'DNrFuaHB!B:'܅hJ Mi:"^v5gݘ-tHL/6ZX}rM-.kyUD~ZIw$!NB d~~~~~єO> ]Y7g^l}XVDbE1ARhU]?@uؤ~i'B!ucs^l.{\Evm_֪F :l]IH!Br>vcgz_\%[R{LwO{C7{}~i'n\!B!pB! cB}q]q(j2xAWzpwH++=ޙafF)Xg7be?Ò4YG̙vpدIoj ۩zuSY>ӳv"tY50XYObGOWK0ٝeLOBOf'gIwcE88 ZXB哱|uB]j 857+vͻՕw_~ 'lUk󹽘 9ɬ@e6r[q^߰T=zvu9K߁P+34moUH{xz_zw!!q{G UK]?h0xjBi0 JDuMlgoٌ#2n}OȯyفABe\1Kw96;/-R-I"hY|GOg=sQ)ГMn7v%f͜pzL?;;Иn5Z%mNbnPOH̓V}g|2fb_2ӓvSk b+mF`d6;yWl.mF]zzF7xF˕lO6b}Dtz6 ʀ-$vg"3OX`yU< vqXQ$V<ǎ+2M3 O}6V۱ts>l:BCE!411d>IY}ٳGB=ٳgw-N4 VGx`B>S@rc63-VqI(ȲX>JUoţRkqETJ, lb&,d YOZl"{㮖 tM\ȧƥ|AdZ7$Y"6Y؋շ,Ra µ߸^V%nONR?:B]B(kZM$ynә*,U_ƋѰVr勵9jD" ݻ0zD!tJL&Ko,I(,Ilql86b.)@357(IIrˮjI wՓζe{9H5]܌^Wٹ6]W$~ C\|JJ<5r)wHdQOQ8J!uT Gڜ :dOO,~!JAlXP~n@{}jIEQCĆ(@;98vΌ;Y鍃Ke}sc 5Ph*cAJ%YBg3k+%^:{KYjÔ3[oɠ3BOt[N֟n^]*zd$ , ˲a+as 鵳y&5fn]Fa(l.>3s_?yWs&ߊK 7r[M BzZFc--UKkUch! 䞘S˰&#rg4;b':^$YӪT&)HQՋ/V€?!(B! 3#u:7MR%S]= M % h])pa+CQFoN+v~|7\>/˫BY].K$cqrr@.*VL4K[/!P?Q_4"0:5bbF5K7@L㖱 MH|>]6'{-OoΣZRLcK~sRv9~V+TPos]ȇ*&;G ͭj&{q>uQg Qͧ~O'NjF0qݛ7|\JNbI'FQUOoA(_LnnSWS5:B=%e[X<̓Ӯ>iw+SPr.?ގ"—[>40W9B"ۍtN, +є@3t7 CPC;3/67r0B]'GOͿ"ۗEG7u`B! O#B!B!BH줍FIENDB`btop-1.3.0/Img/tty.png000066400000000000000000004311121454653170500145350ustar00rootroot00000000000000PNG  IHDRt sBITOtEXtSoftwaremate-screenshotȖJ IDATxw\wD aHRXԺT(Z+ԁZZ*jE (!$?~Q#& {=#si<NZ (&t9;tгi5;f4h=H~6hq}rW7K=c1:>ϭn_`1ܻ;_niwү nq]7^!90}?o˩sIOH/4fܝ]Ag<|FgKN>6#"2~ fzVw,Ҿ#zVMFSmhSbܢ_k^<1{B~r"vY'#`Û c˖ZktمR66#_v~YӲKgS%?RYhh1LJ$*)ޗ\Jk@;CNM,Opw<L./`WW [n7Vܝ]A"jcgsNrm=~~oa-m }gץ~Գ.øR!#F'eg~\-MyM] @NmN"G={Pjs}v#"*?-5'3@K1O1}θҫ?V?wGq?F?۬FRTC׀Mb" |qϬ>}ǟM~[Rުi SU3ƯT*?D5 o[06'tGl.-QmfU6y5:C=n[= *|#|M {~S%jq.5ԉb1^[DD2$ 1o8TJ)Ou5"䠔ޖCjkjDD4 O"滿NX_?x8Vq~>`F,&&KSd4QMMM'^xHU}焸̚%^]Jh-di|ѶNR|ܝ]Ađ~+BۯleG{K(%[sv]:s5)ER~G/x<^':o]s6MuL&_d4ȳFLT?\R'y-eㅽS|Urkk0x慽[=~-$|b3&*&i8s{_L0U@®R' uST"h$wxw;vُ>GgFdϬ|Wv$/mcIj]ᬫ귬۷4q54jB;Nnʈt.d-Qd>ַfF5E>Ⱥu1晰4O,wjhrzzzDN_`YL:{g1L.jDLZmj9DLK3:_o_%}3JfSMkD(vJu͇*H"wzEήN7΄_N;?92U:ijaS[g'5kXc~$~{j]a֙ +w&~C~r:)RRl4gw.$+y- T'@c0d_o7a{[[;{/IӮ$<kYu%?}Ĺf{Q@D!K:nWId޲|2wvrr]$I {IK&|=Ro;A) |aNg19W']Ǟ 5Q8P JhGMݿU;loj(?0#Ӹ9s4k /@:]׹c{sniM -oؾܠD}=73ލkFRF1GG68}pVz #ڙ@<"-;?"a[3Pf3^c3rOX8\ 4]z$""N"u]wXf}'*{\9pIosk&`>KZS_~msgkGjdhdmGϺ/'Ն3Q]ND0w _:dO\zE/*⋤DD^rth7K?q|*{_]3hX?wG:ܗqnnf.S3)^qD:uv:LrZ&czuuPЛvx @Wu/2 #~h\zϸZ"2Evm|ᇘ rxD6ceL:P"u>I1d;EqϬ>}ǟM~({ ۢ-3M8F~Նg)TږQvm#O׮DDaWCf]:&3:$Hת cVޙurTqة77 uIgOߑbxf!23t^L59S%{ 5VHKq^xHU}焸̚%iؙF}n*;-Uh+kMU[hDZʊH!Z3LmmU| ڿ7~P?4+ PVvm6=I}8/ &A$w߽/ xD@Zp7Oÿ8 ]cnoK`1h1栫Imgӈ*Sl*8(++#xk_m'.(x]2KykW_zuūG|P?xZ]G;b&l^>G}zs$I^߻ncfsg\wE3o$KAݓ˧; /TqAؘDL~(1vJu͇DDdԽ eqWuJ[s:I>%zŤB+sqS(6,2Rcρ%=4/{OrMoQZfAUR%,1L=:INjp/)Z'+c~^ԪKe)7Rj-QuZu iyw.^UvyK@Q@QTƠff޻q>xHS&mo_8vLx ۚ=(@cG dǓgG/:`2-z˰%cCVwZslZ|NEŞ } >f>jeБȸ8ZKa1@Et|{e&w̅{\= sY3ޘkub0R]tbQm0m{EycND(w)n%\TKr&33LVkfG 濹뜞/#i ]Gҙyu>>8eI}|4%F"q)5oYek >FDĿqls85Ƃ^:mF*DYԊoY?qT]K$%Xv;2b,Rb]afyn]Ҭݍ, uЙ4zku^.)#Q[:~N3ܾ\""lnZ*&8q4mVocJ+Rbw9KTZZJD{Ͼ11J{OAjђGy!I|}xdՌ][pkU1- V<{4qfp*昩Gu*U3 MNGs>_@DrEn_!J-}ODI{F|jDkT@yK޺_躦VR~Q3 OX0pq%RU8}Q2r7`f6Yþgܸe%Tg"f/nH!"b$"Dћb-ijV?!""ܘMD$sGS&{ӓ;SWjm2"bx|( ]'Bՙ*ݢ;2IKOHH, ocEe%D5˧6^eS=)*W=%) x<Q7 mӿ]G=ȉ jc`IފMxjA2?uw&HtY<YN 4[zzW/[n4O#j_]P^V8@ȠJj7 \| QlLb- %gىS7{ﭹc?!JZ"2D"yPR"ɨoѵ@FUQT.:P(%s&CR#dyU-C~uoٮ:wߗqȴjiU2Lt%L[2ZSC*)Vj|*"[=a@U0y-7Я&%ܓ̘ә[u\*0d+SJ" qJ#|wzt& o_2kй,A_ |aNib\ur ;,@QZ3PUbb 8ϗjT (((̟h7Ըw z-Zӳ_X8BB2}=73ލkF2ܞv{tȆVmTc+N^z7/10sQ-X.LKRĐ&l^ڨw(*\Mn>jeБȸ8ZKaQ?~O'K}?/ِܳ3d?M=~A돳p6J|߯5:^0?L'G;llB_6GGW]Չ*Kr&3A$***vmݬi gvZqfk""ju.c&,>=k+@E Rn~KHsа~l5|oTU> IyjiUP\^(8w\d2b,Rb0FCՙ*"0$fmy9U2ry\""ln I-'mиx\ǥDDq׭'];#YINۋ m:z[5Dy!IFU5cWLiMbZ# jatD*+ͪN8oiսMEEº)ÏOP[ޭ\úiH ʽVi^63us Y+zH\ |aNibh)7ٸw 4Na^ j[{ $;Jk6@U3P~?_P-P?P?0ahV>ZE~E~P y5#M=4ct[|!gJ{OωZliڢD 3O9܎ނB˴t-ÈI|z4W'w(*\Mn>jeБȸ8ZKaQ?~O'K}?/ِܳ9ĤH8{VRC]2h1 }DD]uU,}ʙO(rJJJ][ i gvZqfk""ju.c&,>=k+F"q)7df?ϥAI9hX?63 1=V{?HĕZ+jH&#b1I*%Pl4TRݍ, Cro֖ǫξS,A.%"RɐRHqh^J /%z\ZJD{x|ʴ3Dd4@ٽ/ ӏx,zvN(2$؈㻪f)UL c~D-0HeY}HU3 Ts>_@DrE._ǫbR~hd;|U'^bw21 <+fww(o|aNAf^4D,/ |^Fcw'x$"biOr6&xϘEg_BD FUIDB[267Ԭ~SX4FKwUO$DOOaNݐś-0lEQ=U1~Fe߹ռp(_#)ȫSgjv"%]>=aw,1LT T/ xDD\^0N5!d&[t{Oz?]I==w8Oj~V613M閞˖9>["Njַ|!AyF[m@Ƞ*$'ėOwp^҃D1N}ï.*5L=l k{TdKB̙ IF,&&Tn~;+T IDATe}_Eo"wߢkn$~kn-jspf!w+5>QUR? ߵTyrɰWTik,q?~SZ&z5Z ?># bBinj|Ks>o j!-H*ZUVy^<ׅ5d u Er18Q;QqE@K^чlƔ;acةw~s[ee'Vpt-[*1yjK5PPPOq܈bi&=ՠ/up@e .{:nf׌4eqNrKeguU'贱?jf" iƬsz~ aԞIͣ6f|6/4}ʙƃAj)DDg\LX|Z{V @E Rn~KHsа~l2o{kj^TyKeӳnHGV_< rGcՅd2b,Rb0FCeiFa!9xseZ* 2NXq%DKKr[Od>gZX ṞUGHgPWMGV[.j3d^_Ay1E$Qt|WՌ][_v0E1Bx+|f / "rʊ34_ǫbR~hd; uOnj~*j8 ZTMĶWTPDͱaFeKJNS)qe`mL1k-ξ#A O(4OfӜB٧6g@\B#DZ6Y)8e&ݐś-0lEQ=U1~Fe߹4<$CFd$k`2eR'*Rx.=HX3XCSU;o:`VzP Tu%PJLF\#xZd޲]u/" !JdÙT9RTDzNG7VKޫ, }bh~g[hfٚt6EDDٛ<+S6--ɮgqAH$28D \(s]\C ʯ^Rdo)9a狡Й=C_ 3堬2zNL/NޕCe}?P?P?Zs[WuT妖+b"#[jի}l:AU}ki?ՠo] /K߱OE?Xxo( ( ]t{7i$"1W.Dؾh4B=6Gln$0sQ*ȰX.LK2zbυޤyVxS8t_,=[ LWR;pS6<8^Sz:.>k-74h1 }DD]NmVd4dP+|hlO&">>]b?f|Rn`|T .冬q4(4 &FvLӏq٭R Tg!)T1=;ꆤLF,6bTJ,;fh4o"0$`[:~Nճ\H{/'CRK"AƉ1z{+5tk{=.-%"=Cne>ѓ{1ԸtwTY"> zC0/2$؈㻪f)0- V~ h_PPPPPP1`n^3Ҵ!7b|.B;y|ǓgG/:`2-z0""m--ͦAzbυޤyVxSPcIG2sf%DD|K"g()cpyH~yC }FGGWZ.QmJ筜/h(rt,yiAj>3;hm)D}}p~|}iJ *nrCָo\Dqc;oGGU{@"* GLF,6bTJ,;fh:S0Y4ެ-W}?Yƃ\.KD޽!B ޽T=.-%"=Cne>uSn66z[5Dy!IFU5cWL:A%0- V~ h0:~@"fU#EJTs,L4SuM|UV|J }픚|ڜ+/#类Gna+}WIPi 3r(έCIA^}%Oى(&#tІe$k`2eR'P2up={ypE~L]\SsߵcsU{@c_IVB i_wjRDO%Γ-M BSweHS-d/ehHP^V[n1;2h*? \| QlLbmj=}?e_ SmM3Caܿw*:P(%s&CR#|vw_[z\$Ϙ&r-&`8vNJiKƻ\?Yk0qHŝ#J@Eatx8,pc?ς7屺iHHX7eqJ#|w_ۻ5+~cXW# iARת~By kd_@uMB2E;9|ݧO/ܜټ$Q9>Qr҇'~qi2\Sߊ:P/QYg}렘BBjM^ zuNnL{xUNJrM-[*]Te"W>|5ت[uobrP\$p@e .{:nf׌4e+ވ]TI2:mZ٢Ha3磂qUaS\hne6OfSJܠUFdCQ_moRА\ZcwdT?~Pr2s[d$Xk}c_C~w'N)SuS*dHj5b11NK߹srɝ;I5?1@T&f`T?quT%L9FOSCi␊;wZA9%. X/zjoߣ 5RotPy|Mbч>h&J)ÏOP[ڵs>o j!-H*ZUVy^<ׅ5d u Er18Q;QqFB 涊>p#;fa u-X'ǰSnLֶyJLl'Rjoח;50`W*@PP1`n^3ҔIDȕN|))VNkm}ͺWbf?*xW˅i[5T4PTWۛ?"O|ʠ#qϟݿqwE":=,| #V2rG⇋l͇-c:uV)lL'G;llB_6GGW]I*Kr&3 {дZG;fx5wYA:1֞r~Pv}Ҡ$4[Go'*jjnq[v<;2lIR)z eӺ0Y4lUgϩz wesdHjP$8q4FwocT=.-%"=Cne>qGpkٝ`ڧGwtQ3m4(!q(`A¼Ȑ$c#漢kk+[T+F?49f&:&|*+u|J e#v6=oi N>Uuz8&o\@>FͱaFeKJR)qe`mL1k-ξ#AeG@267Ԭ~#%ک$xx[:Z1I&rY,4_>na+}WIPm3r(έ᡼ d.0"#Y%)*W=aD<3I$> N20iapOIO篻k5G[v&f)ӻz2v _!7(\ZcwdTh˧; /TqAؘ͞c<[2F?^'$6<»iT^u%PJLF\#xZd޲]u/" !JdÙT9RTDzNG7VKޫ, #;?tMORt(lՄ|~È!.x]+ "aMOP[{ӊk6XQ{geĮs3aiy>_[)70n7K!k7y. J"A²QcQuAݿDB2,@5dbY,&I23`3U EXaHN<^ugr<.z^6O EGcz6Vjh @Ex<.R"8VSS5NG@iiJ0kwd(/2$؈㻪f)"Ug1Bx+|f / "r q_ǫbbZ?aͰ#rK޺_躦VR~Q3 OX0pq%RU8}Q2r}C6&xϘEg_BD FUIDBhjV?)>ş ܝ穫SM56C Yi]a}VؓXLgnQ[MCyA"]>=aDFK &S&Uz) x<Q7 a>}ʯ%bc:e52"v[ge3ZM鼳yrV󳺥AhJ^i .(/hV4Z.>~ U}\z(6&vݺ=!Tè**[\ ddHj5b117eHٯ-PR=.ܠiKƻ\?Yk0qHŝ#J@Eatx8,pc?6֝ffUW&\g7Vn;"&F굵ò IDATs]\C ʯ^Rdo<_SW4?⼹dULur ;onZ*ek<U%&6@|F@BBi @Y-i!ZE~E~P){|7Śzߵ}M &ughK7#ҳ~=#.^8oxKHN.DĞ;aU7g~43FB@""o%\kd Woտ.y|)kGgt[|$?=vڣ?a^&%KHky4RHDz}MߑDUbM]@f1/py"ΐxO[}_ng%9J6ҞR6EK%/sҴ]˴&xVۥDDįe}&-WGzi)zMZf;p!OuA E&DM_[<ȹ'=sz߁$ ɴߵ.4!>m/&QOmވO'z&#T(*K>7J6X}ِE=YMxbǑ!ҡC;5֚c;oGG뗥²QcQuJr)O؎yʛ0'-J[嫺XPǯ8nۓA9׻_#gzu}ַ}& 5~ѬF9V|b¾> =kMD>=\yFqEOn >2v$[kd$+)}R:UD?C.D9z.͜+Ӣ>|DK-mO.\ŀnQUUCeWn>Z݀>ҵ$n{2_L0+c$f 'zvfQz\*[3JQ>>1ADDmٗ̂suz//妹A,GCVͨKsmSjgDi6vDߓ3ZBJ?~;Z_7돼fKZ555I}mm[XO^5BmLW>e[Aۏp:bطHv'!câxKDPP;WE)JI "\~?#77373;LA4d+|(v0p+ʋP,RS(oa32Az4ܬf(O3[D؅Yw|P4Cy>P(TqIq2[4kjNMZ ̴4];\@J*R|Sq66&C7 }W,*,=z<9vw:e=׏5ԅ}%FO󫚃a6ǬV?{Hg`ur3?|JWmzl+'/"Kl 4bOњ7a#upB!Ps/|bş'\I+8q3cZGfc%ꖽ^}‚7p)#KPhӈ] qj1xE!BL66tsh\ D~#h!B!$,? B!B!pB!B!BB!BHXMW~b>y"۾OJ4(+N|Ri)^J_$}V1Ů:[s^X!8B!B\Q!tZ̐gE$kg BJ:^R,O!A 8B!Bzf~(jz.LކQ."*5 A~IK-`sY@hӭ<X,,pqEO^t-]T{ I N!B!T?H#Hj6謔#p!eظN|>Kһ\ȋRLZ^_={% k'0e18r4Ɩr „*R9I r8u#B!/8-!P]%N&DR=Go@oնj鲔ן@RV4]^9[w V T1~ Lԑ'&XE.B!пLd?'>Չf~K((#ˠ_oɟ^V;M&|afAqy<2aFD"UH$2ǫmuz1C *$(w(}ʮEBUKKI  % 4)ee/5ScqBpsh, }7 %:CMRA&*Aک)1(d ]^MU&?&&+-e׈V,"KKhuj]0'7+KF]SNJvhK,HuOg`oU.xqB!ePܦQ>NRXNS6׏-櫠Y oz2A1Xvz?f{b'?SQRDR,q2cd6/[|c38UTS8B!B2a1FuE!B=j~cB!GK_xb=!B ? B!B!pB!B!BB!BHX8~@!B !B!a!B!$,? B!Uc%!B`0;!B?_B!B !B!a!B!$,? B!B!pB!B!BB!BHX*+Gug5-9.߻B T7VB叨!Z\J[ 85r !QK)gv@Rdv;fukiWL$eɸoV_5pHg[kWʳOέ 8&=qϯZhCn;Q)I} \z[dG; Ftfک]!ƶ2;F*wԵ2UdjkSr f:9c#Pji|%XW Od7Ut7 +IJIn,Z(.%PuNiuVPʺl:(T9A-{MhJsRX<z᩸[D0 &놋':tKnҺ ONƸmǗ . pOpݜ%{XD?Z3e/Oo0|Hz5Z>QsiL'7D(ΫQhywy vP(VGފ~uf{o[>2>S;DHT$k_QғL}Ʌ?[+ }"'E?~OYi:3ʬֿ G^ǥ7s?86)!be~Eg͏aW TT)!gw] PLShJWR Ζod LhESuכ.?ą\1B7²;"3Ɍ7@QYϗ߆9)vɫ a`}b]n>19qUк>)#LKOOgޘ+)OlrCޏ~kUO1A56aIo}_RT{E/=}R QG@> 1x@/e*6KU  A$8뢣'w"B@Zƀ\vkDW^WI2:k1V>rߪ W_IҒ~Yi9츛oPjQc%n@ivN=B ֙;k)3}RseJ驃]xԫ  4x1۶m ^=6(fdkז8f;Z\Լi^ Hƭ+*$~U)6L^%s smGh=I%ڞCO {˰,onjvj˜*r#0fIj5Bb4Sy\g941ҋz`5U{Ų#~{\_fr]M]:-cG,[zc]:YPjdf6I$bt16 U1q.[czm/M tŦg^)/T9$O#54qio p$J/`@?B(z\V@hN"U)*[]ERyG&kC[VAZ磫MWg#{G3Q?K|) hԪjC{G-d}6'%vԟ@WgZJ2:sqeRy9 rވʀ6~YB= 2S?|D/NrnޱQ7lD덓.t맲WXJmXq̻??V?6CTΑR)~V]_Y[E7d2F TUTR32#ҍϼ?1 $2@PD2_$qvrdP1 EU>/JK+&3M@DyIf'Zw\o\8Nב%*XyIqUBRQ!~:?\e1\+;IE f \P_\jE#/-ox<Fj[MfAU0!A(d d+KU\VI39*5\   ۣ ,^57C8cŮr&M "oYY_& PS8g{f%&J&0&}Sk9q;G1fN]i}fZ9 㒔@b:WD*yt-A{Һ+l!N2i[v3:_X찅0q俊H?^џzVRc b9x*t]SƭyMv3:s-R> |Qnڿ=td۰SIS)XT")T2Tk-._fXIڿ;qXDkW~.=B̂>K_U 21(|=V 0F:F:*$;^GJY,h?dFAj9[Nآo3j3e$6R$΃A78Ll3wezK,}br cjpNE6JEBn{եά²ʞX}stV'\"XbCDpKKuM+1-LPPi[/Pc448fg+N-?T {Hj-5?ifh4YBk~[zMD#SmjmBLU5zk;m Rrr`hr$ټ[|_eS4'SZ_~>|B!PHbyqY4pY9 Ov86x/[B:6w&j(vUco4w.|!!B!BHXyBMoGsj}GEPӨHB!pYYwe&jx aMF!a]?5jklIg_J%gsYtfvg?Qv,)|L~NzKJ |f|Uxևv89Pyᔊe|LNmU?KQ!9`t熋o߳gtŠ=#1͘:ʳOέ 8Piкs^qIQ>W̆ ^gdzc{1"_цRcvyEHI[ "TҠu矾Ȫ!*|aտHһOd7Ujh Wy&Iwb;|QBݎFT"9ә5 _34ݛ~dϯێo׈'꛳Rju>S :Mb'/ϐ~z4s y= \xsxVˣn]xPҺX G3;W)8&r{j׈,pz2/YWM/HjNb܌RG$hTn\Ł&+g f}{Jj]def&iK)|q:;ߢ{ͺ=GEYAםO;{ı8;v@QYϗ߆Bom7۷ٮk7*/_ ~գ>} D"89 7w9OS 4G\=}+XXy9999ٟ½4PQz5M9a/ 6\|aU=6ʼng ]e2S9G'Ņ^_EATo:NL Mu7mR[zkn's?wnB!CӭW;yIÆv̄c/=J u=>cG|#d2f$YYYddd4m_sv>aе;:A=~7!!FF]=)(.Gh=I%ڞCO {<z2xї-ͷ{11aJm۶~FA32ڵk+|̇kk[eS@9 g8\j2'7Ӕ $X+oziIWΆ6M$Q0\4hȭFRI$8뢣'w3fin,@A~ple4}9ˏTe5:Cz+W[XL1LڹPvՑP"v9&F[BT@lI,Wych&*(u+םHsxn_~vWxgEL138Є3gjH^^͓O|A.Q-_/Ot9V뇙Yo I"U/ax ((9׍xnY&:vI\ _m<$re{9mi?9i)^؆-3~*+##ԥK?yڷo P~JDj>kXf&c] Y_|SQpkbb F`N1[?RSA:Wlg" "Jr\.I$|g{7bR )!4!D1f/q'Yno+l`{tKU3OFL&_%[Yk,0WZDK{|O(pc!`)/UU3R\Sr6T*슽i4 >༞[zK-溮/Vj=|XB'^Ƨb~0l֥L HU@|+U8NG+f-yyypdu])w/I ^՝_) rSJ)ɕGW^iJ<{fёf.s>޴9{y Ɨ 2~iow S=< d PVVF\ARW"X[~&& $6Y ZyI˺Gz.6Z4}{Kgq=$+|DUkRJqJm{V+ڵSHOS^3fEJO$63cMo~']]xe?E`m9 rވЉh@Ҫٺ1222@Ȫ9}zbCO%$9嶳 L瘎:ѧy3OH1L~:yބ}ɹ72*q5Y2]lO.)mJ>FcY4Sk*()1х0ejd0c*Lg_ =/wX\_Pd˩'[\&hͰ3fQA&&o/d8S;:LiY13SWlV]*H pEqP8BtM ʡT`Z-2g~VIDOd6XGk'*\&&}Sni&Oil )tnL5)ۋ+j<~M'T}-C~CW7GQ{2/Xչ"859Efmz| HqIV8,;ɤmyqϊYs$#d@D\P WT7$ ||&GEԾkc5"|t `bI1/؍I ֪UFܽE` gp( 0fLp|^k~' lrfSe1JTL"%:!?1/MXo)/}~\ #2D״ +X ADcibbzscrbYtg̲f w~|tOMOkƤ͍)^V^t`x99K: 2+0\T7úM۶͸!?h›.mܽr#9vvCfgJEULHI;NZʆ'b6|Ӷ^X-ZXޭ[G.}^Ii͍DQklGUd(0Cs[s?'<ܵsB@sdC70Bq|?`}8fN3,>87igGFUb8)v҉ԢmvV)?U;fkڡ GInpc\G.iԅdhYA1{.7w{Ѱvٱq$0YN:qSW_a߿XK`i=nK;[hgn9M7'\ SS ۅ}EP̨} xj^?ӫf~3FNZǍ%O7L؝8q!#+u#_=F_O-7h0%k)#+N/r-avFߤR>ƺ%n@}mgm]Lz9I+կåhlVб3T6jx&;z]U5QZmIJ0ޤ 5D(ь$zu80 CVtȪ~+wUjpѣ(G~Onӡ$C|viѷr>]\/୻ E1-[L]ݮwȏ.\RuÓ7|dǢocfuHuU@ZP=5glNJi . -gce[86Yco^x- fo%j֣5 3,/=jP7sm_u6_2֔$&緒dtVҤA]~yq<>Otؼ]}:6 1Y}oz+NOu~zL K <"b~~>@J+%IPRj nD}|]Jl{'˳ FPʂ$ RRR 3ഏ+ͺͬs=f+-EK: X@ؔVGRٜ:h-~sQ#EX.G]1 X\eNk[T H 9zd|vQJ`D mx tg>:̥uFS^q>޴9{y =vjC3~:ir%`~gf8"d[`D@qEg/?0GB&!u*fž+ i̲l@c|. ~tz;0TFtUT0rBjẖ;{)u= y}FURi&}aws1s<]\uqJWSQR=wgV\t Y G M3@skZ>$7-Vd'xh4m>\/Ɍvq|^ ~σ=}t8Ye!rs: NNy3o=̼ͩ'a'aSN6#J}u5kIw?ݰeyr}FH lju9c}lJřNPhӈ]շT^l,=}pخ.eSy[g< HEMm1G`j5·ھuBMj ?D4@=\ z~}q%"1?:A%ZƆM?MQQSDܺBx}QZ:ϟC,GEz[e.; 6q{1h9!wl"#BwhD%BTkV9|0BH ? B^Kg=wAtA5(B!BD3qCJKk6aB}NxuOdG!B!pB!H-}B^Uʳ/EW8Hj=~`9QP }]]V[ե[Fw^Zuљoȳ'W$ AVk~3 ,Ʊ_EuS<|?kjg_u>k} qs6,bB+Uo>|1mTBCT_J>;}ޅj]7U->Ҍh;z w2,,nT &Skq|W2-}}92w'fv+yї%(Pʼn˕U"n] LYy7p^N) -~ ~k儉FCRBH4Dr!@0=h5-hI<*uv"d2at~aIAyH:dtVҤA]~yq<>Otؼ]}:6 1Y;35/UbS<߮Ws(w|sp?0'upGh1[,:,΢u46aE$ xyery@nm؜$~O*BvaVf&33!g|ΝE?d'߀̪mm:e 7g\WE̻3u-.y{?sl FzpdglEJSh "EJ"}+JQJ{Bdd [Ƴ~)#}/xsι>ssWRh'vH\ij&v}1BL6og IS"ƒ,5DaeQ(2 MڳZQS )r{(e^:?PFF|U۹b 4=('$D~U«dR(eD;41 ?~r-g%eywxH6^*;w'c Fj sO|v(?^ɅU]dL|ӿA;=nbvuU]i.۩aLdl( 8xuMǔR:KWŜ{`UCEaD?RS ҃ϯqf# 3ػQ˷c63۞9ſ Њ 9gEV0ͬdzps=t#kHCIH#轭s_/א*iD}>"H1sM`vY )8nPOH:?omԓdCb9lxn7뮸X dX~ZUF)ngٷV;crRIgx=qcN5o IODgt1&|5?Zl]'.y<=ܶT{ˬﳐcoaN'Ԏ^y~S[Dt3THhTfC%r¢/ i,-ae)H\k8SS˶"Hn Io27Q awnN^i8q$@7őǴ7̴]UjI\ծ&.@pԄa|c&H6??? ?ݧO#B.:4f?-lS`a}Y}Ƅlxuƚ=lC)Ah㲊}A_^ nˉorN[ h@Ae&EPnems1GLn0rs z|G@#踤踤]-63^ Ǝ{Ƞ K +.~3Ц^ DfF^[-b"Ѳniqu#Ly0i2S8%Js٧t =kѦ~qѡ&ǻRqC%T R_qe;gc;ܣx&oL 2'*NЖ{yJ* 6]Jt\]Ϝ ~ ى 55c,`g*EΈu6,>6^H"Ag @"F+; 'GL;D8Xc``x@Zߣ |m7|:^@M١7o݌̧:, 7'K"0X_ ? ҋFj*j*js˹@ $VrF3 H ahJY*ap;"nHIEʼntov.(l&Va 5-'|fV.픜 7U}kt*y^Tf^pfgGV^Fi¬x<@[[Ea0q^|1qb 2T=;[.VV#LLK>&4Od@nЅϼEi8iP\z!7ZpiM3e{KAནK̉R߉F2_S@VUےZξ Q[W4xNge.[ lL7XJ|rXkȷ9gHzP;&(&zDnn)=uuu$nH|o"f[U|R$1L{ geբiHWvYQ>ڨ56h UҶ6*7x<wef[S}>=! 37u=0TlZsQ ilR(T@Iy9pjE_Y+N Hg53>d2/zFt Cֶ_7p&2ee_MuKJNJߥo<|3>@!=PC )4gpX$d @$b"oLn?* }ys&~lV0YyjcI^҅fo-S|z(`e|BT6gu]QÀlэ iIʘ0ǶG` kK:Dq8)㉐:usϽjy ޖ|hMk+#Gt44%)/+XlWq쵩Y> !e:u|8Lأ" PO^h "##x&j)p 0{VB|{<%] @mQNEpSN9VTu<=bvAzիGauʎON/m[Xh|{h%N YVr,1UD+=S ~b~w~W?S.| ?QvLa^n/Ñ|_3}|t`6@`9d1N1 LjӇRޞCNט#R֧mGjx|: 8Uq8]g?6jwY]Ą6Ǥ*=]n;ZOFDJ\z^bm5˿ v~sGGa >ÍvJw9masu֊.!Q>1|c!^GQowKO3j>8סvKtnadື]b[ZT9z AzcZEi"Xe 6w._*̟y ?  3qO[t|!e_ H@Ag:gA>C"  Wl?  ](|i?   W X6m6RDO! o? ]yi9BL6o牻%=K&GSl¯"j\ O b8Ϙ}OPy;$.Gz]aodBĔ /K с#^u%B)ذ~~R;Q/r ޼Jp_?$P(N3٦lp̔G+ t,swrzk]_]&'| IDATA~{ *H%7S(ɵDyÎi]T̼bB}) ;&99RqVc|t8EenJq1X͎Jk4,3t7M}^ d'Vk Kg^m'[A.Q_M|jW& 3A^k|ӧ!tF=~ُ  /Ŕ׶;N@QA(;u@Q=o@ӝWsOà8׼n+& EEk\\vr tD3A 34j]Ie׳jzX[[ >y4 t\l TWWcEF4%z9{E=TG[Y[y'!p '\v4(M{[. ~0Sf&u-TǦ4FGRPN(`z47Q_ڿŰM^zbLII!vƎ{Ƞ K 9x~3Цo T:Zc_[h\Rt\Jy/9FE%G?5GQf9^oׅAؕ;`LsF/#v>M3vP@Xey"'+])ت80Ti\T:*ǽ2 # I-t:g{@ HB)(:X /C~"*cqLM~icvYs HiU'G7V)l+ϕy9{ Ʉ悸Va%z,u<]B,KYlU){'ߩcUzd~pGCD9[>V6vQ}y``AbJڵr'˕C?Tļ3P:TUc+蒝k?z魌j`z\_O44ZHmIN-oMdD:&3c`䰤6:1YHZu$nH|of[U|R__^9w,uڋW\bn㊋@S/aרI<أ ÿ̧oJR=7ANY7{S|T pjE_Y+N`zijke)!o֜(`-ɉ1֘LSvEAjmjAA С߳{PAzUS[ P^w .9g A[?R%ʣ/͚APZm^&ֽ}`‰P9]Ef<ޮu:9pK U4yZ'@Efq ^w;Wm҆Nfcs~ҟg[=6կS@K2rv7#Ww3͈9;6>ZI'o()WrJ)?4x701hto[K~xJ P\THÎc/1bi|zL=L\cmQNEpSNY' hwO]^ꑽkX]5BMd*}vLDq28ذ0<0ImPJw:NZ_jr2)CE%/Csީcwo8ށ.XNN[o\y A(q![b65ekl-[+^߶qp'|,6|mn6Lb/*νt@tlz/#cM剷l{n_9kVҪ^c_BI]ݦtڦq%N H_`88>MDmZ|DS|VNG ˖6E*"@z%   }^# ]fJB  AAA AA+@AAPAAAv N*L6:vaT'wFRaWTqIao=|J|K+VbՅ𛧷MAa`8/sEcclW~͑ Oߦ$a'vH\ijbB]?CZaodBĔ /K " JYH= R/](;n&؄9~ق Bқ[O2#AI`j.JUa{76jVpLufs5a;3 C) //{">cYX n7hJM{E`26BC08X:bDI[rA'eBr!=ksz q2^ڭi=,xܖ#g}\Nkzt &E;kidϔ1:vF?a˝J:9 r=_) ̲9> Y"O"!qw. H,Җxr6h'-[G-8=S}.aI3 [B1px<psMڼY% Ƞ[NqG}~5Uq@;mɌVg96 wPxaAۤB<"!m3:v7 f(i٤/8@pb=z 23@/33>O<{RK@ $VrF3 H4 pa,W_Srn>iՑT[ڍ}Ĭ+7Nf{X4A+-X|׍&`; 4Z(0TZ2SUU)o[5No"? F\]rv47@ISgBU:i887RVzz.@uV~ȓG>@CcrfD6>{}5mǬ4ʷ(^) _CE(Џo`QI?!!'+j p.:M^Z. V)uTqUC){|_3}|t`6@`9d1N1 LjӇRqrVA~cvd?lSu׏ܺO W;J8gk;.d&oXkOλk8=0 6oWsN3sׅ'\%oٸ~gO3j>- ٥@bƶr|e~/j9?_:)6U&4!/Rh,AA|v[y c#EG,*L`[Vqf{}i!_᠝fexg7|X2rcb-,2F'lS Qg6v,'sR, C#`W">z{cԌ6{Ћ@|Bal%룎 J[8/O0ͬdzp[s=t#kHCIH#*:,}NZ&szϕ!{C㗐Ǵ7̴]UjI\ծ&.@pԄa|c&H}?}p8N U`ddjkieb"C щ@@N4ZؖYkz6@1VVҰ -e.[ lL7XJ|rmO-3waIeml6Gm]q:7 $QQ7oV8f[U|R$Gc_/@~E. =t; OS"FN.@O\dYK2c0$$9&^>wo??٭;kۨmT*`y2?,ɠY ~v#Wws?mіN1e-t2I)Ɠ99(? ", < i+Lw:^= EO#2Pwj>zL=L\.(^)Vs&Lj|z~%(`8&/Z.J::Yփc0V,z?*0/!`?,  V)怊Gs.Hz5=c IDATݒ|_3}|t`6@`9d1N1 LjӇRqrVA~!JQX/!2PO3j>' A>ӵO. AvmiQlgA>)JR/!  w   H_   }sAkt;_P ?   H_|+:}զF*hnc%  ~ x x砑l?gb~ud7gDS!,`G|K S7Bbf-g%eywxH6g:R>K^F t}w/jP^C~CgL}[%:bȊYDΓ Ho 8Y1lRi,. ?_Z߇:x[NRWkj-! KC`j.JUq8mUO[ovm, 3ػg9_e,;rc4["ꬓz.UQ1kl ^vr"i䕗Mf-V?K$l[OE7 srG#cg6 >~Q0w[_gTҫGN<)fJBO:;tFx}w\-C>9`Q ORo6.-)-{{e!.ѵf\y)$ H,AW`#XݗıS_?g)?&=YZ{^i bMJ,VRޓgkKu- #2^hLp1%ԭ{kO#تr}*<o `N3lzX }kj, ˜3g `]~XL֐^1$IM$֚ _3<L OHI}pm"w4>Q1@WLy|bM`vO ) I.x*hFRȽگX{|q㨮Uh"0+5&n řO8]8JDA|osƭ;~> aiЀ{whu,Ky U5@mM-ʸ^^ ΢Ԥ_Z=!3έA#}u` bL)K?tᡇY7MeۅO={&k$7 NhWH3RY7yG,qƎ.!3QJV5xJYئJf. :x76#'~t:_{\߼ktfE֯r"'ֵauaIdt\l!x0P#FsWUf+EtdSɦrq+ly_"$v ;6Y.:(6iDM9mL>v"a^<6H,ZERG2%ZQw,):{hF? ÷PʲOh91f|>Doml踘L8f`7;*e8iӰXxYɾr1X:A'RkGFڮ[|?jֶqKwW6>߼DeӜV/}& 3A M9?Xs3N]Lk5)߷DmUEx#7`r5fTI/miH}) 4goeLQvn7[wo5ϛy}~ m8uv E™~ansGHw+k+~!5..K_y;Mq:l" %WghxF]]㠔Q%%F_\Zfّޢ4gyk:@ӣz;-BS|U{[~ܟCC#&7N \( b?:~h :OgHi5: [wk%GIbk''wI^wXGSF.?|v{3u 'o7/,/x ~p e>_Ր}bp5 $$KH,(R͕'isʪ\+[g3[Ce`yhEa õ_TPOQ]G#,*bN֕e,898*[NUYh$9u) TBRjg2l,+5#ƍw2 PX@v.hU1cZ_]]Z h4Ad)\R*y[G}m͎ձ=[h"`W6f{_wZzP˵z'wcX% 5 kS>+ى\P?7RM١7an1k,p9R<+WNPXܴt(:D?8o6^JZ0-dhFZ{[LTty=Fv]]/D~7^|zͻhVjYslQHPjհV=i<0J^j{殟e1]A |P{AhLbCD108o5jĪ.i hxs|}hN̉*!}e`yh_TqvteA·# Xm;Xߌia0Ea]2Xz;iniGe&291? {_]p15ɧb\X,'*‡)~vY&Kg $"=1F ؜Du@\H޴6b*ܗz!U,O9op*}"\YĄX3c, U%eb$VywN ucZMD"@`%4 r.. ];hoS -#AOf *>hWw!Ҥ]=A% UUԷo悸ΆaFu#R|(BqkoImKǾnA}W~bJ';N%ⱌm1gK)rp Hw|0L&t:`1W~T*P.;è4*H$ n;S!U[ԆQKi@XBrcCc5//kD/L#eH;u8@e2~[=TX9~1wYhޕCYWwao,g`"DcicvUJqpyh>Z kh.rAo":\ .E}Y:1JVq </uc+t`>Oў1Ct3鳆`077 _6ᓤ]O!P>gsv襷2!d(Fpwr\؆$i4Z->t[GZUmlKZtjy 05S&~%zmgً+W\(n &|LK*k{7TxH{%,,m9C҃1 E15ֳ&~[LV_^Xy U{YrW={׈IcRWfskK彵!ji`{eOf([O98&9+*·ZȠ-?c0ixy2N8(+1p~?Eډ$z‰P9]E%yX(Uՙ:D"HC5%yyTH+#T\q8!׫t%m~.v!=ez+ϐW!ud50r~7Ӷ 8c2GE_?Uhj-|dd.]Zb$,`9%gϔ)+-cVrR}IœS ҟEG XN 5A A$b"o&W)_¼9e0J2kt?|z󔎤C/4Zm4G?yj,Ĉ1J 5(mخ.&((@altu*b싄 tܴ٭_8$;e<.ܸ|KIɃ̗Tmh]Z@&g=ZFkM-FQNS5y\L;KӾDoI-5BZJERʋHd ?oТŒDJJ}t$ff91s9<9{66 " vuH _ev d-&&'[jb=7:'۱b'߽ɑ6 7#CzX=U9%MuE$+3c݀&Ѹv&[II{yœ y"S$JQe 7/qyӒ߀i-=8o('ƾ7]q㹌a"Laa!ɣJR9P)ߑ1&\D~gTS})??@f'dzǗQ,k</\5[Z/]]P2`%ǥUĥ=߭`/Kho<P!=^ $ӋsW)_TܹOKq.~ց#6{7@kw[Q}PVRR?D̪?T?ڵx/c璝gٱzdaV}oYdGmqYߵ7w}*on5S@ez1{V))=-jk NoD?wQ(4${Xi]3zN#n^JnbB+=GΎ~ȝC*nqíyzwLvb[c)v}mGVvp޵` X:?|i@ 0.t84UvZ? EUV)AZt/Z}2hi@ hT';4p*OWqtڍ6@ @ GCS4gJjh<@ P351cדȠG;v_mnF_tۓ{Qҭ/56aϢžGG< {屨3@+> wZ}y@皚;5Sl]v8H糲2nҌړ&%ztiǸNd񐟏!/j^'6ʴL755+#Ԧ7ITVζ&͈_Xe$D?[Om1-r$&_Z㻽Kg6}_49rӬ6=6r,-S@a8S]^1N:xoz aI)t(?vu7 OL7p P6sd;hRF8o%\R[rFkQyιtxcӣmՐ4v֭SǮ;߱qt rq03?:c1CڲuoƄWheZASt{mX3#LFo ꞒȠ5ܦ>M*9 NQ|j2 `4q+9zlYҎ@4P}\PR{q?{ m䊈?⨛'Omw޽5Am_VFVڻiIaj{n~L ڮ0+1"ݧ77#q}FV̈́n%};9C @n3~'20S{Agq23322<牑GU|JJK+@oତ#˗^:=k򛱱7k4W_Ґc>;o@d 2{J$wZx}k0T]>yIx.@ы'O:yuY#zյ:B@N=m gnLr{RN~ >$ǿ PѬ%$MLO0v'tFK)ӓ;^b62\r'k5l:^[7Op1>򊞌  <+ϕU*"з0"+)ήVQ**s`R %*M ORamXy&KQ}{J?Z`O4I$-Q soW>5 CC˫ =x}5ګ(:qW?:qms3%ACw4t:{j翑 2r?%tg/IyYNha^ ]tq"nʆkn2LF3 Sc|,( m =J۰/rҭ! U]iu> S'KBQ훡O.D 1r$5CZZ!*-R}hS iIZޮ=04$i8GFUL4y%&FZn4ҒfHT6~Sj)+T H)84=y^:PUPP/;o< 3)<1QQ%HIj:5'FZUZd4@@{78h3Y=-߳כsr[] <@qI  jjj@Yջ4nsю%&V;'..^\\\ex  (qdlHW;HK2"85p2b0@Z.]u f7^YIv=as_v(*.B`G#Ԟ {|Ecǎ;rW]+$'x ,Mt{鎙AaW#͓kϟdde1Qyy4$/w<,nl#S_n1*ȐËAjri}o]} SP]G5}ߦkۼ 6ny9[IRJWu '&*nӴy_Jѝ=Q-{(:"Ap.h!-Mt)`1\䊈?}-c4]9mMtI®>aM%GkfhH zwfeDJꛘR>a݇R3b|VI.N QEFgЀ%Uk蠁RC7DY3/]dc}@(L}: Wu[hg=YMە8,2ر'N_?iߞ}mo`zU]5yǃSJQfw,%>+$ovdS`IJyȯB]y%7^ISt5o| zm9p"oeNY'Q›k֝xGI'uլWLPe9Wwx浽͇&;p.7} }\gjܞF/e>g&X)LXXMH#Ȕi&>^휩l; (,Ŀ-Ӫ*&PkEs@Ƌ'ojEG+@ ?l?X0g)3_>ϳ45I)YHeb1Xl&5켄\Q@ 0/5Y&xZ MU̿@ @ ?Dkb6@ ~odj :r'ȬoU@ @ @ BPP;1`{̇F,)͋#c>O'Aw]u`ijO`L.m5a ԝIģ*kr^pcGȗĤuW=O9=EH:rˉ~aO?8ǴPg g,Y{gQa/4RjցIYwq&i㷞 yyt :n۹AdGԝCjO4F}%_~ߗkhK="I y;B7 |̂y2DO'|ܑ>m%NFSV” #u&&|P' {0gL nz4UpIA/!4 rN[Bלw-S,33O"yLMƱsfyaI)C$/|uF?O++h+V&|_"0!DgySd2wp,N/cZ6fp5' Z;|ܵ6Aeoi*tخ#ir4bյ>~]Lg pZ%8[8L}L5L׏v.%cSbQg FW󳼗m1 IdǬ'imRN-!2|d&[ͪ'2T|4W ߜq-[5_Ce%~c)}e.DBf ׃8 2tl' h.%*oQ5@s_UcĝS'.drh6L-ˊrLUV^KAjElGENe,Nd:Aǁ4jRUd[Sӥa]BҪ]U'gï(xAF\U2 I mz~}/]舷.7( OurO KSP7w}5}Q8 R&,7d']0쐡vӁ\J+%{Y\> `&LslgөI&)1zKhHb"A˄(HKDt" RPp6(CK+вii )maߎ!S2U.v׆"l~:в/M#\mpz>y|Z}c7-_Zo^ZbRf[{7v[}sHw[q^@EAn;vs?GiɪyCѤk^I U5_ |({}zKUЬwܷo\CajSBNtSއ}p%>C60{ qBBK{\[v>E\9KKk'1x^qqck{]#a۷Wm]fMHnШj$%ճKǞcu7T()mԗ]~$י=E2= uYbs֓wQSsPiSY d<9y#cJ .@JQϫ)y iJHWq?^^74bF!imu-?M) 0犥CAAAFa뜟y&]z{$uR(I&:at,( W )i01SBP%0]S[b? R[DuLduP@exKm=}q!CBc[f"Fw>9cW9euvYL7ٷRR,zҹYf'< bA"36vh`bW=򋩬7Tip Z<4)CQeh ,FǺ]1&2T|(}哽A؊ >#NrTSM&yflm~mH)Q9bꆐ}Xyi~hG TBMS!q͐lhCјXǰka.ݵ +ǡ<0^2WUG~ؑb.@JrV׫)vm֪|spTO>y츑7|S f41lf-/3py]s[ZϠAy>5y^gHxG$^? bx<~tE&4ħ-Y) LM-~rdm|baKb ݰdj['G}#$:zʘt9@eO4WfꖊdaPB@~,h h0zOB$+j=j^?{fL /fz\;|My+ ~E;Hlke4|̍oLIoffkbFG ngQ4]k-y%B[ɕ'NY)l彩YPQ00=Ր8@M9̆(N0si1̭ 2߶m䂥[JDx8'7RN((}[Im~]ȭ$4"_l 04 6$r@O }pNƊ N}c.[<)Ң=z/ L&Sȵ <cY`0jxJ}351Cm;dxwXX|ي[];S>y52ʆWKrue-) vo}'vج3tܠw]'<숭Pֆ$f1TpQm5tm|P<,$b:&dhm;!6dG/W8@MtߦPR%R.ц#?=9]̞i>Q 8o P(|Co `0CW"jG>xI9i\8+cO+^WFw~ @ި2F1 %ڕoy!OWG qE pKsK^k>63$AZeH6[r2 eNv9kgt Jn 46N$ۛxCjR!84k*ca/0:j87!C߉RQ11wQQR;SR}΃ۦGҮlXի:vFkAP7ٽŭ1u3jxR1m+w9 idwhFjײ=;w,@03W +'W\\ 5vX|[jXoϣ+Tb^Ē ,%%yS?K7 >v|4SC8(.)!6jjbKeA9qJ0uerKKqҒ`uud֖h &upݻ5sO6SftՊ{Jwe@a5.c\@i N*͸nߺ KDpW/ԨY#Aڈ!DTprbjcMd%R$Y,> ""gy"ȡ=>ggubIEnjWahZ >&}DN]JXDYDX}t㾬#''iDThz +)yoAndBAG@K7E!S`vڧj3~x*Ϙ &KF^AN4]jzRҰ񽤅 F%%S%J ?;Gzg9E!5CW xϓzc, >{(+ĝ?XWlgK%2|[P -BUt`*PI!I~9 Hnll߄X@]d)I!8tK6D#B ":VTW.1C\b,=ɖ!{9 er"JK ]%AG{@A]dHD|=~y?^j>ԄR .`"FOxho| P`U=|;i3܎t|c,&%KV2 Nv9ޝ#ΊTON2@؟?8|5؏vE\bVȽs* ] _L^ nEazC-(Jzxt:_b 2zO$i;췞-VSy,Ⱦhםη侽o/n*8w//.HjϷdi6iPub̉D-ZN}촨+ί댜*ja΁ܛqlǍgC5Y{jS_"2dU%v)k <|>+1~_nB())k 䗣*p`]@"E:\v 2' F5X,nz' xiPl e%>lDVHh1)L||;V4liyZUe ^6DO'-3]e6Bhcg6+I^m߁dBʣ ]=OS^ n4(#;4YY$(4I@ ‰}dG<K.`}`Q};hkx_d/Ĺ#N ;GNSb胎V /F @ B9P?@ 3rd K? @ AA@ !(?xo<2`}]z0I~ցY4zFE4]uWž<~p~i7?:>XAϢ"_< 9iijH >cԞɁ\j ~.IdУgK8qN IDATu:n۹Ad5"A|!%{]{wLɷ jSX ]Ӈ<l(EhGczZ-Mgmf(_>"\kujF3P_yת_+&8(tiDύh;m62IU|хQw/":H\R`~I;7gΙ:Ocp\̜>pDNAqv Ms֦@vq<ˆ'b:Cf']RS<#RHwZ}E>31l |p۠DVj>jƓ^_wwl;|,ՙ`PpLj;N\ PdiBY0W,zjcwNިM=9+zSi=V]9zl26YjڱۻAZm˻zaWltb _wty"v}eblo;9FPBabU&!:\ ~[fpEf>^ցYlX}5#Cd6\.p E.=~ANtSއ}TR?H߁UW²MpEUҡZ=6>x!+Qf %A $:cc &vqck{]#a۷Pj$%ճo|jRxiJ`.?|̞"0ѱn_%tuyC3 Xknơ L}6>Bz Y/k7g盡N77+X~pzzs`R %\yi~0}D9rϐOUQ|SU Kw킧q( xḨ \۵5[u0hN-?ԧLa.bbdlzNh+fV*3W7Y|l;?EGO='Ԟ{5r\s",MiB*'NQHa ݰdj['G}qkr“G0PDJ,c*j'*M Xߤ=j +O @` NTPzHB]_">7IrXD]" |G5. $űrT } ኍ۴Wx (l>'Tnmґi4SB^^v1ߴIE}ˑ>"V7ħ.^9R> V^kt~b y gbчLb(|V?nDFL56C##ʩc} @^Ā{Z&drM h},H~;el^'9^*" +'rM BtbF1^$ 14M Ac(`C"mVD-luk V@y&g_]/jvEٱ,@(Meߔi&?Z" >^rKskۨ~u(fLRHODkpoе^å+E1!%C nK7$#?=9]̞teÍΫn Z:Vjs v u5J"\ w5F-'o>!ERJNxhm@b[Pd}:A'h8@l(K]˳6} 1{9j+qe΁onѱ <%XZ%j)~&_ڤPǺlXKQԯUudrEbHH /h9j2y}7$ Fvz2 h⚣|,bVߗ[ 4*wR6^fK65 ,%%yӀ?K7|׽U{-&9hP鋫ucd4;4#yk˞͎;Gsj"l0,h#O..)!rkj|d^њ0 4URI~]^A I +Mh$GZX#P !gl@%JkDD%W'-mL T.;B VYBmQ"Ҥ1d _18Ai+8LI;n\oA . ԍ*k)CV{|9x_J$*+C++,RėbS4eӂʓ̂p'uuomRMF=tjZyŰEZT@ND굿jTр% Pb+N8A d%#JVX=vҴ$ûXfv]#D>u㿳) kvGm1. l dL@܉uO:b. ""|!}NQ9\fGG>>~])=Kwe@a5.5?\ ->UD3 1x3I ")%#{Vnɜ8iK (Ϟ]?5j5:“ "MTFV"LW;o"#(ɉ#՟1KXT`B@ǀ& P# "g"Wi-WЮr^@S!$9!4:։{NK n &%a&>>l}@NVf!we ~L}ŴA]dܒRߦ,U2iLF>$UJ^d=ջG[e2T2=)I<)>m'cΑo,YN#K^g"[2#ƞ-z\(4B ܃PNJ2($LN'n߄X>,'ThX^V<%Zo<.!o.1`AdKh-R{Eg::;39CP]Pт!qDSzxt:sy1n'ҋ*kyjkVUnܣηs%!}*v[D/gw!4ج;bw3Yz9 6xGl wE^iO['w/Ar{Ci3܎t|81Jr?hSH^T rd&$`L:=>ࡕm wzܷٚ5dZ|  +߭`/KhoӛDc }~;:K8e|&%wڥXUZ"`Y1İ}Vͅīذ3VX Y1)sj( 7s$:]g(uZN`mU"ҤB`҈w4zvy;ɷ\ 6S|c놮Ġ#WS\Z;kj5">_gy1@E:5hU<'G?oڡ;W6q5HY)>*=ϸ9;[,Ȣ-wHahhY}q?S{e~s1ڞzR_C^ &:7 D1?,j|!j*3^y\x Zf${ <Kn_E^"N6VYAҾ+l e%_B ~.L3A-Ӫ*aBP$LpU`3k4ۂ_EAhcg6+I^w^rrQaa"+nRm7@ -c7V}n4ۂ_EvۏVsy]J!~P@ _iEc:Z ğƟ@ h)h@  ibہVYЍ@ 4AsV4 A N0>.=q%DZw~OtS05w? @E QYy'++o_:"2O~jYY**Nuu46cL>a^OI{F;gfdgFeW'Cƹ2Sz'JeI=Df靉V!|n\g8zK/6>ʖ^ߦpH+K]%ƍ ãxoyBDøQAP 7r mn=*ഊCv[[Tr Z;|QK˗N/cZ7q;F!3bhV.2@u/yvOQ)i>>):pnDLNfA͌тh@~1!OPI(dc;i/RB<`ߣ=h %Q @X7:'C4J Nd,K NC}Vm:DFF)=+=Q `4q+9zlY(QNR3'QK_won8vc`j{n~L ڮW+/+#+]x4U|JJK+w ?] ~zr_ ev8wf޽@ȁeg9aOeϱO nN s*9^]^-/)r½4v (:-E67!VkդNDO'\7oP{+&G܈vGZ,c>P:nPGAxf17Cu69wQcۇVirpٴO4qaMp>|p$HZomǑ>|&X?ƃk4Q)񇟝[;6{s_Qy.>{bd'kHÃ?cg܅FUb^$𮍁(4*JBa  tsQFoKR8 D%PXuT² BQS5l ـWa\~5A @Qޑi'$$|rl(40)EE"?C;*(*B盡N77+X~pzz#.Xc&O֘%XT4&<|HiG{u}rjsN;;O~{ٯ?K۷<RXF̽~UxڥEÆL=rH=e:lت̕Cc I(h+!m)ɩ9t4 ?XCZF9sҡ| OuO )3H}DTѱn_[on㘨)@PIH&¶"Au !"ia6гXyMm\YT -.&n Z' ?eꂿlγuH&oݮ{(%GM:JYNn=֙3=v{c [2i {޾(3R5lV>w¨q'gz?hL5djF02R*C^j* J3WNc>l{u67?{mX**b.[l_+bWb41&1 @+Hޗ;) 眙;wv@ShJVw .Х#/s> M(^ZO$"gzUj@29*'1gIB&@  hBBIGM!3jzwNn;ɩR;95ԃ{ESR(JJH:2>Si Ukr[P&rQ56:lDD{/5nj7sƞEb0Jmk9:twAZjZ 5:6{i_y\z©}ͧeog#z!>uik3~{%PgOo+zQZ?%ܵ:ws#AHI퇾gW'}ujbq |KЀH$b9@M p?j;#ܙ{G.%_Uh=qq̭,s*F9M?xc1`ɦGĶl//+Y2*u"#SsΑ$BM{/N ~l H91Ivn7 z6yeʠ9 A֩P8 /0@ C p6=%Z@N( B8"(_(EB)Lm9U@cG|TЋ9-5&h[yrj4{WBˉVn) _ͧv[]lD=o^>MP(У3*[ I@2t oӐD\!Irr!esTf+QqM6xH&70$Ԥ Mx tD<&̓ UO} 7@ f?SBfY|ʭV`h 02m tlj)`pPvob[u񃿧ͼ~9L $vKn*KC]D"B$=\6o|ynFsE(oHs{{1;3XhCN[h9dfmyPFffokiެeJls{nԷv\TXP$ EDжyn,N 0^ZajwD_ۛ 4pWhq$A/W /#{rn#,\K. CA!&r<nrT { GyZu;ti~zDPp_ >[9N@crsޞt$`29 }.%.5[i {M7Jʼ"#T!mt>L/J,~ʊ:77HEv O k7AdD+RD@N){p"{K%3mI$!V-?#q,!}|,j*24ʕH_?n?SqD!˖egyA,B8zX312N2utnǎmTzz/mr/լuau^Æ m[p!I-]fiC/<:-CXH '}E牓~J61%쬬|mm؈1s'w5"w52oM%&u5sIII/Bvb,8-ˮ/B^ f ĺS7km݈޶v-mZu[>e :f]ժLbԼt* E}C#@ |3\y.]h.eQ>Yh굜FhF줷<&sSCHӢϚJ{TxqVRimF*<ퟠ{9dy@|Gj#*5F;fG*@)5( & RW]ޘ뒄\o36HEi\psn 'wXxiRs{1deH>ϯ&U$9wIn!Q+G/$#:[ܴq:YQ]qM;?zvJoOضe{XkV||1ml'O ׫w1(gHZ1Wͮ;_ONo?a}'n>n+-!P #,_#чWmnd43JZ^xjѬj*C]p67w>X;£a|HO 6on$ - 8o.P+EmvϮK(J/cKWb[*.xxf@e*Eۑ;n 쾯d Ox("ѯWA[#BG)61`0 FBsC˿đ,/N̖SPɏv/~\JϦ?9F?0l`0*l<^ `0 Q~:[ F|TjG0IԌ&eqqR)`0$l`0 ``0 `0ŅU 9o ~m5@\]G/\x 3u'^;( :c]pN*4&6>xW_個mZJT9* 4 . V>ߠ6m:w;ΧX:*m l\*ɻ?Bi)zVXދ9V$>}T&L+:6[CVhz=CC{;i.1D9g6w GQC+{"0¹[6pTat8f>l8U]]u#hjBZ /PbkjMs.b QW ?o/j2##igIoon B  xs\k]7Pv:g$ļ}mLvu4\&Hτe(f憀7{_Ȳ=.Ghar:iy/| iͼyz ucƕo #wq-0KmHsӺJ5mL^݄).M~ظxkmősWXǜ}͝Cr'x}-AqGL6A7ޏj9n`Wiή.y8G||YRO/-|׏r6k? p&8rsa]#Vwr)0u}H?okE$Q2)ɳ_/ DD]Cv6d/I J# n} npo;$j&*ysِ&1 ԠfgFUGOO/+5%w(%5EO_^utZcifOl Y!x_we|%n5b^ w JHq 'Oつ7onv-LZ&WُJ9 ľa>jh?@5ʽͽܴ޺qvZMN? < T?o[9߈F?j$$! ՂNIIL ,tm¥ڳFkw귶Z^Gkݠ֮=$#j_EVYn/R %YrZg5DZl*pTZb2Gszˆ0l1͜amc0:= uL+:>M~[nXdd 9Zv扑 GyfAq`ק j`$zBxiHS56EmȲxՌ8CRҡGb6U hP [ =4>ٝ3I~>lZ]V&~A|!GzlwM̿z.8!+#m5KYW'g<eb*ͽbS(zv8wHO !o]|cn7hQrdd*!NQJȒn]jf&EQ\6ɬ@Lu2~;7ɕ=5f ##_"hףD*4y0;>n}UsxG Jj8L]=Q6?e/ HO}μHfe;ח.J3Ĵ'Eڵ-޴LJY2*u"#SsΑpGB I =q}w+C!(', T{(W U(\ɛygSB^  w*BN y H$rPM@IQ튳-)"dЖC]kO?vGhRc֮'W >7ˉHf[n DP`3/$ ZZZqZ7 3ƂC=yëbw1n5Ll{_ -Z$<^zP[ ol/q411pGAs[q$6CR^L^A˳)ޘ& Y1$>7EiR# 9M~[[7,|ߚyqE9r c&rUe'%Fu|vq~xdy\.;0e=o=J2%,YIG xp"{Ҵ* Q2@auTg$]@%垒dkCVe?!eȺئ`KQ~M56$ '!$,KF9PH%h4ywo36HuޘH{)`DyW~s)x=Q/T}y V_J4x_?rEb0B놖B^/aS#t_>js%+N~uUWJ>X%;"MʓMyH `0 \5 dFP~`00l`0 ``0 `0ŅUfegmI.q~?ʜ&6>xW@̜ם<{kזּzOSIY^uR \wcx#(7^*wy鮓lޕo^v1өz٤S':&仼G\1o|$P4g]! 8qq_+>2߮mZ|FUd{e{{`7wUGqjZig׎ᖪl6KJID7yi>Ev6̴sh袽pC֔+Arkm%o 5PiA\y1moESR4i :lj^hkGT6ie㜝`!/wWhAycEv;dҎ_'n< ur-W=P哓dJQ~\!-(![1BFV%1O_âbOfS5^PO 9hѝ:TSOluOُmی[Pz=B}nF]҈Jk^{{{11T#*P\R*,đM&d\~ю'B3ӯM.vK^N6nf l\]>VRr# N5ǑStw>M4%GG(YB9NScFI(xl- %zj+[Hxgܦ,m|/ԖتXrU -&-1?&G~b 2(MMBZ!/@zE_j F$p/4-_!uPxp~ALXZm5Q|-h4|j%823qdJWk=yWw/Ÿ66"ofiȳqEҏ E!@B}{&,CDsCcd;&lRv; TPgbaUP2$TP*RReRӲSe%\)6.޿x'QWp멮s PYJO|u3Vh};abM.WPi.)t1zrsn\h٫R?,F…JsIPOI$קr!^S9\h<x5|.eg IF`<ϣ(&Px&>v0HNV`٭\p!+@y 'wE mSՍ`kYÇ,e5k@͘Ccl:{.hikv̾Bl~[MY^:yX5m 8 {i=~/l,4Mԏx.{(=Ae[CBFU47mP¶!];e8S9i4m%cۉ@иzԪ'-=M;yR _$|ufNkyE|vBɩHܳhBBIGM!3jD#3J>րXKfI`*q"mCCm 7V(G#QB-[W/ 4^Z2+2O/u}p8Mދ6?HVK' ˆydŨ7͜zS9ή{y oD/\>Ѱmy1 苃Qa(f= 噈! ʬ+!@^SMr ]č:Z$IEE /:$! xKMH"oW_ zvU0 d>*x|aZŰȳ^ܡ̤@^)l~[X^6Ao8g-X~0P8KƁFBYJ֛)MS.A8&GF%NQ#3:d VpV+S)(^ax-.[HSR6Aw?' !H(Auj_:N&@uZSa ׋PTha؎zIAPi>?]g0*J?֡|laA͆H$2PW9zFtP(TȕOJ~seQ޳D箇:|orbZ˓"ZoZApzm-~%c 2TI~*SҴw˝P}ζ(%#dǀ{‰â[LW!-̋DǡR\z2ʕ9l<_ I4M|Hp'|vlhJJ+86U_* 0}Q*ǩVH$I.eIɘ·)^6q~&iá)\319*CCVbR>*EENvu~9HyJH^nb`Ms{vr y24#wӜ ^!:4Pˌtdr Cf-?#qr-)$$X(+UC@][=ĸ[o=LE307e'M@XHQ6@Ro7 7nJ*Ө6Z Yyh<1[eOVFj"qN>HnۺH_?n?SqD!˖eg[)H&Q0! *eCK-Z:z! M;v1peW!/ ,MڷU> mZڵ6(}VˁB RaΘ6OuU/Ma3DPk}&1ɓm\(GZVXDžw%o"M԰^?˩WŷY" DȨSgOߕOQZ{+%<$}zbm;4jK['.1gl\YlxZ]j¦|t:Ҩ]^M WuړP$74 'IFꐤ0BKjb ZI*4sI+ xJbКDԘ#oei:6Ch4~{Z߉EPoLuIBY<FU"w/u`ɾpSj _ٲT/1Y_ @o:~r}s o71itQӈe$Ɍytqo\}òͧF #]3x_?7D8VMMZA”3!jVP J^> O= k?{Ev_H t]w, *~ p:`J/ShvZ\xЉJdبHݒ }snBۨ\R*,/aowRa3H⼹Ts9:O {H<j gx=JN޶Gg\{zwC>}PQfyȉIx=Jo1y/c;l*E)Jko${_xcO_qt;ΈL?_Z~-t#éJʿ%?UMӨyH `0 0^C`0  `0 `0 (.`0N{/.o/xkpܱZKU#n-5ןwFI?[Yަouj繦{/ 」*6BquG0G*uc}aԤMfNKmʷf1~lPV|M;mznӦVN_.SBjP-|e @v>6mLSλso΍Z?t𼱢c:dŋ6'sOX;?4CK.栩 &OoQ^T~ ԝ~nrܭ26nѦUG?}\o ,g7g1dVWaڟJq~s9z?TKLs9+4$G@1~<._rK()R¬~Bo X`0 $>s:h4ox)2Y#<LX";!(ofn[~#we,+>rtV*=ş%Ii3M )m0ﰁwOZjJGCx|4h@m>w\wȷ]۴.u)4wm h4Y<T B7O#PiS)6.7oܹnl+ :,:spMZ6/ ڔsX O8|ai;mj:ub%Ƿԃ8Zvʥ@cgRHvko۠zvn/CGXD_Gv6d$>RJWL%zlYm7n:T)!KDf"2!lFX@j79$PpdYAЭOÿp%%Zyv̼`H}}dzzzr7#9|-r%;D׸Uꓧ@қ7Y ZQ uUJ#KH556} wew͋{s<+z= {v4ƭ7՚Pwr_ͼD6dvґ'%{ 50kf+88 {i=~/VYn/j_#+)'<)Үmd\8>̒AgWw-aoН4/A>Yj=w<+%ʷy"yt}뗇-B|laAPKhS "B(o_()pd JD"Qr\$}8 8sZjLշ ^bFhisl=Y9y$ N$?x,2U kv~$2LjDsyr2a%(n z=hn. J[B QILJB-;9jsKSBn%̶ǝw DVIMZ߆<]I$cyW) WXor]$ou8?<2_T q\^n?>b t,Z[~nۓg&f)lJ/yfSrv1Rʂ/1 ٽۏl FWMnf f ĺS7km݈j̛͆}S}w]z&A4Ӄf":RcmHa3DPk}ӂDD?Džw%o"M԰^?YM,/ѧ(;ml2f267q"vN3=}ҦjK['.1=w\xHHu. jvh& Q$Fb@ #RsoowjݥeBPXN>(T7:M3)l)Gꐤޘ뒄xJ¢DAu tmfi/Fr^S9Q(nRw%`TI\pӨpRON,ZW@5^I.aS#t_>js%+N~uUWT<$izooDw߮3īZ)lZ^*ۜu Dkzlja//;g8 S2&=eOOb-fyȉIx=6.޿i'[zyg2V sh &1:3=gO_KKXҕ)▪qWnGQGq[0gO1F|Sn:hO.-^ZGĴݿ[Lθsu'Sno9DkL1v R s"hvTG"wMwBu E4*+t>`0jff[V\Sڡ5|~'rZ]X}ȗkO8^5ۻ ۳¦ {L9 ckuw+QgT&Uֈ! Ft'v<(ɫ}_ˡѹe:^9lʂ/{zl9h`l`0`||b `0 Fqa `0rK~* 9ʠ `0 Fqa`0 Q\ʦPSpM 5K5k؀4>76EFD]o+ϝ/=8yTm@v3\G9Πd6ad󟞁_xgf;}l6ᷳ׃_~_.tEا6KYIJ{}]H n֮}_Z-6oDE[eW,>s;Pҽ(46 9.v{{9V繻z\ܳzHjMg;a^8w 4ZX&noݨlPW.l/X] ~?96j繦NYټ+n#L UѴ~>-KdzYoE)bm0ﰁwZ7iAˌԠv[#*hnCi j&y||6SfL [7iM|+ThҺxu|ܬh-Ke tqʅt |VeTs1E2 l1m$ww\{85Lo.ݜ3:Wݿjh ̴W]Mnwϕ=jwͥ.T`Mgj؍\3]Il_3N[pt956vM-!Kt_|8|lۘu1zN9%at']ƃO5:ϡs97j<*M5m_lk{GۀS%,Xyl3!/lZ]Y;~o{a /N2gܰ>-_'P{5ǑSt&tyӡ%mZ5|L׮ jnD+T_Jδ?r~?BZ _Ɠ F$p1w",PMe[ʢwyvn=ȝAǦ٪nouKCo4׊cw,-iӷrc,j|Pߚ5wk~['נ䢄ٙ)2ge&%q 92E&K}DۙgUhӫncR<-U c#ŕﲑo1嵄$ i| |T3!xbEUmQ[͠׏X7m^JLu5Irf5lsQ?>= ͒Ce8% 4pKWko* Դ\t`pɝƶ{Xn+9nPnUjW.s?T8kOiQPx 2Fෲ=ǣ~」ru1و9l^rw7^ j咲lw>+}@nv3q%?DGE։IudgCN!ٯF4‘eM@>MZ$+wH4 -,Kŧ,_r7j&zmV7}f^9HQn"H:.uSQe5zoώ-(6kY >+ُ+8abb"`ܤA 4T#tZy "c6>))6 A=?:H#>;m0V[?KPI,f/g1߯?{gUs]C(kk`ݭ?w-D%Dp Kx7 *~sy瞹]Fm״k[ %\gܝ~f#G5ľ͈氵-i۲Ӕ6VQ{IWMK6GU]aA'IYx..`䦝F84v1 OzQ|Q EҔ(wܶn٦\Z٩ʡ9gumi}X54@W gIN?]>Ϧ9( F*:3.;]5:<ݨ4Aھ=w9iC,pJ~~SRLMMQ `5M%.VW65\ʥm Eq7)~fڢNxO%a7;nYֈM'2K&XEfF>M )Dl\ -q)r"^[-(Eoo:h$Dx'{'?.嗇Wu|޽&xtl (kG'5BH~%e`x=ȱ@xU#CBe[Abrr!*&Nk6ߣ+od_GާxOJ~Z<^;{!s}K*WƮҭ؃BMZ@ƹ N7D'J[JA'tYKtYbλYw@祪A=63FqW_=|nAeBi1ʨeK5>;èT-'a}(%-zaER  Y{J3Fsd77ܲ?l]XڷՀKBvKy'yC3O_ה .l#!d]>8Ym;}j"*6J.$%/}>Rdڝ+Kɷ+lI߸Beߙ,Ǣ&P;5;gAM:mڅTLMi޿@M] x\R1˓@337Ca erd\QE0X`ދ6l 7'_;)m)6`Ԛ'--T$ GߺX"x4ѫ Ļ -)z64/ J2TcCsũ>ͭ?mԞ$$M=N?RkvU)TUGέ F-Z-ڵ24KHHO@}^¸g&|(HI)B!@jJF6Ya7ŅSe̛YgQDJ"]5%(r 4Akp;`s1zt^O>~) o#|79Sиbd3i/~`mK VXUH ZYR lj|cGnJ 'qOD$"$ /\.@CW TUT)WgO:ZZRޘy>j1v9/yq3.o^yO/&$#@N cx{R+ 5[rIPmVoyxNş.p P)%_ɊgG[1@@z{ER0e*$AÑeΊnW~JmԵTH`YbKtY<̔PY ᘏ?'RD"12y?~t0]Mq%bѽ[9l6ˤP2Suv/][z,"\}^E"T@F`ld R!Zkְłe gpT*$y<@^~>9J4Y,]=ղ== @=:"SndW.ΰ̈́=3u jS6IWUi=37L~/PRCCc$Үhtt1c٘OvS-2}Q&Wo: c:]3 |߽mӳ Ԛwܛi*):p5yI#׆fݕ&Pq@\`! 4,i| ٥H2TVVU&k;Q_kj%RCK'mb5>m޽bĊyڛpY$ No^~:w%k4mu,E+y-S~cjRck>:v&%}׮9g5lmj0jtьkwĮIrI7pAdD:l|~~(] \ *U$zzش'@ 6"PfHvu~K5.K f7kMV&94;ƭg 0MQe_Iه VTx(삷uAeN4eE3/6Nۥf̠EKӞ\+F&z,fG'RnXٔމyc䝜#=vff"iiހ:9nܸVYUPg’J4ꛬO.4`羸~љO]#YraޅܐS޶gkҰS^Z:-U?Cnl{ﶾUQIەV}Y{2Ņ+v.$\T8pBJȺV.oT'U~?%wx0/I<ǜ&_jiMylU9:"i=4]ܴíD/^ N9Z[89jEA QЌvZukpY+f{/Pten5G_]ժҼS *F+7^CGƲMJRxwj뵋NJÏ/<GVL, #[(,‘t )⒋l؉^ ʗۧR1g-,޽$?| kxfk3 (|P $?^!/~T^+?c~wjѩovUfh)`4T.zi͹A|C#w]o {֯;ea%XZ7@6V,,yc kPKv!2z=;Pu{'-{o?->1q8S?v'ɹ ;U[xppMtJ5Y)ntAXMv٧_u;uL!o%-yg=.݀ ݋lN$kJ&%KltNv_lrms;HҡKK,]}mA|3h~Jk:V dn&I1ăsBRiNi:pͲ;q_VP{ݿn R(-xLaT٩ UUU ?TOW@[O8`30Af޾8^ @rOr?Rm9v[Oj&$ B87&)if yoB}Lso̗MSZN*2E߸@$ʍ J353VxXn& I:o%/+E-=7vNWrv#"SQsж@|ـRD66o -me3٦ 0nseCeT& Y|$3my1Pu~Fû~7LfR6q]{lkH;Ȩ+z8}?4>o^TiwLxnDBCBv ңIi'a}>߾y~;u ˢcVʁ{OxX ͔WwU;k W=DI('T$$Jk@IYѵ't7"2:d@!<?~]=9նO:vJK@ao :( z=QjY6 JA@ ؐU2)Q(KPF.1? J,msy"QYR]=e5=,,މc^Y˪K;ig@AQ;n%MHH###JP>$ΠcA7_H L͡~N7zzh[n`AgÏE>1e޺( q?L0a1f^g{<U8u^׌V|гJlD/?/J2H `r)O"05[h0G'OFR$We#bD"'HCG*C &4&fY $Ţ4u! IDATL*ɳ>{#V^vѯw]ƸHg^N|?w F\e`Fgƹ N7D'Jjb5 Uecth{ղ rS\5ѕ5Hݰ'f(kgFuTQ[N&PJZ*ZOi鲖lP>ZQ%XW VCLJP"|@6.Oʺf6.=[p^|=sc]qV=gǥQ*V#/<ZڷՂ<h mu>SA\w74 eͶfnٿH.ڠ W6vNC0773C}G!~+tO_3`H /m6lQ#=foW:IqN_uʟZ>^?<;j a% (P7G P>aX KbujH,ә "1<V/_| @ybLF$зy"ApuuQsQ}/^H=~^#ƾSSBa33~jy3/HIV`@vtQ͛Yg|[*L Z8wx︑S9Bm%JMhr Cə٭ țG,HI)B!@jժbk}^¸g&|㇑B@6G@cjH|:YnUU@\)AkҸh#/jcALJH< ]6(3ukݹ OS j P~䦸U?@"qb1%bxosk˞JO:D$"˕ J'mFΟTG DgW% >uA9W8\W\&/嵛6wђJM8qAzlS[/ݛ5Ȧ|ZEG6vIϥe{Ŵ&C*Ht Ll2iHD_F/QY&ؕKcAob7< k>w$1&׭'P'9"TfW/j ;9J,L{ƣp*LH$'<=s%c씤}ί?k_TRD !w73WgelU`#I:1,@%(v13b @ ~2  4,'D:(I_Xl֮X-J^܌L 9i)yʥ[kAgMp$8T@$q8P%!Fuɸ%jJ'Ѷt6Y&< _P]/Uc}gaqaBhTN-! JcGC!cd#[>+eRY^5,`o3̿ZQHI=#> JIC=HDJ񇿈Lx$ 9fHFS){DG41^Ir\{&J Ib:QQAuS.GamGO_UEWf Yԡ $I♙cf>pŪ!+i|q#J*oKյ ]RB{W)P :yqC*PBO %ybvb!- jX'\Q& e0ǒcxr /ZCKPfp˰B%-9-?7.5N$X6iʪqO -!T4hRi֬;r5u5}@k-JMO˸Qӎ}iwGwCJ~(JB٬k&I4/7uKwð ybUnzJvP/|(+SfyA@ IiE5@k :bTH_r p1¦ Ln[p@hHy9c !$o8ܜ_ݮtVzjIV}N*;bĊyڛpY$}Uu5#sҮ:Yķou6𬆭-o :iU2ң,XϮQۦ>I;bTeJP)?XSӕ2b>#Pش'@ 6"Pf*&bn႒ 6E^%[/m-Hvm\0ʶHRk}}X>mN~j?Q+;j5U/\w]i՘ߗ'3_\Xb#`Hk RC!׎kv]œ7}ದ_k"( q銓zwoN!E @bWH^4ZAIP J0@%9>E@(Ϫ'B*#N}(">ήEQIyi z՚[YBj'JΡ4ѿ3]w}~ckײ9mˣ_Zs.xhȉ{Ş<F7A\BgF]r9|7p$;5τ{&J}п30R.MztnLJ~۶ۮ7C%Lvz߶-_В=t]@&KM90:ZtA;twSa}ӏO sPπ"k|Pò]RA#eGvѸ."Rc2%jRq' RObݎL&ҐK?$CpXC_{qeRŇYQZ&*(wL/Gۛ 7/5%@ (k%%]* Qwr/ 𸴆>h(vVk]g^/ı>-[o~*ֈܷ?n拗T??fOaVic?ҝb  dc+㾷Q ??LaeF+QAC`Cc``````````h?t, z@6@uz]3(LAFۈ7Ӟ@HՌwCv+EYpVÐ^ګy?-rvIЉqfrϕ˧VMGOd谈{|IwBgˆ.r}BJOg`Wcvm*uUm{ A7l߼c#+mED/g#z_YL f-kmߏO-ʦ:KǗHq5b /mUm=jw/M_88~@i7s7:?g@ ;z}*n@Iudn@El\f'= 1VBl.?O*.0K uGQ*Rc:pͲ;q_fTr=2^g.CGIP6ͮKtyfUif *_Obkwaܽ[Uθ?^E t>~IMy*}B9(ZoS\5jͬZJQRzhzn1yIoͿum=NY$^EW<~ğc"Vc~*YݸYK5,GaWa2b碇4mrw4x0f (f%s\\`6+K? Q*``xhX/ E@r_-8C]7d[eWuV{gʟ{c}K "LhoZ2jEceQWnp1G40U47%bЇwNoDe1IhӮaTK>rCM;?4 'u>7ldNM fkVwP2KZ<~}Hc̿@ s3233233BMdZ|iim.2n4/_f0nseÄ4q%dͤ]g/;t^4xP.2I3 RD c)ex%Ach2-BvY賱!NQ}*2d*\jD]t /ηG`5BLό 4_nҹd"L]p'MB !(scŸf5r2 V3le^߯FLqKAw#"|/:H:Vlw]pT۟qQAIb() uQA{bHRkPдlx vJK@ao\{ԋށΟ[D'Yx~<וH?3mKAAA]fl'{!7\3šfL{y/<~,mǶM^)Ե?泲 ɳ>{#VrWpN3cxjtyi7#GY/$k4:n;NݺCk!ZA:@*/iiiIn>ν[GV5u3wD.z 2-$"!OQ;mژ2Pl"JPl"`6_>{c2SHW05aKk`<kwL a z,(hQ&7L>+fZvѯw]ƸYtЕ#ˁCTNMtsvlGWU WуG6 ;j0{{yz1"jnP`uanwgmlLJw'ql[|U~Tyzbλ02gx}{y=jY9X^} Ҩެ`ctI@RP;m ]֒-d P%XW VjmMQFl9 CI(iZ&0:Cp{ PyX4{&=ak'r_c 1vH[b,.DSO];Yl!ai`wh5o߭7OApuuQs}Ꙛǿϫ6:fV!t(NE|N ~d%,ylRnML1Q)m)6`Ԛ'--PALv }r 4g &8AMRt<\ VP7hpzP$c@ P.Ÿ&%$_,{*7VIY:(ҫRؤdU W~h {'f'Gyhߞ3C=ufg´JMu噤>dw'gxT*C<^vbQ))E!ZZU,oHHP x@ p~ح Mi#.֔5ăHsi! /_3K VXUH t5?00̫oqϪzzQBJӷ@\[/Q?[8Q큡:weQU{&T$ܸP9g o߾y~|W ??Nݴ}Rq]*2R)-X$. vqAPGG4?^€ȫg_ߊoʺ"ˡӇ{!ir5@STl Z6S$KO `W t~ T>)! G`8 뗾,T[`N|uLtPR TQ(tV-\r?ɱsd)W٤q8@DasTxyCn}v#PC*%n`82;Z3WZŖQ4? *)HbDiU>VT{bV@x X@k-Y{>ɻyJҳSǣx5G1!6R;@J<cldc^f>-li¢X6 H;LuR^wyݔu;* ?O]\ǎ&cDƄZd ,ʾR!0fŒ/ORSSΫ R^~>lJ?5Кo_o_ bY(ͱ%|IcE^D~ \gUq)ĺ?*e$1%YDjR`){/JWI3~hNǎ-8G|z IOE"TbI$t M{F0!4*S't5>16X%x݇RJ)t/5uzƭ&4%I{P1񐖄Ҟa(!$ӂ2t|]$k``SώN[yY`z޺bע>- LjGjMvo;<7G=%o;WϫY.ayU7P6&'-lk#+ jogfdjS>\}8 ; :D ]\Cp+yJZ s+}.ңnjj^JC%Ql A4 FƼ,7le5D-B;?@v7yiX6GF*JݶR &Q.n`ai$^qp*μ>?&\^#Jr^'5.;M-W* |8ϥusNmBe<K[1F6aۛTg<7>H^\k썭֜Z@:@*/_hƋH3X)[vM߾4KpA8fģ(|ң…5iNL&Ev d.J>r?dB1Ht4L(fֵ=mvTh[) IDAT&r)Ӑڊn}vhxI1:zhޝ{fW[pЄzPwDS~XlbQVL,e:uB]Jj-nwy=g&]=2]F10ȿ2ߕZk)}wsD]chPbCQ{_Z ㎫5@l~'T漎7ᵥ>R0m Pfľ^Ra;Ph/PZFR,xU5PT503ZmLRrY&10000004h@HjCQ`?00000000000( ```N e#CmD5jw<{oLx?QBg8 iqnv2<{T[~zp]Kguӧ},]XJ= k$tPM4*=8Oz?]=׫P Wq rpjRE',8{+aHPii.װ{wn^1#n74$پkz؉\7^)-,yc k%Ǟ2z=;PuΖsnUVL\ ;U[xppMtJ5Yvcf1鲃t^U܇L!o%-浨~n]*`592 p ݋lN]7(C!/1 _T':|+P~*-5Otew⾌\$T1ăsBRiN}S+jס-tjZ(kGN9su֨7q e\湫VOC虶o\:u9vwr7S8Fl6ATl sWyVIx9P0`X߀u,;PaܿQz|wλ3K/Tr;S3`D3iHWqo& 쬊pLajO9Q6 C^8X-p 8o]\A:ѤEs(x0fWboBVEsH}%fڭ벿:+,>a;w/eCzN|n0ȼj\z%Y Re1I*8M)}B>v=Q(Ƅ?%ue^~tS串g`xdԕ[=?-@=V4!𼊭7B;aR7UK7MY}QJvZ)u2 )K "LDMco/<־5ƒ\vր4 tLy+}1h\)&n칙s  @I祸ll7@Z`%fM@`;{݀x}dT& Y|$3my1ɴ Y;eXƾ:)QQ4;&Ibe#bD"'HCG*C &4&fƦ5I?M]so>3HiڵWgF~uj^#5*GUtf`{C~©T9:کsm!=(t4NJxzF#<~ZX7vֆ(hQa*0*`IDJ@I.9sIWJ!*&Nk6ߣ+ekaO͌Qp.2 1@iG(1ofvYn0-nRSkzµ%=4nՂglQjz{טaF5c~5}>dw'gxYvثCÇB)7Ɏګy 8꺺(]عu?뛘rKVP0:fdZVAM-?z͉N7>wvy^ :PTMA!3%9&$JG5QތMC3ArI!? 2Y C3`QI'kLR0@}Kn'BiKo ɂKKtAYjͬ("%Y[te*UF=Fg6v P,)`[aUU %@-))E!ZZU,oҫR؄ }0R(F<(9/]G6׏>E11_EP!5K5O]10@wgFRpNq8iD"e%c8 &1]Qd _ZU}qAzlUM[/ݛ5H(< Gʝ~h{Αy!rUyTZ䪞OY|BoIbLQ/[ |@qCMnhI @&?D[wW=%)oO3MS7UB$jYֺ_Z6.aZ""JK.)_tL53yhJ4դ|?̙999Bȕ֣X5PR/xj]0%;ot;x+.$ I̴٧pmNq0V꬧N6m0m`)qyW ϝ(}_`NCqBz b~ 1>,@UjF,Y/zcEynmu k0>IṂR`FS/>4#/5 dIcԳ%4x KbXrrr|A^Ggt`QZR"nqrOx)@h1Ud|m?!Fֵhwce-.[zJXWX,EHCu?1W*37NOFX(I4p@-'6rǔFUBZ[djZOr B'6~JA ОMwϤ!Zjތ{&I qqmN M:RFRmZg MkXd@vj\H2Vy:F'SjA?.1sQa <* 8 UuW&. [ c=b(L~1Fu R!;<4Y-*Eе‚MSUBgG%Ye&=9YvAd;^TGbkٍ{Hd߷nc.Ñfl,HzJj+9F=y@h2n*PFÇHϐDxB/4IYXM;~V(<2|`cM6$/hFШ8'ɰZqD+k+k+퉼SbLOFJ^& 5FCQfc^&A3׬fG~X{OZ+U Ji(IWP@P ^)h4Ly>*Ldž /l}lhE)"ZsРQՅ44JIRzooضσny뒓u^\-ӱ?7v9L۴fXZ1iڟ}nN7ŮaTY?ORCcب 6CbQÁ.>ĽV -myzkD`L:FP2vR9E׽Eds=m9YMI2@ ȘCA;߸0ߋkċFTtW^Z)mʊ_=.ծxѹVl@udHrG.˳pθ/瑛uZksrܺB:~uܡm%Boמ}t90q^p"+w8v]_:ޙUť<*Lz&ݴJ^~!#G{{(d;S0x1'#\XyF%aY}w [g(dMJmJwF>I_Nr$!?_o,ioSѼN9:!;Si3搆5m=:aZvByE_nN-,v6F~b/\}>ﷷ]\fcGZCmTi!((h ӢeǔW{Ax{h ġ);ִ0 F9)ngt;yt+X}ᅛAAWw4 "|KBGymCP}zewiF^_8{s 28OTg[Yd"'sng{[A NT>Qs;D Bk`ƀVzo_{[ҧ응f[2@ tjZfC7@ @ @ QjWlBTlB/! oz<Ͳ)~Rߙe0fka!'}ZjnE߼z~a\$^8}-VÛ&p`qu M Gݶe+ѝm4Ҁ;^ :%tmx?{mvӣ.`Q1:&އgxoPbl}=/v}0u{`K7q'mMd4 +\U۟bӑ<+vx{=]&:=&gT9K vaSK/>޿lLv^;~V(ɨSg5fW^/ы@vywy4lz~{+tsXt]]qԤguys wqˆw%O68 6O MhO rJڤ/4X鉁LA >:4/ܦz.DE&2.XgʫnmФ@ ɻYUqZR %ci ym;L_ꯅs_ܱ@ķڨYwӢ+@Ljە797QtA`2&ZVoX/fN]~c.'svZje8@lfĔGӳ `-uNxwvރb/c*>@i`+ h dF~):6;/꣢j^vDhYo-1t?}Wsﵖ89g6ظd[pEDh|ڭu,״g1= :ڸ8#S'}nE?gi[rTz@@U@*w݋gO@IbwQu Pq(G*]!?jP XE@a TCSVU7#y W0J0N yKl=:8j023ˋL̯)~|k]@ 829NAe%ͮ* Ǵqhr[cyg[t8`c>zjr(u :T}ҼG]b3'sz"(H0A9 JIEyQ۩sHim#Hg +m; jX d~y7 ұ+>-f F-'}|Ɔ_<&&JS/eT5נNȗ{" Dg+.o6bԘ X$jݕ}>tsE/ނ?|#,)p׷"8]z'c~2+FRL==Fe;b!PbS֔ 6s ;aT""y)4E;K1$et\_Ȇ=q`c8"?WǩK'zX|{G'eIHiFIuE+^!' P+YyESaQi5,v,)zzֱ M1KTbXiLQ t?'M /3ߔbGg~]9< E9hs{\nqq8I&JJJ8*l>ptur5eɽˡ^vlKN׭U1 ~>旽/r#$O:@ +P ;Z8ՄL|=6U7..TYA9_l"999@ L IDATRfv}MY(L~1FzpzFsp#;I0)HtTv%hbv՞u"ZasTP!LSPQ) "|RAYbV |''ڎ1WWе9H/#?;Gu!b)*)R?qOHE^BI6X;KK(y\4p}E)7{\Ec?'Dub,5-gO 4Lh=a} :l@ϢVғׅ&-jBh4|Hό 1'@yh6h}% `A4hT..@!F */0EGz0ғujqJ&.zS uƦ:[n ޳7L\{=CG% E.m ?»:c -myzg Id-ǣ̰Ao`c$S=m9n5F>X *9Ae* ڱƭ\ԅ^\%nw˗%Ŭ+ٯ Y&N;+:p1zqIMPYvvųN79+5rckůb|g@Y7lz3B$#{]]V+@= NdҀ襘_Qxq!,5E`s7~i* _v:Ed3. *(Be9Φt8 %Ns'߂0AKAuۮ t_Qrм"@ G/p{Imq@I: V>5i@  -bFK;Ug8[iRƎCҤVzi5S{gCeGD A@ @ @ NRXr<4b. }:yVL+L%/^[-ko\>eF.t* #A דXt ⧎֔CK1N?5NU:M\Yf»uWӎhWӃz_xaM0>t?s:D \D{#ܰ1coԐS`8qӺol>mȝ䶔{ISY=g8İνaTwbr7k)-}I4dk\]e+ X #6a$tP Ə3?^ Q(;|<^ě ;a* Vw<{\EK/* ' *Ǯ3kge/[P%?BEdEݛذUN𬴦()2>Ш8A|+ӂO^IWFZ$ţGJ[}3pzhqqeȝZӬ'I öF&p׷6H^_u,Cz Ueri3zth%f:%F%&((CU݌ ZNyN2& F*8P1"VR} a11xORf~#<"vLz,N+}O~9{Z\ɮSĺXǠ̀[@'\Z?f =KHjv$/7W[GGΌ[%V z˟>+')# 0u5R(ja22Sj2 X`` Q{d%b4^>F/gur_{ֆGX[-+xgiq L>4f/N.Zy56Nup;JOp(#f" *@~A?.1sQa 0]7qm<7i4!)1۝Uj^ƵJPQ⺿A 7MIOCJ U5P8QJ=蓣|VQ|ƶuvxt;ƚl=@3iՁvVz&\''ڎ1WWе9H_+jl#OF={l>hl0u\}JrlD(Ӗ3񠩘Քdk 9prv} ?<HqOzn6kC$7ńn{ZcnGh1:7:~uܡmSI0doP/*[ LDЖ`= eB6E(*Na>J;;՚IQʓbnœz'E_.j rKVX~̪m,CL]q^pB\BZw?],a/f .//Tӡ^]xi ܷ'1("X&]@Xש1Nuae=u,Ԡs`>vPa䞡2ԠS{6[1^y{$kM64l HAAǏN+^U]JiΈ:c4vjj+&uujZiɗ/,GciXsʮAm zݢByE_:NK jh"[Br9 v׿v}Th~>nQrм"@ |ruf ;m Kj  'G'Q B%#p%;ޣXLNPAO@ i;B9Z齕&MRq I]ziwFZBz{gD1R@ 'U$ERj-d@ @ H ?)멵m,!Cm)cofksul`К0߹t⾞>^&SI YOvlq&އgxoPvIKP=7l,K/)5%AZ-{T҄T)sj`o>S[Ihiiw 9s}~qme7Ͽy4lz~{+,Sq7 2sݷo t!@k\]e+ X #6ߡ}_}ī^ӽvd?#N2jnCvyx]k\1#k6^y o-0i7O6pd6;r'-aTVY;<1skn5&,%>,qδlv>shPK/*%Sp]iaX7eT2Kn O2 T~0eb#9o{1C`~Y g9:^Mȯ(O >yvp0/cC=gjzq{ b + %F-1ә} .1:.Q4`IدW:R]F&p׶Р GtrGa#"*⯣xB~QbCXKO ^7Sj ШHEWw)q3Iډ.xE\w=r'4"Mg) Vxћ_M,>R)6'ڣvƏ2t\u \FxDpX)V rМJ@} a11xORnXdxO8ߧ˘bԮa)㪿n rp8Qe(goܹN4'9՜ PJ{R"PSBhU/սA @db]KHAUPyec#v&Mzf@,zX .Mq+"ʥV5Wmݮ_j z͛p&Ee:竧/D3F@o00$je3y'[[X[<ݣ Gw7kyCfN僯>Н>>ÄQӖWU;lqOo68Q"֟~pĝ6QSw0u gcC]CCLI׷}*z<mcmد=A/gur_{֦'8wvZ}aInR̡(O r;7l##RSJ]>ўk8jPQX?&SQk05TBE"FB_X-ݾNsfGF@y56Nup; fyd6wce׭9䟦9YS2}_͖=&Nr;gšF+\$FTމ=32L9*)*֚?6qn=.,.י<~RD5ĸC*@i)zp`-iiJiv(F$7\ST}o!JZ{,]u[-H@rd7PܓsN>oLeM~^uWG uz4Q 0yM[9A!r?g/J"ßXXlDD&3' ?zF_C c(J^Fٲ#Xisچ)OLw/"C%>FCZy^m\ I:}{N&gj3;Mfd=ld$JW/TU=͓H{jjNWCvSAl##6ά91?d\Fe Lb>VTP PÇGP*|!rW7EPU?ľʻe2Lˈuo^>*eG&(ޏ*+cTVlT!QS]xVJUt H)8f0@viS "jZB{}>*RSD-K3E`k@;(/*z;p)M VyTҝ؝s?J$\H 0 TLĽ}l.hLvP}rv]14'[%쵧zbUp2U_]qN?+BIk',zk*2X:׵8g9_B^t!Mї6XyُwjSJun.Đ#>>^4&nHegtsZi7L(/U)M=8 ILq8kopyeb{N F(ɉEELZGq痖455>zjl##([ux]ƥ]X7* LWhba|Rk{\(`ֱ%F %D_6ݜl6Q ĦǩK?V&n_ްԆ,( L~5wx!bf`Dŋ5\ĸ:|UUTPԜ U@d`=1U G!ʱyU( Z'*~$YP`F{>$|YЃX@ˈK6 dE y<(2jݫۨm\=㉧U<xY # o 21uMcj8,N-}urCFe\Ӡ^tqˢV5~4\ZRp-h1Ud|m?^W9rLʻc3j]m9A&[\\,&#H=nޟwTcKrrr|u[GIqg)++7,-FzGr8pKEϡ+mg~xJG3@OY h! Lu{Լ%ȧDɄ@ `Dk5X,V}#QRJ@oryn?l@nddaFnuc* IuԠ q o%jAƸ3М hbvZVvxT -1=S!;<4[:*@GdEе‚MS##sG}V1wd=y?iٓpBxorFr {P դYl;=H|ڤa} jߵ"…\ zyP~v@;+=umC. Ғ?ܘ1oٶσnL{,4X//$fg+u[| !r/ IDAT=3>k:Uc4( f7583jߋ*&$/nz¶僻HS7dSl᎟U=&<ֲ9雦nhhTS-YØmwTUS{䏉V6V6V6Ny+z8Cyh 6AF*Nx< 4́+V#\4*̤''ڎ1WWе9H,+u% hhi˳X,ֻ5Q%YC]|2s1LONֵsa+L9NM\ܳvwϷ+K{#Wr3 ӇqE(-=0 Ga ʫ;BɞMŬ$[ /_6*ͭ./tޛW Es;D@ >o;Ma+뼮K:li@R̯(HOyWimS_lkh;n._{˂v%,^fv?]ka39/%W"lKSTG.wr9Xt.^7~i* _vȑ'܊'u-쳞o?C `gX0&dBlzzo=BCL]q^p"+w8v]_:ޙUEW*C~:të /-I4lUm{ggܗPM1Lن1/19"@}qfmcd]@j_]2B u|K9k_9n(i  BOpOf&#A;߸0ߋkċ]!u%qT_XWVf]20Q%u\bXc{?_Ni_+?1rs^Xu"rIqgYh͢~c`A4 =ρLA E{[8:/5̩50pP$&~V3{6[1^y{$kM6}[q)((ikj1RƎH[4Զcl-$wFg-Dz7H$KARjl,kB?Í/BxMˊA~ ԕ K jj$s=;ciXsʮAmL HFeɏU{Og$?Bp6ېj{IE7|VtF9:U{ѿMY?_;(qiM @e<<م0ХOOjNBi Z?/W %Kڊӣ-C<<=OJQg}^ԩGȦl0PϹIh1}BK T>hvNDUړu@ AlPWWJwe0ieƎe/ HzmJ{gxFB3,kGJҧ'#CN ֐6yi(4@ AZH@ =HQ_Oh+z\qA‡F] Q Qwk2jC(W?)Z,9s,CDTl?yVͫw-;ǠĐv,;b}2~(2kjk Pn m|uҭWoK2Pൈ؈>^ .Շ΅D6/GbhJcieqxCn:ZSY;D_:/Gl&ǃ,8* #Hd@zf7=jǘu דbw מJ;i-@ <=Աn>J"ޛᆍ%vlF;bS-&dE߲GI.;(_1{@g2sݷo t!M뾱 W )9KEgM5kOS=^dF+ZXφ ߞs/TfS1#k6^yUM~r[C}&=$ܛ?L9kǑ'pMoΒE,i]?Tiiw 9s}~qmB4_|@;</[rv׸ϻ8VϽFlhWX^ qyE1Rd?%, B1L(8b p\!Ld-]6W,)=d@) >gd eйѡvZ@Haa<'חXQkîъ%V_@a#"{wobfnT> =xpoIO `acT}t?23/82W($Cw?k+A'=Zj!@f{h^Qn^^n^^nʘo>\+Jkj" @yq1{BJYMM?ډ<}ϝc|HYJ;xIw,g=j.֝I;?傻~C ]Ov1iXIډn;ϗ`DHx:4F&pZ;@L#bWGm'V'sh\3zd*\) VLK[b3@\bt\i:xO$l`ziYwӢ++=vUS7kܱ7lqOo6>+O r;\:&.'n܊r$'a[ƺx߅15C ,#:vhk~a嬮7VΙK|ڈ>S^w|FM[_ tҵ8s"֞;sx$3ZϞ%sj/tZ@]]] kޯgo޼us7l 0t}u}?RWQ1נ۷~7 X ֯m֛ *0XQ, ZWx ߏL,{%'[P(cպ0rWl5HP OAX Ҍ˨PNJ=^ ^GMRO+'@ A!ԭolRbktʹU WRytiU`;K#T}ҼG]H6ٸpD?f5L(3hϑȔ[\_22ywܽ $6*IDn`c>z~Ir(u qޏ*+cTV򢢷S $ڐ 䱚mDji 05lw`K*XI hP*+<4\h_iiP@hLvb:Cnۜf +[NT`,jaҔ)Mi~iNhSkOg I]0튧W4<+cϣUxx^1{İS^('rۺg7_]AZbk:%ȗ「2OվqN?+BIk',zŔz4J$L(53:`PxքI@5Z (2BYw*JL }W:K# BǠZˋ:Ēi;rT4[.dV-uu KmǙG) ė}=N]<7q:w1_L^r2@2#O)]!P`FSmRTF`/V.C,6kG! +M6P@iQ{^}%jX,Q1999P1ѫ~D|fUk oCJKUTTU9rLʻc3jm\=㉧/Bٖt hrŒ:'[מFdRȍ+.nYtت&ֳXUb ,eeEt\wn݌i{W\jE-B FH}w7h!~}J͓I,ģ{-T8#&MT?(%ƨ"7iTƵ94L۴wd*-SΌۑ7k`hX?P1 ~>旽/r#79e>p5@gD1(/07qm<=!0 Jxo8~R!;<4CZj*@G>kQ5RyE^:BuU<@zrsuy]ɢw<ֲ9i]u`2s[7vLFBfg+I#}Fou>ƈ'8V`s'6{9( f7583jߋ*Qg]YXM;~V(<2|`cM6$/hШ8'ՇZ-zԏʫwAA+6Xc-1FM-ޢi&LPQDQz=z/Wv~PDC@7N55Qn[Kً f(e.V '/M뤦 W1PJ{zvpY9 b^8L]hzL\T}D6=Zv[]Hqg:UꆕlKC=^@Mfw^FS]> 6UWW?\Bjiw@UG5n+LlTdmb7SɌ^ P|0e3.AP/zӽCH(ۤC.DPAG x~koakO鉗 7zhv0GYs'm*'*=vm+SOZ~'|{prLU<}? 7[Ǔ·UOBV?ZdT+՚PJRCJ!_(@yV 9([EKR_EjqX2N昵^o߲tĊ#wTYr|&Fg%L؟!}yM?zKa4gvhcpI}B>f7A3"<.oR=gkPcZ)4,?RBa|mм"BK"8ʓviGU|0;ĔI}0 v|#Y뵭?tOн[&9F-!͏(K^}틇䜼F>}%-wȬֶT%\F0g#?BMmML/WněJKdH uw̻;Z  ~ -OUvd 3/׹C@ 4~O*oݍqBLCt-@ v @ @ @~ >6= {0<z7 oϛާwuK泵]AY=$$pk_V~N`XE= ]S;dkc\?wݽǖ ܺ S~5RZ']e^ yzҡu‘?:73ïy {濺gu\uDžw3>Q-ɜ51o8A;;mҮA[议2?v7albD{quw2k _?gm'? e,Qgcvw]Em긷'=_u:ǂ!p5u yуgbsIw.##4Be/=p6mի ߛ Y@ 43v61 vPveE+g;üH* }[V7.^.d4WjLY&1L.XjR3Ġ ,ALIYt'bL'bsqѶG1M?͊BZ}0/rҁ=,_9JwCti[u!~Y[=jROjz-Spˊĕ"LWˊDܮmn\J, #~_Vۭcԕ(VF_H _9w^owH CRo`PINHJŅ!hSm( ~xG߮ʼ!8%]z[^}*ז)?,DcFo/㪚յפ|x9.{bnO*{[!C|i{޷2ZtuqnN×61Օ!ɘL@@xj$D_Mٸnh dA= |d}+Iygj< sFmS?! XQ7,|QIАIEoX@D9?_b]pXzC:/| o֜nY} V V *?XW$X[,Q~ڇ<$b>6҅"PP-{ `;:lDF6d|;Jx A:G OSudՐtv n+L]4AcUﭟ3cSGmk@%vZ24pݿaZ,0p{/'4[ L8i - %`ʐΜ4iʬS-n|gF mw'o& 钘PoLȸuthJ^FPSlbRjw4dwE-yac!+*sSjͱC3%^n1)v6+l9쮠2G,(C!@RtW%0qt4"PXQ Bpem70f;LL_Pٞ^Tbߚ] ?`-!Smp%K-JV,ckmfunGGZ*H8leNȑHOqIbFu_k3^X}%\xLdgɀGWyU,swNYÕL:1T][8V*mA/gJC\= ']2kC^و?nC 0v2fK2k&9 y9SG(bzLbD2$!SPmc\)LM) Sl0Y@,>ޘ~%k[]:SzѥL1 d$_60jDɭy e~t*yzpw|3zA#uʢJlv]I:먳N>tvXh3eg_ɞ0c燠5vE(:*ys*f\E5'l=;׆c\`#v:I E]e>OU-Gጓ4a7%b d!EA`Z7#@Bsa6ar7PX=?d#o7m$ USbXIm2McW̊_M(|}UT8CWq:odp*pfoGL2Қρy<@Qq1_Je (..)pSˊ͑!Ze?ڙ -0Ij+?zD.&=.\շ 2I2fҌ9Yz%@u@qnK[P::99#7+0'#4:(1h}*DKqʯT\D,eݎ sL;dP-u{DɎ՞5~{~ge4ʐeFEm /Gռ֌W@l6L:H$/"$c>3޳>=V[ 4rŦ:zW _:~7hOxY&Yz! F*- P\Na&7$Af=ԾvJ x ^{?Sr_˜\gy xQ3vʍ"p%q eհ9< m.b_1hl961ZPQ.!@(f~|Fϰ`R7l@In|a*vk F(oK3.WL{ֽWpKo][϶: EM>>zEwtlΰEɯ2Kt_MىnXyf(9sEdiqo4n#}a.uqkkƵ%{J%B`qy~Z[ơ{prLU<}?Λ|=WW?eW]>6ë~@xwf뭫xkKRCN:C˒dOf* @$*q {KHm: 2 @iJBFJSÁ*<*)C.DPAUWW?FQ?j[{ ^;|z_.OOlP`%f8C{6A EH}| Ҟ]3Ɉ]Joo,aF8ES,Oww>(o ;p7LA%XǓ·UOV?ZdTLj/0g v hs%BՠvKE2;otJ>zVQ&(ǒ RPx)+9Pg˩Rw0ib5I-KGIeeaw۠4}8Wo _q§EyQqsw*tw7>lԒe8 ~;9joDkIaFƷ[)2@ BBm{^tND,Wb  tɋcZ(§i?о(x#ΖD3hm+5*0@ .9 v51i _Ah:mpD4@ U(fwf2@ @ 䅴@ ̭~FNZ]GKv[wf)x/i.R[^;.<;}oRr͆_HSmxᰕ_wsQf 5YbߟM>BBm[g#pZ5ӰR%<?2r cCuf=P. œb \GǵqDž^z*l/$ {kUR ΃l74SՊJYZjzz-t*_˿_ZZkBh˹ r*xl',>%w @[2tfKU <:cHבsr3D5F~wm6f|hoX@[4K1 (((ߵ %hZEw"D\*%<"= \*N{ ,@\/eO+b*?F̺u>~/ qXP FdBL6lIrsgoDu&V<|riTnYG$%<|-D'$F$43EqA/HxI@'7K^OrRܡ]]6ƥR0W("qeiUe"bEglvMw_s+6AiucmĝЮA?`7.kyO oF4tm8pv$e t`AOuԵ_'ge}o=A{/8z麷;Nzcmo;ق%;!YƿҰÎM4ڵ(OVPݛgvhĭvm:~)%7>weu!}(ԛHs{K| #t;%r [UP+YGs4?TU OQ&ƺ2Gl $łҷ/%@q5ŵJͲ5QBiM |hwr$mk7!%v_f7cώoy}ȗ#vF\{<P[SŹ9U_8<';[GWɁvY;lp7cdbkWϸ/yS?! X`0Skk`8k IX- ^MGeҚZu5zfc2V#FqoG0;/mxbˁPr͓\uߵ;t^< @yMuL8m\[ Nnrѩ]N#1kb_XtdżY 2*> `ثrpP4MCeN@eԪuvNw٪ SH[' |bMA߀1Rr dnG9OEPћuXem7j(OA~ >0`H*@AɒCOsz7rh7ւuOkV꫌f@Rxkʃg`,dE޿8{8iB&ZW_m%(u/D}LG O"pt{8%b.@Hk[lׯC׬xosܝ:j\{NCv@ M"1VTP1' Ce4pJu1>$ V1 PXY*h(vWݼ: A9 uN*af' V҈GBaEE| !0dwE-yac!+2(u;IW^zUB cGWiJHRɹ@oo#h(n]`bex=h Pdy%<>yl |>W+q)G٨[oGtIF f!=4,!3νa@*dLQb1x<M]JSP86D"sFaOhD"U 2-59]UCI:mg W"J48iwǣa!SlX  0zXbZ`aԈ[I%58R! 8N]D"e'1|p uN'l=;׆W`i\zg (]Qvۏ1]k$5d1p8<.0֣w}gu |}Vea1@!SKs܎O 3NRB NtPPțUU 4 P%\QNIt79L޳Zz3n)`9þej%7Q5gT-.ΫՀ,\4FN&< c fl6ԶN=I oǁ֌ûU~fz: #ݹ~VВ'Vfw+ 6@QuRSPw2$2%@qB|a xl5*!>q @ 8P T䂖TAoeд 2v 0{7=biz}٪srˬtgYN| {b*b|inXz0A`@UP]@S6|?&G\[B5nwc,iiYkiupfv?}[f(h峌YF\C  Zɷ) X={kHiűK}.s?Ն fn{W/cL@ND:r,/6*~ 2RաA\M2/}]]L~0ox}j[xF{.ܿϵZH8u#g f~º ~/٨V2/L|IDATVU"~%?HmY{Վļb/Xqp68О5nv?:캖'?+3N>4ynC3zSўF;9W’to鷣=#o.PJRjF!! 9(*}EKR_meI$:sWnhd )((X:bő;|o|I茴Aú&;i~儶cI{Ҙ@h=]}ǬkM;dQKnX,稽MI`~;EK#mۢCiؓZo}0@  ]nl7CB{s]+ɍ1MI`|;$=yi?mȝ w]P|e/;fѼ: LSo!w6"@ M??GEۋMulי^$}ZY5$@ A^H@ H8HAĢ{^r@ @h? %>7Ӹ6ARa_ *jEV(t9vfoՄ>Ig2lHQn=LWY5rF*1Lzs3ûGm'۸81= i-f'Xx޼0wVu:z! <:ɢ;u ]  @ޡ1 /NHK^`itUzX>+nɷU]UM75i#'I+}vu9ϒ @\,Qb|xfC~[&Gfpu:u1Tb lԛHI 4d퉣TK=q8ˮ4|Cj~kڴa oG\g*#zTρͦGh8}`ص*,νK"eԍ}ei/.z9 AyMs\:3#_rXx6L4~`Zk~kV]9`˳3Uƞ(sA-๒6jP*e)z!.OD,ՠ0Qh\F̹iiQeU\]̴U8+6::TfÞ $)rѾ W ^F?O/AaToӪG;+s<-5sqX\JiiO+x KO^ߥC7k]T&DE%JcT쬔a<7g l j=_']mTh^FaW&Y9Ž2RbmZ?(=&؋?}G@Gz\rb[uQnlDTdB7Q'3U:QP&xT@TeJȓۥWg,cw+aLJӣ#^e pQrDTdDtz)Tnɏ{Pbh\+hhYQ,mM%h`QRdﻂ}WCNQ⋘,9Lj<#KU\<{hY|"2D29QJ8ݧFN pFqA7066=v rx=v~two` '/b^&rظ+]t$@  r(~E+*2ՕJ1|9W` A.;y=]zQGbptR"?V ُ.US}G*yŧ(>B@SBX!)JIK)&|Rx<TcqqfZjJZv5 LIH|6/3m"T䦤dT(kp@,(Y;_U fB! DQ.D}'(PRR[צ.,!*G (6-)Ɉ}0TV47[H*+$luSnZ@?uEq9@Ki H~pW ^P{):tpUV׌UmQoKGh@h4++Z m I 2;=+peʽr4>?|WR`((qb1glx(8_nS鮲R7W,)-E԰ itVhVb5wIO")L( k}! جZ4M09VH%J֍Snjee!@2PMz=Y.75;u(I)n&{R^E)Ywc Ҋ'IEBe!#gE><ޗ?LDb1P,6WAwUHTsI=E>_*~XXu-b̿aj7L773\ q =L6KOrx@ zTu=fޭ}7"1@5W c$ͪDQqTSbT @q8,K ĿgOqU-~LM nlnoJع ,"0(_.DL(I02v0Sˉ|2uzLvWZwJoYKrKSR+jt3d0iݧvGKTk\8B d!@jFFѧg3ggvYp|k+ 9v.S2B'bb!yi@P؍)y箅D PS OK``.B/>4J%ѷob|^ /!-]_tpdƖ};K1D dw0r@r1'1l}#u pM+r"1t)UhdoTӡzɫ d2",-EW ^Td$fHCWWU*46beD<|%rB@q449inS[)I\R.)Kz=ƬKrF;|SME:LXb.C`Xt9F=Wf旊*)s.Ii)(i (P$sWkg.CBsFE_[C=P=HvN.LhSxsڡQz%E%[/dev/null | grep "Version =" | cut -f2 -d"\"" || echo " unknown") override TIMESTAMP := $(shell date +%s 2>/dev/null || echo "0") override DATESTAMP := $(shell date '+%Y-%m-%d %H:%M:%S' || echo "5 minutes ago") ifeq ($(shell command -v gdate >/dev/null; echo $$?),0) DATE_CMD := gdate else DATE_CMD := date endif ifneq ($(QUIET),true) override QUIET := false endif OLDCXX := $(CXXFLAGS) OLDLD := $(LDFLAGS) PREFIX ?= /usr/local #? Detect PLATFORM and ARCH from uname/gcc if not set PLATFORM ?= $(shell uname -s || echo unknown) ifneq ($(filter unknown Darwin, $(PLATFORM)),) override PLATFORM := $(shell $(CXX) -dumpmachine | awk -F"-" '{ print (NF==4) ? $$3 : $$2 }') ifeq ($(PLATFORM),apple) override PLATFORM := macos endif endif ifeq ($(shell uname -v | grep ARM64 >/dev/null 2>&1; echo $$?),0) ARCH ?= arm64 else ARCH ?= $(shell $(CXX) -dumpmachine | cut -d "-" -f 1) endif override PLATFORM_LC := $(shell echo $(PLATFORM) | tr '[:upper:]' '[:lower:]') #? GPU Support ifeq ($(PLATFORM_LC)$(ARCH),linuxx86_64) ifneq ($(STATIC),true) GPU_SUPPORT := true endif endif ifneq ($(GPU_SUPPORT),true) GPU_SUPPORT := false endif ifeq ($(GPU_SUPPORT),true) override ADDFLAGS += -DGPU_SUPPORT endif #? Compiler and Linker ifeq ($(shell $(CXX) --version | grep clang >/dev/null 2>&1; echo $$?),0) override CXX_IS_CLANG := true endif override CXX_VERSION := $(shell $(CXX) -dumpfullversion -dumpversion || echo 0) override CXX_VERSION_MAJOR := $(shell echo $(CXX_VERSION) | cut -d '.' -f 1) CLANG_WORKS = false GCC_WORKS = false MIN_CLANG_VERSION = 16 ifeq ($(DEBUG),true) override ADDFLAGS += -DBTOP_DEBUG endif #? Supported is Clang 16.0.0 and later ifeq ($(CXX_IS_CLANG),true) ifeq ($(shell $(CXX) --version | grep Apple >/dev/null 2>&1; echo $$?),0) MIN_CLANG_VERSION := 15 endif ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt $(MIN_CLANG_VERSION); echo $$?),0) CLANG_WORKS := true endif else ifneq ($(shell test $(CXX_VERSION_MAJOR) -lt 10; echo $$?),0) GCC_WORKS := true endif endif ifeq ($(CLANG_WORKS),false) ifeq ($(GCC_WORKS),false) $(error $(shell printf "\033[1;91mERROR: \033[97mCompiler too old. (Requires Clang 16.0.0, GCC 10.1.0)\033[0m")) endif endif #? Any flags added to TESTFLAGS must not contain whitespace for the testing to work override TESTFLAGS := -fexceptions -fstack-clash-protection -fcf-protection ifneq ($(PLATFORM) $(ARCH),macos arm64) override TESTFLAGS += -fstack-protector endif ifeq ($(STATIC),true) ifeq ($(CXX_IS_CLANG) $(CLANG_WORKS),true true) ifeq ($(shell $(CXX) -print-target-triple | grep gnu >/dev/null; echo $$?),0) $(error $(shell printf "\033[1;91mERROR: \033[97m$(CXX) can't statically link glibc\033[0m")) endif else override ADDFLAGS += -static-libgcc -static-libstdc++ endif ifeq ($(PLATFORM_LC),linux) override ADDFLAGS += -DSTATIC_BUILD -static -Wl,--fatal-warnings else ifeq ($(PLATFORM_LC),freebsd) override ADDFLAGS += -DSTATIC_BUILD endif endif ifeq ($(STRIP),true) override ADDFLAGS += -s endif ifeq ($(VERBOSE),true) override VERBOSE := false else override VERBOSE := true endif #? Pull in platform specific source files and get thread count ifeq ($(PLATFORM_LC),linux) PLATFORM_DIR := linux THREADS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := root else ifeq ($(PLATFORM_LC),freebsd) PLATFORM_DIR := freebsd THREADS := $(shell getconf NPROCESSORS_ONLN 2>/dev/null || echo 1) SU_GROUP := wheel override ADDFLAGS += -lm -lkvm -ldevstat -Wl,-rpath=/usr/local/lib/gcc$(CXX_VERSION_MAJOR) ifneq ($(STATIC),true) override ADDFLAGS += -lstdc++ endif export MAKE = gmake else ifeq ($(PLATFORM_LC),macos) PLATFORM_DIR := osx THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -framework IOKit -framework CoreFoundation -Wno-format-truncation SU_GROUP := wheel else ifeq ($(PLATFORM_LC),openbsd) PLATFORM_DIR := openbsd THREADS := $(shell sysctl -n hw.ncpu || echo 1) override ADDFLAGS += -lkvm export MAKE = gmake SU_GROUP := wheel else $(error $(shell printf "\033[1;91mERROR: \033[97mUnsupported platform ($(PLATFORM))\033[0m")) endif #? Use all CPU cores (will only be set if using Make 4.3+) MAKEFLAGS := --jobs=$(THREADS) ifeq ($(THREADS),1) override THREADS := auto endif #? LTO command line ifeq ($(CLANG_WORKS),true) LTO := thin else LTO := $(THREADS) endif #? The Directories, Source, Includes, Objects and Binary SRCDIR := src INCDIRS := include $(wildcard lib/**/include) BUILDDIR := obj TARGETDIR := bin SRCEXT := cpp DEPEXT := d OBJEXT := o #? Filter out unsupported compiler flags override GOODFLAGS := $(foreach flag,$(TESTFLAGS),$(strip $(shell echo "int main() {}" | $(CXX) -o /dev/null $(flag) -x c++ - >/dev/null 2>&1 && echo $(flag) || true))) #? Flags, Libraries and Includes override REQFLAGS := -std=c++20 WARNFLAGS := -Wall -Wextra -pedantic OPTFLAGS := -O2 -ftree-vectorize -flto=$(LTO) LDCXXFLAGS := -pthread -D_FORTIFY_SOURCE=2 -D_GLIBCXX_ASSERTIONS -D_FILE_OFFSET_BITS=64 $(GOODFLAGS) $(ADDFLAGS) override CXXFLAGS += $(REQFLAGS) $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) override LDFLAGS += $(LDCXXFLAGS) $(OPTFLAGS) $(WARNFLAGS) INC := $(foreach incdir,$(INCDIRS),-isystem $(incdir)) -I$(SRCDIR) SU_USER := root ifdef DEBUG override OPTFLAGS := -O0 -g endif SOURCES := $(sort $(shell find $(SRCDIR) -maxdepth 1 -type f -name *.$(SRCEXT))) SOURCES += $(sort $(shell find $(SRCDIR)/$(PLATFORM_DIR) -type f -name *.$(SRCEXT))) #? Setup percentage progress SOURCE_COUNT := $(words $(SOURCES)) OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.$(OBJEXT))) ifeq ($(shell find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o >/dev/null 2>&1; echo $$?),0) ifneq ($(wildcard $(BUILDDIR)/.*),) SKIPPED_SOURCES := $(foreach fname,$(SOURCES),$(shell find $(BUILDDIR) -type f -newer $(fname) -name *.o | grep "$(basename $(notdir $(fname))).o" 2>/dev/null)) override SOURCE_COUNT := $(shell expr $(SOURCE_COUNT) - $(words $(SKIPPED_SOURCES))) ifeq ($(SOURCE_COUNT),0) override SOURCE_COUNT = $(words $(SOURCES)) endif endif PROGRESS = expr $$(find $(BUILDDIR) -type f -newermt "$(DATESTAMP)" -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 else PROGRESS = expr $$(find $(BUILDDIR) -type f -name *.o | wc -l || echo 1) '*' 90 / $(SOURCE_COUNT) | cut -c1-2 endif P := %% ifeq ($(VERBOSE),true) # Doesn't work with `&>` override SUPPRESS := > /dev/null 2> /dev/null else override SUPPRESS := endif #? Default Make .ONESHELL: all: | info rocm_smi info-quiet directories btop ifneq ($(QUIET),true) info: @printf " $(BANNER)\n" @printf "\033[1;92mPLATFORM \033[1;93m?| \033[0m$(PLATFORM)\n" @printf "\033[1;96mARCH \033[1;93m?| \033[0m$(ARCH)\n" @printf "\033[1;95mGPU_SUPPORT \033[1;94m:| \033[0m$(GPU_SUPPORT)\n" @printf "\033[1;93mCXX \033[1;93m?| \033[0m$(CXX) \033[1;93m(\033[97m$(CXX_VERSION)\033[93m)\n" @printf "\033[1;94mTHREADS \033[1;94m:| \033[0m$(THREADS)\n" @printf "\033[1;92mREQFLAGS \033[1;91m!| \033[0m$(REQFLAGS)\n" @printf "\033[1;91mWARNFLAGS \033[1;94m:| \033[0m$(WARNFLAGS)\n" @printf "\033[1;94mOPTFLAGS \033[1;94m:| \033[0m$(OPTFLAGS)\n" @printf "\033[1;93mLDCXXFLAGS \033[1;94m:| \033[0m$(LDCXXFLAGS)\n" @printf "\033[1;95mCXXFLAGS \033[1;92m+| \033[0;37m\$$(\033[92mREQFLAGS\033[37m) \$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDCXX)\n" @printf "\033[1;95mLDFLAGS \033[1;92m+| \033[0;37m\$$(\033[93mLDCXXFLAGS\033[37m) \$$(\033[94mOPTFLAGS\033[37m) \$$(\033[91mWARNFLAGS\033[37m) $(OLDLD)\n" else info: @true endif info-quiet: | info rocm_smi @printf "\n\033[1;92mBuilding btop++ \033[91m(\033[97mv$(BTOP_VERSION)\033[91m) \033[93m$(PLATFORM) \033[96m$(ARCH)\033[0m\n" help: @printf " $(BANNER)\n" @printf "\033[1;97mbtop++ makefile\033[0m\n" @printf "usage: make [argument]\n\n" @printf "arguments:\n" @printf " all Compile btop (default argument)\n" @printf " clean Remove built objects\n" @printf " distclean Remove built objects and binaries\n" @printf " install Install btop++ to \$$PREFIX ($(PREFIX))\n" @printf " setuid Set installed binary owner/group to \$$SU_USER/\$$SU_GROUP ($(SU_USER)/$(SU_GROUP)) and set SUID bit\n" @printf " uninstall Uninstall btop++ from \$$PREFIX\n" @printf " info Display information about Environment,compiler and linker flags\n" #? Make the Directories directories: @$(VERBOSE) || printf "mkdir -p $(TARGETDIR)\n" @mkdir -p $(TARGETDIR) @$(VERBOSE) || printf "mkdir -p $(BUILDDIR)/$(PLATFORM_DIR)\n" @mkdir -p $(BUILDDIR)/$(PLATFORM_DIR) #? Clean only Objects clean: @printf "\033[1;91mRemoving: \033[1;97mbuilt objects...\033[0m\n" @rm -rf $(BUILDDIR) @test -e lib/rocm_smi_lib/build && cmake --build lib/rocm_smi_lib/build --target clean &> /dev/null || true #? Clean Objects and Binaries distclean: clean @printf "\033[1;91mRemoving: \033[1;97mbuilt binaries...\033[0m\n" @rm -rf $(TARGETDIR) @test -e lib/rocm_smi_lib/build && rm -rf lib/rocm_smi_lib/build || true install: @printf "\033[1;92mInstalling binary to: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/bin @cp -p $(TARGETDIR)/btop $(DESTDIR)$(PREFIX)/bin/btop @chmod 755 $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mInstalling doc to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/btop @cp -p README.md $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling themes to: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop/themes\033[0m\n" @cp -pr themes $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;92mInstalling desktop entry to: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/applications/ @cp -p btop.desktop $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;92mInstalling PNG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps @cp -p Img/icon.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;92mInstalling SVG icon to: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\n" @mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps @cp -p Img/icon.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg #? Set SUID bit for btop as $SU_USER in $SU_GROUP setuid: @printf "\033[1;97mFile: $(DESTDIR)$(PREFIX)/bin/btop\n" @printf "\033[1;92mSetting owner \033[1;97m$(SU_USER):$(SU_GROUP)\033[0m\n" @chown $(SU_USER):$(SU_GROUP) $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;92mSetting SUID bit\033[0m\n" @chmod u+s $(DESTDIR)$(PREFIX)/bin/btop uninstall: @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/bin/btop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/bin/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/btop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/btop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/applications/btop.desktop\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/applications/btop.desktop @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/icons/hicolor/48x48/apps/btop.png @printf "\033[1;91mRemoving: \033[1;97m$(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg\033[0m\n" @rm -rf $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/btop.svg #? Pull in dependency info for *existing* .o files -include $(OBJECTS:.$(OBJEXT)=.$(DEPEXT)) #? Compile rocm_smi ifeq ($(GPU_SUPPORT)$(RSMI_STATIC),truetrue) ROCM_DIR ?= lib/rocm_smi_lib ROCM_BUILD_DIR := $(ROCM_DIR)/build ifeq ($(DEBUG),true) BUILD_TYPE := Debug else BUILD_TYPE := Release endif .ONESHELL: rocm_smi: @printf "\n\033[1;92mBuilding ROCm SMI static library\033[37m...\033[0m\n" @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mRunning CMake...\033[0m\n" CXX=$(CXX) cmake -S $(ROCM_DIR) -B $(ROCM_BUILD_DIR) -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) -DCMAKE_POLICY_DEFAULT_CMP0069=NEW -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DBUILD_SHARED_LIBS=OFF $(SUPPRESS) || { printf "\033[1;91mCMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @$(QUIET) || printf "\n\033[1;97mBuilding and linking...\033[0m\n" @cmake --build $(ROCM_BUILD_DIR) -j -t rocm_smi64 $(SUPPRESS) || { printf "\033[1;91mMake failed, continuing build without statically linking ROCm SMI\033[37m...\033[0m\n"; exit 0; } @printf "\033[1;92m100$(P)\033[10D\033[5C-> \033[1;37m$(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a \033[1;93m(\033[1;97m$$(du -ah $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a | cut -f1)iB\033[1;93m)\033[0m\n" @printf "\033[1;92mROCm SMI build complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" @$(eval override LDFLAGS += $(ROCM_BUILD_DIR)/rocm_smi/librocm_smi64.a -DRSMI_STATIC) # TODO: this seems to execute every time, no matter if the compilation failed or succeeded @$(eval override CXXFLAGS += -DRSMI_STATIC) else rocm_smi: @true endif #? Link .ONESHELL: btop: $(OBJECTS) | rocm_smi directories @sleep 0.2 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\n\033[1;92mLinking and optimizing binary\033[37m...\033[0m\n" @$(VERBOSE) || printf "$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS)\n" @$(CXX) -o $(TARGETDIR)/btop $^ $(LDFLAGS) || exit 1 @printf "\033[1;92m100$(P) -> \033[1;37m$(TARGETDIR)/btop \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $(TARGETDIR)/btop | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" @printf "\n\033[1;92mBuild complete in \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$(date +%s 2>/dev/null || echo "0") - $(TIMESTAMP) 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo "unknown")\033[92m)\033[0m\n" #? Compile .ONESHELL: $(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT) | rocm_smi directories @sleep 0.3 2>/dev/null || true @TSTAMP=$$(date +%s 2>/dev/null || echo "0") @$(QUIET) || printf "\033[1;97mCompiling $<\033[0m\n" @$(VERBOSE) || printf "$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $<\n" @$(CXX) $(CXXFLAGS) $(INC) -MMD -c -o $@ $< || exit 1 @printf "\033[1;92m$$($(PROGRESS))$(P)\033[10D\033[5C-> \033[1;37m$@ \033[100D\033[38C\033[1;93m(\033[1;97m$$(du -ah $@ | cut -f1)iB\033[1;93m) \033[92m(\033[97m$$($(DATE_CMD) -d @$$(expr $$($(DATE_CMD) +%s 2>/dev/null || echo "0") - $${TSTAMP} 2>/dev/null) -u +%Mm:%Ss 2>/dev/null | sed 's/^00m://' || echo '')\033[92m)\033[0m\n" #? Non-File Targets .PHONY: all msg help pre btop-1.3.0/README.md000066400000000000000000001222571454653170500137610ustar00rootroot00000000000000# ![btop++](Img/logo.png) Packaging status ![Linux](https://img.shields.io/badge/-Linux-grey?logo=linux) ![macOS](https://img.shields.io/badge/-OSX-black?logo=apple) ![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd) ![OpenBSD](https://img.shields.io/badge/-OpenBSD-black?logo=openbsd) ![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-yellow) ![c++20](https://img.shields.io/badge/cpp-c%2B%2B20-green) ![latest_release](https://img.shields.io/github/v/tag/aristocratos/btop?label=release) [![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos) [![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos) [![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos) [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) [![Continuous Build Linux](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-linux.yml) [![Continuous Build macOS](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) [![Continuous Build FreeBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-freebsd.yml) [![Continuous Build OpenBSD](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml/badge.svg)](https://github.com/aristocratos/btop/actions/workflows/continuous-build-openbsd.yml) ## Index * [News](#news) * [Documents](#documents) * [Description](#description) * [Features](#features) * [Themes](#themes) * [Support and funding](#support-and-funding) * [Prerequisites](#prerequisites) (Read this if you are having issues!) * [Screenshots](#screenshots) * [Keybindings](#help-menu) * [Installation Linux/macOS](#installation) * [Compilation Linux](#compilation-linux) * [Compilation macOS](#compilation-macos-osx) * [Compilation FreeBSD](#compilation-freebsd) * [Compilation OpenBSD](#compilation-openbsd) * [GPU compatibility](#gpu-compatibility) * [Installing the snap](#installing-the-snap) * [Configurability](#configurability) * [License](#license) ## News ##### 7 January 2024 Btop release v1.3.0 Big release with GPU support added for Linux and platform support for OpenBSD. Big thanks to @romner-set (GPU support) and @joske (OpenBSD support) for contributions. And a multitude of bugfixes and small changes, see [CHANGES.md](CHANGES.md) and latest [release](https://github.com/aristocratos/btop/releases/latest) for detailed list and attributions. See news entry below for more information regarding GPU support. ##### 25 November 2023 GPU monitoring added for Linux! Compile from git main to try it out. Use keys `5`, `6`, `7` and `0` to show/hide the gpu monitoring boxes. `5` = Gpu 1, `6` = Gpu 2, etc. Gpu stats/graphs can also be displayed in the "Cpu box" (not as verbose), see the cpu options menu for info and configuration. Note that the binaries provided on the release page (when released) and the continuous builds will not have gpu support enabled. Because the GPU support relies on loading of dynamic gpu libraries, gpu support will not work when also static linking. See [Compilation Linux](#compilation-linux) for more info on how to compile with gpu monitoring support. Many thanks to [@romner-set](https://github.com/romner-set) who wrote the vast majority of the implementation for GPU support. Big update with version bump to 1.3 coming soon. ##### 28 August 2022 [![btop4win](https://github.com/aristocratos/btop4win/raw/master/Img/logo.png)](https://github.com/aristocratos/btop4win) First release of btop4win available at https://github.com/aristocratos/btop4win
More... ##### 16 January 2022 Release v1.2.0 with FreeBSD support. No release binaries for FreeBSD provided as of yet. Again a big thanks to [@joske](https://github.com/joske) for his porting efforts! Since compatibility with Linux, macOS and FreeBSD are done, the focus going forward will be on new features like GPU monitoring. ##### 13 November 2021 Release v1.1.0 with macOS support. Binaries in [continuous-build-macos](https://github.com/aristocratos/btop/actions/workflows/continuous-build-macos.yml) are only x86 for now. macOS binaries + installer are included for both x86 and ARM64 (Apple Silicon) in the releases. Big thank you to [@joske](https://github.com/joske) who wrote the vast majority of the implementation! ##### 30 October 2021 Work on the OSX [macOS] and FreeBSD branches, both initiated and mostly worked on by [@joske](https://github.com/joske), will likely be completed in the coming weeks. The OSX [macOS] branch has some memory leaks that needs to be sorted out and both have some issues with the processes cpu usage calculation and other smaller issues that needs fixing. If you want to help out, test for bugs/fix bugs or just try out the branches: **macOS / OSX** ```bash # Install and use Homebrew or MacPorts package managers for easy dependency installation brew install coreutils make gcc@11 git clone https://github.com/aristocratos/btop.git cd btop git checkout OSX gmake ``` **FreeBSD** ```bash sudo pkg install gmake gcc11 coreutils git git clone https://github.com/aristocratos/btop.git cd btop git checkout freebsd gmake ``` Note that GNU make (`gmake`) is recommended but not required for macOS/OSX but it is required on FreeBSD. ##### 6 October 2021 macOS development have been started by [@joske](https://github.com/joske), big thanks :) See branch [OSX](https://github.com/aristocratos/btop/tree/OSX) for current progress. ##### 18 September 2021 The Linux version of btop++ is complete. Released as version 1.0.0 I will be providing statically compiled binaries for a range of architectures in every release for those having problems compiling. For compilation GCC 10 is required, GCC 11 preferred. Please report any bugs to the [Issues](https://github.com/aristocratos/btop/issues/new?assignees=aristocratos&labels=bug&template=bug_report.md&title=%5BBUG%5D) page. The development plan right now: * 1.1.0 macOS [OSX] support * 1.2.0 FreeBSD support * 1.3.0 Support for GPU monitoring * 1.X.0 Other platforms and features... Windows support is not in the plans as of now, but if anyone else wants to take it on, I will try to help. ##### 5 May 2021 This project is gonna take some time until it has complete feature parity with bpytop, since all system information gathering will have to be written from scratch without any external libraries. And will need some help in the form of code contributions to get complete support for BSD and macOS/OSX.
## Documents **[CHANGELOG.md](CHANGELOG.md)** **[CONTRIBUTING.md](CONTRIBUTING.md)** **[CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md)** ## Description Resource monitor that shows usage and stats for processor, memory, disks, network and processes. C++ version and continuation of [bashtop](https://github.com/aristocratos/bashtop) and [bpytop](https://github.com/aristocratos/bpytop). ## Features * Easy to use, with a game inspired menu system. * Full mouse support, all buttons with a highlighted key is clickable and mouse scroll works in process list and menu boxes. * Fast and responsive UI with UP, DOWN keys process selection. * Function for showing detailed stats for selected process. * Ability to filter processes. * Easy switching between sorting options. * Tree view of processes. * Send any signal to selected process. * UI menu for changing all config file options. * Auto scaling graph for network usage. * Shows IO activity and speeds for disks. * Battery meter * Selectable symbols for the graphs. * Custom presets * And more... ## Themes Btop++ uses the same theme files as bpytop and bashtop (some color values missing in bashtop themes) . See [themes](https://github.com/aristocratos/btop/tree/main/themes) folder for available themes. The `make install` command places the default themes in `[$PREFIX or /usr/local]/share/btop/themes`. User created themes should be placed in `$XDG_CONFIG_HOME/btop/themes` or `$HOME/.config/btop/themes`. Let me know if you want to contribute with new themes. ## Support and funding You can sponsor this project through github, see [my sponsors page](https://github.com/sponsors/aristocratos) for options. Or donate through [paypal](https://paypal.me/aristocratos) or [ko-fi](https://ko-fi.com/aristocratos). Any support is greatly appreciated! ## Prerequisites For best experience, a terminal with support for: * 24-bit truecolor ([See list of terminals with truecolor support](https://github.com//termstandard/colors)) * 256-color terminals are supported through 24-bit to 256-color conversion when setting "truecolor" to False in the options or with "-lc/--low-color" arguments. * 16 color TTY mode will be activated if a real tty device is detected. Can be forced with "-t/--tty_on" arguments. * Wide characters (Are sometimes problematic in web-based terminals) Also needs a UTF8 locale and a font that covers: * Unicode Block “Braille Patterns” U+2800 - U+28FF (Not needed in TTY mode or with graphs set to type: block or tty.) * Unicode Block “Geometric Shapes” U+25A0 - U+25FF * Unicode Block "Box Drawing" and "Block Elements" U+2500 - U+259F ### **Notice (Text rendering issues)** * If you are having problems with the characters in the graphs not looking like they do in the screenshots, it's likely a problem with your systems configured fallback font not having support for braille characters. * See [Terminess Powerline](https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Terminus/terminus-ttf-4.40.1) for an example of a font that includes the braille symbols. * See comments by @sgleizes [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-684036827) and @XenHat [link](https://github.com/aristocratos/bpytop/issues/100#issuecomment-691585587) in issue #100 for possible solutions. * If text are misaligned and you are using Konsole or Yakuake, turning off "Bi-Directional text rendering" is a possible fix. * Characters clipping in to each other or text/border misalignments is not bugs caused by btop, but most likely a fontconfig or terminal problem where the braille characters making up the graphs aren't rendered correctly. * Look to the creators of the terminal emulator you use to fix these issues if the previous mentioned fixes don't work for you. ## Screenshots #### Main UI showing details for a selected process ![Screenshot 1](Img/normal.png) #### Main UI in TTY mode ![Screenshot 2](Img/tty.png) #### Main UI with custom options ![Screenshot 3](Img/alt.png) #### Main-menu ![Screenshot 3](Img/main-menu.png) #### Options-menu ![Screenshot 4](Img/options-menu.png) #### Help-menu ![Screenshot 5](Img/help-menu.png) ## Installation **Binaries for Linux are statically compiled with musl and works on kernel 2.6.39 and newer** 1. **Download btop-(VERSION)-(ARCH)-(PLATFORM).tbz from [latest release](https://github.com/aristocratos/btop/releases/latest) and unpack to a new folder** **Notice! Use x86_64 for 64-bit x86 systems, i486 and i686 are 32-bit!** 2. **Install (from created folder)** * **Run install.sh or:** ```bash # use "make install PREFIX=/target/dir" to set target, default: /usr/local # only use "sudo" when installing to a NON user owned directory sudo make install ``` 3. **(Optional) Set suid bit to make btop always run as root (or other user)** Enables signal sending to any process without starting with `sudo` and can prevent /proc read permissions problems on some systems. * **Run setuid.sh or:** ```bash # run after make install and use same PREFIX if any was used at install # set SU_USER and SU_GROUP to select user and group, default is root:root sudo make setuid ``` * **Uninstall** * **Run uninstall.sh or:** ```bash sudo make uninstall ``` * **Show help** ```bash make help ``` **Binary release (from native os repo)** * **openSUSE** * **Tumbleweed:** ```bash sudo zypper in btop ``` * For all other versions, see [openSUSE Software: btop](https://software.opensuse.org/package/btop) * **Fedora** ```bash sudo dnf install btop ``` * **RHEL/AlmaLinux 8+** ```bash sudo dnf install epel-release sudo dnf install btop ``` * **FreeBSD** ```sh pkg install btop ``` **Binary release on Homebrew (macOS (x86_64 & ARM64) / Linux (x86_64))** * **[Homebrew](https://formulae.brew.sh/formula/btop)** ```bash brew install btop ``` ## Compilation Linux Requires at least GCC 10 or Clang 16. The makefile also needs GNU coreutils and `sed` (should already be installed on any modern distribution). ### GPU compatibility Btop++ supports NVIDIA and AMD GPUs out of the box on Linux x86_64, provided you have the correct drivers and libraries. Compatibility with Intel GPUs using generic DRM calls is planned, as is compatibility for FreeBSD and macOS. Gpu support will not work when static linking glibc (or musl, etc.)! For x86_64 Linux the flag `GPU_SUPPORT` is automatically set to `true`, to manually disable gpu support set the flag to false, like: `make GPU_SUPPORT=false` (or `cmake -DBTOP_GPU=false` with CMake) * **NVIDIA** You must use an official NVIDIA driver, both the closed-source and [open-source](https://github.com/NVIDIA/open-gpu-kernel-modules) ones have been verified to work. In addition to that you must also have the `nvidia-ml` dynamic library installed, which should be included with the driver package of your distribution. * **AMD** AMDGPU data is queried using the [ROCm SMI](https://github.com/RadeonOpenCompute/rocm_smi_lib) library, which may or may not be packaged for your distribution. If your distribution doesn't provide a package, btop++ is statically linked to ROCm SMI with the `RSMI_STATIC=true` make flag. This flag expects the ROCm SMI source code in `lib/rocm_smi_lib`, and compilation will fail if it's not there. The latest tested version is 5.6.x, which can be obtained with the following command: ```bash git clone https://github.com/RadeonOpenCompute/rocm_smi_lib.git --depth 1 -b rocm-5.6.x lib/rocm_smi_lib ```
### With Make 1. **Install dependencies (example for Ubuntu 21.04 Hirsute)** ```bash sudo apt install coreutils sed git build-essential gcc-11 g++-11 ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash make ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `GPU_SUPPORT=` | Enable/disable GPU support (Enabled by default on X86_64 Linux) | | `RSMI_STATIC=true` | To statically link the ROCm SMI library used for querying AMDGPU | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `make ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. Notice! If using LDAP Authentication, usernames will show as UID number for LDAP users if compiling statically with glibc. 4. **Install** ```bash sudo make install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Optional) Set suid bit to make btop always run as root (or other user)** ```bash sudo make setuid ``` No need for `sudo` to enable signal sending to any process and to prevent /proc read permissions problems on some systems. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `root` * **Uninstall** ```bash sudo make uninstall ``` * **Remove any object files from source dir** ```bash make clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash make distclean ``` * **Show help** ```bash make help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja and Git For example, with Debian Bookworm: ```bash sudo apt install cmake git g++ ninja-build ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop `````` 3. **Compile** ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DBTOP_GPU=` | Enable GPU support (ON by default) | | `-DBTOP_RSMI_STATIC=` | Build and link the ROCm SMI library statically (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation macOS OSX Requires at least GCC 10 or Clang 16. With GCC, version 12 (or better) is needed for macOS Ventura. If you get linker errors on Ventura you'll need to upgrade your command line tools (Version 14.0) is bugged. The makefile also needs GNU coreutils and `sed`. Install and use Homebrew or MacPorts package managers for easy dependency installation
### With Make 1. **Install dependencies (example for Homebrew)** ```bash brew install coreutils make gcc@12 ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang, CMake, Ninja and Git ```bash brew update --quiet brew install cmake git llvm ninja ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** ```bash # Configure export LLVM_PREFIX="$(brew --prefix llvm)" export CXX="$LLVM_PREFIX/bin/clang++" export CPPFLAGS="-I$LLVM_PREFIX/include" export LDFLAGS="-L$LLVM_PREFIX/lib -L$LLVM_PREFIX/lib/c++ -Wl,-rpath,$LLVM_PREFIX/lib/c++ -fuse-ld=$LLVM_PREFIX/bin/ld64.lld" cmake -B build -G Ninja # Build cmake --build build ``` _**Note:** btop uses lots of C++ 20 features, so it's necessary to be specific about the compiler and the standard library. If you get a compile with Apple-Clang or GCC, feel free to add the instructions here._ This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | To force any specific compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation FreeBSD Requires at least GCC 10 or Clang 16. Note that GNU make (`gmake`) is required to compile on FreeBSD.
### With gmake 1. **Install dependencies** ```bash sudo pkg install gmake gcc11 coreutils git ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
### With CMake (Community maintained) 1. **Install build dependencies** Requires Clang / GCC, CMake, Ninja and Git _**Note:** LLVM's libc++ shipped with FreeBSD 13 is too old and cannot compile btop._ FreeBSD 14 and later: ```bash pkg install cmake ninja ``` FreeBSD 13: ```bash pkg install cmake gcc13 ninja ``` 2. **Clone the repository** ```bash git clone https://github.com/aristocratos/btop.git && cd btop ``` 3. **Compile** FreeBSD 14 and later: ```bash # Configure cmake -B build -G Ninja # Build cmake --build build ``` FreeBSD 13: ```bash # Configure CXX=g++13 cmake -B build -G Ninja # Build cmake --build build ``` This will automatically build a release version of btop. Some useful options to pass to the configure step: | Configure flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `-DBTOP_STATIC=` | Enables static linking (OFF by default) | | `-DBTOP_LTO=` | Enables link time optimization (ON by default) | | `-DBTOP_USE_MOLD=` | Use mold to link btop (OFF by default) | | `-DBTOP_PEDANTIC=` | Compile with additional warnings (OFF by default) | | `-DBTOP_WERROR=` | Compile with warnings as errors (OFF by default) | | `-DCMAKE_INSTALL_PREFIX=` | The installation prefix ('/usr/local' by default) | _**Note:** Static linking does not work with GCC._ To force any other compiler, run `CXX= cmake -B build -G Ninja` 4. **Install** ```bash cmake --install build ``` May require root privileges 5. **Uninstall** CMake doesn't generate an uninstall target by default. To remove installed files, run ``` cat build/install_manifest.txt | xargs rm -irv ``` 6. **Cleanup build directory** ```bash cmake --build build -t clean ```
## Compilation OpenBSD Requires at least GCC 10. Note that GNU make (`gmake`) is required to compile on OpenBSD.
### With gmake 1. **Install dependencies** ```bash pkg_add gmake gcc%11 g++%11 coreutils git ``` 2. **Clone repository** ```bash git clone https://github.com/aristocratos/btop.git cd btop ``` 3. **Compile** ```bash gmake CXX=eg++ ``` Options for make: | Flag | Description | |---------------------------------|-------------------------------------------------------------------------| | `VERBOSE=true` | To display full compiler/linker commands | | `STATIC=true` | For static compilation (only libgcc and libstdc++) | | `QUIET=true` | For less verbose output | | `STRIP=true` | To force stripping of debug symbols (adds `-s` linker flag) | | `DEBUG=true` | Sets OPTFLAGS to `-O0 -g` and enables more verbose debug logging | | `ARCH=` | To manually set the target architecture | | `ADDFLAGS=` | For appending flags to both compiler and linker | | `CXX=` | Manualy set which compiler to use | Example: `gmake ADDFLAGS=-march=native` might give a performance boost if compiling only for your own system. 4. **Install** ```bash sudo gmake install ``` Append `PREFIX=/target/dir` to set target, default: `/usr/local` Notice! Only use "sudo" when installing to a NON user owned directory. 5. **(Recommended) Set suid bit to make btop always run as root (or other user)** ```bash sudo gmake setuid ``` No need for `sudo` to see information for non user owned processes and to enable signal sending to any process. Run after make install and use same PREFIX if any was used at install. Set `SU_USER` and `SU_GROUP` to select user and group, default is `root` and `wheel` * **Uninstall** ```bash sudo gmake uninstall ``` * **Remove any object files from source dir** ```bash gmake clean ``` * **Remove all object files, binaries and created directories in source dir** ```bash gmake distclean ``` * **Show help** ```bash gmake help ```
## Installing the snap [![btop](https://snapcraft.io/btop/badge.svg)](https://snapcraft.io/btop) ### Note: there are now two snaps available: `btop` and `btop-desktop`. The desktop version is much larger and includes the desktop entries needed to allow for launching `btop` with a click. * **Install the snap** ```bash sudo snap install btop or sudo snap install btop-desktop ``` * **Install the latest snap from the edge channel** ``` sudo snap install btop --edge or sudo snap install btop-desktop --edge ``` * **Connect the interface** ```bash sudo snap connect btop:removable-media or sudo snap connect btop-desktop:removable-media ``` ## Configurability All options changeable from within UI. Config and log files stored in `$XDG_CONFIG_HOME/btop` or `$HOME/.config/btop` folder #### btop.conf: (auto generated if not found) ```bash #? Config file for btop v. 1.2.2 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" color_theme = "Default" #* If the theme set background should be shown, set to False if you want terminal background transparency. theme_background = True #* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. truecolor = True #* Set to true to force tty mode regardless if a real tty has been detected or not. #* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. force_tty = False #* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. #* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. #* Use whitespace " " as separator between different presets. #* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" #* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. #* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. vim_keys = False #* Rounded corners on boxes, is ignored if TTY mode is ON. rounded_corners = True #* Default symbols to use for graph creation, "braille", "block" or "tty". #* "braille" offers the highest resolution but might not be included in all fonts. #* "block" has half the resolution of braille but uses more common characters. #* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. #* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. graph_symbol = "braille" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_cpu = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_mem = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_net = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. shown_boxes = "proc cpu mem net" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 1500 #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive", #* "cpu lazy" sorts top process over time (easier to follow), "cpu responsive" updates top process directly. proc_sorting = "cpu lazy" #* Reverse sorting order, True or False. proc_reversed = False #* Show processes as a tree. proc_tree = False #* Use the cpu graph colors in the process list. proc_colors = True #* Use a darkening gradient in the process list. proc_gradient = True #* If process cpu usage should be of the core it's running on or usage of the total available cpu power. proc_per_core = True #* Show process memory as bytes instead of percent. proc_mem_bytes = True #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) proc_info_smaps = False #* Show proc box on left side of screen instead of right. proc_left = False #* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_upper = "total" #* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. #* Select from a list of detected attributes from the options menu. cpu_graph_lower = "total" #* Toggles if the lower CPU graph should be inverted. cpu_invert_lower = True #* Set to True to completely disable the lower CPU graph. cpu_single_graph = False #* Show cpu box at bottom of screen instead of top. cpu_bottom = False #* Shows the system uptime in the CPU box. show_uptime = True #* Show cpu temperature. check_temp = True #* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. cpu_sensor = "Auto" #* Show temperatures for cpu cores also if check_temp is True and sensors has been found. show_coretemp = True #* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. #* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. #* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. #* Example: "4:0 5:1 6:3" cpu_core_map = "" #* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". temp_scale = "celsius" #* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. base_10_sizes = False #* Show CPU frequency. show_cpu_freq = True #* Draw a clock at top of screen, formatting according to strftime, empty string to disable. #* Special formatting: /host = hostname | /user = username | /uptime = system uptime clock_format = "%H:%M" #* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. background_update = True #* Custom cpu model name, empty string to disable. custom_cpu_name = "" #* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". #* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user". disks_filter = "exclude=/boot" #* Show graphs instead of meters for memory values. mem_graphs = True #* Show mem box below net box instead of above. mem_below_net = False #* Count ZFS ARC in cached and available memory. zfs_arc_cached = True #* If swap memory should be shown in memory box. show_swap = True #* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. swap_disk = True #* If mem box should be split to also show disks info. show_disks = True #* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. only_physical = True #* Read disks list from /etc/fstab. This also disables only_physical. use_fstab = False #* Set to true to show available disk space for privileged users. disk_free_priv = False #* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. show_io_stat = True #* Toggles io mode for disks, showing big graphs for disk read/write speeds. io_mode = False #* Set to True to show combined read/write io graphs in io mode. io_graph_combined = False #* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". #* Example: "/mnt/media:100 /:20 /boot:1". io_graph_speeds = "" #* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. net_download = 100 net_upload = 100 #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. net_auto = True #* Sync the auto scaling for download and upload to whichever currently has the highest scale. net_sync = False #* Starts with the Network Interface specified here. net_iface = "br0" #* Show battery stats in top right if battery is present. show_battery = True #* Which battery to use if multiple are present. "Auto" for auto detection. selected_battery = "Auto" #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. log_level = "DEBUG" ``` #### Command line options ```text usage: btop [-h] [-v] [-/+t] [-p ] [--utf-force] [--debug] optional arguments: -h, --help show this help message and exit -v, --version show version info and exit -lc, --low-color disable truecolor, converts 24-bit colors to 256-color -t, --tty_on force (ON) tty mode, max 16 colors and tty friendly graph symbols +t, --tty_off force (OFF) tty mode -p, --preset start with preset, integer value between 0-9 --utf-force force start even if no UTF-8 locale was detected --debug start in DEBUG mode: shows microsecond timer for information collect and screen draw functions and sets loglevel to DEBUG ``` ## LICENSE [Apache License 2.0](LICENSE) btop-1.3.0/btop.desktop000066400000000000000000000006541454653170500150350ustar00rootroot00000000000000[Desktop Entry] Type=Application Version=1.0 Name=btop++ GenericName=System Monitor GenericName[it]=Monitor di sistema Comment=Resource monitor that shows usage and stats for processor, memory, disks, network and processes Comment[it]=Monitoraggio delle risorse: mostra utilizzo e statistiche per CPU, dischi, rete e processi Icon=btop Exec=btop Terminal=true Categories=System;Monitor;ConsoleOnly; Keywords=system;process;task btop-1.3.0/cmake/000077500000000000000000000000001454653170500135515ustar00rootroot00000000000000btop-1.3.0/cmake/Modules/000077500000000000000000000000001454653170500151615ustar00rootroot00000000000000btop-1.3.0/cmake/Modules/Finddevstat.cmake000066400000000000000000000013041454653170500204340ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find devstat, the Device Statistics Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(devstat_INCLUDE_DIR NAMES devstat.h) find_library(devstat_LIBRARY NAMES devstat) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(devstat REQUIRED_VARS devstat_LIBRARY devstat_INCLUDE_DIR) if(devstat_FOUND AND NOT TARGET devstat::devstat) add_library(devstat::devstat UNKNOWN IMPORTED) set_target_properties(devstat::devstat PROPERTIES IMPORTED_LOCATION "${devstat_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${devstat_INCLUDE_DIR}" ) endif() mark_as_advanced(devstat_INCLUDE_DIR devstat_LIBRARY) endif() btop-1.3.0/cmake/Modules/Findelf.cmake000066400000000000000000000011671454653170500175370ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libelf, the ELF Access Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(elf_INCLUDE_DIR NAMES libelf.h) find_library(elf_LIBRARY NAMES elf) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(elf REQUIRED_VARS elf_LIBRARY elf_INCLUDE_DIR) if(elf_FOUND AND NOT TARGET elf::elf) add_library(elf::elf UNKNOWN IMPORTED) set_target_properties(elf::elf PROPERTIES IMPORTED_LOCATION "${elf_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${elf_INCLUDE_DIR}" ) endif() mark_as_advanced(elf_INCLUDE_DIR elf_LIBRARY) endif() btop-1.3.0/cmake/Modules/Findkvm.cmake000066400000000000000000000011741454653170500175640ustar00rootroot00000000000000# SPDX-License-Identifier: Apache-2.0 # # Find libkvm, the Kernel Data Access Library # if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") find_path(kvm_INCLUDE_DIR NAMES kvm.h) find_library(kvm_LIBRARY NAMES kvm) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(kvm REQUIRED_VARS kvm_LIBRARY kvm_INCLUDE_DIR) if(kvm_FOUND AND NOT TARGET kvm::kvm) add_library(kvm::kvm UNKNOWN IMPORTED) set_target_properties(kvm::kvm PROPERTIES IMPORTED_LOCATION "${kvm_LIBRARY}" INTERFACE_INCLUDE_DIRECTORIES "${kvm_INCLUDE_DIR}" ) endif() mark_as_advanced(kvm_INCLUDE_DIR kvm_LIBRARY) endif() btop-1.3.0/include/000077500000000000000000000000001454653170500141145ustar00rootroot00000000000000btop-1.3.0/include/fmt/000077500000000000000000000000001454653170500147025ustar00rootroot00000000000000btop-1.3.0/include/fmt/LICENSE.rst000066400000000000000000000026271454653170500165250ustar00rootroot00000000000000Copyright (c) 2012 - present, Victor Zverovich and {fmt} contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. btop-1.3.0/include/fmt/args.h000066400000000000000000000163741454653170500160220ustar00rootroot00000000000000// Formatting library for C++ - dynamic format arguments // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_ARGS_H_ #define FMT_ARGS_H_ #include // std::reference_wrapper #include // std::unique_ptr #include #include "core.h" FMT_BEGIN_NAMESPACE namespace detail { template struct is_reference_wrapper : std::false_type {}; template struct is_reference_wrapper> : std::true_type {}; template const T& unwrap(const T& v) { return v; } template const T& unwrap(const std::reference_wrapper& v) { return static_cast(v); } class dynamic_arg_list { // Workaround for clang's -Wweak-vtables. Unlike for regular classes, for // templates it doesn't complain about inability to deduce single translation // unit for placing vtable. So storage_node_base is made a fake template. template struct node { virtual ~node() = default; std::unique_ptr> next; }; template struct typed_node : node<> { T value; template FMT_CONSTEXPR typed_node(const Arg& arg) : value(arg) {} template FMT_CONSTEXPR typed_node(const basic_string_view& arg) : value(arg.data(), arg.size()) {} }; std::unique_ptr> head_; public: template const T& push(const Arg& arg) { auto new_node = std::unique_ptr>(new typed_node(arg)); auto& value = new_node->value; new_node->next = std::move(head_); head_ = std::move(new_node); return value; } }; } // namespace detail /** \rst A dynamic version of `fmt::format_arg_store`. It's equipped with a storage to potentially temporary objects which lifetimes could be shorter than the format arguments object. It can be implicitly converted into `~fmt::basic_format_args` for passing into type-erased formatting functions such as `~fmt::vformat`. \endrst */ template class dynamic_format_arg_store #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround a GCC template argument substitution bug. : public basic_format_args #endif { private: using char_type = typename Context::char_type; template struct need_copy { static constexpr detail::type mapped_type = detail::mapped_type_constant::value; enum { value = !(detail::is_reference_wrapper::value || std::is_same>::value || std::is_same>::value || (mapped_type != detail::type::cstring_type && mapped_type != detail::type::string_type && mapped_type != detail::type::custom_type)) }; }; template using stored_type = conditional_t< std::is_convertible>::value && !detail::is_reference_wrapper::value, std::basic_string, T>; // Storage of basic_format_arg must be contiguous. std::vector> data_; std::vector> named_info_; // Storage of arguments not fitting into basic_format_arg must grow // without relocation because items in data_ refer to it. detail::dynamic_arg_list dynamic_args_; friend class basic_format_args; unsigned long long get_types() const { return detail::is_unpacked_bit | data_.size() | (named_info_.empty() ? 0ULL : static_cast(detail::has_named_args_bit)); } const basic_format_arg* data() const { return named_info_.empty() ? data_.data() : data_.data() + 1; } template void emplace_arg(const T& arg) { data_.emplace_back(detail::make_arg(arg)); } template void emplace_arg(const detail::named_arg& arg) { if (named_info_.empty()) { constexpr const detail::named_arg_info* zero_ptr{nullptr}; data_.insert(data_.begin(), {zero_ptr, 0}); } data_.emplace_back(detail::make_arg(detail::unwrap(arg.value))); auto pop_one = [](std::vector>* data) { data->pop_back(); }; std::unique_ptr>, decltype(pop_one)> guard{&data_, pop_one}; named_info_.push_back({arg.name, static_cast(data_.size() - 2u)}); data_[0].value_.named_args = {named_info_.data(), named_info_.size()}; guard.release(); } public: constexpr dynamic_format_arg_store() = default; /** \rst Adds an argument into the dynamic store for later passing to a formatting function. Note that custom types and string types (but not string views) are copied into the store dynamically allocating memory if necessary. **Example**:: fmt::dynamic_format_arg_store store; store.push_back(42); store.push_back("abc"); store.push_back(1.5f); std::string result = fmt::vformat("{} and {} and {}", store); \endrst */ template void push_back(const T& arg) { if (detail::const_check(need_copy::value)) emplace_arg(dynamic_args_.push>(arg)); else emplace_arg(detail::unwrap(arg)); } /** \rst Adds a reference to the argument into the dynamic store for later passing to a formatting function. **Example**:: fmt::dynamic_format_arg_store store; char band[] = "Rolling Stones"; store.push_back(std::cref(band)); band[9] = 'c'; // Changing str affects the output. std::string result = fmt::vformat("{}", store); // result == "Rolling Scones" \endrst */ template void push_back(std::reference_wrapper arg) { static_assert( need_copy::value, "objects of built-in types and string views are always copied"); emplace_arg(arg.get()); } /** Adds named argument into the dynamic store for later passing to a formatting function. ``std::reference_wrapper`` is supported to avoid copying of the argument. The name is always copied into the store. */ template void push_back(const detail::named_arg& arg) { const char_type* arg_name = dynamic_args_.push>(arg.name).c_str(); if (detail::const_check(need_copy::value)) { emplace_arg( fmt::arg(arg_name, dynamic_args_.push>(arg.value))); } else { emplace_arg(fmt::arg(arg_name, arg.value)); } } /** Erase all elements from the store */ void clear() { data_.clear(); named_info_.clear(); dynamic_args_ = detail::dynamic_arg_list(); } /** \rst Reserves space to store at least *new_cap* arguments including *new_cap_named* named arguments. \endrst */ void reserve(size_t new_cap, size_t new_cap_named) { FMT_ASSERT(new_cap >= new_cap_named, "Set of arguments includes set of named arguments"); data_.reserve(new_cap); named_info_.reserve(new_cap_named); } }; FMT_END_NAMESPACE #endif // FMT_ARGS_H_ btop-1.3.0/include/fmt/chrono.h000066400000000000000000002206611454653170500163520ustar00rootroot00000000000000// Formatting library for C++ - chrono support // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_CHRONO_H_ #define FMT_CHRONO_H_ #include #include #include // std::isfinite #include // std::memcpy #include #include #include #include #include #include "format.h" FMT_BEGIN_NAMESPACE // Check if std::chrono::local_t is available. #ifndef FMT_USE_LOCAL_TIME # ifdef __cpp_lib_chrono # define FMT_USE_LOCAL_TIME (__cpp_lib_chrono >= 201907L) # else # define FMT_USE_LOCAL_TIME 0 # endif #endif // Check if std::chrono::utc_timestamp is available. #ifndef FMT_USE_UTC_TIME # ifdef __cpp_lib_chrono # define FMT_USE_UTC_TIME (__cpp_lib_chrono >= 201907L) # else # define FMT_USE_UTC_TIME 0 # endif #endif // Enable tzset. #ifndef FMT_USE_TZSET // UWP doesn't provide _tzset. # if FMT_HAS_INCLUDE("winapifamily.h") # include # endif # if defined(_WIN32) && (!defined(WINAPI_FAMILY) || \ (WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP)) # define FMT_USE_TZSET 1 # else # define FMT_USE_TZSET 0 # endif #endif // Enable safe chrono durations, unless explicitly disabled. #ifndef FMT_SAFE_DURATION_CAST # define FMT_SAFE_DURATION_CAST 1 #endif #if FMT_SAFE_DURATION_CAST // For conversion between std::chrono::durations without undefined // behaviour or erroneous results. // This is a stripped down version of duration_cast, for inclusion in fmt. // See https://github.com/pauldreik/safe_duration_cast // // Copyright Paul Dreik 2019 namespace safe_duration_cast { template ::value && std::numeric_limits::is_signed == std::numeric_limits::is_signed)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); // A and B are both signed, or both unsigned. if (detail::const_check(F::digits <= T::digits)) { // From fits in To without any problem. } else { // From does not always fit in To, resort to a dynamic check. if (from < (T::min)() || from > (T::max)()) { // outside range. ec = 1; return {}; } } return static_cast(from); } /** * converts From to To, without loss. If the dynamic value of from * can't be converted to To without loss, ec is set. */ template ::value && std::numeric_limits::is_signed != std::numeric_limits::is_signed)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; using F = std::numeric_limits; using T = std::numeric_limits; static_assert(F::is_integer, "From must be integral"); static_assert(T::is_integer, "To must be integral"); if (detail::const_check(F::is_signed && !T::is_signed)) { // From may be negative, not allowed! if (fmt::detail::is_negative(from)) { ec = 1; return {}; } // From is positive. Can it always fit in To? if (detail::const_check(F::digits > T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } } if (detail::const_check(!F::is_signed && T::is_signed && F::digits >= T::digits) && from > static_cast(detail::max_value())) { ec = 1; return {}; } return static_cast(from); // Lossless conversion. } template ::value)> FMT_CONSTEXPR To lossless_integral_conversion(const From from, int& ec) { ec = 0; return from; } // function // clang-format off /** * converts From to To if possible, otherwise ec is set. * * input | output * ---------------------------------|--------------- * NaN | NaN * Inf | Inf * normal, fits in output | converted (possibly lossy) * normal, does not fit in output | ec is set * subnormal | best effort * -Inf | -Inf */ // clang-format on template ::value)> FMT_CONSTEXPR To safe_float_conversion(const From from, int& ec) { ec = 0; using T = std::numeric_limits; static_assert(std::is_floating_point::value, "From must be floating"); static_assert(std::is_floating_point::value, "To must be floating"); // catch the only happy case if (std::isfinite(from)) { if (from >= T::lowest() && from <= (T::max)()) { return static_cast(from); } // not within range. ec = 1; return {}; } // nan and inf will be preserved return static_cast(from); } // function template ::value)> FMT_CONSTEXPR To safe_float_conversion(const From from, int& ec) { ec = 0; static_assert(std::is_floating_point::value, "From must be floating"); return from; } /** * safe duration cast between integral durations */ template ::value), FMT_ENABLE_IF(std::is_integral::value)> To safe_duration_cast(std::chrono::duration from, int& ec) { using From = std::chrono::duration; ec = 0; // the basic idea is that we need to convert from count() in the from type // to count() in the To type, by multiplying it with this: struct Factor : std::ratio_divide {}; static_assert(Factor::num > 0, "num must be positive"); static_assert(Factor::den > 0, "den must be positive"); // the conversion is like this: multiply from.count() with Factor::num // /Factor::den and convert it to To::rep, all this without // overflow/underflow. let's start by finding a suitable type that can hold // both To, From and Factor::num using IntermediateRep = typename std::common_type::type; // safe conversion to IntermediateRep IntermediateRep count = lossless_integral_conversion(from.count(), ec); if (ec) return {}; // multiply with Factor::num without overflow or underflow if (detail::const_check(Factor::num != 1)) { const auto max1 = detail::max_value() / Factor::num; if (count > max1) { ec = 1; return {}; } const auto min1 = (std::numeric_limits::min)() / Factor::num; if (detail::const_check(!std::is_unsigned::value) && count < min1) { ec = 1; return {}; } count *= Factor::num; } if (detail::const_check(Factor::den != 1)) count /= Factor::den; auto tocount = lossless_integral_conversion(count, ec); return ec ? To() : To(tocount); } /** * safe duration_cast between floating point durations */ template ::value), FMT_ENABLE_IF(std::is_floating_point::value)> To safe_duration_cast(std::chrono::duration from, int& ec) { using From = std::chrono::duration; ec = 0; if (std::isnan(from.count())) { // nan in, gives nan out. easy. return To{std::numeric_limits::quiet_NaN()}; } // maybe we should also check if from is denormal, and decide what to do about // it. // +-inf should be preserved. if (std::isinf(from.count())) { return To{from.count()}; } // the basic idea is that we need to convert from count() in the from type // to count() in the To type, by multiplying it with this: struct Factor : std::ratio_divide {}; static_assert(Factor::num > 0, "num must be positive"); static_assert(Factor::den > 0, "den must be positive"); // the conversion is like this: multiply from.count() with Factor::num // /Factor::den and convert it to To::rep, all this without // overflow/underflow. let's start by finding a suitable type that can hold // both To, From and Factor::num using IntermediateRep = typename std::common_type::type; // force conversion of From::rep -> IntermediateRep to be safe, // even if it will never happen be narrowing in this context. IntermediateRep count = safe_float_conversion(from.count(), ec); if (ec) { return {}; } // multiply with Factor::num without overflow or underflow if (detail::const_check(Factor::num != 1)) { constexpr auto max1 = detail::max_value() / static_cast(Factor::num); if (count > max1) { ec = 1; return {}; } constexpr auto min1 = std::numeric_limits::lowest() / static_cast(Factor::num); if (count < min1) { ec = 1; return {}; } count *= static_cast(Factor::num); } // this can't go wrong, right? den>0 is checked earlier. if (detail::const_check(Factor::den != 1)) { using common_t = typename std::common_type::type; count /= static_cast(Factor::den); } // convert to the to type, safely using ToRep = typename To::rep; const ToRep tocount = safe_float_conversion(count, ec); if (ec) { return {}; } return To{tocount}; } } // namespace safe_duration_cast #endif // Prevents expansion of a preceding token as a function-style macro. // Usage: f FMT_NOMACRO() #define FMT_NOMACRO namespace detail { template struct null {}; inline null<> localtime_r FMT_NOMACRO(...) { return null<>(); } inline null<> localtime_s(...) { return null<>(); } inline null<> gmtime_r(...) { return null<>(); } inline null<> gmtime_s(...) { return null<>(); } inline const std::locale& get_classic_locale() { static const auto& locale = std::locale::classic(); return locale; } template struct codecvt_result { static constexpr const size_t max_size = 32; CodeUnit buf[max_size]; CodeUnit* end; }; template constexpr const size_t codecvt_result::max_size; template void write_codecvt(codecvt_result& out, string_view in_buf, const std::locale& loc) { #if FMT_CLANG_VERSION # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wdeprecated" auto& f = std::use_facet>(loc); # pragma clang diagnostic pop #else auto& f = std::use_facet>(loc); #endif auto mb = std::mbstate_t(); const char* from_next = nullptr; auto result = f.in(mb, in_buf.begin(), in_buf.end(), from_next, std::begin(out.buf), std::end(out.buf), out.end); if (result != std::codecvt_base::ok) FMT_THROW(format_error("failed to format time")); } template auto write_encoded_tm_str(OutputIt out, string_view in, const std::locale& loc) -> OutputIt { if (detail::is_utf8() && loc != get_classic_locale()) { // char16_t and char32_t codecvts are broken in MSVC (linkage errors) and // gcc-4. #if FMT_MSC_VERSION != 0 || \ (defined(__GLIBCXX__) && !defined(_GLIBCXX_USE_DUAL_ABI)) // The _GLIBCXX_USE_DUAL_ABI macro is always defined in libstdc++ from gcc-5 // and newer. using code_unit = wchar_t; #else using code_unit = char32_t; #endif using unit_t = codecvt_result; unit_t unit; write_codecvt(unit, in, loc); // In UTF-8 is used one to four one-byte code units. auto u = to_utf8>(); if (!u.convert({unit.buf, to_unsigned(unit.end - unit.buf)})) FMT_THROW(format_error("failed to format time")); return copy_str(u.c_str(), u.c_str() + u.size(), out); } return copy_str(in.data(), in.data() + in.size(), out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { codecvt_result unit; write_codecvt(unit, sv, loc); return copy_str(unit.buf, unit.end, out); } template ::value)> auto write_tm_str(OutputIt out, string_view sv, const std::locale& loc) -> OutputIt { return write_encoded_tm_str(out, sv, loc); } template inline void do_write(buffer& buf, const std::tm& time, const std::locale& loc, char format, char modifier) { auto&& format_buf = formatbuf>(buf); auto&& os = std::basic_ostream(&format_buf); os.imbue(loc); using iterator = std::ostreambuf_iterator; const auto& facet = std::use_facet>(loc); auto end = facet.put(os, os, Char(' '), &time, format, modifier); if (end.failed()) FMT_THROW(format_error("failed to format time")); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = get_buffer(out); do_write(buf, time, loc, format, modifier); return get_iterator(buf, out); } template ::value)> auto write(OutputIt out, const std::tm& time, const std::locale& loc, char format, char modifier = 0) -> OutputIt { auto&& buf = basic_memory_buffer(); do_write(buf, time, loc, format, modifier); return write_encoded_tm_str(out, string_view(buf.data(), buf.size()), loc); } } // namespace detail FMT_BEGIN_EXPORT /** Converts given time since epoch as ``std::time_t`` value into calendar time, expressed in local time. Unlike ``std::localtime``, this function is thread-safe on most platforms. */ inline std::tm localtime(std::time_t time) { struct dispatcher { std::time_t time_; std::tm tm_; dispatcher(std::time_t t) : time_(t) {} bool run() { using namespace fmt::detail; return handle(localtime_r(&time_, &tm_)); } bool handle(std::tm* tm) { return tm != nullptr; } bool handle(detail::null<>) { using namespace fmt::detail; return fallback(localtime_s(&tm_, &time_)); } bool fallback(int res) { return res == 0; } #if !FMT_MSC_VERSION bool fallback(detail::null<>) { using namespace fmt::detail; std::tm* tm = std::localtime(&time_); if (tm) tm_ = *tm; return tm != nullptr; } #endif }; dispatcher lt(time); // Too big time values may be unsupported. if (!lt.run()) FMT_THROW(format_error("time_t value out of range")); return lt.tm_; } #if FMT_USE_LOCAL_TIME template inline auto localtime(std::chrono::local_time time) -> std::tm { return localtime(std::chrono::system_clock::to_time_t( std::chrono::current_zone()->to_sys(time))); } #endif /** Converts given time since epoch as ``std::time_t`` value into calendar time, expressed in Coordinated Universal Time (UTC). Unlike ``std::gmtime``, this function is thread-safe on most platforms. */ inline std::tm gmtime(std::time_t time) { struct dispatcher { std::time_t time_; std::tm tm_; dispatcher(std::time_t t) : time_(t) {} bool run() { using namespace fmt::detail; return handle(gmtime_r(&time_, &tm_)); } bool handle(std::tm* tm) { return tm != nullptr; } bool handle(detail::null<>) { using namespace fmt::detail; return fallback(gmtime_s(&tm_, &time_)); } bool fallback(int res) { return res == 0; } #if !FMT_MSC_VERSION bool fallback(detail::null<>) { std::tm* tm = std::gmtime(&time_); if (tm) tm_ = *tm; return tm != nullptr; } #endif }; dispatcher gt(time); // Too big time values may be unsupported. if (!gt.run()) FMT_THROW(format_error("time_t value out of range")); return gt.tm_; } inline std::tm gmtime( std::chrono::time_point time_point) { return gmtime(std::chrono::system_clock::to_time_t(time_point)); } FMT_BEGIN_DETAIL_NAMESPACE // DEPRECATED! template FMT_CONSTEXPR auto parse_align(const Char* begin, const Char* end, format_specs& specs) -> const Char* { FMT_ASSERT(begin != end, ""); auto align = align::none; auto p = begin + code_point_length(begin); if (end - p <= 0) p = begin; for (;;) { switch (to_ascii(*p)) { case '<': align = align::left; break; case '>': align = align::right; break; case '^': align = align::center; break; } if (align != align::none) { if (p != begin) { auto c = *begin; if (c == '}') return begin; if (c == '{') { throw_format_error("invalid fill character '{'"); return begin; } specs.fill = {begin, to_unsigned(p - begin)}; begin = p + 1; } else { ++begin; } break; } else if (p == begin) { break; } p = begin; } specs.align = align; return begin; } // Writes two-digit numbers a, b and c separated by sep to buf. // The method by Pavel Novikov based on // https://johnnylee-sde.github.io/Fast-unsigned-integer-to-time-string/. inline void write_digit2_separated(char* buf, unsigned a, unsigned b, unsigned c, char sep) { unsigned long long digits = a | (b << 24) | (static_cast(c) << 48); // Convert each value to BCD. // We have x = a * 10 + b and we want to convert it to BCD y = a * 16 + b. // The difference is // y - x = a * 6 // a can be found from x: // a = floor(x / 10) // then // y = x + a * 6 = x + floor(x / 10) * 6 // floor(x / 10) is (x * 205) >> 11 (needs 16 bits). digits += (((digits * 205) >> 11) & 0x000f00000f00000f) * 6; // Put low nibbles to high bytes and high nibbles to low bytes. digits = ((digits & 0x00f00000f00000f0) >> 4) | ((digits & 0x000f00000f00000f) << 8); auto usep = static_cast(sep); // Add ASCII '0' to each digit byte and insert separators. digits |= 0x3030003030003030 | (usep << 16) | (usep << 40); constexpr const size_t len = 8; if (const_check(is_big_endian())) { char tmp[len]; std::memcpy(tmp, &digits, len); std::reverse_copy(tmp, tmp + len, buf); } else { std::memcpy(buf, &digits, len); } } template FMT_CONSTEXPR inline const char* get_units() { if (std::is_same::value) return "as"; if (std::is_same::value) return "fs"; if (std::is_same::value) return "ps"; if (std::is_same::value) return "ns"; if (std::is_same::value) return "µs"; if (std::is_same::value) return "ms"; if (std::is_same::value) return "cs"; if (std::is_same::value) return "ds"; if (std::is_same>::value) return "s"; if (std::is_same::value) return "das"; if (std::is_same::value) return "hs"; if (std::is_same::value) return "ks"; if (std::is_same::value) return "Ms"; if (std::is_same::value) return "Gs"; if (std::is_same::value) return "Ts"; if (std::is_same::value) return "Ps"; if (std::is_same::value) return "Es"; if (std::is_same>::value) return "m"; if (std::is_same>::value) return "h"; return nullptr; } enum class numeric_system { standard, // Alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale. alternative }; // Glibc extensions for formatting numeric values. enum class pad_type { unspecified, // Do not pad a numeric result string. none, // Pad a numeric result string with zeros even if the conversion specifier // character uses space-padding by default. zero, // Pad a numeric result string with spaces. space, }; template auto write_padding(OutputIt out, pad_type pad, int width) -> OutputIt { if (pad == pad_type::none) return out; return std::fill_n(out, width, pad == pad_type::space ? ' ' : '0'); } template auto write_padding(OutputIt out, pad_type pad) -> OutputIt { if (pad != pad_type::none) *out++ = pad == pad_type::space ? ' ' : '0'; return out; } // Parses a put_time-like format string and invokes handler actions. template FMT_CONSTEXPR const Char* parse_chrono_format(const Char* begin, const Char* end, Handler&& handler) { if (begin == end || *begin == '}') return begin; if (*begin != '%') FMT_THROW(format_error("invalid format")); auto ptr = begin; pad_type pad = pad_type::unspecified; while (ptr != end) { auto c = *ptr; if (c == '}') break; if (c != '%') { ++ptr; continue; } if (begin != ptr) handler.on_text(begin, ptr); ++ptr; // consume '%' if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr; switch (c) { case '_': pad = pad_type::space; ++ptr; break; case '-': pad = pad_type::none; ++ptr; break; case '0': pad = pad_type::zero; ++ptr; break; } if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case '%': handler.on_text(ptr - 1, ptr); break; case 'n': { const Char newline[] = {'\n'}; handler.on_text(newline, newline + 1); break; } case 't': { const Char tab[] = {'\t'}; handler.on_text(tab, tab + 1); break; } // Year: case 'Y': handler.on_year(numeric_system::standard); break; case 'y': handler.on_short_year(numeric_system::standard); break; case 'C': handler.on_century(numeric_system::standard); break; case 'G': handler.on_iso_week_based_year(); break; case 'g': handler.on_iso_week_based_short_year(); break; // Day of the week: case 'a': handler.on_abbr_weekday(); break; case 'A': handler.on_full_weekday(); break; case 'w': handler.on_dec0_weekday(numeric_system::standard); break; case 'u': handler.on_dec1_weekday(numeric_system::standard); break; // Month: case 'b': case 'h': handler.on_abbr_month(); break; case 'B': handler.on_full_month(); break; case 'm': handler.on_dec_month(numeric_system::standard); break; // Day of the year/month: case 'U': handler.on_dec0_week_of_year(numeric_system::standard); break; case 'W': handler.on_dec1_week_of_year(numeric_system::standard); break; case 'V': handler.on_iso_week_of_year(numeric_system::standard); break; case 'j': handler.on_day_of_year(); break; case 'd': handler.on_day_of_month(numeric_system::standard); break; case 'e': handler.on_day_of_month_space(numeric_system::standard); break; // Hour, minute, second: case 'H': handler.on_24_hour(numeric_system::standard, pad); break; case 'I': handler.on_12_hour(numeric_system::standard, pad); break; case 'M': handler.on_minute(numeric_system::standard, pad); break; case 'S': handler.on_second(numeric_system::standard, pad); break; // Other: case 'c': handler.on_datetime(numeric_system::standard); break; case 'x': handler.on_loc_date(numeric_system::standard); break; case 'X': handler.on_loc_time(numeric_system::standard); break; case 'D': handler.on_us_date(); break; case 'F': handler.on_iso_date(); break; case 'r': handler.on_12_hour_time(); break; case 'R': handler.on_24_hour_time(); break; case 'T': handler.on_iso_time(); break; case 'p': handler.on_am_pm(); break; case 'Q': handler.on_duration_value(); break; case 'q': handler.on_duration_unit(); break; case 'z': handler.on_utc_offset(numeric_system::standard); break; case 'Z': handler.on_tz_name(); break; // Alternative representation: case 'E': { if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'Y': handler.on_year(numeric_system::alternative); break; case 'y': handler.on_offset_year(); break; case 'C': handler.on_century(numeric_system::alternative); break; case 'c': handler.on_datetime(numeric_system::alternative); break; case 'x': handler.on_loc_date(numeric_system::alternative); break; case 'X': handler.on_loc_time(numeric_system::alternative); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; } case 'O': if (ptr == end) FMT_THROW(format_error("invalid format")); c = *ptr++; switch (c) { case 'y': handler.on_short_year(numeric_system::alternative); break; case 'm': handler.on_dec_month(numeric_system::alternative); break; case 'U': handler.on_dec0_week_of_year(numeric_system::alternative); break; case 'W': handler.on_dec1_week_of_year(numeric_system::alternative); break; case 'V': handler.on_iso_week_of_year(numeric_system::alternative); break; case 'd': handler.on_day_of_month(numeric_system::alternative); break; case 'e': handler.on_day_of_month_space(numeric_system::alternative); break; case 'w': handler.on_dec0_weekday(numeric_system::alternative); break; case 'u': handler.on_dec1_weekday(numeric_system::alternative); break; case 'H': handler.on_24_hour(numeric_system::alternative, pad); break; case 'I': handler.on_12_hour(numeric_system::alternative, pad); break; case 'M': handler.on_minute(numeric_system::alternative, pad); break; case 'S': handler.on_second(numeric_system::alternative, pad); break; case 'z': handler.on_utc_offset(numeric_system::alternative); break; default: FMT_THROW(format_error("invalid format")); } break; default: FMT_THROW(format_error("invalid format")); } begin = ptr; } if (begin != ptr) handler.on_text(begin, ptr); return ptr; } template struct null_chrono_spec_handler { FMT_CONSTEXPR void unsupported() { static_cast(this)->unsupported(); } FMT_CONSTEXPR void on_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_short_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_offset_year() { unsupported(); } FMT_CONSTEXPR void on_century(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_year() { unsupported(); } FMT_CONSTEXPR void on_iso_week_based_short_year() { unsupported(); } FMT_CONSTEXPR void on_abbr_weekday() { unsupported(); } FMT_CONSTEXPR void on_full_weekday() { unsupported(); } FMT_CONSTEXPR void on_dec0_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec1_weekday(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_abbr_month() { unsupported(); } FMT_CONSTEXPR void on_full_month() { unsupported(); } FMT_CONSTEXPR void on_dec_month(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_iso_week_of_year(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_day_of_year() { unsupported(); } FMT_CONSTEXPR void on_day_of_month(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_day_of_month_space(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_24_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_12_hour(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_minute(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_second(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_datetime(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_date(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_loc_time(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_us_date() { unsupported(); } FMT_CONSTEXPR void on_iso_date() { unsupported(); } FMT_CONSTEXPR void on_12_hour_time() { unsupported(); } FMT_CONSTEXPR void on_24_hour_time() { unsupported(); } FMT_CONSTEXPR void on_iso_time() { unsupported(); } FMT_CONSTEXPR void on_am_pm() { unsupported(); } FMT_CONSTEXPR void on_duration_value() { unsupported(); } FMT_CONSTEXPR void on_duration_unit() { unsupported(); } FMT_CONSTEXPR void on_utc_offset(numeric_system) { unsupported(); } FMT_CONSTEXPR void on_tz_name() { unsupported(); } }; struct tm_format_checker : null_chrono_spec_handler { FMT_NORETURN void unsupported() { FMT_THROW(format_error("no format")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_year(numeric_system) {} FMT_CONSTEXPR void on_short_year(numeric_system) {} FMT_CONSTEXPR void on_offset_year() {} FMT_CONSTEXPR void on_century(numeric_system) {} FMT_CONSTEXPR void on_iso_week_based_year() {} FMT_CONSTEXPR void on_iso_week_based_short_year() {} FMT_CONSTEXPR void on_abbr_weekday() {} FMT_CONSTEXPR void on_full_weekday() {} FMT_CONSTEXPR void on_dec0_weekday(numeric_system) {} FMT_CONSTEXPR void on_dec1_weekday(numeric_system) {} FMT_CONSTEXPR void on_abbr_month() {} FMT_CONSTEXPR void on_full_month() {} FMT_CONSTEXPR void on_dec_month(numeric_system) {} FMT_CONSTEXPR void on_dec0_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_dec1_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_iso_week_of_year(numeric_system) {} FMT_CONSTEXPR void on_day_of_year() {} FMT_CONSTEXPR void on_day_of_month(numeric_system) {} FMT_CONSTEXPR void on_day_of_month_space(numeric_system) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_datetime(numeric_system) {} FMT_CONSTEXPR void on_loc_date(numeric_system) {} FMT_CONSTEXPR void on_loc_time(numeric_system) {} FMT_CONSTEXPR void on_us_date() {} FMT_CONSTEXPR void on_iso_date() {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_utc_offset(numeric_system) {} FMT_CONSTEXPR void on_tz_name() {} }; inline const char* tm_wday_full_name(int wday) { static constexpr const char* full_name_list[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; return wday >= 0 && wday <= 6 ? full_name_list[wday] : "?"; } inline const char* tm_wday_short_name(int wday) { static constexpr const char* short_name_list[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; return wday >= 0 && wday <= 6 ? short_name_list[wday] : "???"; } inline const char* tm_mon_full_name(int mon) { static constexpr const char* full_name_list[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; return mon >= 0 && mon <= 11 ? full_name_list[mon] : "?"; } inline const char* tm_mon_short_name(int mon) { static constexpr const char* short_name_list[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", }; return mon >= 0 && mon <= 11 ? short_name_list[mon] : "???"; } template struct has_member_data_tm_gmtoff : std::false_type {}; template struct has_member_data_tm_gmtoff> : std::true_type {}; template struct has_member_data_tm_zone : std::false_type {}; template struct has_member_data_tm_zone> : std::true_type {}; #if FMT_USE_TZSET inline void tzset_once() { static bool init = []() -> bool { _tzset(); return true; }(); ignore_unused(init); } #endif // Converts value to Int and checks that it's in the range [0, upper). template ::value)> inline Int to_nonnegative_int(T value, Int upper) { FMT_ASSERT(std::is_unsigned::value || (value >= 0 && to_unsigned(value) <= to_unsigned(upper)), "invalid value"); (void)upper; return static_cast(value); } template ::value)> inline Int to_nonnegative_int(T value, Int upper) { if (value < 0 || value > static_cast(upper)) FMT_THROW(format_error("invalid value")); return static_cast(value); } constexpr long long pow10(std::uint32_t n) { return n == 0 ? 1 : 10 * pow10(n - 1); } // Counts the number of fractional digits in the range [0, 18] according to the // C++20 spec. If more than 18 fractional digits are required then returns 6 for // microseconds precision. template () / 10)> struct count_fractional_digits { static constexpr int value = Num % Den == 0 ? N : count_fractional_digits::value; }; // Base case that doesn't instantiate any more templates // in order to avoid overflow. template struct count_fractional_digits { static constexpr int value = (Num % Den == 0) ? N : 6; }; // Format subseconds which are given as an integer type with an appropriate // number of digits. template void write_fractional_seconds(OutputIt& out, Duration d, int precision = -1) { constexpr auto num_fractional_digits = count_fractional_digits::value; using subsecond_precision = std::chrono::duration< typename std::common_type::type, std::ratio<1, detail::pow10(num_fractional_digits)>>; const auto fractional = d - std::chrono::duration_cast(d); const auto subseconds = std::chrono::treat_as_floating_point< typename subsecond_precision::rep>::value ? fractional.count() : std::chrono::duration_cast(fractional).count(); auto n = static_cast>(subseconds); const int num_digits = detail::count_digits(n); int leading_zeroes = (std::max)(0, num_fractional_digits - num_digits); if (precision < 0) { FMT_ASSERT(!std::is_floating_point::value, ""); if (std::ratio_less::value) { *out++ = '.'; out = std::fill_n(out, leading_zeroes, '0'); out = format_decimal(out, n, num_digits).end; } } else { *out++ = '.'; leading_zeroes = (std::min)(leading_zeroes, precision); out = std::fill_n(out, leading_zeroes, '0'); int remaining = precision - leading_zeroes; if (remaining != 0 && remaining < num_digits) { n /= to_unsigned(detail::pow10(to_unsigned(num_digits - remaining))); out = format_decimal(out, n, remaining).end; return; } out = format_decimal(out, n, num_digits).end; remaining -= num_digits; out = std::fill_n(out, remaining, '0'); } } // Format subseconds which are given as a floating point type with an // appropriate number of digits. We cannot pass the Duration here, as we // explicitly need to pass the Rep value in the chrono_formatter. template void write_floating_seconds(memory_buffer& buf, Duration duration, int num_fractional_digits = -1) { using rep = typename Duration::rep; FMT_ASSERT(std::is_floating_point::value, ""); auto val = duration.count(); if (num_fractional_digits < 0) { // For `std::round` with fallback to `round`: // On some toolchains `std::round` is not available (e.g. GCC 6). using namespace std; num_fractional_digits = count_fractional_digits::value; if (num_fractional_digits < 6 && static_cast(round(val)) != val) num_fractional_digits = 6; } format_to(std::back_inserter(buf), FMT_STRING("{:.{}f}"), std::fmod(val * static_cast(Duration::period::num) / static_cast(Duration::period::den), static_cast(60)), num_fractional_digits); } template class tm_writer { private: static constexpr int days_per_week = 7; const std::locale& loc_; const bool is_classic_; OutputIt out_; const Duration* subsecs_; const std::tm& tm_; auto tm_sec() const noexcept -> int { FMT_ASSERT(tm_.tm_sec >= 0 && tm_.tm_sec <= 61, ""); return tm_.tm_sec; } auto tm_min() const noexcept -> int { FMT_ASSERT(tm_.tm_min >= 0 && tm_.tm_min <= 59, ""); return tm_.tm_min; } auto tm_hour() const noexcept -> int { FMT_ASSERT(tm_.tm_hour >= 0 && tm_.tm_hour <= 23, ""); return tm_.tm_hour; } auto tm_mday() const noexcept -> int { FMT_ASSERT(tm_.tm_mday >= 1 && tm_.tm_mday <= 31, ""); return tm_.tm_mday; } auto tm_mon() const noexcept -> int { FMT_ASSERT(tm_.tm_mon >= 0 && tm_.tm_mon <= 11, ""); return tm_.tm_mon; } auto tm_year() const noexcept -> long long { return 1900ll + tm_.tm_year; } auto tm_wday() const noexcept -> int { FMT_ASSERT(tm_.tm_wday >= 0 && tm_.tm_wday <= 6, ""); return tm_.tm_wday; } auto tm_yday() const noexcept -> int { FMT_ASSERT(tm_.tm_yday >= 0 && tm_.tm_yday <= 365, ""); return tm_.tm_yday; } auto tm_hour12() const noexcept -> int { const auto h = tm_hour(); const auto z = h < 12 ? h : h - 12; return z == 0 ? 12 : z; } // POSIX and the C Standard are unclear or inconsistent about what %C and %y // do if the year is negative or exceeds 9999. Use the convention that %C // concatenated with %y yields the same output as %Y, and that %Y contains at // least 4 characters, with more only if necessary. auto split_year_lower(long long year) const noexcept -> int { auto l = year % 100; if (l < 0) l = -l; // l in [0, 99] return static_cast(l); } // Algorithm: // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_the_week_number_from_a_month_and_day_of_the_month_or_ordinal_date auto iso_year_weeks(long long curr_year) const noexcept -> int { const auto prev_year = curr_year - 1; const auto curr_p = (curr_year + curr_year / 4 - curr_year / 100 + curr_year / 400) % days_per_week; const auto prev_p = (prev_year + prev_year / 4 - prev_year / 100 + prev_year / 400) % days_per_week; return 52 + ((curr_p == 4 || prev_p == 3) ? 1 : 0); } auto iso_week_num(int tm_yday, int tm_wday) const noexcept -> int { return (tm_yday + 11 - (tm_wday == 0 ? days_per_week : tm_wday)) / days_per_week; } auto tm_iso_week_year() const noexcept -> long long { const auto year = tm_year(); const auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return year - 1; if (w > iso_year_weeks(year)) return year + 1; return year; } auto tm_iso_week_of_year() const noexcept -> int { const auto year = tm_year(); const auto w = iso_week_num(tm_yday(), tm_wday()); if (w < 1) return iso_year_weeks(year - 1); if (w > iso_year_weeks(year)) return 1; return w; } void write1(int value) { *out_++ = static_cast('0' + to_unsigned(value) % 10); } void write2(int value) { const char* d = digits2(to_unsigned(value) % 100); *out_++ = *d++; *out_++ = *d; } void write2(int value, pad_type pad) { unsigned int v = to_unsigned(value) % 100; if (v >= 10) { const char* d = digits2(v); *out_++ = *d++; *out_++ = *d; } else { out_ = detail::write_padding(out_, pad); *out_++ = static_cast('0' + v); } } void write_year_extended(long long year) { // At least 4 characters. int width = 4; if (year < 0) { *out_++ = '-'; year = 0 - year; --width; } uint32_or_64_or_128_t n = to_unsigned(year); const int num_digits = count_digits(n); if (width > num_digits) out_ = std::fill_n(out_, width - num_digits, '0'); out_ = format_decimal(out_, n, num_digits).end; } void write_year(long long year) { if (year >= 0 && year < 10000) { write2(static_cast(year / 100)); write2(static_cast(year % 100)); } else { write_year_extended(year); } } void write_utc_offset(long offset, numeric_system ns) { if (offset < 0) { *out_++ = '-'; offset = -offset; } else { *out_++ = '+'; } offset /= 60; write2(static_cast(offset / 60)); if (ns != numeric_system::standard) *out_++ = ':'; write2(static_cast(offset % 60)); } template ::value)> void format_utc_offset_impl(const T& tm, numeric_system ns) { write_utc_offset(tm.tm_gmtoff, ns); } template ::value)> void format_utc_offset_impl(const T& tm, numeric_system ns) { #if defined(_WIN32) && defined(_UCRT) # if FMT_USE_TZSET tzset_once(); # endif long offset = 0; _get_timezone(&offset); if (tm.tm_isdst) { long dstbias = 0; _get_dstbias(&dstbias); offset += dstbias; } write_utc_offset(-offset, ns); #else if (ns == numeric_system::standard) return format_localized('z'); // Extract timezone offset from timezone conversion functions. std::tm gtm = tm; std::time_t gt = std::mktime(>m); std::tm ltm = gmtime(gt); std::time_t lt = std::mktime(<m); long offset = gt - lt; write_utc_offset(offset, ns); #endif } template ::value)> void format_tz_name_impl(const T& tm) { if (is_classic_) out_ = write_tm_str(out_, tm.tm_zone, loc_); else format_localized('Z'); } template ::value)> void format_tz_name_impl(const T&) { format_localized('Z'); } void format_localized(char format, char modifier = 0) { out_ = write(out_, tm_, loc_, format, modifier); } public: tm_writer(const std::locale& loc, OutputIt out, const std::tm& tm, const Duration* subsecs = nullptr) : loc_(loc), is_classic_(loc_ == get_classic_locale()), out_(out), subsecs_(subsecs), tm_(tm) {} OutputIt out() const { return out_; } FMT_CONSTEXPR void on_text(const Char* begin, const Char* end) { out_ = copy_str(begin, end, out_); } void on_abbr_weekday() { if (is_classic_) out_ = write(out_, tm_wday_short_name(tm_wday())); else format_localized('a'); } void on_full_weekday() { if (is_classic_) out_ = write(out_, tm_wday_full_name(tm_wday())); else format_localized('A'); } void on_dec0_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write1(tm_wday()); format_localized('w', 'O'); } void on_dec1_weekday(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write1(wday == 0 ? days_per_week : wday); } else { format_localized('u', 'O'); } } void on_abbr_month() { if (is_classic_) out_ = write(out_, tm_mon_short_name(tm_mon())); else format_localized('b'); } void on_full_month() { if (is_classic_) out_ = write(out_, tm_mon_full_name(tm_mon())); else format_localized('B'); } void on_datetime(numeric_system ns) { if (is_classic_) { on_abbr_weekday(); *out_++ = ' '; on_abbr_month(); *out_++ = ' '; on_day_of_month_space(numeric_system::standard); *out_++ = ' '; on_iso_time(); *out_++ = ' '; on_year(numeric_system::standard); } else { format_localized('c', ns == numeric_system::standard ? '\0' : 'E'); } } void on_loc_date(numeric_system ns) { if (is_classic_) on_us_date(); else format_localized('x', ns == numeric_system::standard ? '\0' : 'E'); } void on_loc_time(numeric_system ns) { if (is_classic_) on_iso_time(); else format_localized('X', ns == numeric_system::standard ? '\0' : 'E'); } void on_us_date() { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), to_unsigned(split_year_lower(tm_year())), '/'); out_ = copy_str(std::begin(buf), std::end(buf), out_); } void on_iso_date() { auto year = tm_year(); char buf[10]; size_t offset = 0; if (year >= 0 && year < 10000) { copy2(buf, digits2(static_cast(year / 100))); } else { offset = 4; write_year_extended(year); year = 0; } write_digit2_separated(buf + 2, static_cast(year % 100), to_unsigned(tm_mon() + 1), to_unsigned(tm_mday()), '-'); out_ = copy_str(std::begin(buf) + offset, std::end(buf), out_); } void on_utc_offset(numeric_system ns) { format_utc_offset_impl(tm_, ns); } void on_tz_name() { format_tz_name_impl(tm_); } void on_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write_year(tm_year()); format_localized('Y', 'E'); } void on_short_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(split_year_lower(tm_year())); format_localized('y', 'O'); } void on_offset_year() { if (is_classic_) return write2(split_year_lower(tm_year())); format_localized('y', 'E'); } void on_century(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto year = tm_year(); auto upper = year / 100; if (year >= -99 && year < 0) { // Zero upper on negative year. *out_++ = '-'; *out_++ = '0'; } else if (upper >= 0 && upper < 100) { write2(static_cast(upper)); } else { out_ = write(out_, upper); } } else { format_localized('C', 'E'); } } void on_dec_month(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mon() + 1); format_localized('m', 'O'); } void on_dec0_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2((tm_yday() + days_per_week - tm_wday()) / days_per_week); format_localized('U', 'O'); } void on_dec1_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto wday = tm_wday(); write2((tm_yday() + days_per_week - (wday == 0 ? (days_per_week - 1) : (wday - 1))) / days_per_week); } else { format_localized('W', 'O'); } } void on_iso_week_of_year(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_iso_week_of_year()); format_localized('V', 'O'); } void on_iso_week_based_year() { write_year(tm_iso_week_year()); } void on_iso_week_based_short_year() { write2(split_year_lower(tm_iso_week_year())); } void on_day_of_year() { auto yday = tm_yday() + 1; write1(yday / 100); write2(yday % 100); } void on_day_of_month(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_mday()); format_localized('d', 'O'); } void on_day_of_month_space(numeric_system ns) { if (is_classic_ || ns == numeric_system::standard) { auto mday = to_unsigned(tm_mday()) % 100; const char* d2 = digits2(mday); *out_++ = mday < 10 ? ' ' : d2[0]; *out_++ = d2[1]; } else { format_localized('e', 'O'); } } void on_24_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour(), pad); format_localized('H', 'O'); } void on_12_hour(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_hour12(), pad); format_localized('I', 'O'); } void on_minute(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) return write2(tm_min(), pad); format_localized('M', 'O'); } void on_second(numeric_system ns, pad_type pad) { if (is_classic_ || ns == numeric_system::standard) { write2(tm_sec(), pad); if (subsecs_) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, *subsecs_); if (buf.size() > 1) { // Remove the leading "0", write something like ".123". out_ = std::copy(buf.begin() + 1, buf.end(), out_); } } else { write_fractional_seconds(out_, *subsecs_); } } } else { // Currently no formatting of subseconds when a locale is set. format_localized('S', 'O'); } } void on_12_hour_time() { if (is_classic_) { char buf[8]; write_digit2_separated(buf, to_unsigned(tm_hour12()), to_unsigned(tm_min()), to_unsigned(tm_sec()), ':'); out_ = copy_str(std::begin(buf), std::end(buf), out_); *out_++ = ' '; on_am_pm(); } else { format_localized('r'); } } void on_24_hour_time() { write2(tm_hour()); *out_++ = ':'; write2(tm_min()); } void on_iso_time() { on_24_hour_time(); *out_++ = ':'; on_second(numeric_system::standard, pad_type::unspecified); } void on_am_pm() { if (is_classic_) { *out_++ = tm_hour() < 12 ? 'A' : 'P'; *out_++ = 'M'; } else { format_localized('p'); } } // These apply to chrono durations but not tm. void on_duration_value() {} void on_duration_unit() {} }; struct chrono_format_checker : null_chrono_spec_handler { bool has_precision_integral = false; FMT_NORETURN void unsupported() { FMT_THROW(format_error("no date")); } template FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR void on_24_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour(numeric_system, pad_type) {} FMT_CONSTEXPR void on_minute(numeric_system, pad_type) {} FMT_CONSTEXPR void on_second(numeric_system, pad_type) {} FMT_CONSTEXPR void on_12_hour_time() {} FMT_CONSTEXPR void on_24_hour_time() {} FMT_CONSTEXPR void on_iso_time() {} FMT_CONSTEXPR void on_am_pm() {} FMT_CONSTEXPR void on_duration_value() const { if (has_precision_integral) { FMT_THROW(format_error("precision not allowed for this argument type")); } } FMT_CONSTEXPR void on_duration_unit() {} }; template ::value&& has_isfinite::value)> inline bool isfinite(T) { return true; } template ::value)> inline T mod(T x, int y) { return x % static_cast(y); } template ::value)> inline T mod(T x, int y) { return std::fmod(x, static_cast(y)); } // If T is an integral type, maps T to its unsigned counterpart, otherwise // leaves it unchanged (unlike std::make_unsigned). template ::value> struct make_unsigned_or_unchanged { using type = T; }; template struct make_unsigned_or_unchanged { using type = typename std::make_unsigned::type; }; #if FMT_SAFE_DURATION_CAST // throwing version of safe_duration_cast template To fmt_safe_duration_cast(std::chrono::duration from) { int ec; To to = safe_duration_cast::safe_duration_cast(from, ec); if (ec) FMT_THROW(format_error("cannot format duration")); return to; } #endif template ::value)> inline std::chrono::duration get_milliseconds( std::chrono::duration d) { // this may overflow and/or the result may not fit in the // target type. #if FMT_SAFE_DURATION_CAST using CommonSecondsType = typename std::common_type::type; const auto d_as_common = fmt_safe_duration_cast(d); const auto d_as_whole_seconds = fmt_safe_duration_cast(d_as_common); // this conversion should be nonproblematic const auto diff = d_as_common - d_as_whole_seconds; const auto ms = fmt_safe_duration_cast>(diff); return ms; #else auto s = std::chrono::duration_cast(d); return std::chrono::duration_cast(d - s); #endif } template ::value)> OutputIt format_duration_value(OutputIt out, Rep val, int) { return write(out, val); } template ::value)> OutputIt format_duration_value(OutputIt out, Rep val, int precision) { auto specs = format_specs(); specs.precision = precision; specs.type = precision >= 0 ? presentation_type::fixed_lower : presentation_type::general_lower; return write(out, val, specs); } template OutputIt copy_unit(string_view unit, OutputIt out, Char) { return std::copy(unit.begin(), unit.end(), out); } template OutputIt copy_unit(string_view unit, OutputIt out, wchar_t) { // This works when wchar_t is UTF-32 because units only contain characters // that have the same representation in UTF-16 and UTF-32. utf8_to_utf16 u(unit); return std::copy(u.c_str(), u.c_str() + u.size(), out); } template OutputIt format_duration_unit(OutputIt out) { if (const char* unit = get_units()) return copy_unit(string_view(unit), out, Char()); *out++ = '['; out = write(out, Period::num); if (const_check(Period::den != 1)) { *out++ = '/'; out = write(out, Period::den); } *out++ = ']'; *out++ = 's'; return out; } class get_locale { private: union { std::locale locale_; }; bool has_locale_ = false; public: get_locale(bool localized, locale_ref loc) : has_locale_(localized) { if (localized) ::new (&locale_) std::locale(loc.template get()); } ~get_locale() { if (has_locale_) locale_.~locale(); } operator const std::locale&() const { return has_locale_ ? locale_ : get_classic_locale(); } }; template struct chrono_formatter { FormatContext& context; OutputIt out; int precision; bool localized = false; // rep is unsigned to avoid overflow. using rep = conditional_t::value && sizeof(Rep) < sizeof(int), unsigned, typename make_unsigned_or_unchanged::type>; rep val; using seconds = std::chrono::duration; seconds s; using milliseconds = std::chrono::duration; bool negative; using char_type = typename FormatContext::char_type; using tm_writer_type = tm_writer; chrono_formatter(FormatContext& ctx, OutputIt o, std::chrono::duration d) : context(ctx), out(o), val(static_cast(d.count())), negative(false) { if (d.count() < 0) { val = 0 - val; negative = true; } // this may overflow and/or the result may not fit in the // target type. #if FMT_SAFE_DURATION_CAST // might need checked conversion (rep!=Rep) auto tmpval = std::chrono::duration(val); s = fmt_safe_duration_cast(tmpval); #else s = std::chrono::duration_cast( std::chrono::duration(val)); #endif } // returns true if nan or inf, writes to out. bool handle_nan_inf() { if (isfinite(val)) { return false; } if (isnan(val)) { write_nan(); return true; } // must be +-inf if (val > 0) { write_pinf(); } else { write_ninf(); } return true; } Rep hour() const { return static_cast(mod((s.count() / 3600), 24)); } Rep hour12() const { Rep hour = static_cast(mod((s.count() / 3600), 12)); return hour <= 0 ? 12 : hour; } Rep minute() const { return static_cast(mod((s.count() / 60), 60)); } Rep second() const { return static_cast(mod(s.count(), 60)); } std::tm time() const { auto time = std::tm(); time.tm_hour = to_nonnegative_int(hour(), 24); time.tm_min = to_nonnegative_int(minute(), 60); time.tm_sec = to_nonnegative_int(second(), 60); return time; } void write_sign() { if (negative) { *out++ = '-'; negative = false; } } void write(Rep value, int width, pad_type pad = pad_type::unspecified) { write_sign(); if (isnan(value)) return write_nan(); uint32_or_64_or_128_t n = to_unsigned(to_nonnegative_int(value, max_value())); int num_digits = detail::count_digits(n); if (width > num_digits) { out = detail::write_padding(out, pad, width - num_digits); } out = format_decimal(out, n, num_digits).end; } void write_nan() { std::copy_n("nan", 3, out); } void write_pinf() { std::copy_n("inf", 3, out); } void write_ninf() { std::copy_n("-inf", 4, out); } template void format_tm(const tm& time, Callback cb, Args... args) { if (isnan(val)) return write_nan(); get_locale loc(localized, context.locale()); auto w = tm_writer_type(loc, out, time); (w.*cb)(args...); out = w.out(); } void on_text(const char_type* begin, const char_type* end) { std::copy(begin, end, out); } // These are not implemented because durations don't have date information. void on_abbr_weekday() {} void on_full_weekday() {} void on_dec0_weekday(numeric_system) {} void on_dec1_weekday(numeric_system) {} void on_abbr_month() {} void on_full_month() {} void on_datetime(numeric_system) {} void on_loc_date(numeric_system) {} void on_loc_time(numeric_system) {} void on_us_date() {} void on_iso_date() {} void on_utc_offset(numeric_system) {} void on_tz_name() {} void on_year(numeric_system) {} void on_short_year(numeric_system) {} void on_offset_year() {} void on_century(numeric_system) {} void on_iso_week_based_year() {} void on_iso_week_based_short_year() {} void on_dec_month(numeric_system) {} void on_dec0_week_of_year(numeric_system) {} void on_dec1_week_of_year(numeric_system) {} void on_iso_week_of_year(numeric_system) {} void on_day_of_year() {} void on_day_of_month(numeric_system) {} void on_day_of_month_space(numeric_system) {} void on_24_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour(), 24); format_tm(time, &tm_writer_type::on_24_hour, ns, pad); } void on_12_hour(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(hour12(), 2, pad); auto time = tm(); time.tm_hour = to_nonnegative_int(hour12(), 12); format_tm(time, &tm_writer_type::on_12_hour, ns, pad); } void on_minute(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) return write(minute(), 2, pad); auto time = tm(); time.tm_min = to_nonnegative_int(minute(), 60); format_tm(time, &tm_writer_type::on_minute, ns, pad); } void on_second(numeric_system ns, pad_type pad) { if (handle_nan_inf()) return; if (ns == numeric_system::standard) { if (std::is_floating_point::value) { auto buf = memory_buffer(); write_floating_seconds(buf, std::chrono::duration(val), precision); if (negative) *out++ = '-'; if (buf.size() < 2 || buf[1] == '.') { out = detail::write_padding(out, pad); } out = std::copy(buf.begin(), buf.end(), out); } else { write(second(), 2, pad); write_fractional_seconds( out, std::chrono::duration(val), precision); } return; } auto time = tm(); time.tm_sec = to_nonnegative_int(second(), 60); format_tm(time, &tm_writer_type::on_second, ns, pad); } void on_12_hour_time() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_12_hour_time); } void on_24_hour_time() { if (handle_nan_inf()) { *out++ = ':'; handle_nan_inf(); return; } write(hour(), 2); *out++ = ':'; write(minute(), 2); } void on_iso_time() { on_24_hour_time(); *out++ = ':'; if (handle_nan_inf()) return; on_second(numeric_system::standard, pad_type::unspecified); } void on_am_pm() { if (handle_nan_inf()) return; format_tm(time(), &tm_writer_type::on_am_pm); } void on_duration_value() { if (handle_nan_inf()) return; write_sign(); out = format_duration_value(out, val, precision); } void on_duration_unit() { out = format_duration_unit(out); } }; FMT_END_DETAIL_NAMESPACE #if defined(__cpp_lib_chrono) && __cpp_lib_chrono >= 201907 using weekday = std::chrono::weekday; #else // A fallback version of weekday. class weekday { private: unsigned char value; public: weekday() = default; explicit constexpr weekday(unsigned wd) noexcept : value(static_cast(wd != 7 ? wd : 0)) {} constexpr unsigned c_encoding() const noexcept { return value; } }; class year_month_day {}; #endif // A rudimentary weekday formatter. template struct formatter { private: bool localized = false; public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto begin = ctx.begin(), end = ctx.end(); if (begin != end && *begin == 'L') { ++begin; localized = true; } return begin; } template auto format(weekday wd, FormatContext& ctx) const -> decltype(ctx.out()) { auto time = std::tm(); time.tm_wday = static_cast(wd.c_encoding()); detail::get_locale loc(localized, ctx.locale()); auto w = detail::tm_writer(loc, ctx.out(), time); w.on_abbr_weekday(); return w.out(); } }; template struct formatter, Char> { private: format_specs specs; int precision = -1; using arg_ref_type = detail::arg_ref; arg_ref_type width_ref; arg_ref_type precision_ref; bool localized = false; basic_string_view format_str; using duration = std::chrono::duration; using iterator = typename basic_format_parse_context::iterator; struct parse_range { iterator begin; iterator end; }; FMT_CONSTEXPR parse_range do_parse(basic_format_parse_context& ctx) { auto begin = ctx.begin(), end = ctx.end(); if (begin == end || *begin == '}') return {begin, begin}; begin = detail::parse_align(begin, end, specs); if (begin == end) return {begin, begin}; begin = detail::parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); if (begin == end) return {begin, begin}; auto checker = detail::chrono_format_checker(); if (*begin == '.') { checker.has_precision_integral = !std::is_floating_point::value; begin = detail::parse_precision(begin, end, precision, precision_ref, ctx); } if (begin != end && *begin == 'L') { ++begin; localized = true; } end = detail::parse_chrono_format(begin, end, checker); return {begin, end}; } public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto range = do_parse(ctx); format_str = basic_string_view( &*range.begin, detail::to_unsigned(range.end - range.begin)); return range.end; } template auto format(const duration& d, FormatContext& ctx) const -> decltype(ctx.out()) { auto specs_copy = specs; auto precision_copy = precision; auto begin = format_str.begin(), end = format_str.end(); // As a possible future optimization, we could avoid extra copying if width // is not specified. basic_memory_buffer buf; auto out = std::back_inserter(buf); detail::handle_dynamic_spec(specs_copy.width, width_ref, ctx); detail::handle_dynamic_spec(precision_copy, precision_ref, ctx); if (begin == end || *begin == '}') { out = detail::format_duration_value(out, d.count(), precision_copy); detail::format_duration_unit(out); } else { detail::chrono_formatter f( ctx, out, d); f.precision = precision_copy; f.localized = localized; detail::parse_chrono_format(begin, end, f); } return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs_copy); } }; template struct formatter, Char> : formatter { FMT_CONSTEXPR formatter() { this->format_str = detail::string_literal{}; } template auto format(std::chrono::time_point val, FormatContext& ctx) const -> decltype(ctx.out()) { using period = typename Duration::period; if (period::num != 1 || period::den != 1 || std::is_floating_point::value) { const auto epoch = val.time_since_epoch(); auto subsecs = std::chrono::duration_cast( epoch - std::chrono::duration_cast(epoch)); if (subsecs.count() < 0) { auto second = std::chrono::duration_cast( std::chrono::seconds(1)); if (epoch.count() < ((Duration::min)() + second).count()) FMT_THROW(format_error("duration is too small")); subsecs += second; val -= second; } return formatter::do_format( gmtime(std::chrono::time_point_cast(val)), ctx, &subsecs); } return formatter::format( gmtime(std::chrono::time_point_cast(val)), ctx); } }; #if FMT_USE_LOCAL_TIME template struct formatter, Char> : formatter { FMT_CONSTEXPR formatter() { this->format_str = detail::string_literal{}; } template auto format(std::chrono::local_time val, FormatContext& ctx) const -> decltype(ctx.out()) { using period = typename Duration::period; if (period::num != 1 || period::den != 1 || std::is_floating_point::value) { const auto epoch = val.time_since_epoch(); const auto subsecs = std::chrono::duration_cast( epoch - std::chrono::duration_cast(epoch)); return formatter::do_format( localtime(std::chrono::time_point_cast(val)), ctx, &subsecs); } return formatter::format( localtime(std::chrono::time_point_cast(val)), ctx); } }; #endif #if FMT_USE_UTC_TIME template struct formatter, Char> : formatter, Char> { template auto format(std::chrono::time_point val, FormatContext& ctx) const -> decltype(ctx.out()) { return formatter< std::chrono::time_point, Char>::format(std::chrono::utc_clock::to_sys(val), ctx); } }; #endif template struct formatter { private: format_specs specs; detail::arg_ref width_ref; protected: basic_string_view format_str; FMT_CONSTEXPR auto do_parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { auto begin = ctx.begin(), end = ctx.end(); if (begin == end || *begin == '}') return begin; begin = detail::parse_align(begin, end, specs); if (begin == end) return end; begin = detail::parse_dynamic_spec(begin, end, specs.width, width_ref, ctx); if (begin == end) return end; end = detail::parse_chrono_format(begin, end, detail::tm_format_checker()); // Replace default format_str only if the new spec is not empty. if (end != begin) format_str = {begin, detail::to_unsigned(end - begin)}; return end; } template auto do_format(const std::tm& tm, FormatContext& ctx, const Duration* subsecs) const -> decltype(ctx.out()) { auto specs_copy = specs; basic_memory_buffer buf; auto out = std::back_inserter(buf); detail::handle_dynamic_spec(specs_copy.width, width_ref, ctx); const auto loc_ref = ctx.locale(); detail::get_locale loc(static_cast(loc_ref), loc_ref); auto w = detail::tm_writer(loc, out, tm, subsecs); detail::parse_chrono_format(format_str.begin(), format_str.end(), w); return detail::write( ctx.out(), basic_string_view(buf.data(), buf.size()), specs_copy); } public: FMT_CONSTEXPR auto parse(basic_format_parse_context& ctx) -> decltype(ctx.begin()) { return this->do_parse(ctx); } template auto format(const std::tm& tm, FormatContext& ctx) const -> decltype(ctx.out()) { return do_format(tm, ctx, nullptr); } }; FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_CHRONO_H_ btop-1.3.0/include/fmt/color.h000066400000000000000000000573401454653170500162020ustar00rootroot00000000000000// Formatting library for C++ - color support // // Copyright (c) 2018 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COLOR_H_ #define FMT_COLOR_H_ #include "format.h" FMT_BEGIN_NAMESPACE FMT_BEGIN_EXPORT enum class color : uint32_t { alice_blue = 0xF0F8FF, // rgb(240,248,255) antique_white = 0xFAEBD7, // rgb(250,235,215) aqua = 0x00FFFF, // rgb(0,255,255) aquamarine = 0x7FFFD4, // rgb(127,255,212) azure = 0xF0FFFF, // rgb(240,255,255) beige = 0xF5F5DC, // rgb(245,245,220) bisque = 0xFFE4C4, // rgb(255,228,196) black = 0x000000, // rgb(0,0,0) blanched_almond = 0xFFEBCD, // rgb(255,235,205) blue = 0x0000FF, // rgb(0,0,255) blue_violet = 0x8A2BE2, // rgb(138,43,226) brown = 0xA52A2A, // rgb(165,42,42) burly_wood = 0xDEB887, // rgb(222,184,135) cadet_blue = 0x5F9EA0, // rgb(95,158,160) chartreuse = 0x7FFF00, // rgb(127,255,0) chocolate = 0xD2691E, // rgb(210,105,30) coral = 0xFF7F50, // rgb(255,127,80) cornflower_blue = 0x6495ED, // rgb(100,149,237) cornsilk = 0xFFF8DC, // rgb(255,248,220) crimson = 0xDC143C, // rgb(220,20,60) cyan = 0x00FFFF, // rgb(0,255,255) dark_blue = 0x00008B, // rgb(0,0,139) dark_cyan = 0x008B8B, // rgb(0,139,139) dark_golden_rod = 0xB8860B, // rgb(184,134,11) dark_gray = 0xA9A9A9, // rgb(169,169,169) dark_green = 0x006400, // rgb(0,100,0) dark_khaki = 0xBDB76B, // rgb(189,183,107) dark_magenta = 0x8B008B, // rgb(139,0,139) dark_olive_green = 0x556B2F, // rgb(85,107,47) dark_orange = 0xFF8C00, // rgb(255,140,0) dark_orchid = 0x9932CC, // rgb(153,50,204) dark_red = 0x8B0000, // rgb(139,0,0) dark_salmon = 0xE9967A, // rgb(233,150,122) dark_sea_green = 0x8FBC8F, // rgb(143,188,143) dark_slate_blue = 0x483D8B, // rgb(72,61,139) dark_slate_gray = 0x2F4F4F, // rgb(47,79,79) dark_turquoise = 0x00CED1, // rgb(0,206,209) dark_violet = 0x9400D3, // rgb(148,0,211) deep_pink = 0xFF1493, // rgb(255,20,147) deep_sky_blue = 0x00BFFF, // rgb(0,191,255) dim_gray = 0x696969, // rgb(105,105,105) dodger_blue = 0x1E90FF, // rgb(30,144,255) fire_brick = 0xB22222, // rgb(178,34,34) floral_white = 0xFFFAF0, // rgb(255,250,240) forest_green = 0x228B22, // rgb(34,139,34) fuchsia = 0xFF00FF, // rgb(255,0,255) gainsboro = 0xDCDCDC, // rgb(220,220,220) ghost_white = 0xF8F8FF, // rgb(248,248,255) gold = 0xFFD700, // rgb(255,215,0) golden_rod = 0xDAA520, // rgb(218,165,32) gray = 0x808080, // rgb(128,128,128) green = 0x008000, // rgb(0,128,0) green_yellow = 0xADFF2F, // rgb(173,255,47) honey_dew = 0xF0FFF0, // rgb(240,255,240) hot_pink = 0xFF69B4, // rgb(255,105,180) indian_red = 0xCD5C5C, // rgb(205,92,92) indigo = 0x4B0082, // rgb(75,0,130) ivory = 0xFFFFF0, // rgb(255,255,240) khaki = 0xF0E68C, // rgb(240,230,140) lavender = 0xE6E6FA, // rgb(230,230,250) lavender_blush = 0xFFF0F5, // rgb(255,240,245) lawn_green = 0x7CFC00, // rgb(124,252,0) lemon_chiffon = 0xFFFACD, // rgb(255,250,205) light_blue = 0xADD8E6, // rgb(173,216,230) light_coral = 0xF08080, // rgb(240,128,128) light_cyan = 0xE0FFFF, // rgb(224,255,255) light_golden_rod_yellow = 0xFAFAD2, // rgb(250,250,210) light_gray = 0xD3D3D3, // rgb(211,211,211) light_green = 0x90EE90, // rgb(144,238,144) light_pink = 0xFFB6C1, // rgb(255,182,193) light_salmon = 0xFFA07A, // rgb(255,160,122) light_sea_green = 0x20B2AA, // rgb(32,178,170) light_sky_blue = 0x87CEFA, // rgb(135,206,250) light_slate_gray = 0x778899, // rgb(119,136,153) light_steel_blue = 0xB0C4DE, // rgb(176,196,222) light_yellow = 0xFFFFE0, // rgb(255,255,224) lime = 0x00FF00, // rgb(0,255,0) lime_green = 0x32CD32, // rgb(50,205,50) linen = 0xFAF0E6, // rgb(250,240,230) magenta = 0xFF00FF, // rgb(255,0,255) maroon = 0x800000, // rgb(128,0,0) medium_aquamarine = 0x66CDAA, // rgb(102,205,170) medium_blue = 0x0000CD, // rgb(0,0,205) medium_orchid = 0xBA55D3, // rgb(186,85,211) medium_purple = 0x9370DB, // rgb(147,112,219) medium_sea_green = 0x3CB371, // rgb(60,179,113) medium_slate_blue = 0x7B68EE, // rgb(123,104,238) medium_spring_green = 0x00FA9A, // rgb(0,250,154) medium_turquoise = 0x48D1CC, // rgb(72,209,204) medium_violet_red = 0xC71585, // rgb(199,21,133) midnight_blue = 0x191970, // rgb(25,25,112) mint_cream = 0xF5FFFA, // rgb(245,255,250) misty_rose = 0xFFE4E1, // rgb(255,228,225) moccasin = 0xFFE4B5, // rgb(255,228,181) navajo_white = 0xFFDEAD, // rgb(255,222,173) navy = 0x000080, // rgb(0,0,128) old_lace = 0xFDF5E6, // rgb(253,245,230) olive = 0x808000, // rgb(128,128,0) olive_drab = 0x6B8E23, // rgb(107,142,35) orange = 0xFFA500, // rgb(255,165,0) orange_red = 0xFF4500, // rgb(255,69,0) orchid = 0xDA70D6, // rgb(218,112,214) pale_golden_rod = 0xEEE8AA, // rgb(238,232,170) pale_green = 0x98FB98, // rgb(152,251,152) pale_turquoise = 0xAFEEEE, // rgb(175,238,238) pale_violet_red = 0xDB7093, // rgb(219,112,147) papaya_whip = 0xFFEFD5, // rgb(255,239,213) peach_puff = 0xFFDAB9, // rgb(255,218,185) peru = 0xCD853F, // rgb(205,133,63) pink = 0xFFC0CB, // rgb(255,192,203) plum = 0xDDA0DD, // rgb(221,160,221) powder_blue = 0xB0E0E6, // rgb(176,224,230) purple = 0x800080, // rgb(128,0,128) rebecca_purple = 0x663399, // rgb(102,51,153) red = 0xFF0000, // rgb(255,0,0) rosy_brown = 0xBC8F8F, // rgb(188,143,143) royal_blue = 0x4169E1, // rgb(65,105,225) saddle_brown = 0x8B4513, // rgb(139,69,19) salmon = 0xFA8072, // rgb(250,128,114) sandy_brown = 0xF4A460, // rgb(244,164,96) sea_green = 0x2E8B57, // rgb(46,139,87) sea_shell = 0xFFF5EE, // rgb(255,245,238) sienna = 0xA0522D, // rgb(160,82,45) silver = 0xC0C0C0, // rgb(192,192,192) sky_blue = 0x87CEEB, // rgb(135,206,235) slate_blue = 0x6A5ACD, // rgb(106,90,205) slate_gray = 0x708090, // rgb(112,128,144) snow = 0xFFFAFA, // rgb(255,250,250) spring_green = 0x00FF7F, // rgb(0,255,127) steel_blue = 0x4682B4, // rgb(70,130,180) tan = 0xD2B48C, // rgb(210,180,140) teal = 0x008080, // rgb(0,128,128) thistle = 0xD8BFD8, // rgb(216,191,216) tomato = 0xFF6347, // rgb(255,99,71) turquoise = 0x40E0D0, // rgb(64,224,208) violet = 0xEE82EE, // rgb(238,130,238) wheat = 0xF5DEB3, // rgb(245,222,179) white = 0xFFFFFF, // rgb(255,255,255) white_smoke = 0xF5F5F5, // rgb(245,245,245) yellow = 0xFFFF00, // rgb(255,255,0) yellow_green = 0x9ACD32 // rgb(154,205,50) }; // enum class color enum class terminal_color : uint8_t { black = 30, red, green, yellow, blue, magenta, cyan, white, bright_black = 90, bright_red, bright_green, bright_yellow, bright_blue, bright_magenta, bright_cyan, bright_white }; enum class emphasis : uint8_t { bold = 1, faint = 1 << 1, italic = 1 << 2, underline = 1 << 3, blink = 1 << 4, reverse = 1 << 5, conceal = 1 << 6, strikethrough = 1 << 7, }; // rgb is a struct for red, green and blue colors. // Using the name "rgb" makes some editors show the color in a tooltip. struct rgb { FMT_CONSTEXPR rgb() : r(0), g(0), b(0) {} FMT_CONSTEXPR rgb(uint8_t r_, uint8_t g_, uint8_t b_) : r(r_), g(g_), b(b_) {} FMT_CONSTEXPR rgb(uint32_t hex) : r((hex >> 16) & 0xFF), g((hex >> 8) & 0xFF), b(hex & 0xFF) {} FMT_CONSTEXPR rgb(color hex) : r((uint32_t(hex) >> 16) & 0xFF), g((uint32_t(hex) >> 8) & 0xFF), b(uint32_t(hex) & 0xFF) {} uint8_t r; uint8_t g; uint8_t b; }; FMT_BEGIN_DETAIL_NAMESPACE // color is a struct of either a rgb color or a terminal color. struct color_type { FMT_CONSTEXPR color_type() noexcept : is_rgb(), value{} {} FMT_CONSTEXPR color_type(color rgb_color) noexcept : is_rgb(true), value{} { value.rgb_color = static_cast(rgb_color); } FMT_CONSTEXPR color_type(rgb rgb_color) noexcept : is_rgb(true), value{} { value.rgb_color = (static_cast(rgb_color.r) << 16) | (static_cast(rgb_color.g) << 8) | rgb_color.b; } FMT_CONSTEXPR color_type(terminal_color term_color) noexcept : is_rgb(), value{} { value.term_color = static_cast(term_color); } bool is_rgb; union color_union { uint8_t term_color; uint32_t rgb_color; } value; }; FMT_END_DETAIL_NAMESPACE /** A text style consisting of foreground and background colors and emphasis. */ class text_style { public: FMT_CONSTEXPR text_style(emphasis em = emphasis()) noexcept : set_foreground_color(), set_background_color(), ems(em) {} FMT_CONSTEXPR text_style& operator|=(const text_style& rhs) { if (!set_foreground_color) { set_foreground_color = rhs.set_foreground_color; foreground_color = rhs.foreground_color; } else if (rhs.set_foreground_color) { if (!foreground_color.is_rgb || !rhs.foreground_color.is_rgb) FMT_THROW(format_error("can't OR a terminal color")); foreground_color.value.rgb_color |= rhs.foreground_color.value.rgb_color; } if (!set_background_color) { set_background_color = rhs.set_background_color; background_color = rhs.background_color; } else if (rhs.set_background_color) { if (!background_color.is_rgb || !rhs.background_color.is_rgb) FMT_THROW(format_error("can't OR a terminal color")); background_color.value.rgb_color |= rhs.background_color.value.rgb_color; } ems = static_cast(static_cast(ems) | static_cast(rhs.ems)); return *this; } friend FMT_CONSTEXPR text_style operator|(text_style lhs, const text_style& rhs) { return lhs |= rhs; } FMT_CONSTEXPR bool has_foreground() const noexcept { return set_foreground_color; } FMT_CONSTEXPR bool has_background() const noexcept { return set_background_color; } FMT_CONSTEXPR bool has_emphasis() const noexcept { return static_cast(ems) != 0; } FMT_CONSTEXPR detail::color_type get_foreground() const noexcept { FMT_ASSERT(has_foreground(), "no foreground specified for this style"); return foreground_color; } FMT_CONSTEXPR detail::color_type get_background() const noexcept { FMT_ASSERT(has_background(), "no background specified for this style"); return background_color; } FMT_CONSTEXPR emphasis get_emphasis() const noexcept { FMT_ASSERT(has_emphasis(), "no emphasis specified for this style"); return ems; } private: FMT_CONSTEXPR text_style(bool is_foreground, detail::color_type text_color) noexcept : set_foreground_color(), set_background_color(), ems() { if (is_foreground) { foreground_color = text_color; set_foreground_color = true; } else { background_color = text_color; set_background_color = true; } } friend FMT_CONSTEXPR text_style fg(detail::color_type foreground) noexcept; friend FMT_CONSTEXPR text_style bg(detail::color_type background) noexcept; detail::color_type foreground_color; detail::color_type background_color; bool set_foreground_color; bool set_background_color; emphasis ems; }; /** Creates a text style from the foreground (text) color. */ FMT_CONSTEXPR inline text_style fg(detail::color_type foreground) noexcept { return text_style(true, foreground); } /** Creates a text style from the background color. */ FMT_CONSTEXPR inline text_style bg(detail::color_type background) noexcept { return text_style(false, background); } FMT_CONSTEXPR inline text_style operator|(emphasis lhs, emphasis rhs) noexcept { return text_style(lhs) | rhs; } FMT_BEGIN_DETAIL_NAMESPACE template struct ansi_color_escape { FMT_CONSTEXPR ansi_color_escape(detail::color_type text_color, const char* esc) noexcept { // If we have a terminal color, we need to output another escape code // sequence. if (!text_color.is_rgb) { bool is_background = esc == string_view("\x1b[48;2;"); uint32_t value = text_color.value.term_color; // Background ASCII codes are the same as the foreground ones but with // 10 more. if (is_background) value += 10u; size_t index = 0; buffer[index++] = static_cast('\x1b'); buffer[index++] = static_cast('['); if (value >= 100u) { buffer[index++] = static_cast('1'); value %= 100u; } buffer[index++] = static_cast('0' + value / 10u); buffer[index++] = static_cast('0' + value % 10u); buffer[index++] = static_cast('m'); buffer[index++] = static_cast('\0'); return; } for (int i = 0; i < 7; i++) { buffer[i] = static_cast(esc[i]); } rgb color(text_color.value.rgb_color); to_esc(color.r, buffer + 7, ';'); to_esc(color.g, buffer + 11, ';'); to_esc(color.b, buffer + 15, 'm'); buffer[19] = static_cast(0); } FMT_CONSTEXPR ansi_color_escape(emphasis em) noexcept { uint8_t em_codes[num_emphases] = {}; if (has_emphasis(em, emphasis::bold)) em_codes[0] = 1; if (has_emphasis(em, emphasis::faint)) em_codes[1] = 2; if (has_emphasis(em, emphasis::italic)) em_codes[2] = 3; if (has_emphasis(em, emphasis::underline)) em_codes[3] = 4; if (has_emphasis(em, emphasis::blink)) em_codes[4] = 5; if (has_emphasis(em, emphasis::reverse)) em_codes[5] = 7; if (has_emphasis(em, emphasis::conceal)) em_codes[6] = 8; if (has_emphasis(em, emphasis::strikethrough)) em_codes[7] = 9; size_t index = 0; for (size_t i = 0; i < num_emphases; ++i) { if (!em_codes[i]) continue; buffer[index++] = static_cast('\x1b'); buffer[index++] = static_cast('['); buffer[index++] = static_cast('0' + em_codes[i]); buffer[index++] = static_cast('m'); } buffer[index++] = static_cast(0); } FMT_CONSTEXPR operator const Char*() const noexcept { return buffer; } FMT_CONSTEXPR const Char* begin() const noexcept { return buffer; } FMT_CONSTEXPR_CHAR_TRAITS const Char* end() const noexcept { return buffer + std::char_traits::length(buffer); } private: static constexpr size_t num_emphases = 8; Char buffer[7u + 3u * num_emphases + 1u]; static FMT_CONSTEXPR void to_esc(uint8_t c, Char* out, char delimiter) noexcept { out[0] = static_cast('0' + c / 100); out[1] = static_cast('0' + c / 10 % 10); out[2] = static_cast('0' + c % 10); out[3] = static_cast(delimiter); } static FMT_CONSTEXPR bool has_emphasis(emphasis em, emphasis mask) noexcept { return static_cast(em) & static_cast(mask); } }; template FMT_CONSTEXPR ansi_color_escape make_foreground_color( detail::color_type foreground) noexcept { return ansi_color_escape(foreground, "\x1b[38;2;"); } template FMT_CONSTEXPR ansi_color_escape make_background_color( detail::color_type background) noexcept { return ansi_color_escape(background, "\x1b[48;2;"); } template FMT_CONSTEXPR ansi_color_escape make_emphasis(emphasis em) noexcept { return ansi_color_escape(em); } template inline void reset_color(buffer& buffer) { auto reset_color = string_view("\x1b[0m"); buffer.append(reset_color.begin(), reset_color.end()); } template struct styled_arg { const T& value; text_style style; }; template void vformat_to(buffer& buf, const text_style& ts, basic_string_view format_str, basic_format_args>> args) { bool has_style = false; if (ts.has_emphasis()) { has_style = true; auto emphasis = detail::make_emphasis(ts.get_emphasis()); buf.append(emphasis.begin(), emphasis.end()); } if (ts.has_foreground()) { has_style = true; auto foreground = detail::make_foreground_color(ts.get_foreground()); buf.append(foreground.begin(), foreground.end()); } if (ts.has_background()) { has_style = true; auto background = detail::make_background_color(ts.get_background()); buf.append(background.begin(), background.end()); } detail::vformat_to(buf, format_str, args, {}); if (has_style) detail::reset_color(buf); } FMT_END_DETAIL_NAMESPACE inline void vprint(std::FILE* f, const text_style& ts, string_view fmt, format_args args) { // Legacy wide streams are not supported. auto buf = memory_buffer(); detail::vformat_to(buf, ts, fmt, args); if (detail::is_utf8()) { detail::print(f, string_view(buf.begin(), buf.size())); return; } buf.push_back('\0'); int result = std::fputs(buf.data(), f); if (result < 0) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } /** \rst Formats a string and prints it to the specified file stream using ANSI escape sequences to specify text formatting. **Example**:: fmt::print(fmt::emphasis::bold | fg(fmt::color::red), "Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template ::value)> void print(std::FILE* f, const text_style& ts, const S& format_str, const Args&... args) { vprint(f, ts, format_str, fmt::make_format_args>>(args...)); } /** \rst Formats a string and prints it to stdout using ANSI escape sequences to specify text formatting. **Example**:: fmt::print(fmt::emphasis::bold | fg(fmt::color::red), "Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template ::value)> void print(const text_style& ts, const S& format_str, const Args&... args) { return print(stdout, ts, format_str, args...); } template > inline std::basic_string vformat( const text_style& ts, const S& format_str, basic_format_args>> args) { basic_memory_buffer buf; detail::vformat_to(buf, ts, detail::to_string_view(format_str), args); return fmt::to_string(buf); } /** \rst Formats arguments and returns the result as a string using ANSI escape sequences to specify text formatting. **Example**:: #include std::string message = fmt::format(fmt::emphasis::bold | fg(fmt::color::red), "The answer is {}", 42); \endrst */ template > inline std::basic_string format(const text_style& ts, const S& format_str, const Args&... args) { return fmt::vformat(ts, detail::to_string_view(format_str), fmt::make_format_args>(args...)); } /** Formats a string with the given text_style and writes the output to ``out``. */ template ::value)> OutputIt vformat_to( OutputIt out, const text_style& ts, basic_string_view format_str, basic_format_args>> args) { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, ts, format_str, args); return detail::get_iterator(buf, out); } /** \rst Formats arguments with the given text_style, writes the result to the output iterator ``out`` and returns the iterator past the end of the output range. **Example**:: std::vector out; fmt::format_to(std::back_inserter(out), fmt::emphasis::bold | fg(fmt::color::red), "{}", 42); \endrst */ template >::value&& detail::is_string::value> inline auto format_to(OutputIt out, const text_style& ts, const S& format_str, Args&&... args) -> typename std::enable_if::type { return vformat_to(out, ts, detail::to_string_view(format_str), fmt::make_format_args>>(args...)); } template struct formatter, Char> : formatter { template auto format(const detail::styled_arg& arg, FormatContext& ctx) const -> decltype(ctx.out()) { const auto& ts = arg.style; const auto& value = arg.value; auto out = ctx.out(); bool has_style = false; if (ts.has_emphasis()) { has_style = true; auto emphasis = detail::make_emphasis(ts.get_emphasis()); out = std::copy(emphasis.begin(), emphasis.end(), out); } if (ts.has_foreground()) { has_style = true; auto foreground = detail::make_foreground_color(ts.get_foreground()); out = std::copy(foreground.begin(), foreground.end(), out); } if (ts.has_background()) { has_style = true; auto background = detail::make_background_color(ts.get_background()); out = std::copy(background.begin(), background.end(), out); } out = formatter::format(value, ctx); if (has_style) { auto reset_color = string_view("\x1b[0m"); out = std::copy(reset_color.begin(), reset_color.end(), out); } return out; } }; /** \rst Returns an argument that will be formatted using ANSI escape sequences, to be used in a formatting function. **Example**:: fmt::print("Elapsed time: {0:.2f} seconds", fmt::styled(1.23, fmt::fg(fmt::color::green) | fmt::bg(fmt::color::blue))); \endrst */ template FMT_CONSTEXPR auto styled(const T& value, text_style ts) -> detail::styled_arg> { return detail::styled_arg>{value, ts}; } FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COLOR_H_ btop-1.3.0/include/fmt/compile.h000066400000000000000000000510551454653170500165110ustar00rootroot00000000000000// Formatting library for C++ - experimental format string compilation // // Copyright (c) 2012 - present, Victor Zverovich and fmt contributors // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_COMPILE_H_ #define FMT_COMPILE_H_ #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { template FMT_CONSTEXPR inline counting_iterator copy_str(InputIt begin, InputIt end, counting_iterator it) { return it + (end - begin); } template class truncating_iterator_base { protected: OutputIt out_; size_t limit_; size_t count_ = 0; truncating_iterator_base() : out_(), limit_(0) {} truncating_iterator_base(OutputIt out, size_t limit) : out_(out), limit_(limit) {} public: using iterator_category = std::output_iterator_tag; using value_type = typename std::iterator_traits::value_type; using difference_type = std::ptrdiff_t; using pointer = void; using reference = void; FMT_UNCHECKED_ITERATOR(truncating_iterator_base); OutputIt base() const { return out_; } size_t count() const { return count_; } }; // An output iterator that truncates the output and counts the number of objects // written to it. template ::value_type>::type> class truncating_iterator; template class truncating_iterator : public truncating_iterator_base { mutable typename truncating_iterator_base::value_type blackhole_; public: using value_type = typename truncating_iterator_base::value_type; truncating_iterator() = default; truncating_iterator(OutputIt out, size_t limit) : truncating_iterator_base(out, limit) {} truncating_iterator& operator++() { if (this->count_++ < this->limit_) ++this->out_; return *this; } truncating_iterator operator++(int) { auto it = *this; ++*this; return it; } value_type& operator*() const { return this->count_ < this->limit_ ? *this->out_ : blackhole_; } }; template class truncating_iterator : public truncating_iterator_base { public: truncating_iterator() = default; truncating_iterator(OutputIt out, size_t limit) : truncating_iterator_base(out, limit) {} template truncating_iterator& operator=(T val) { if (this->count_++ < this->limit_) *this->out_++ = val; return *this; } truncating_iterator& operator++() { return *this; } truncating_iterator& operator++(int) { return *this; } truncating_iterator& operator*() { return *this; } }; // A compile-time string which is compiled into fast formatting code. class compiled_string {}; template struct is_compiled_string : std::is_base_of {}; /** \rst Converts a string literal *s* into a format string that will be parsed at compile time and converted into efficient formatting code. Requires C++17 ``constexpr if`` compiler support. **Example**:: // Converts 42 into std::string using the most efficient method and no // runtime format string processing. std::string s = fmt::format(FMT_COMPILE("{}"), 42); \endrst */ #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) # define FMT_COMPILE(s) \ FMT_STRING_IMPL(s, fmt::detail::compiled_string, explicit) #else # define FMT_COMPILE(s) FMT_STRING(s) #endif #if FMT_USE_NONTYPE_TEMPLATE_ARGS template Str> struct udl_compiled_string : compiled_string { using char_type = Char; explicit constexpr operator basic_string_view() const { return {Str.data, N - 1}; } }; #endif template const T& first(const T& value, const Tail&...) { return value; } #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template struct type_list {}; // Returns a reference to the argument at index N from [first, rest...]. template constexpr const auto& get([[maybe_unused]] const T& first, [[maybe_unused]] const Args&... rest) { static_assert(N < 1 + sizeof...(Args), "index is out of bounds"); if constexpr (N == 0) return first; else return detail::get(rest...); } template constexpr int get_arg_index_by_name(basic_string_view name, type_list) { return get_arg_index_by_name(name); } template struct get_type_impl; template struct get_type_impl> { using type = remove_cvref_t(std::declval()...))>; }; template using get_type = typename get_type_impl::type; template struct is_compiled_format : std::false_type {}; template struct text { basic_string_view data; using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&...) const { return write(out, data); } }; template struct is_compiled_format> : std::true_type {}; template constexpr text make_text(basic_string_view s, size_t pos, size_t size) { return {{&s[pos], size}}; } template struct code_unit { Char value; using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&...) const { return write(out, value); } }; // This ensures that the argument type is convertible to `const T&`. template constexpr const T& get_arg_checked(const Args&... args) { const auto& arg = detail::get(args...); if constexpr (detail::is_named_arg>()) { return arg.value; } else { return arg; } } template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N. template struct field { using char_type = Char; template constexpr OutputIt format(OutputIt out, const Args&... args) const { return write(out, get_arg_checked(args...)); } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument with name. template struct runtime_named_field { using char_type = Char; basic_string_view name; template constexpr static bool try_format_argument( OutputIt& out, // [[maybe_unused]] due to unused-but-set-parameter warning in GCC 7,8,9 [[maybe_unused]] basic_string_view arg_name, const T& arg) { if constexpr (is_named_arg::type>::value) { if (arg_name == arg.name) { out = write(out, arg.value); return true; } } return false; } template constexpr OutputIt format(OutputIt out, const Args&... args) const { bool found = (try_format_argument(out, name, args) || ...); if (!found) { FMT_THROW(format_error("argument with specified name is not found")); } return out; } }; template struct is_compiled_format> : std::true_type {}; // A replacement field that refers to argument N and has format specifiers. template struct spec_field { using char_type = Char; formatter fmt; template constexpr FMT_INLINE OutputIt format(OutputIt out, const Args&... args) const { const auto& vargs = fmt::make_format_args>(args...); basic_format_context ctx(out, vargs); return fmt.format(get_arg_checked(args...), ctx); } }; template struct is_compiled_format> : std::true_type {}; template struct concat { L lhs; R rhs; using char_type = typename L::char_type; template constexpr OutputIt format(OutputIt out, const Args&... args) const { out = lhs.format(out, args...); return rhs.format(out, args...); } }; template struct is_compiled_format> : std::true_type {}; template constexpr concat make_concat(L lhs, R rhs) { return {lhs, rhs}; } struct unknown_format {}; template constexpr size_t parse_text(basic_string_view str, size_t pos) { for (size_t size = str.size(); pos != size; ++pos) { if (str[pos] == '{' || str[pos] == '}') break; } return pos; } template constexpr auto compile_format_string(S format_str); template constexpr auto parse_tail(T head, S format_str) { if constexpr (POS != basic_string_view(format_str).size()) { constexpr auto tail = compile_format_string(format_str); if constexpr (std::is_same, unknown_format>()) return tail; else return make_concat(head, tail); } else { return head; } } template struct parse_specs_result { formatter fmt; size_t end; int next_arg_id; }; enum { manual_indexing_id = -1 }; template constexpr parse_specs_result parse_specs(basic_string_view str, size_t pos, int next_arg_id) { str.remove_prefix(pos); auto ctx = compile_parse_context(str, max_value(), nullptr, next_arg_id); auto f = formatter(); auto end = f.parse(ctx); return {f, pos + fmt::detail::to_unsigned(end - str.data()), next_arg_id == 0 ? manual_indexing_id : ctx.next_arg_id()}; } template struct arg_id_handler { arg_ref arg_id; constexpr int on_auto() { FMT_ASSERT(false, "handler cannot be used with automatic indexing"); return 0; } constexpr int on_index(int id) { arg_id = arg_ref(id); return 0; } constexpr int on_name(basic_string_view id) { arg_id = arg_ref(id); return 0; } }; template struct parse_arg_id_result { arg_ref arg_id; const Char* arg_id_end; }; template constexpr auto parse_arg_id(const Char* begin, const Char* end) { auto handler = arg_id_handler{arg_ref{}}; auto arg_id_end = parse_arg_id(begin, end, handler); return parse_arg_id_result{handler.arg_id, arg_id_end}; } template struct field_type { using type = remove_cvref_t; }; template struct field_type::value>> { using type = remove_cvref_t; }; template constexpr auto parse_replacement_field_then_tail(S format_str) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(format_str); constexpr char_type c = END_POS != str.size() ? str[END_POS] : char_type(); if constexpr (c == '}') { return parse_tail( field::type, ARG_INDEX>(), format_str); } else if constexpr (c != ':') { FMT_THROW(format_error("expected ':'")); } else { constexpr auto result = parse_specs::type>( str, END_POS + 1, NEXT_ID == manual_indexing_id ? 0 : NEXT_ID); if constexpr (result.end >= str.size() || str[result.end] != '}') { FMT_THROW(format_error("expected '}'")); return 0; } else { return parse_tail( spec_field::type, ARG_INDEX>{ result.fmt}, format_str); } } } // Compiles a non-empty format string and returns the compiled representation // or unknown_format() on unrecognized input. template constexpr auto compile_format_string(S format_str) { using char_type = typename S::char_type; constexpr auto str = basic_string_view(format_str); if constexpr (str[POS] == '{') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '{' in format string")); if constexpr (str[POS + 1] == '{') { return parse_tail(make_text(str, POS, 1), format_str); } else if constexpr (str[POS + 1] == '}' || str[POS + 1] == ':') { static_assert(ID != manual_indexing_id, "cannot switch from manual to automatic argument indexing"); constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail, Args, POS + 1, ID, next_id>( format_str); } else { constexpr auto arg_id_result = parse_arg_id(str.data() + POS + 1, str.data() + str.size()); constexpr auto arg_id_end_pos = arg_id_result.arg_id_end - str.data(); constexpr char_type c = arg_id_end_pos != str.size() ? str[arg_id_end_pos] : char_type(); static_assert(c == '}' || c == ':', "missing '}' in format string"); if constexpr (arg_id_result.arg_id.kind == arg_id_kind::index) { static_assert( ID == manual_indexing_id || ID == 0, "cannot switch from automatic to manual argument indexing"); constexpr auto arg_index = arg_id_result.arg_id.val.index; return parse_replacement_field_then_tail, Args, arg_id_end_pos, arg_index, manual_indexing_id>( format_str); } else if constexpr (arg_id_result.arg_id.kind == arg_id_kind::name) { constexpr auto arg_index = get_arg_index_by_name(arg_id_result.arg_id.val.name, Args{}); if constexpr (arg_index >= 0) { constexpr auto next_id = ID != manual_indexing_id ? ID + 1 : manual_indexing_id; return parse_replacement_field_then_tail< decltype(get_type::value), Args, arg_id_end_pos, arg_index, next_id>(format_str); } else if constexpr (c == '}') { return parse_tail( runtime_named_field{arg_id_result.arg_id.val.name}, format_str); } else if constexpr (c == ':') { return unknown_format(); // no type info for specs parsing } } } } else if constexpr (str[POS] == '}') { if constexpr (POS + 1 == str.size()) FMT_THROW(format_error("unmatched '}' in format string")); return parse_tail(make_text(str, POS, 1), format_str); } else { constexpr auto end = parse_text(str, POS + 1); if constexpr (end - POS > 1) { return parse_tail(make_text(str, POS, end - POS), format_str); } else { return parse_tail(code_unit{str[POS]}, format_str); } } } template ::value)> constexpr auto compile(S format_str) { constexpr auto str = basic_string_view(format_str); if constexpr (str.size() == 0) { return detail::make_text(str, 0, 0); } else { constexpr auto result = detail::compile_format_string, 0, 0>( format_str); return result; } } #endif // defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) } // namespace detail FMT_BEGIN_EXPORT #if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction) template ::value)> FMT_INLINE std::basic_string format(const CompiledFormat& cf, const Args&... args) { auto s = std::basic_string(); cf.format(std::back_inserter(s), args...); return s; } template ::value)> constexpr FMT_INLINE OutputIt format_to(OutputIt out, const CompiledFormat& cf, const Args&... args) { return cf.format(out, args...); } template ::value)> FMT_INLINE std::basic_string format(const S&, Args&&... args) { if constexpr (std::is_same::value) { constexpr auto str = basic_string_view(S()); if constexpr (str.size() == 2 && str[0] == '{' && str[1] == '}') { const auto& first = detail::first(args...); if constexpr (detail::is_named_arg< remove_cvref_t>::value) { return fmt::to_string(first.value); } else { return fmt::to_string(first); } } } constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format( static_cast>(S()), std::forward(args)...); } else { return fmt::format(compiled, std::forward(args)...); } } template ::value)> FMT_CONSTEXPR OutputIt format_to(OutputIt out, const S&, Args&&... args) { constexpr auto compiled = detail::compile(S()); if constexpr (std::is_same, detail::unknown_format>()) { return fmt::format_to( out, static_cast>(S()), std::forward(args)...); } else { return fmt::format_to(out, compiled, std::forward(args)...); } } #endif template ::value)> format_to_n_result format_to_n(OutputIt out, size_t n, const S& format_str, Args&&... args) { auto it = fmt::format_to(detail::truncating_iterator(out, n), format_str, std::forward(args)...); return {it.base(), it.count()}; } template ::value)> FMT_CONSTEXPR20 size_t formatted_size(const S& format_str, const Args&... args) { return fmt::format_to(detail::counting_iterator(), format_str, args...) .count(); } template ::value)> void print(std::FILE* f, const S& format_str, const Args&... args) { memory_buffer buffer; fmt::format_to(std::back_inserter(buffer), format_str, args...); detail::print(f, {buffer.data(), buffer.size()}); } template ::value)> void print(const S& format_str, const Args&... args) { print(stdout, format_str, args...); } #if FMT_USE_NONTYPE_TEMPLATE_ARGS inline namespace literals { template constexpr auto operator""_cf() { using char_t = remove_cvref_t; return detail::udl_compiled_string(); } } // namespace literals #endif FMT_END_EXPORT FMT_END_NAMESPACE #endif // FMT_COMPILE_H_ btop-1.3.0/include/fmt/core.h000066400000000000000000002767701454653170500160260ustar00rootroot00000000000000// Formatting library for C++ - the core API for char/UTF-8 // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_CORE_H_ #define FMT_CORE_H_ #include // std::byte #include // std::FILE #include // std::strlen #include #include #include #include // The fmt library version in the form major * 10000 + minor * 100 + patch. #define FMT_VERSION 100001 #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__) #else # define FMT_CLANG_VERSION 0 #endif #if defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && \ !defined(__NVCOMPILER) # define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) #else # define FMT_GCC_VERSION 0 #endif #ifndef FMT_GCC_PRAGMA // Workaround _Pragma bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59884. # if FMT_GCC_VERSION >= 504 # define FMT_GCC_PRAGMA(arg) _Pragma(arg) # else # define FMT_GCC_PRAGMA(arg) # endif #endif #ifdef __ICL # define FMT_ICC_VERSION __ICL #elif defined(__INTEL_COMPILER) # define FMT_ICC_VERSION __INTEL_COMPILER #else # define FMT_ICC_VERSION 0 #endif #ifdef _MSC_VER # define FMT_MSC_VERSION _MSC_VER # define FMT_MSC_WARNING(...) __pragma(warning(__VA_ARGS__)) #else # define FMT_MSC_VERSION 0 # define FMT_MSC_WARNING(...) #endif #ifdef _MSVC_LANG # define FMT_CPLUSPLUS _MSVC_LANG #else # define FMT_CPLUSPLUS __cplusplus #endif #ifdef __has_feature # define FMT_HAS_FEATURE(x) __has_feature(x) #else # define FMT_HAS_FEATURE(x) 0 #endif #if defined(__has_include) || FMT_ICC_VERSION >= 1600 || FMT_MSC_VERSION > 1900 # define FMT_HAS_INCLUDE(x) __has_include(x) #else # define FMT_HAS_INCLUDE(x) 0 #endif #ifdef __has_cpp_attribute # define FMT_HAS_CPP_ATTRIBUTE(x) __has_cpp_attribute(x) #else # define FMT_HAS_CPP_ATTRIBUTE(x) 0 #endif #define FMT_HAS_CPP14_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201402L && FMT_HAS_CPP_ATTRIBUTE(attribute)) #define FMT_HAS_CPP17_ATTRIBUTE(attribute) \ (FMT_CPLUSPLUS >= 201703L && FMT_HAS_CPP_ATTRIBUTE(attribute)) // Check if relaxed C++14 constexpr is supported. // GCC doesn't allow throw in constexpr until version 6 (bug 67371). #ifndef FMT_USE_CONSTEXPR # if (FMT_HAS_FEATURE(cxx_relaxed_constexpr) || FMT_MSC_VERSION >= 1912 || \ (FMT_GCC_VERSION >= 600 && FMT_CPLUSPLUS >= 201402L)) && \ !FMT_ICC_VERSION && !defined(__NVCC__) # define FMT_USE_CONSTEXPR 1 # else # define FMT_USE_CONSTEXPR 0 # endif #endif #if FMT_USE_CONSTEXPR # define FMT_CONSTEXPR constexpr #else # define FMT_CONSTEXPR #endif #if ((FMT_CPLUSPLUS >= 202002L) && \ (!defined(_GLIBCXX_RELEASE) || _GLIBCXX_RELEASE > 9)) || \ (FMT_CPLUSPLUS >= 201709L && FMT_GCC_VERSION >= 1002) # define FMT_CONSTEXPR20 constexpr #else # define FMT_CONSTEXPR20 #endif // Check if constexpr std::char_traits<>::{compare,length} are supported. #if defined(__GLIBCXX__) # if FMT_CPLUSPLUS >= 201703L && defined(_GLIBCXX_RELEASE) && \ _GLIBCXX_RELEASE >= 7 // GCC 7+ libstdc++ has _GLIBCXX_RELEASE. # define FMT_CONSTEXPR_CHAR_TRAITS constexpr # endif #elif defined(_LIBCPP_VERSION) && FMT_CPLUSPLUS >= 201703L && \ _LIBCPP_VERSION >= 4000 # define FMT_CONSTEXPR_CHAR_TRAITS constexpr #elif FMT_MSC_VERSION >= 1914 && FMT_CPLUSPLUS >= 201703L # define FMT_CONSTEXPR_CHAR_TRAITS constexpr #endif #ifndef FMT_CONSTEXPR_CHAR_TRAITS # define FMT_CONSTEXPR_CHAR_TRAITS #endif // Check if exceptions are disabled. #ifndef FMT_EXCEPTIONS # if (defined(__GNUC__) && !defined(__EXCEPTIONS)) || \ (FMT_MSC_VERSION && !_HAS_EXCEPTIONS) # define FMT_EXCEPTIONS 0 # else # define FMT_EXCEPTIONS 1 # endif #endif // Disable [[noreturn]] on MSVC/NVCC because of bogus unreachable code warnings. #if FMT_EXCEPTIONS && FMT_HAS_CPP_ATTRIBUTE(noreturn) && !FMT_MSC_VERSION && \ !defined(__NVCC__) # define FMT_NORETURN [[noreturn]] #else # define FMT_NORETURN #endif #ifndef FMT_NODISCARD # if FMT_HAS_CPP17_ATTRIBUTE(nodiscard) # define FMT_NODISCARD [[nodiscard]] # else # define FMT_NODISCARD # endif #endif #ifndef FMT_INLINE # if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_INLINE inline __attribute__((always_inline)) # else # define FMT_INLINE inline # endif #endif #ifdef _MSC_VER # define FMT_UNCHECKED_ITERATOR(It) \ using _Unchecked_type = It // Mark iterator as checked. #else # define FMT_UNCHECKED_ITERATOR(It) using unchecked_type = It #endif #ifndef FMT_BEGIN_NAMESPACE # define FMT_BEGIN_NAMESPACE \ namespace fmt { \ inline namespace v10 { # define FMT_END_NAMESPACE \ } \ } #endif #ifndef FMT_EXPORT # define FMT_EXPORT # define FMT_BEGIN_EXPORT # define FMT_END_EXPORT #endif #if !defined(FMT_HEADER_ONLY) && defined(_WIN32) # ifdef FMT_LIB_EXPORT # define FMT_API __declspec(dllexport) # elif defined(FMT_SHARED) # define FMT_API __declspec(dllimport) # endif #else # if defined(FMT_LIB_EXPORT) || defined(FMT_SHARED) # if defined(__GNUC__) || defined(__clang__) # define FMT_API __attribute__((visibility("default"))) # endif # endif #endif #ifndef FMT_API # define FMT_API #endif // libc++ supports string_view in pre-c++17. #if FMT_HAS_INCLUDE() && \ (FMT_CPLUSPLUS >= 201703L || defined(_LIBCPP_VERSION)) # include # define FMT_USE_STRING_VIEW #elif FMT_HAS_INCLUDE("experimental/string_view") && FMT_CPLUSPLUS >= 201402L # include # define FMT_USE_EXPERIMENTAL_STRING_VIEW #endif #ifndef FMT_UNICODE # define FMT_UNICODE !FMT_MSC_VERSION #endif #ifndef FMT_CONSTEVAL # if ((FMT_GCC_VERSION >= 1000 || FMT_CLANG_VERSION >= 1101) && \ (!defined(__apple_build_version__) || \ __apple_build_version__ >= 14000029L) && \ FMT_CPLUSPLUS >= 202002L) || \ (defined(__cpp_consteval) && \ (!FMT_MSC_VERSION || _MSC_FULL_VER >= 193030704)) // consteval is broken in MSVC before VS2022 and Apple clang before 14. # define FMT_CONSTEVAL consteval # define FMT_HAS_CONSTEVAL # else # define FMT_CONSTEVAL # endif #endif #ifndef FMT_USE_NONTYPE_TEMPLATE_ARGS # if defined(__cpp_nontype_template_args) && \ ((FMT_GCC_VERSION >= 903 && FMT_CPLUSPLUS >= 201709L) || \ __cpp_nontype_template_args >= 201911L) && \ !defined(__NVCOMPILER) && !defined(__LCC__) # define FMT_USE_NONTYPE_TEMPLATE_ARGS 1 # else # define FMT_USE_NONTYPE_TEMPLATE_ARGS 0 # endif #endif // Enable minimal optimizations for more compact code in debug mode. FMT_GCC_PRAGMA("GCC push_options") #if !defined(__OPTIMIZE__) && !defined(__NVCOMPILER) && !defined(__LCC__) && \ !defined(__CUDACC__) FMT_GCC_PRAGMA("GCC optimize(\"Og\")") #endif FMT_BEGIN_NAMESPACE // Implementations of enable_if_t and other metafunctions for older systems. template using enable_if_t = typename std::enable_if::type; template using conditional_t = typename std::conditional::type; template using bool_constant = std::integral_constant; template using remove_reference_t = typename std::remove_reference::type; template using remove_const_t = typename std::remove_const::type; template using remove_cvref_t = typename std::remove_cv>::type; template struct type_identity { using type = T; }; template using type_identity_t = typename type_identity::type; template using underlying_t = typename std::underlying_type::type; // Checks whether T is a container with contiguous storage. template struct is_contiguous : std::false_type {}; template struct is_contiguous> : std::true_type {}; struct monostate { constexpr monostate() {} }; // An enable_if helper to be used in template parameters which results in much // shorter symbols: https://godbolt.org/z/sWw4vP. Extra parentheses are needed // to workaround a bug in MSVC 2019 (see #1140 and #1186). #ifdef FMT_DOC # define FMT_ENABLE_IF(...) #else # define FMT_ENABLE_IF(...) fmt::enable_if_t<(__VA_ARGS__), int> = 0 #endif // This is defined in core.h instead of format.h to avoid injecting in std. #ifdef __cpp_lib_byte inline auto format_as(std::byte b) -> unsigned char { return static_cast(b); } #endif namespace detail { // Suppresses "unused variable" warnings with the method described in // https://herbsutter.com/2009/10/18/mailbag-shutting-up-compiler-warnings/. // (void)var does not work on many Intel compilers. template FMT_CONSTEXPR void ignore_unused(const T&...) {} constexpr FMT_INLINE auto is_constant_evaluated( bool default_value = false) noexcept -> bool { // Workaround for incompatibility between libstdc++ consteval-based // std::is_constant_evaluated() implementation and clang-14. // https://github.com/fmtlib/fmt/issues/3247 #if FMT_CPLUSPLUS >= 202002L && defined(_GLIBCXX_RELEASE) && \ _GLIBCXX_RELEASE >= 12 && \ (FMT_CLANG_VERSION >= 1400 && FMT_CLANG_VERSION < 1500) ignore_unused(default_value); return __builtin_is_constant_evaluated(); #elif defined(__cpp_lib_is_constant_evaluated) ignore_unused(default_value); return std::is_constant_evaluated(); #else return default_value; #endif } // Suppresses "conditional expression is constant" warnings. template constexpr FMT_INLINE auto const_check(T value) -> T { return value; } FMT_NORETURN FMT_API void assert_fail(const char* file, int line, const char* message); #ifndef FMT_ASSERT # ifdef NDEBUG // FMT_ASSERT is not empty to avoid -Wempty-body. # define FMT_ASSERT(condition, message) \ fmt::detail::ignore_unused((condition), (message)) # else # define FMT_ASSERT(condition, message) \ ((condition) /* void() fails with -Winvalid-constexpr on clang 4.0.1 */ \ ? (void)0 \ : fmt::detail::assert_fail(__FILE__, __LINE__, (message))) # endif #endif #if defined(FMT_USE_STRING_VIEW) template using std_string_view = std::basic_string_view; #elif defined(FMT_USE_EXPERIMENTAL_STRING_VIEW) template using std_string_view = std::experimental::basic_string_view; #else template struct std_string_view {}; #endif #ifdef FMT_USE_INT128 // Do nothing. #elif defined(__SIZEOF_INT128__) && !defined(__NVCC__) && \ !(FMT_CLANG_VERSION && FMT_MSC_VERSION) # define FMT_USE_INT128 1 using int128_opt = __int128_t; // An optional native 128-bit integer. using uint128_opt = __uint128_t; template inline auto convert_for_visit(T value) -> T { return value; } #else # define FMT_USE_INT128 0 #endif #if !FMT_USE_INT128 enum class int128_opt {}; enum class uint128_opt {}; // Reduce template instantiations. template auto convert_for_visit(T) -> monostate { return {}; } #endif // Casts a nonnegative integer to unsigned. template FMT_CONSTEXPR auto to_unsigned(Int value) -> typename std::make_unsigned::type { FMT_ASSERT(std::is_unsigned::value || value >= 0, "negative value"); return static_cast::type>(value); } FMT_CONSTEXPR inline auto is_utf8() -> bool { FMT_MSC_WARNING(suppress : 4566) constexpr unsigned char section[] = "\u00A7"; // Avoid buggy sign extensions in MSVC's constant evaluation mode (#2297). using uchar = unsigned char; return FMT_UNICODE || (sizeof(section) == 3 && uchar(section[0]) == 0xC2 && uchar(section[1]) == 0xA7); } } // namespace detail /** An implementation of ``std::basic_string_view`` for pre-C++17. It provides a subset of the API. ``fmt::basic_string_view`` is used for format strings even if ``std::string_view`` is available to prevent issues when a library is compiled with a different ``-std`` option than the client code (which is not recommended). */ FMT_EXPORT template class basic_string_view { private: const Char* data_; size_t size_; public: using value_type = Char; using iterator = const Char*; constexpr basic_string_view() noexcept : data_(nullptr), size_(0) {} /** Constructs a string reference object from a C string and a size. */ constexpr basic_string_view(const Char* s, size_t count) noexcept : data_(s), size_(count) {} /** \rst Constructs a string reference object from a C string computing the size with ``std::char_traits::length``. \endrst */ FMT_CONSTEXPR_CHAR_TRAITS FMT_INLINE basic_string_view(const Char* s) : data_(s), size_(detail::const_check(std::is_same::value && !detail::is_constant_evaluated(true)) ? std::strlen(reinterpret_cast(s)) : std::char_traits::length(s)) {} /** Constructs a string reference from a ``std::basic_string`` object. */ template FMT_CONSTEXPR basic_string_view( const std::basic_string& s) noexcept : data_(s.data()), size_(s.size()) {} template >::value)> FMT_CONSTEXPR basic_string_view(S s) noexcept : data_(s.data()), size_(s.size()) {} /** Returns a pointer to the string data. */ constexpr auto data() const noexcept -> const Char* { return data_; } /** Returns the string size. */ constexpr auto size() const noexcept -> size_t { return size_; } constexpr auto begin() const noexcept -> iterator { return data_; } constexpr auto end() const noexcept -> iterator { return data_ + size_; } constexpr auto operator[](size_t pos) const noexcept -> const Char& { return data_[pos]; } FMT_CONSTEXPR void remove_prefix(size_t n) noexcept { data_ += n; size_ -= n; } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with( basic_string_view sv) const noexcept { return size_ >= sv.size_ && std::char_traits::compare(data_, sv.data_, sv.size_) == 0; } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with(Char c) const noexcept { return size_ >= 1 && std::char_traits::eq(*data_, c); } FMT_CONSTEXPR_CHAR_TRAITS bool starts_with(const Char* s) const { return starts_with(basic_string_view(s)); } // Lexicographically compare this string reference to other. FMT_CONSTEXPR_CHAR_TRAITS auto compare(basic_string_view other) const -> int { size_t str_size = size_ < other.size_ ? size_ : other.size_; int result = std::char_traits::compare(data_, other.data_, str_size); if (result == 0) result = size_ == other.size_ ? 0 : (size_ < other.size_ ? -1 : 1); return result; } FMT_CONSTEXPR_CHAR_TRAITS friend auto operator==(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) == 0; } friend auto operator!=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) != 0; } friend auto operator<(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) < 0; } friend auto operator<=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) <= 0; } friend auto operator>(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) > 0; } friend auto operator>=(basic_string_view lhs, basic_string_view rhs) -> bool { return lhs.compare(rhs) >= 0; } }; FMT_EXPORT using string_view = basic_string_view; /** Specifies if ``T`` is a character type. Can be specialized by users. */ FMT_EXPORT template struct is_char : std::false_type {}; template <> struct is_char : std::true_type {}; namespace detail { // A base class for compile-time strings. struct compile_string {}; template struct is_compile_string : std::is_base_of {}; template ::value)> FMT_INLINE auto to_string_view(const Char* s) -> basic_string_view { return s; } template inline auto to_string_view(const std::basic_string& s) -> basic_string_view { return s; } template constexpr auto to_string_view(basic_string_view s) -> basic_string_view { return s; } template >::value)> inline auto to_string_view(std_string_view s) -> basic_string_view { return s; } template ::value)> constexpr auto to_string_view(const S& s) -> basic_string_view { return basic_string_view(s); } void to_string_view(...); // Specifies whether S is a string type convertible to fmt::basic_string_view. // It should be a constexpr function but MSVC 2017 fails to compile it in // enable_if and MSVC 2015 fails to compile it as an alias template. // ADL is intentionally disabled as to_string_view is not an extension point. template struct is_string : std::is_class()))> {}; template struct char_t_impl {}; template struct char_t_impl::value>> { using result = decltype(to_string_view(std::declval())); using type = typename result::value_type; }; enum class type { none_type, // Integer types should go first, int_type, uint_type, long_long_type, ulong_long_type, int128_type, uint128_type, bool_type, char_type, last_integer_type = char_type, // followed by floating-point types. float_type, double_type, long_double_type, last_numeric_type = long_double_type, cstring_type, string_type, pointer_type, custom_type }; // Maps core type T to the corresponding type enum constant. template struct type_constant : std::integral_constant {}; #define FMT_TYPE_CONSTANT(Type, constant) \ template \ struct type_constant \ : std::integral_constant {} FMT_TYPE_CONSTANT(int, int_type); FMT_TYPE_CONSTANT(unsigned, uint_type); FMT_TYPE_CONSTANT(long long, long_long_type); FMT_TYPE_CONSTANT(unsigned long long, ulong_long_type); FMT_TYPE_CONSTANT(int128_opt, int128_type); FMT_TYPE_CONSTANT(uint128_opt, uint128_type); FMT_TYPE_CONSTANT(bool, bool_type); FMT_TYPE_CONSTANT(Char, char_type); FMT_TYPE_CONSTANT(float, float_type); FMT_TYPE_CONSTANT(double, double_type); FMT_TYPE_CONSTANT(long double, long_double_type); FMT_TYPE_CONSTANT(const Char*, cstring_type); FMT_TYPE_CONSTANT(basic_string_view, string_type); FMT_TYPE_CONSTANT(const void*, pointer_type); constexpr bool is_integral_type(type t) { return t > type::none_type && t <= type::last_integer_type; } constexpr bool is_arithmetic_type(type t) { return t > type::none_type && t <= type::last_numeric_type; } constexpr auto set(type rhs) -> int { return 1 << static_cast(rhs); } constexpr auto in(type t, int set) -> bool { return ((set >> static_cast(t)) & 1) != 0; } // Bitsets of types. enum { sint_set = set(type::int_type) | set(type::long_long_type) | set(type::int128_type), uint_set = set(type::uint_type) | set(type::ulong_long_type) | set(type::uint128_type), bool_set = set(type::bool_type), char_set = set(type::char_type), float_set = set(type::float_type) | set(type::double_type) | set(type::long_double_type), string_set = set(type::string_type), cstring_set = set(type::cstring_type), pointer_set = set(type::pointer_type) }; FMT_NORETURN FMT_API void throw_format_error(const char* message); struct error_handler { constexpr error_handler() = default; // This function is intentionally not constexpr to give a compile-time error. FMT_NORETURN void on_error(const char* message) { throw_format_error(message); } }; } // namespace detail /** String's character type. */ template using char_t = typename detail::char_t_impl::type; /** \rst Parsing context consisting of a format string range being parsed and an argument counter for automatic indexing. You can use the ``format_parse_context`` type alias for ``char`` instead. \endrst */ FMT_EXPORT template class basic_format_parse_context { private: basic_string_view format_str_; int next_arg_id_; FMT_CONSTEXPR void do_check_arg_id(int id); public: using char_type = Char; using iterator = const Char*; explicit constexpr basic_format_parse_context( basic_string_view format_str, int next_arg_id = 0) : format_str_(format_str), next_arg_id_(next_arg_id) {} /** Returns an iterator to the beginning of the format string range being parsed. */ constexpr auto begin() const noexcept -> iterator { return format_str_.begin(); } /** Returns an iterator past the end of the format string range being parsed. */ constexpr auto end() const noexcept -> iterator { return format_str_.end(); } /** Advances the begin iterator to ``it``. */ FMT_CONSTEXPR void advance_to(iterator it) { format_str_.remove_prefix(detail::to_unsigned(it - begin())); } /** Reports an error if using the manual argument indexing; otherwise returns the next argument index and switches to the automatic indexing. */ FMT_CONSTEXPR auto next_arg_id() -> int { if (next_arg_id_ < 0) { detail::throw_format_error( "cannot switch from manual to automatic argument indexing"); return 0; } int id = next_arg_id_++; do_check_arg_id(id); return id; } /** Reports an error if using the automatic argument indexing; otherwise switches to the manual indexing. */ FMT_CONSTEXPR void check_arg_id(int id) { if (next_arg_id_ > 0) { detail::throw_format_error( "cannot switch from automatic to manual argument indexing"); return; } next_arg_id_ = -1; do_check_arg_id(id); } FMT_CONSTEXPR void check_arg_id(basic_string_view) {} FMT_CONSTEXPR void check_dynamic_spec(int arg_id); }; FMT_EXPORT using format_parse_context = basic_format_parse_context; namespace detail { // A parse context with extra data used only in compile-time checks. template class compile_parse_context : public basic_format_parse_context { private: int num_args_; const type* types_; using base = basic_format_parse_context; public: explicit FMT_CONSTEXPR compile_parse_context( basic_string_view format_str, int num_args, const type* types, int next_arg_id = 0) : base(format_str, next_arg_id), num_args_(num_args), types_(types) {} constexpr auto num_args() const -> int { return num_args_; } constexpr auto arg_type(int id) const -> type { return types_[id]; } FMT_CONSTEXPR auto next_arg_id() -> int { int id = base::next_arg_id(); if (id >= num_args_) throw_format_error("argument not found"); return id; } FMT_CONSTEXPR void check_arg_id(int id) { base::check_arg_id(id); if (id >= num_args_) throw_format_error("argument not found"); } using base::check_arg_id; FMT_CONSTEXPR void check_dynamic_spec(int arg_id) { detail::ignore_unused(arg_id); #if !defined(__LCC__) if (arg_id < num_args_ && types_ && !is_integral_type(types_[arg_id])) throw_format_error("width/precision is not integer"); #endif } }; // Extracts a reference to the container from back_insert_iterator. template inline auto get_container(std::back_insert_iterator it) -> Container& { using base = std::back_insert_iterator; struct accessor : base { accessor(base b) : base(b) {} using base::container; }; return *accessor(it).container; } template FMT_CONSTEXPR auto copy_str(InputIt begin, InputIt end, OutputIt out) -> OutputIt { while (begin != end) *out++ = static_cast(*begin++); return out; } template , U>::value&& is_char::value)> FMT_CONSTEXPR auto copy_str(T* begin, T* end, U* out) -> U* { if (is_constant_evaluated()) return copy_str(begin, end, out); auto size = to_unsigned(end - begin); if (size > 0) memcpy(out, begin, size * sizeof(U)); return out + size; } /** \rst A contiguous memory buffer with an optional growing ability. It is an internal class and shouldn't be used directly, only via `~fmt::basic_memory_buffer`. \endrst */ template class buffer { private: T* ptr_; size_t size_; size_t capacity_; protected: // Don't initialize ptr_ since it is not accessed to save a few cycles. FMT_MSC_WARNING(suppress : 26495) buffer(size_t sz) noexcept : size_(sz), capacity_(sz) {} FMT_CONSTEXPR20 buffer(T* p = nullptr, size_t sz = 0, size_t cap = 0) noexcept : ptr_(p), size_(sz), capacity_(cap) {} FMT_CONSTEXPR20 ~buffer() = default; buffer(buffer&&) = default; /** Sets the buffer data and capacity. */ FMT_CONSTEXPR void set(T* buf_data, size_t buf_capacity) noexcept { ptr_ = buf_data; capacity_ = buf_capacity; } /** Increases the buffer capacity to hold at least *capacity* elements. */ virtual FMT_CONSTEXPR20 void grow(size_t capacity) = 0; public: using value_type = T; using const_reference = const T&; buffer(const buffer&) = delete; void operator=(const buffer&) = delete; FMT_INLINE auto begin() noexcept -> T* { return ptr_; } FMT_INLINE auto end() noexcept -> T* { return ptr_ + size_; } FMT_INLINE auto begin() const noexcept -> const T* { return ptr_; } FMT_INLINE auto end() const noexcept -> const T* { return ptr_ + size_; } /** Returns the size of this buffer. */ constexpr auto size() const noexcept -> size_t { return size_; } /** Returns the capacity of this buffer. */ constexpr auto capacity() const noexcept -> size_t { return capacity_; } /** Returns a pointer to the buffer data. */ FMT_CONSTEXPR auto data() noexcept -> T* { return ptr_; } /** Returns a pointer to the buffer data. */ FMT_CONSTEXPR auto data() const noexcept -> const T* { return ptr_; } /** Clears this buffer. */ void clear() { size_ = 0; } // Tries resizing the buffer to contain *count* elements. If T is a POD type // the new elements may not be initialized. FMT_CONSTEXPR20 void try_resize(size_t count) { try_reserve(count); size_ = count <= capacity_ ? count : capacity_; } // Tries increasing the buffer capacity to *new_capacity*. It can increase the // capacity by a smaller amount than requested but guarantees there is space // for at least one additional element either by increasing the capacity or by // flushing the buffer if it is full. FMT_CONSTEXPR20 void try_reserve(size_t new_capacity) { if (new_capacity > capacity_) grow(new_capacity); } FMT_CONSTEXPR20 void push_back(const T& value) { try_reserve(size_ + 1); ptr_[size_++] = value; } /** Appends data to the end of the buffer. */ template void append(const U* begin, const U* end); template FMT_CONSTEXPR auto operator[](Idx index) -> T& { return ptr_[index]; } template FMT_CONSTEXPR auto operator[](Idx index) const -> const T& { return ptr_[index]; } }; struct buffer_traits { explicit buffer_traits(size_t) {} auto count() const -> size_t { return 0; } auto limit(size_t size) -> size_t { return size; } }; class fixed_buffer_traits { private: size_t count_ = 0; size_t limit_; public: explicit fixed_buffer_traits(size_t limit) : limit_(limit) {} auto count() const -> size_t { return count_; } auto limit(size_t size) -> size_t { size_t n = limit_ > count_ ? limit_ - count_ : 0; count_ += size; return size < n ? size : n; } }; // A buffer that writes to an output iterator when flushed. template class iterator_buffer final : public Traits, public buffer { private: OutputIt out_; enum { buffer_size = 256 }; T data_[buffer_size]; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() == buffer_size) flush(); } void flush() { auto size = this->size(); this->clear(); out_ = copy_str(data_, data_ + this->limit(size), out_); } public: explicit iterator_buffer(OutputIt out, size_t n = buffer_size) : Traits(n), buffer(data_, 0, buffer_size), out_(out) {} iterator_buffer(iterator_buffer&& other) : Traits(other), buffer(data_, 0, buffer_size), out_(other.out_) {} ~iterator_buffer() { flush(); } auto out() -> OutputIt { flush(); return out_; } auto count() const -> size_t { return Traits::count() + this->size(); } }; template class iterator_buffer final : public fixed_buffer_traits, public buffer { private: T* out_; enum { buffer_size = 256 }; T data_[buffer_size]; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() == this->capacity()) flush(); } void flush() { size_t n = this->limit(this->size()); if (this->data() == out_) { out_ += n; this->set(data_, buffer_size); } this->clear(); } public: explicit iterator_buffer(T* out, size_t n = buffer_size) : fixed_buffer_traits(n), buffer(out, 0, n), out_(out) {} iterator_buffer(iterator_buffer&& other) : fixed_buffer_traits(other), buffer(std::move(other)), out_(other.out_) { if (this->data() != out_) { this->set(data_, buffer_size); this->clear(); } } ~iterator_buffer() { flush(); } auto out() -> T* { flush(); return out_; } auto count() const -> size_t { return fixed_buffer_traits::count() + this->size(); } }; template class iterator_buffer final : public buffer { protected: FMT_CONSTEXPR20 void grow(size_t) override {} public: explicit iterator_buffer(T* out, size_t = 0) : buffer(out, 0, ~size_t()) {} auto out() -> T* { return &*this->end(); } }; // A buffer that writes to a container with the contiguous storage. template class iterator_buffer, enable_if_t::value, typename Container::value_type>> final : public buffer { private: Container& container_; protected: FMT_CONSTEXPR20 void grow(size_t capacity) override { container_.resize(capacity); this->set(&container_[0], capacity); } public: explicit iterator_buffer(Container& c) : buffer(c.size()), container_(c) {} explicit iterator_buffer(std::back_insert_iterator out, size_t = 0) : iterator_buffer(get_container(out)) {} auto out() -> std::back_insert_iterator { return std::back_inserter(container_); } }; // A buffer that counts the number of code units written discarding the output. template class counting_buffer final : public buffer { private: enum { buffer_size = 256 }; T data_[buffer_size]; size_t count_ = 0; protected: FMT_CONSTEXPR20 void grow(size_t) override { if (this->size() != buffer_size) return; count_ += this->size(); this->clear(); } public: counting_buffer() : buffer(data_, 0, buffer_size) {} auto count() -> size_t { return count_ + this->size(); } }; } // namespace detail template FMT_CONSTEXPR void basic_format_parse_context::do_check_arg_id(int id) { // Argument id is only checked at compile-time during parsing because // formatting has its own validation. if (detail::is_constant_evaluated() && (!FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200)) { using context = detail::compile_parse_context; if (id >= static_cast(this)->num_args()) detail::throw_format_error("argument not found"); } } template FMT_CONSTEXPR void basic_format_parse_context::check_dynamic_spec( int arg_id) { if (detail::is_constant_evaluated() && (!FMT_GCC_VERSION || FMT_GCC_VERSION >= 1200)) { using context = detail::compile_parse_context; static_cast(this)->check_dynamic_spec(arg_id); } } FMT_EXPORT template class basic_format_arg; FMT_EXPORT template class basic_format_args; FMT_EXPORT template class dynamic_format_arg_store; // A formatter for objects of type T. FMT_EXPORT template struct formatter { // A deleted default constructor indicates a disabled formatter. formatter() = delete; }; // Specifies if T has an enabled formatter specialization. A type can be // formattable even if it doesn't have a formatter e.g. via a conversion. template using has_formatter = std::is_constructible>; // An output iterator that appends to a buffer. // It is used to reduce symbol sizes for the common case. class appender : public std::back_insert_iterator> { using base = std::back_insert_iterator>; public: using std::back_insert_iterator>::back_insert_iterator; appender(base it) noexcept : base(it) {} FMT_UNCHECKED_ITERATOR(appender); auto operator++() noexcept -> appender& { return *this; } auto operator++(int) noexcept -> appender { return *this; } }; namespace detail { template constexpr auto has_const_formatter_impl(T*) -> decltype(typename Context::template formatter_type().format( std::declval(), std::declval()), true) { return true; } template constexpr auto has_const_formatter_impl(...) -> bool { return false; } template constexpr auto has_const_formatter() -> bool { return has_const_formatter_impl(static_cast(nullptr)); } template using buffer_appender = conditional_t::value, appender, std::back_insert_iterator>>; // Maps an output iterator to a buffer. template auto get_buffer(OutputIt out) -> iterator_buffer { return iterator_buffer(out); } template , Buf>::value)> auto get_buffer(std::back_insert_iterator out) -> buffer& { return get_container(out); } template FMT_INLINE auto get_iterator(Buf& buf, OutputIt) -> decltype(buf.out()) { return buf.out(); } template auto get_iterator(buffer&, OutputIt out) -> OutputIt { return out; } struct view {}; template struct named_arg : view { const Char* name; const T& value; named_arg(const Char* n, const T& v) : name(n), value(v) {} }; template struct named_arg_info { const Char* name; int id; }; template struct arg_data { // args_[0].named_args points to named_args_ to avoid bloating format_args. // +1 to workaround a bug in gcc 7.5 that causes duplicated-branches warning. T args_[1 + (NUM_ARGS != 0 ? NUM_ARGS : +1)]; named_arg_info named_args_[NUM_NAMED_ARGS]; template arg_data(const U&... init) : args_{T(named_args_, NUM_NAMED_ARGS), init...} {} arg_data(const arg_data& other) = delete; auto args() const -> const T* { return args_ + 1; } auto named_args() -> named_arg_info* { return named_args_; } }; template struct arg_data { // +1 to workaround a bug in gcc 7.5 that causes duplicated-branches warning. T args_[NUM_ARGS != 0 ? NUM_ARGS : +1]; template FMT_CONSTEXPR FMT_INLINE arg_data(const U&... init) : args_{init...} {} FMT_CONSTEXPR FMT_INLINE auto args() const -> const T* { return args_; } FMT_CONSTEXPR FMT_INLINE auto named_args() -> std::nullptr_t { return nullptr; } }; template inline void init_named_args(named_arg_info*, int, int) {} template struct is_named_arg : std::false_type {}; template struct is_statically_named_arg : std::false_type {}; template struct is_named_arg> : std::true_type {}; template ::value)> void init_named_args(named_arg_info* named_args, int arg_count, int named_arg_count, const T&, const Tail&... args) { init_named_args(named_args, arg_count + 1, named_arg_count, args...); } template ::value)> void init_named_args(named_arg_info* named_args, int arg_count, int named_arg_count, const T& arg, const Tail&... args) { named_args[named_arg_count++] = {arg.name, arg_count}; init_named_args(named_args, arg_count + 1, named_arg_count, args...); } template FMT_CONSTEXPR FMT_INLINE void init_named_args(std::nullptr_t, int, int, const Args&...) {} template constexpr auto count() -> size_t { return B ? 1 : 0; } template constexpr auto count() -> size_t { return (B1 ? 1 : 0) + count(); } template constexpr auto count_named_args() -> size_t { return count::value...>(); } template constexpr auto count_statically_named_args() -> size_t { return count::value...>(); } struct unformattable {}; struct unformattable_char : unformattable {}; struct unformattable_pointer : unformattable {}; template struct string_value { const Char* data; size_t size; }; template struct named_arg_value { const named_arg_info* data; size_t size; }; template struct custom_value { using parse_context = typename Context::parse_context_type; void* value; void (*format)(void* arg, parse_context& parse_ctx, Context& ctx); }; // A formatting argument value. template class value { public: using char_type = typename Context::char_type; union { monostate no_value; int int_value; unsigned uint_value; long long long_long_value; unsigned long long ulong_long_value; int128_opt int128_value; uint128_opt uint128_value; bool bool_value; char_type char_value; float float_value; double double_value; long double long_double_value; const void* pointer; string_value string; custom_value custom; named_arg_value named_args; }; constexpr FMT_INLINE value() : no_value() {} constexpr FMT_INLINE value(int val) : int_value(val) {} constexpr FMT_INLINE value(unsigned val) : uint_value(val) {} constexpr FMT_INLINE value(long long val) : long_long_value(val) {} constexpr FMT_INLINE value(unsigned long long val) : ulong_long_value(val) {} FMT_INLINE value(int128_opt val) : int128_value(val) {} FMT_INLINE value(uint128_opt val) : uint128_value(val) {} constexpr FMT_INLINE value(float val) : float_value(val) {} constexpr FMT_INLINE value(double val) : double_value(val) {} FMT_INLINE value(long double val) : long_double_value(val) {} constexpr FMT_INLINE value(bool val) : bool_value(val) {} constexpr FMT_INLINE value(char_type val) : char_value(val) {} FMT_CONSTEXPR FMT_INLINE value(const char_type* val) { string.data = val; if (is_constant_evaluated()) string.size = {}; } FMT_CONSTEXPR FMT_INLINE value(basic_string_view val) { string.data = val.data(); string.size = val.size(); } FMT_INLINE value(const void* val) : pointer(val) {} FMT_INLINE value(const named_arg_info* args, size_t size) : named_args{args, size} {} template FMT_CONSTEXPR FMT_INLINE value(T& val) { using value_type = remove_const_t; custom.value = const_cast(&val); // Get the formatter type through the context to allow different contexts // have different extension points, e.g. `formatter` for `format` and // `printf_formatter` for `printf`. custom.format = format_custom_arg< value_type, typename Context::template formatter_type>; } value(unformattable); value(unformattable_char); value(unformattable_pointer); private: // Formats an argument of a custom type, such as a user-defined class. template static void format_custom_arg(void* arg, typename Context::parse_context_type& parse_ctx, Context& ctx) { auto f = Formatter(); parse_ctx.advance_to(f.parse(parse_ctx)); using qualified_type = conditional_t(), const T, T>; ctx.advance_to(f.format(*static_cast(arg), ctx)); } }; // To minimize the number of types we need to deal with, long is translated // either to int or to long long depending on its size. enum { long_short = sizeof(long) == sizeof(int) }; using long_type = conditional_t; using ulong_type = conditional_t; template struct format_as_result { template ::value || std::is_class::value)> static auto map(U*) -> decltype(format_as(std::declval())); static auto map(...) -> void; using type = decltype(map(static_cast(nullptr))); }; template using format_as_t = typename format_as_result::type; template struct has_format_as : bool_constant, void>::value> {}; // Maps formatting arguments to core types. // arg_mapper reports errors by returning unformattable instead of using // static_assert because it's used in the is_formattable trait. template struct arg_mapper { using char_type = typename Context::char_type; FMT_CONSTEXPR FMT_INLINE auto map(signed char val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned char val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(short val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned short val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(int val) -> int { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned val) -> unsigned { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long val) -> long_type { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned long val) -> ulong_type { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long long val) -> long long { return val; } FMT_CONSTEXPR FMT_INLINE auto map(unsigned long long val) -> unsigned long long { return val; } FMT_CONSTEXPR FMT_INLINE auto map(int128_opt val) -> int128_opt { return val; } FMT_CONSTEXPR FMT_INLINE auto map(uint128_opt val) -> uint128_opt { return val; } FMT_CONSTEXPR FMT_INLINE auto map(bool val) -> bool { return val; } template ::value || std::is_same::value)> FMT_CONSTEXPR FMT_INLINE auto map(T val) -> char_type { return val; } template ::value || #ifdef __cpp_char8_t std::is_same::value || #endif std::is_same::value || std::is_same::value) && !std::is_same::value, int> = 0> FMT_CONSTEXPR FMT_INLINE auto map(T) -> unformattable_char { return {}; } FMT_CONSTEXPR FMT_INLINE auto map(float val) -> float { return val; } FMT_CONSTEXPR FMT_INLINE auto map(double val) -> double { return val; } FMT_CONSTEXPR FMT_INLINE auto map(long double val) -> long double { return val; } FMT_CONSTEXPR FMT_INLINE auto map(char_type* val) -> const char_type* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(const char_type* val) -> const char_type* { return val; } template ::value && !std::is_pointer::value && std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& val) -> basic_string_view { return to_string_view(val); } template ::value && !std::is_pointer::value && !std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T&) -> unformattable_char { return {}; } FMT_CONSTEXPR FMT_INLINE auto map(void* val) -> const void* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(const void* val) -> const void* { return val; } FMT_CONSTEXPR FMT_INLINE auto map(std::nullptr_t val) -> const void* { return val; } // Use SFINAE instead of a const T* parameter to avoid a conflict with the // array overload. template < typename T, FMT_ENABLE_IF( std::is_pointer::value || std::is_member_pointer::value || std::is_function::type>::value || (std::is_convertible::value && !std::is_convertible::value && !has_formatter::value))> FMT_CONSTEXPR auto map(const T&) -> unformattable_pointer { return {}; } template ::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T (&values)[N]) -> const T (&)[N] { return values; } // Only map owning types because mapping views can be unsafe. template , FMT_ENABLE_IF(std::is_arithmetic::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& val) -> decltype(this->map(U())) { return map(format_as(val)); } template > struct formattable : bool_constant() || (has_formatter::value && !std::is_const::value)> {}; template ::value)> FMT_CONSTEXPR FMT_INLINE auto do_map(T& val) -> T& { return val; } template ::value)> FMT_CONSTEXPR FMT_INLINE auto do_map(T&) -> unformattable { return {}; } template , FMT_ENABLE_IF((std::is_class::value || std::is_enum::value || std::is_union::value) && !is_string::value && !is_char::value && !is_named_arg::value && !std::is_arithmetic>::value)> FMT_CONSTEXPR FMT_INLINE auto map(T& val) -> decltype(this->do_map(val)) { return do_map(val); } template ::value)> FMT_CONSTEXPR FMT_INLINE auto map(const T& named_arg) -> decltype(this->map(named_arg.value)) { return map(named_arg.value); } auto map(...) -> unformattable { return {}; } }; // A type constant after applying arg_mapper. template using mapped_type_constant = type_constant().map(std::declval())), typename Context::char_type>; enum { packed_arg_bits = 4 }; // Maximum number of arguments with packed types. enum { max_packed_args = 62 / packed_arg_bits }; enum : unsigned long long { is_unpacked_bit = 1ULL << 63 }; enum : unsigned long long { has_named_args_bit = 1ULL << 62 }; template auto copy_str(InputIt begin, InputIt end, appender out) -> appender { get_container(out).append(begin, end); return out; } template FMT_CONSTEXPR auto copy_str(R&& rng, OutputIt out) -> OutputIt { return detail::copy_str(rng.begin(), rng.end(), out); } #if FMT_GCC_VERSION && FMT_GCC_VERSION < 500 // A workaround for gcc 4.8 to make void_t work in a SFINAE context. template struct void_t_impl { using type = void; }; template using void_t = typename void_t_impl::type; #else template using void_t = void; #endif template struct is_output_iterator : std::false_type {}; template struct is_output_iterator< It, T, void_t::iterator_category, decltype(*std::declval() = std::declval())>> : std::true_type {}; template struct is_back_insert_iterator : std::false_type {}; template struct is_back_insert_iterator> : std::true_type {}; // A type-erased reference to an std::locale to avoid a heavy include. class locale_ref { private: const void* locale_; // A type-erased pointer to std::locale. public: constexpr FMT_INLINE locale_ref() : locale_(nullptr) {} template explicit locale_ref(const Locale& loc); explicit operator bool() const noexcept { return locale_ != nullptr; } template auto get() const -> Locale; }; template constexpr auto encode_types() -> unsigned long long { return 0; } template constexpr auto encode_types() -> unsigned long long { return static_cast(mapped_type_constant::value) | (encode_types() << packed_arg_bits); } template FMT_CONSTEXPR FMT_INLINE auto make_arg(T& val) -> value { using arg_type = remove_cvref_t().map(val))>; constexpr bool formattable_char = !std::is_same::value; static_assert(formattable_char, "Mixing character types is disallowed."); // Formatting of arbitrary pointers is disallowed. If you want to format a // pointer cast it to `void*` or `const void*`. In particular, this forbids // formatting of `[const] volatile char*` printed as bool by iostreams. constexpr bool formattable_pointer = !std::is_same::value; static_assert(formattable_pointer, "Formatting of non-void pointers is disallowed."); constexpr bool formattable = !std::is_same::value; static_assert( formattable, "Cannot format an argument. To make type T formattable provide a " "formatter specialization: https://fmt.dev/latest/api.html#udt"); return {arg_mapper().map(val)}; } template FMT_CONSTEXPR auto make_arg(T& val) -> basic_format_arg { auto arg = basic_format_arg(); arg.type_ = mapped_type_constant::value; arg.value_ = make_arg(val); return arg; } template FMT_CONSTEXPR inline auto make_arg(T& val) -> basic_format_arg { return make_arg(val); } } // namespace detail FMT_BEGIN_EXPORT // A formatting argument. It is a trivially copyable/constructible type to // allow storage in basic_memory_buffer. template class basic_format_arg { private: detail::value value_; detail::type type_; template friend FMT_CONSTEXPR auto detail::make_arg(T& value) -> basic_format_arg; template friend FMT_CONSTEXPR auto visit_format_arg(Visitor&& vis, const basic_format_arg& arg) -> decltype(vis(0)); friend class basic_format_args; friend class dynamic_format_arg_store; using char_type = typename Context::char_type; template friend struct detail::arg_data; basic_format_arg(const detail::named_arg_info* args, size_t size) : value_(args, size) {} public: class handle { public: explicit handle(detail::custom_value custom) : custom_(custom) {} void format(typename Context::parse_context_type& parse_ctx, Context& ctx) const { custom_.format(custom_.value, parse_ctx, ctx); } private: detail::custom_value custom_; }; constexpr basic_format_arg() : type_(detail::type::none_type) {} constexpr explicit operator bool() const noexcept { return type_ != detail::type::none_type; } auto type() const -> detail::type { return type_; } auto is_integral() const -> bool { return detail::is_integral_type(type_); } auto is_arithmetic() const -> bool { return detail::is_arithmetic_type(type_); } }; /** \rst Visits an argument dispatching to the appropriate visit method based on the argument type. For example, if the argument type is ``double`` then ``vis(value)`` will be called with the value of type ``double``. \endrst */ FMT_EXPORT template FMT_CONSTEXPR FMT_INLINE auto visit_format_arg( Visitor&& vis, const basic_format_arg& arg) -> decltype(vis(0)) { switch (arg.type_) { case detail::type::none_type: break; case detail::type::int_type: return vis(arg.value_.int_value); case detail::type::uint_type: return vis(arg.value_.uint_value); case detail::type::long_long_type: return vis(arg.value_.long_long_value); case detail::type::ulong_long_type: return vis(arg.value_.ulong_long_value); case detail::type::int128_type: return vis(detail::convert_for_visit(arg.value_.int128_value)); case detail::type::uint128_type: return vis(detail::convert_for_visit(arg.value_.uint128_value)); case detail::type::bool_type: return vis(arg.value_.bool_value); case detail::type::char_type: return vis(arg.value_.char_value); case detail::type::float_type: return vis(arg.value_.float_value); case detail::type::double_type: return vis(arg.value_.double_value); case detail::type::long_double_type: return vis(arg.value_.long_double_value); case detail::type::cstring_type: return vis(arg.value_.string.data); case detail::type::string_type: using sv = basic_string_view; return vis(sv(arg.value_.string.data, arg.value_.string.size)); case detail::type::pointer_type: return vis(arg.value_.pointer); case detail::type::custom_type: return vis(typename basic_format_arg::handle(arg.value_.custom)); } return vis(monostate()); } // Formatting context. template class basic_format_context { private: OutputIt out_; basic_format_args args_; detail::locale_ref loc_; public: using iterator = OutputIt; using format_arg = basic_format_arg; using format_args = basic_format_args; using parse_context_type = basic_format_parse_context; template using formatter_type = formatter; /** The character type for the output. */ using char_type = Char; basic_format_context(basic_format_context&&) = default; basic_format_context(const basic_format_context&) = delete; void operator=(const basic_format_context&) = delete; /** Constructs a ``basic_format_context`` object. References to the arguments are stored in the object so make sure they have appropriate lifetimes. */ constexpr basic_format_context(OutputIt out, format_args ctx_args, detail::locale_ref loc = {}) : out_(out), args_(ctx_args), loc_(loc) {} constexpr auto arg(int id) const -> format_arg { return args_.get(id); } FMT_CONSTEXPR auto arg(basic_string_view name) -> format_arg { return args_.get(name); } FMT_CONSTEXPR auto arg_id(basic_string_view name) -> int { return args_.get_id(name); } auto args() const -> const format_args& { return args_; } FMT_CONSTEXPR auto error_handler() -> detail::error_handler { return {}; } void on_error(const char* message) { error_handler().on_error(message); } // Returns an iterator to the beginning of the output range. FMT_CONSTEXPR auto out() -> iterator { return out_; } // Advances the begin iterator to ``it``. void advance_to(iterator it) { if (!detail::is_back_insert_iterator()) out_ = it; } FMT_CONSTEXPR auto locale() -> detail::locale_ref { return loc_; } }; template using buffer_context = basic_format_context, Char>; using format_context = buffer_context; template using is_formattable = bool_constant>() .map(std::declval()))>::value>; /** \rst An array of references to arguments. It can be implicitly converted into `~fmt::basic_format_args` for passing into type-erased formatting functions such as `~fmt::vformat`. \endrst */ template class format_arg_store #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround a GCC template argument substitution bug. : public basic_format_args #endif { private: static const size_t num_args = sizeof...(Args); static constexpr size_t num_named_args = detail::count_named_args(); static const bool is_packed = num_args <= detail::max_packed_args; using value_type = conditional_t, basic_format_arg>; detail::arg_data data_; friend class basic_format_args; static constexpr unsigned long long desc = (is_packed ? detail::encode_types() : detail::is_unpacked_bit | num_args) | (num_named_args != 0 ? static_cast(detail::has_named_args_bit) : 0); public: template FMT_CONSTEXPR FMT_INLINE format_arg_store(T&... args) : #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 basic_format_args(*this), #endif data_{detail::make_arg(args)...} { if (num_named_args != 0) detail::init_named_args(data_.named_args(), 0, 0, args...); } }; /** \rst Constructs a `~fmt::format_arg_store` object that contains references to arguments and can be implicitly converted to `~fmt::format_args`. `Context` can be omitted in which case it defaults to `~fmt::format_context`. See `~fmt::arg` for lifetime considerations. \endrst */ // Arguments are taken by lvalue references to avoid some lifetime issues. template constexpr auto make_format_args(T&... args) -> format_arg_store...> { return {args...}; } /** \rst Returns a named argument to be used in a formatting function. It should only be used in a call to a formatting function or `dynamic_format_arg_store::push_back`. **Example**:: fmt::print("Elapsed time: {s:.2f} seconds", fmt::arg("s", 1.23)); \endrst */ template inline auto arg(const Char* name, const T& arg) -> detail::named_arg { static_assert(!detail::is_named_arg(), "nested named arguments"); return {name, arg}; } FMT_END_EXPORT /** \rst A view of a collection of formatting arguments. To avoid lifetime issues it should only be used as a parameter type in type-erased functions such as ``vformat``:: void vlog(string_view format_str, format_args args); // OK format_args args = make_format_args(); // Error: dangling reference \endrst */ template class basic_format_args { public: using size_type = int; using format_arg = basic_format_arg; private: // A descriptor that contains information about formatting arguments. // If the number of arguments is less or equal to max_packed_args then // argument types are passed in the descriptor. This reduces binary code size // per formatting function call. unsigned long long desc_; union { // If is_packed() returns true then argument values are stored in values_; // otherwise they are stored in args_. This is done to improve cache // locality and reduce compiled code size since storing larger objects // may require more code (at least on x86-64) even if the same amount of // data is actually copied to stack. It saves ~10% on the bloat test. const detail::value* values_; const format_arg* args_; }; constexpr auto is_packed() const -> bool { return (desc_ & detail::is_unpacked_bit) == 0; } auto has_named_args() const -> bool { return (desc_ & detail::has_named_args_bit) != 0; } FMT_CONSTEXPR auto type(int index) const -> detail::type { int shift = index * detail::packed_arg_bits; unsigned int mask = (1 << detail::packed_arg_bits) - 1; return static_cast((desc_ >> shift) & mask); } constexpr FMT_INLINE basic_format_args(unsigned long long desc, const detail::value* values) : desc_(desc), values_(values) {} constexpr basic_format_args(unsigned long long desc, const format_arg* args) : desc_(desc), args_(args) {} public: constexpr basic_format_args() : desc_(0), args_(nullptr) {} /** \rst Constructs a `basic_format_args` object from `~fmt::format_arg_store`. \endrst */ template constexpr FMT_INLINE basic_format_args( const format_arg_store& store) : basic_format_args(format_arg_store::desc, store.data_.args()) {} /** \rst Constructs a `basic_format_args` object from `~fmt::dynamic_format_arg_store`. \endrst */ constexpr FMT_INLINE basic_format_args( const dynamic_format_arg_store& store) : basic_format_args(store.get_types(), store.data()) {} /** \rst Constructs a `basic_format_args` object from a dynamic set of arguments. \endrst */ constexpr basic_format_args(const format_arg* args, int count) : basic_format_args(detail::is_unpacked_bit | detail::to_unsigned(count), args) {} /** Returns the argument with the specified id. */ FMT_CONSTEXPR auto get(int id) const -> format_arg { format_arg arg; if (!is_packed()) { if (id < max_size()) arg = args_[id]; return arg; } if (id >= detail::max_packed_args) return arg; arg.type_ = type(id); if (arg.type_ == detail::type::none_type) return arg; arg.value_ = values_[id]; return arg; } template auto get(basic_string_view name) const -> format_arg { int id = get_id(name); return id >= 0 ? get(id) : format_arg(); } template auto get_id(basic_string_view name) const -> int { if (!has_named_args()) return -1; const auto& named_args = (is_packed() ? values_[-1] : args_[-1].value_).named_args; for (size_t i = 0; i < named_args.size; ++i) { if (named_args.data[i].name == name) return named_args.data[i].id; } return -1; } auto max_size() const -> int { unsigned long long max_packed = detail::max_packed_args; return static_cast(is_packed() ? max_packed : desc_ & ~detail::is_unpacked_bit); } }; /** An alias to ``basic_format_args``. */ // A separate type would result in shorter symbols but break ABI compatibility // between clang and gcc on ARM (#1919). FMT_EXPORT using format_args = basic_format_args; // We cannot use enum classes as bit fields because of a gcc bug, so we put them // in namespaces instead (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414). // Additionally, if an underlying type is specified, older gcc incorrectly warns // that the type is too small. Both bugs are fixed in gcc 9.3. #if FMT_GCC_VERSION && FMT_GCC_VERSION < 903 # define FMT_ENUM_UNDERLYING_TYPE(type) #else # define FMT_ENUM_UNDERLYING_TYPE(type) : type #endif namespace align { enum type FMT_ENUM_UNDERLYING_TYPE(unsigned char){none, left, right, center, numeric}; } using align_t = align::type; namespace sign { enum type FMT_ENUM_UNDERLYING_TYPE(unsigned char){none, minus, plus, space}; } using sign_t = sign::type; namespace detail { // Workaround an array initialization issue in gcc 4.8. template struct fill_t { private: enum { max_size = 4 }; Char data_[max_size] = {Char(' '), Char(0), Char(0), Char(0)}; unsigned char size_ = 1; public: FMT_CONSTEXPR void operator=(basic_string_view s) { auto size = s.size(); FMT_ASSERT(size <= max_size, "invalid fill"); for (size_t i = 0; i < size; ++i) data_[i] = s[i]; size_ = static_cast(size); } constexpr auto size() const -> size_t { return size_; } constexpr auto data() const -> const Char* { return data_; } FMT_CONSTEXPR auto operator[](size_t index) -> Char& { return data_[index]; } FMT_CONSTEXPR auto operator[](size_t index) const -> const Char& { return data_[index]; } }; } // namespace detail enum class presentation_type : unsigned char { none, dec, // 'd' oct, // 'o' hex_lower, // 'x' hex_upper, // 'X' bin_lower, // 'b' bin_upper, // 'B' hexfloat_lower, // 'a' hexfloat_upper, // 'A' exp_lower, // 'e' exp_upper, // 'E' fixed_lower, // 'f' fixed_upper, // 'F' general_lower, // 'g' general_upper, // 'G' chr, // 'c' string, // 's' pointer, // 'p' debug // '?' }; // Format specifiers for built-in and string types. template struct format_specs { int width; int precision; presentation_type type; align_t align : 4; sign_t sign : 3; bool alt : 1; // Alternate form ('#'). bool localized : 1; detail::fill_t fill; constexpr format_specs() : width(0), precision(-1), type(presentation_type::none), align(align::none), sign(sign::none), alt(false), localized(false) {} }; namespace detail { enum class arg_id_kind { none, index, name }; // An argument reference. template struct arg_ref { FMT_CONSTEXPR arg_ref() : kind(arg_id_kind::none), val() {} FMT_CONSTEXPR explicit arg_ref(int index) : kind(arg_id_kind::index), val(index) {} FMT_CONSTEXPR explicit arg_ref(basic_string_view name) : kind(arg_id_kind::name), val(name) {} FMT_CONSTEXPR auto operator=(int idx) -> arg_ref& { kind = arg_id_kind::index; val.index = idx; return *this; } arg_id_kind kind; union value { FMT_CONSTEXPR value(int idx = 0) : index(idx) {} FMT_CONSTEXPR value(basic_string_view n) : name(n) {} int index; basic_string_view name; } val; }; // Format specifiers with width and precision resolved at formatting rather // than parsing time to allow reusing the same parsed specifiers with // different sets of arguments (precompilation of format strings). template struct dynamic_format_specs : format_specs { arg_ref width_ref; arg_ref precision_ref; }; // Converts a character to ASCII. Returns '\0' on conversion failure. template ::value)> constexpr auto to_ascii(Char c) -> char { return c <= 0xff ? static_cast(c) : '\0'; } template ::value)> constexpr auto to_ascii(Char c) -> char { return c <= 0xff ? static_cast(c) : '\0'; } // Returns the number of code units in a code point or 1 on error. template FMT_CONSTEXPR auto code_point_length(const Char* begin) -> int { if (const_check(sizeof(Char) != 1)) return 1; auto c = static_cast(*begin); return static_cast((0x3a55000000000000ull >> (2 * (c >> 3))) & 0x3) + 1; } // Return the result via the out param to workaround gcc bug 77539. template FMT_CONSTEXPR auto find(Ptr first, Ptr last, T value, Ptr& out) -> bool { for (out = first; out != last; ++out) { if (*out == value) return true; } return false; } template <> inline auto find(const char* first, const char* last, char value, const char*& out) -> bool { out = static_cast( std::memchr(first, value, to_unsigned(last - first))); return out != nullptr; } // Parses the range [begin, end) as an unsigned integer. This function assumes // that the range is non-empty and the first character is a digit. template FMT_CONSTEXPR auto parse_nonnegative_int(const Char*& begin, const Char* end, int error_value) noexcept -> int { FMT_ASSERT(begin != end && '0' <= *begin && *begin <= '9', ""); unsigned value = 0, prev = 0; auto p = begin; do { prev = value; value = value * 10 + unsigned(*p - '0'); ++p; } while (p != end && '0' <= *p && *p <= '9'); auto num_digits = p - begin; begin = p; if (num_digits <= std::numeric_limits::digits10) return static_cast(value); // Check for overflow. const unsigned max = to_unsigned((std::numeric_limits::max)()); return num_digits == std::numeric_limits::digits10 + 1 && prev * 10ull + unsigned(p[-1] - '0') <= max ? static_cast(value) : error_value; } FMT_CONSTEXPR inline auto parse_align(char c) -> align_t { switch (c) { case '<': return align::left; case '>': return align::right; case '^': return align::center; } return align::none; } template constexpr auto is_name_start(Char c) -> bool { return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '_'; } template FMT_CONSTEXPR auto do_parse_arg_id(const Char* begin, const Char* end, Handler&& handler) -> const Char* { Char c = *begin; if (c >= '0' && c <= '9') { int index = 0; constexpr int max = (std::numeric_limits::max)(); if (c != '0') index = parse_nonnegative_int(begin, end, max); else ++begin; if (begin == end || (*begin != '}' && *begin != ':')) throw_format_error("invalid format string"); else handler.on_index(index); return begin; } if (!is_name_start(c)) { throw_format_error("invalid format string"); return begin; } auto it = begin; do { ++it; } while (it != end && (is_name_start(*it) || ('0' <= *it && *it <= '9'))); handler.on_name({begin, to_unsigned(it - begin)}); return it; } template FMT_CONSTEXPR FMT_INLINE auto parse_arg_id(const Char* begin, const Char* end, Handler&& handler) -> const Char* { FMT_ASSERT(begin != end, ""); Char c = *begin; if (c != '}' && c != ':') return do_parse_arg_id(begin, end, handler); handler.on_auto(); return begin; } template struct dynamic_spec_id_handler { basic_format_parse_context& ctx; arg_ref& ref; FMT_CONSTEXPR void on_auto() { int id = ctx.next_arg_id(); ref = arg_ref(id); ctx.check_dynamic_spec(id); } FMT_CONSTEXPR void on_index(int id) { ref = arg_ref(id); ctx.check_arg_id(id); ctx.check_dynamic_spec(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { ref = arg_ref(id); ctx.check_arg_id(id); } }; // Parses [integer | "{" [arg_id] "}"]. template FMT_CONSTEXPR auto parse_dynamic_spec(const Char* begin, const Char* end, int& value, arg_ref& ref, basic_format_parse_context& ctx) -> const Char* { FMT_ASSERT(begin != end, ""); if ('0' <= *begin && *begin <= '9') { int val = parse_nonnegative_int(begin, end, -1); if (val != -1) value = val; else throw_format_error("number is too big"); } else if (*begin == '{') { ++begin; auto handler = dynamic_spec_id_handler{ctx, ref}; if (begin != end) begin = parse_arg_id(begin, end, handler); if (begin != end && *begin == '}') return ++begin; throw_format_error("invalid format string"); } return begin; } template FMT_CONSTEXPR auto parse_precision(const Char* begin, const Char* end, int& value, arg_ref& ref, basic_format_parse_context& ctx) -> const Char* { ++begin; if (begin == end || *begin == '}') { throw_format_error("invalid precision"); return begin; } return parse_dynamic_spec(begin, end, value, ref, ctx); } enum class state { start, align, sign, hash, zero, width, precision, locale }; // Parses standard format specifiers. template FMT_CONSTEXPR FMT_INLINE auto parse_format_specs( const Char* begin, const Char* end, dynamic_format_specs& specs, basic_format_parse_context& ctx, type arg_type) -> const Char* { auto c = '\0'; if (end - begin > 1) { auto next = to_ascii(begin[1]); c = parse_align(next) == align::none ? to_ascii(*begin) : '\0'; } else { if (begin == end) return begin; c = to_ascii(*begin); } struct { state current_state = state::start; FMT_CONSTEXPR void operator()(state s, bool valid = true) { if (current_state >= s || !valid) throw_format_error("invalid format specifier"); current_state = s; } } enter_state; using pres = presentation_type; constexpr auto integral_set = sint_set | uint_set | bool_set | char_set; struct { const Char*& begin; dynamic_format_specs& specs; type arg_type; FMT_CONSTEXPR auto operator()(pres type, int set) -> const Char* { if (!in(arg_type, set)) throw_format_error("invalid format specifier"); specs.type = type; return begin + 1; } } parse_presentation_type{begin, specs, arg_type}; for (;;) { switch (c) { case '<': case '>': case '^': enter_state(state::align); specs.align = parse_align(c); ++begin; break; case '+': case '-': case ' ': enter_state(state::sign, in(arg_type, sint_set | float_set)); switch (c) { case '+': specs.sign = sign::plus; break; case '-': specs.sign = sign::minus; break; case ' ': specs.sign = sign::space; break; } ++begin; break; case '#': enter_state(state::hash, is_arithmetic_type(arg_type)); specs.alt = true; ++begin; break; case '0': enter_state(state::zero); if (!is_arithmetic_type(arg_type)) throw_format_error("format specifier requires numeric argument"); if (specs.align == align::none) { // Ignore 0 if align is specified for compatibility with std::format. specs.align = align::numeric; specs.fill[0] = Char('0'); } ++begin; break; case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '{': enter_state(state::width); begin = parse_dynamic_spec(begin, end, specs.width, specs.width_ref, ctx); break; case '.': enter_state(state::precision, in(arg_type, float_set | string_set | cstring_set)); begin = parse_precision(begin, end, specs.precision, specs.precision_ref, ctx); break; case 'L': enter_state(state::locale, is_arithmetic_type(arg_type)); specs.localized = true; ++begin; break; case 'd': return parse_presentation_type(pres::dec, integral_set); case 'o': return parse_presentation_type(pres::oct, integral_set); case 'x': return parse_presentation_type(pres::hex_lower, integral_set); case 'X': return parse_presentation_type(pres::hex_upper, integral_set); case 'b': return parse_presentation_type(pres::bin_lower, integral_set); case 'B': return parse_presentation_type(pres::bin_upper, integral_set); case 'a': return parse_presentation_type(pres::hexfloat_lower, float_set); case 'A': return parse_presentation_type(pres::hexfloat_upper, float_set); case 'e': return parse_presentation_type(pres::exp_lower, float_set); case 'E': return parse_presentation_type(pres::exp_upper, float_set); case 'f': return parse_presentation_type(pres::fixed_lower, float_set); case 'F': return parse_presentation_type(pres::fixed_upper, float_set); case 'g': return parse_presentation_type(pres::general_lower, float_set); case 'G': return parse_presentation_type(pres::general_upper, float_set); case 'c': return parse_presentation_type(pres::chr, integral_set); case 's': return parse_presentation_type(pres::string, bool_set | string_set | cstring_set); case 'p': return parse_presentation_type(pres::pointer, pointer_set | cstring_set); case '?': return parse_presentation_type(pres::debug, char_set | string_set | cstring_set); case '}': return begin; default: { if (*begin == '}') return begin; // Parse fill and alignment. auto fill_end = begin + code_point_length(begin); if (end - fill_end <= 0) { throw_format_error("invalid format specifier"); return begin; } if (*begin == '{') { throw_format_error("invalid fill character '{'"); return begin; } auto align = parse_align(to_ascii(*fill_end)); enter_state(state::align, align != align::none); specs.fill = {begin, to_unsigned(fill_end - begin)}; specs.align = align; begin = fill_end + 1; } } if (begin == end) return begin; c = to_ascii(*begin); } } template FMT_CONSTEXPR auto parse_replacement_field(const Char* begin, const Char* end, Handler&& handler) -> const Char* { struct id_adapter { Handler& handler; int arg_id; FMT_CONSTEXPR void on_auto() { arg_id = handler.on_arg_id(); } FMT_CONSTEXPR void on_index(int id) { arg_id = handler.on_arg_id(id); } FMT_CONSTEXPR void on_name(basic_string_view id) { arg_id = handler.on_arg_id(id); } }; ++begin; if (begin == end) return handler.on_error("invalid format string"), end; if (*begin == '}') { handler.on_replacement_field(handler.on_arg_id(), begin); } else if (*begin == '{') { handler.on_text(begin, begin + 1); } else { auto adapter = id_adapter{handler, 0}; begin = parse_arg_id(begin, end, adapter); Char c = begin != end ? *begin : Char(); if (c == '}') { handler.on_replacement_field(adapter.arg_id, begin); } else if (c == ':') { begin = handler.on_format_specs(adapter.arg_id, begin + 1, end); if (begin == end || *begin != '}') return handler.on_error("unknown format specifier"), end; } else { return handler.on_error("missing '}' in format string"), end; } } return begin + 1; } template FMT_CONSTEXPR FMT_INLINE void parse_format_string( basic_string_view format_str, Handler&& handler) { auto begin = format_str.data(); auto end = begin + format_str.size(); if (end - begin < 32) { // Use a simple loop instead of memchr for small strings. const Char* p = begin; while (p != end) { auto c = *p++; if (c == '{') { handler.on_text(begin, p - 1); begin = p = parse_replacement_field(p - 1, end, handler); } else if (c == '}') { if (p == end || *p != '}') return handler.on_error("unmatched '}' in format string"); handler.on_text(begin, p); begin = ++p; } } handler.on_text(begin, end); return; } struct writer { FMT_CONSTEXPR void operator()(const Char* from, const Char* to) { if (from == to) return; for (;;) { const Char* p = nullptr; if (!find(from, to, Char('}'), p)) return handler_.on_text(from, to); ++p; if (p == to || *p != '}') return handler_.on_error("unmatched '}' in format string"); handler_.on_text(from, p); from = p + 1; } } Handler& handler_; } write = {handler}; while (begin != end) { // Doing two passes with memchr (one for '{' and another for '}') is up to // 2.5x faster than the naive one-pass implementation on big format strings. const Char* p = begin; if (*begin != '{' && !find(begin + 1, end, Char('{'), p)) return write(begin, end); write(begin, p); begin = parse_replacement_field(p, end, handler); } } template ::value> struct strip_named_arg { using type = T; }; template struct strip_named_arg { using type = remove_cvref_t; }; template FMT_CONSTEXPR auto parse_format_specs(ParseContext& ctx) -> decltype(ctx.begin()) { using char_type = typename ParseContext::char_type; using context = buffer_context; using mapped_type = conditional_t< mapped_type_constant::value != type::custom_type, decltype(arg_mapper().map(std::declval())), typename strip_named_arg::type>; return formatter().parse(ctx); } // Checks char specs and returns true iff the presentation type is char-like. template FMT_CONSTEXPR auto check_char_specs(const format_specs& specs) -> bool { if (specs.type != presentation_type::none && specs.type != presentation_type::chr && specs.type != presentation_type::debug) { return false; } if (specs.align == align::numeric || specs.sign != sign::none || specs.alt) throw_format_error("invalid format specifier for char"); return true; } #if FMT_USE_NONTYPE_TEMPLATE_ARGS template constexpr auto get_arg_index_by_name(basic_string_view name) -> int { if constexpr (is_statically_named_arg()) { if (name == T::name) return N; } if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name(name); (void)name; // Workaround an MSVC bug about "unused" parameter. return -1; } #endif template FMT_CONSTEXPR auto get_arg_index_by_name(basic_string_view name) -> int { #if FMT_USE_NONTYPE_TEMPLATE_ARGS if constexpr (sizeof...(Args) > 0) return get_arg_index_by_name<0, Args...>(name); #endif (void)name; return -1; } template class format_string_checker { private: using parse_context_type = compile_parse_context; static constexpr int num_args = sizeof...(Args); // Format specifier parsing function. // In the future basic_format_parse_context will replace compile_parse_context // here and will use is_constant_evaluated and downcasting to access the data // needed for compile-time checks: https://godbolt.org/z/GvWzcTjh1. using parse_func = const Char* (*)(parse_context_type&); parse_context_type context_; parse_func parse_funcs_[num_args > 0 ? static_cast(num_args) : 1]; type types_[num_args > 0 ? static_cast(num_args) : 1]; public: explicit FMT_CONSTEXPR format_string_checker(basic_string_view fmt) : context_(fmt, num_args, types_), parse_funcs_{&parse_format_specs...}, types_{mapped_type_constant>::value...} {} FMT_CONSTEXPR void on_text(const Char*, const Char*) {} FMT_CONSTEXPR auto on_arg_id() -> int { return context_.next_arg_id(); } FMT_CONSTEXPR auto on_arg_id(int id) -> int { return context_.check_arg_id(id), id; } FMT_CONSTEXPR auto on_arg_id(basic_string_view id) -> int { #if FMT_USE_NONTYPE_TEMPLATE_ARGS auto index = get_arg_index_by_name(id); if (index < 0) on_error("named argument is not found"); return index; #else (void)id; on_error("compile-time checks for named arguments require C++20 support"); return 0; #endif } FMT_CONSTEXPR void on_replacement_field(int, const Char*) {} FMT_CONSTEXPR auto on_format_specs(int id, const Char* begin, const Char*) -> const Char* { context_.advance_to(begin); // id >= 0 check is a workaround for gcc 10 bug (#2065). return id >= 0 && id < num_args ? parse_funcs_[id](context_) : begin; } FMT_CONSTEXPR void on_error(const char* message) { throw_format_error(message); } }; // Reports a compile-time error if S is not a valid format string. template ::value)> FMT_INLINE void check_format_string(const S&) { #ifdef FMT_ENFORCE_COMPILE_STRING static_assert(is_compile_string::value, "FMT_ENFORCE_COMPILE_STRING requires all format strings to use " "FMT_STRING."); #endif } template ::value)> void check_format_string(S format_str) { using char_t = typename S::char_type; FMT_CONSTEXPR auto s = basic_string_view(format_str); using checker = format_string_checker...>; FMT_CONSTEXPR bool error = (parse_format_string(s, checker(s)), true); ignore_unused(error); } template struct vformat_args { using type = basic_format_args< basic_format_context>, Char>>; }; template <> struct vformat_args { using type = format_args; }; // Use vformat_args and avoid type_identity to keep symbols short. template void vformat_to(buffer& buf, basic_string_view fmt, typename vformat_args::type args, locale_ref loc = {}); FMT_API void vprint_mojibake(std::FILE*, string_view, format_args); #ifndef _WIN32 inline void vprint_mojibake(std::FILE*, string_view, format_args) {} #endif } // namespace detail FMT_BEGIN_EXPORT // A formatter specialization for natively supported types. template struct formatter::value != detail::type::custom_type>> { private: detail::dynamic_format_specs specs_; public: template FMT_CONSTEXPR auto parse(ParseContext& ctx) -> const Char* { auto type = detail::type_constant::value; auto end = detail::parse_format_specs(ctx.begin(), ctx.end(), specs_, ctx, type); if (type == detail::type::char_type) detail::check_char_specs(specs_); return end; } template ::value, FMT_ENABLE_IF(U == detail::type::string_type || U == detail::type::cstring_type || U == detail::type::char_type)> FMT_CONSTEXPR void set_debug_format(bool set = true) { specs_.type = set ? presentation_type::debug : presentation_type::none; } template FMT_CONSTEXPR auto format(const T& val, FormatContext& ctx) const -> decltype(ctx.out()); }; #define FMT_FORMAT_AS(Type, Base) \ template \ struct formatter : formatter {} FMT_FORMAT_AS(signed char, int); FMT_FORMAT_AS(unsigned char, unsigned); FMT_FORMAT_AS(short, int); FMT_FORMAT_AS(unsigned short, unsigned); FMT_FORMAT_AS(long, detail::long_type); FMT_FORMAT_AS(unsigned long, detail::ulong_type); FMT_FORMAT_AS(Char*, const Char*); FMT_FORMAT_AS(std::basic_string, basic_string_view); FMT_FORMAT_AS(std::nullptr_t, const void*); FMT_FORMAT_AS(detail::std_string_view, basic_string_view); template struct runtime_format_string { basic_string_view str; }; /** A compile-time format string. */ template class basic_format_string { private: basic_string_view str_; public: template >::value)> FMT_CONSTEVAL FMT_INLINE basic_format_string(const S& s) : str_(s) { static_assert( detail::count< (std::is_base_of>::value && std::is_reference::value)...>() == 0, "passing views as lvalues is disallowed"); #ifdef FMT_HAS_CONSTEVAL if constexpr (detail::count_named_args() == detail::count_statically_named_args()) { using checker = detail::format_string_checker...>; detail::parse_format_string(str_, checker(s)); } #else detail::check_format_string(s); #endif } basic_format_string(runtime_format_string fmt) : str_(fmt.str) {} FMT_INLINE operator basic_string_view() const { return str_; } FMT_INLINE auto get() const -> basic_string_view { return str_; } }; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 // Workaround broken conversion on older gcc. template using format_string = string_view; inline auto runtime(string_view s) -> string_view { return s; } #else template using format_string = basic_format_string...>; /** \rst Creates a runtime format string. **Example**:: // Check format string at runtime instead of compile-time. fmt::print(fmt::runtime("{:d}"), "I am not a number"); \endrst */ inline auto runtime(string_view s) -> runtime_format_string<> { return {{s}}; } #endif FMT_API auto vformat(string_view fmt, format_args args) -> std::string; /** \rst Formats ``args`` according to specifications in ``fmt`` and returns the result as a string. **Example**:: #include std::string message = fmt::format("The answer is {}.", 42); \endrst */ template FMT_NODISCARD FMT_INLINE auto format(format_string fmt, T&&... args) -> std::string { return vformat(fmt, fmt::make_format_args(args...)); } /** Formats a string and writes the output to ``out``. */ template ::value)> auto vformat_to(OutputIt out, string_view fmt, format_args args) -> OutputIt { auto&& buf = detail::get_buffer(out); detail::vformat_to(buf, fmt, args, {}); return detail::get_iterator(buf, out); } /** \rst Formats ``args`` according to specifications in ``fmt``, writes the result to the output iterator ``out`` and returns the iterator past the end of the output range. `format_to` does not append a terminating null character. **Example**:: auto out = std::vector(); fmt::format_to(std::back_inserter(out), "{}", 42); \endrst */ template ::value)> FMT_INLINE auto format_to(OutputIt out, format_string fmt, T&&... args) -> OutputIt { return vformat_to(out, fmt, fmt::make_format_args(args...)); } template struct format_to_n_result { /** Iterator past the end of the output range. */ OutputIt out; /** Total (not truncated) output size. */ size_t size; }; template ::value)> auto vformat_to_n(OutputIt out, size_t n, string_view fmt, format_args args) -> format_to_n_result { using traits = detail::fixed_buffer_traits; auto buf = detail::iterator_buffer(out, n); detail::vformat_to(buf, fmt, args, {}); return {buf.out(), buf.count()}; } /** \rst Formats ``args`` according to specifications in ``fmt``, writes up to ``n`` characters of the result to the output iterator ``out`` and returns the total (not truncated) output size and the iterator past the end of the output range. `format_to_n` does not append a terminating null character. \endrst */ template ::value)> FMT_INLINE auto format_to_n(OutputIt out, size_t n, format_string fmt, T&&... args) -> format_to_n_result { return vformat_to_n(out, n, fmt, fmt::make_format_args(args...)); } /** Returns the number of chars in the output of ``format(fmt, args...)``. */ template FMT_NODISCARD FMT_INLINE auto formatted_size(format_string fmt, T&&... args) -> size_t { auto buf = detail::counting_buffer<>(); detail::vformat_to(buf, fmt, fmt::make_format_args(args...), {}); return buf.count(); } FMT_API void vprint(string_view fmt, format_args args); FMT_API void vprint(std::FILE* f, string_view fmt, format_args args); /** \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to ``stdout``. **Example**:: fmt::print("Elapsed time: {0:.2f} seconds", 1.23); \endrst */ template FMT_INLINE void print(format_string fmt, T&&... args) { const auto& vargs = fmt::make_format_args(args...); return detail::is_utf8() ? vprint(fmt, vargs) : detail::vprint_mojibake(stdout, fmt, vargs); } /** \rst Formats ``args`` according to specifications in ``fmt`` and writes the output to the file ``f``. **Example**:: fmt::print(stderr, "Don't {}!", "panic"); \endrst */ template FMT_INLINE void print(std::FILE* f, format_string fmt, T&&... args) { const auto& vargs = fmt::make_format_args(args...); return detail::is_utf8() ? vprint(f, fmt, vargs) : detail::vprint_mojibake(f, fmt, vargs); } /** Formats ``args`` according to specifications in ``fmt`` and writes the output to the file ``f`` followed by a newline. */ template FMT_INLINE void println(std::FILE* f, format_string fmt, T&&... args) { return fmt::print(f, "{}\n", fmt::format(fmt, std::forward(args)...)); } /** Formats ``args`` according to specifications in ``fmt`` and writes the output to ``stdout`` followed by a newline. */ template FMT_INLINE void println(format_string fmt, T&&... args) { return fmt::println(stdout, fmt, std::forward(args)...); } FMT_END_EXPORT FMT_GCC_PRAGMA("GCC pop_options") FMT_END_NAMESPACE #ifdef FMT_HEADER_ONLY # include "format.h" #endif #endif // FMT_CORE_H_ btop-1.3.0/include/fmt/format-inl.h000066400000000000000000002166421454653170500171360ustar00rootroot00000000000000// Formatting library for C++ - implementation // // Copyright (c) 2012 - 2016, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #ifndef FMT_FORMAT_INL_H_ #define FMT_FORMAT_INL_H_ #include #include // errno #include #include #include #ifndef FMT_STATIC_THOUSANDS_SEPARATOR # include #endif #ifdef _WIN32 # include // _isatty #endif #include "format.h" FMT_BEGIN_NAMESPACE namespace detail { FMT_FUNC void assert_fail(const char* file, int line, const char* message) { // Use unchecked std::fprintf to avoid triggering another assertion when // writing to stderr fails std::fprintf(stderr, "%s:%d: assertion failed: %s", file, line, message); // Chosen instead of std::abort to satisfy Clang in CUDA mode during device // code pass. std::terminate(); } FMT_FUNC void throw_format_error(const char* message) { FMT_THROW(format_error(message)); } FMT_FUNC void format_error_code(detail::buffer& out, int error_code, string_view message) noexcept { // Report error code making sure that the output fits into // inline_buffer_size to avoid dynamic memory allocation and potential // bad_alloc. out.try_resize(0); static const char SEP[] = ": "; static const char ERROR_STR[] = "error "; // Subtract 2 to account for terminating null characters in SEP and ERROR_STR. size_t error_code_size = sizeof(SEP) + sizeof(ERROR_STR) - 2; auto abs_value = static_cast>(error_code); if (detail::is_negative(error_code)) { abs_value = 0 - abs_value; ++error_code_size; } error_code_size += detail::to_unsigned(detail::count_digits(abs_value)); auto it = buffer_appender(out); if (message.size() <= inline_buffer_size - error_code_size) format_to(it, FMT_STRING("{}{}"), message, SEP); format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code); FMT_ASSERT(out.size() <= inline_buffer_size, ""); } FMT_FUNC void report_error(format_func func, int error_code, const char* message) noexcept { memory_buffer full_message; func(full_message, error_code, message); // Don't use fwrite_fully because the latter may throw. if (std::fwrite(full_message.data(), full_message.size(), 1, stderr) > 0) std::fputc('\n', stderr); } // A wrapper around fwrite that throws on error. inline void fwrite_fully(const void* ptr, size_t size, size_t count, FILE* stream) { size_t written = std::fwrite(ptr, size, count, stream); if (written < count) FMT_THROW(system_error(errno, FMT_STRING("cannot write to file"))); } #ifndef FMT_STATIC_THOUSANDS_SEPARATOR template locale_ref::locale_ref(const Locale& loc) : locale_(&loc) { static_assert(std::is_same::value, ""); } template Locale locale_ref::get() const { static_assert(std::is_same::value, ""); return locale_ ? *static_cast(locale_) : std::locale(); } template FMT_FUNC auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result { auto& facet = std::use_facet>(loc.get()); auto grouping = facet.grouping(); auto thousands_sep = grouping.empty() ? Char() : facet.thousands_sep(); return {std::move(grouping), thousands_sep}; } template FMT_FUNC Char decimal_point_impl(locale_ref loc) { return std::use_facet>(loc.get()) .decimal_point(); } #else template FMT_FUNC auto thousands_sep_impl(locale_ref) -> thousands_sep_result { return {"\03", FMT_STATIC_THOUSANDS_SEPARATOR}; } template FMT_FUNC Char decimal_point_impl(locale_ref) { return '.'; } #endif FMT_FUNC auto write_loc(appender out, loc_value value, const format_specs<>& specs, locale_ref loc) -> bool { #ifndef FMT_STATIC_THOUSANDS_SEPARATOR auto locale = loc.get(); // We cannot use the num_put facet because it may produce output in // a wrong encoding. using facet = format_facet; if (std::has_facet(locale)) return std::use_facet(locale).put(out, value, specs); return facet(locale).put(out, value, specs); #endif return false; } } // namespace detail template typename Locale::id format_facet::id; #ifndef FMT_STATIC_THOUSANDS_SEPARATOR template format_facet::format_facet(Locale& loc) { auto& numpunct = std::use_facet>(loc); grouping_ = numpunct.grouping(); if (!grouping_.empty()) separator_ = std::string(1, numpunct.thousands_sep()); } template <> FMT_API FMT_FUNC auto format_facet::do_put( appender out, loc_value val, const format_specs<>& specs) const -> bool { return val.visit( detail::loc_writer<>{out, specs, separator_, grouping_, decimal_point_}); } #endif FMT_FUNC std::system_error vsystem_error(int error_code, string_view fmt, format_args args) { auto ec = std::error_code(error_code, std::generic_category()); return std::system_error(ec, vformat(fmt, args)); } namespace detail { template inline bool operator==(basic_fp x, basic_fp y) { return x.f == y.f && x.e == y.e; } // Compilers should be able to optimize this into the ror instruction. FMT_CONSTEXPR inline uint32_t rotr(uint32_t n, uint32_t r) noexcept { r &= 31; return (n >> r) | (n << (32 - r)); } FMT_CONSTEXPR inline uint64_t rotr(uint64_t n, uint32_t r) noexcept { r &= 63; return (n >> r) | (n << (64 - r)); } // Implementation of Dragonbox algorithm: https://github.com/jk-jeon/dragonbox. namespace dragonbox { // Computes upper 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline uint64_t umul96_upper64(uint32_t x, uint64_t y) noexcept { return umul128_upper64(static_cast(x) << 32, y); } // Computes lower 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline uint128_fallback umul192_lower128(uint64_t x, uint128_fallback y) noexcept { uint64_t high = x * y.high(); uint128_fallback high_low = umul128(x, y.low()); return {high + high_low.high(), high_low.low()}; } // Computes lower 64 bits of multiplication of a 32-bit unsigned integer and a // 64-bit unsigned integer. inline uint64_t umul96_lower64(uint32_t x, uint64_t y) noexcept { return x * y; } // Various fast log computations. inline int floor_log10_pow2_minus_log10_4_over_3(int e) noexcept { FMT_ASSERT(e <= 2936 && e >= -2985, "too large exponent"); return (e * 631305 - 261663) >> 21; } FMT_INLINE_VARIABLE constexpr struct { uint32_t divisor; int shift_amount; } div_small_pow10_infos[] = {{10, 16}, {100, 16}}; // Replaces n by floor(n / pow(10, N)) returning true if and only if n is // divisible by pow(10, N). // Precondition: n <= pow(10, N + 1). template bool check_divisibility_and_divide_by_pow10(uint32_t& n) noexcept { // The numbers below are chosen such that: // 1. floor(n/d) = floor(nm / 2^k) where d=10 or d=100, // 2. nm mod 2^k < m if and only if n is divisible by d, // where m is magic_number, k is shift_amount // and d is divisor. // // Item 1 is a common technique of replacing division by a constant with // multiplication, see e.g. "Division by Invariant Integers Using // Multiplication" by Granlund and Montgomery (1994). magic_number (m) is set // to ceil(2^k/d) for large enough k. // The idea for item 2 originates from Schubfach. constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; n *= magic_number; const uint32_t comparison_mask = (1u << info.shift_amount) - 1; bool result = (n & comparison_mask) < magic_number; n >>= info.shift_amount; return result; } // Computes floor(n / pow(10, N)) for small n and N. // Precondition: n <= pow(10, N + 1). template uint32_t small_division_by_pow10(uint32_t n) noexcept { constexpr auto info = div_small_pow10_infos[N - 1]; FMT_ASSERT(n <= info.divisor * 10, "n is too large"); constexpr uint32_t magic_number = (1u << info.shift_amount) / info.divisor + 1; return (n * magic_number) >> info.shift_amount; } // Computes floor(n / 10^(kappa + 1)) (float) inline uint32_t divide_by_10_to_kappa_plus_1(uint32_t n) noexcept { // 1374389535 = ceil(2^37/100) return static_cast((static_cast(n) * 1374389535) >> 37); } // Computes floor(n / 10^(kappa + 1)) (double) inline uint64_t divide_by_10_to_kappa_plus_1(uint64_t n) noexcept { // 2361183241434822607 = ceil(2^(64+7)/1000) return umul128_upper64(n, 2361183241434822607ull) >> 7; } // Various subroutines using pow10 cache template struct cache_accessor; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint64_t; static uint64_t get_cached_power(int k) noexcept { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr const uint64_t pow10_significands[] = { 0x81ceb32c4b43fcf5, 0xa2425ff75e14fc32, 0xcad2f7f5359a3b3f, 0xfd87b5f28300ca0e, 0x9e74d1b791e07e49, 0xc612062576589ddb, 0xf79687aed3eec552, 0x9abe14cd44753b53, 0xc16d9a0095928a28, 0xf1c90080baf72cb2, 0x971da05074da7bef, 0xbce5086492111aeb, 0xec1e4a7db69561a6, 0x9392ee8e921d5d08, 0xb877aa3236a4b44a, 0xe69594bec44de15c, 0x901d7cf73ab0acda, 0xb424dc35095cd810, 0xe12e13424bb40e14, 0x8cbccc096f5088cc, 0xafebff0bcb24aaff, 0xdbe6fecebdedd5bf, 0x89705f4136b4a598, 0xabcc77118461cefd, 0xd6bf94d5e57a42bd, 0x8637bd05af6c69b6, 0xa7c5ac471b478424, 0xd1b71758e219652c, 0x83126e978d4fdf3c, 0xa3d70a3d70a3d70b, 0xcccccccccccccccd, 0x8000000000000000, 0xa000000000000000, 0xc800000000000000, 0xfa00000000000000, 0x9c40000000000000, 0xc350000000000000, 0xf424000000000000, 0x9896800000000000, 0xbebc200000000000, 0xee6b280000000000, 0x9502f90000000000, 0xba43b74000000000, 0xe8d4a51000000000, 0x9184e72a00000000, 0xb5e620f480000000, 0xe35fa931a0000000, 0x8e1bc9bf04000000, 0xb1a2bc2ec5000000, 0xde0b6b3a76400000, 0x8ac7230489e80000, 0xad78ebc5ac620000, 0xd8d726b7177a8000, 0x878678326eac9000, 0xa968163f0a57b400, 0xd3c21bcecceda100, 0x84595161401484a0, 0xa56fa5b99019a5c8, 0xcecb8f27f4200f3a, 0x813f3978f8940985, 0xa18f07d736b90be6, 0xc9f2c9cd04674edf, 0xfc6f7c4045812297, 0x9dc5ada82b70b59e, 0xc5371912364ce306, 0xf684df56c3e01bc7, 0x9a130b963a6c115d, 0xc097ce7bc90715b4, 0xf0bdc21abb48db21, 0x96769950b50d88f5, 0xbc143fa4e250eb32, 0xeb194f8e1ae525fe, 0x92efd1b8d0cf37bf, 0xb7abc627050305ae, 0xe596b7b0c643c71a, 0x8f7e32ce7bea5c70, 0xb35dbf821ae4f38c, 0xe0352f62a19e306f}; return pow10_significands[k - float_info::min_k]; } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static compute_mul_result compute_mul( carrier_uint u, const cache_entry_type& cache) noexcept { auto r = umul96_upper64(u, cache); return {static_cast(r >> 32), static_cast(r) == 0}; } static uint32_t compute_delta(const cache_entry_type& cache, int beta) noexcept { return static_cast(cache >> (64 - 1 - beta)); } static compute_mul_parity_result compute_mul_parity( carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul96_lower64(two_f, cache); return {((r >> (64 - beta)) & 1) != 0, static_cast(r >> (32 - beta)) == 0}; } static carrier_uint compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return static_cast( (cache - (cache >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta)); } static carrier_uint compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return static_cast( (cache + (cache >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta)); } static carrier_uint compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (static_cast( cache >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; template <> struct cache_accessor { using carrier_uint = float_info::carrier_uint; using cache_entry_type = uint128_fallback; static uint128_fallback get_cached_power(int k) noexcept { FMT_ASSERT(k >= float_info::min_k && k <= float_info::max_k, "k is out of range"); static constexpr const uint128_fallback pow10_significands[] = { #if FMT_USE_FULL_CACHE_DRAGONBOX {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0x9faacf3df73609b1, 0x77b191618c54e9ad}, {0xc795830d75038c1d, 0xd59df5b9ef6a2418}, {0xf97ae3d0d2446f25, 0x4b0573286b44ad1e}, {0x9becce62836ac577, 0x4ee367f9430aec33}, {0xc2e801fb244576d5, 0x229c41f793cda740}, {0xf3a20279ed56d48a, 0x6b43527578c11110}, {0x9845418c345644d6, 0x830a13896b78aaaa}, {0xbe5691ef416bd60c, 0x23cc986bc656d554}, {0xedec366b11c6cb8f, 0x2cbfbe86b7ec8aa9}, {0x94b3a202eb1c3f39, 0x7bf7d71432f3d6aa}, {0xb9e08a83a5e34f07, 0xdaf5ccd93fb0cc54}, {0xe858ad248f5c22c9, 0xd1b3400f8f9cff69}, {0x91376c36d99995be, 0x23100809b9c21fa2}, {0xb58547448ffffb2d, 0xabd40a0c2832a78b}, {0xe2e69915b3fff9f9, 0x16c90c8f323f516d}, {0x8dd01fad907ffc3b, 0xae3da7d97f6792e4}, {0xb1442798f49ffb4a, 0x99cd11cfdf41779d}, {0xdd95317f31c7fa1d, 0x40405643d711d584}, {0x8a7d3eef7f1cfc52, 0x482835ea666b2573}, {0xad1c8eab5ee43b66, 0xda3243650005eed0}, {0xd863b256369d4a40, 0x90bed43e40076a83}, {0x873e4f75e2224e68, 0x5a7744a6e804a292}, {0xa90de3535aaae202, 0x711515d0a205cb37}, {0xd3515c2831559a83, 0x0d5a5b44ca873e04}, {0x8412d9991ed58091, 0xe858790afe9486c3}, {0xa5178fff668ae0b6, 0x626e974dbe39a873}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0x80fa687f881c7f8e, 0x7ce66634bc9d0b9a}, {0xa139029f6a239f72, 0x1c1fffc1ebc44e81}, {0xc987434744ac874e, 0xa327ffb266b56221}, {0xfbe9141915d7a922, 0x4bf1ff9f0062baa9}, {0x9d71ac8fada6c9b5, 0x6f773fc3603db4aa}, {0xc4ce17b399107c22, 0xcb550fb4384d21d4}, {0xf6019da07f549b2b, 0x7e2a53a146606a49}, {0x99c102844f94e0fb, 0x2eda7444cbfc426e}, {0xc0314325637a1939, 0xfa911155fefb5309}, {0xf03d93eebc589f88, 0x793555ab7eba27cb}, {0x96267c7535b763b5, 0x4bc1558b2f3458df}, {0xbbb01b9283253ca2, 0x9eb1aaedfb016f17}, {0xea9c227723ee8bcb, 0x465e15a979c1cadd}, {0x92a1958a7675175f, 0x0bfacd89ec191eca}, {0xb749faed14125d36, 0xcef980ec671f667c}, {0xe51c79a85916f484, 0x82b7e12780e7401b}, {0x8f31cc0937ae58d2, 0xd1b2ecb8b0908811}, {0xb2fe3f0b8599ef07, 0x861fa7e6dcb4aa16}, {0xdfbdcece67006ac9, 0x67a791e093e1d49b}, {0x8bd6a141006042bd, 0xe0c8bb2c5c6d24e1}, {0xaecc49914078536d, 0x58fae9f773886e19}, {0xda7f5bf590966848, 0xaf39a475506a899f}, {0x888f99797a5e012d, 0x6d8406c952429604}, {0xaab37fd7d8f58178, 0xc8e5087ba6d33b84}, {0xd5605fcdcf32e1d6, 0xfb1e4a9a90880a65}, {0x855c3be0a17fcd26, 0x5cf2eea09a550680}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0xd0601d8efc57b08b, 0xf13b94daf124da27}, {0x823c12795db6ce57, 0x76c53d08d6b70859}, {0xa2cb1717b52481ed, 0x54768c4b0c64ca6f}, {0xcb7ddcdda26da268, 0xa9942f5dcf7dfd0a}, {0xfe5d54150b090b02, 0xd3f93b35435d7c4d}, {0x9efa548d26e5a6e1, 0xc47bc5014a1a6db0}, {0xc6b8e9b0709f109a, 0x359ab6419ca1091c}, {0xf867241c8cc6d4c0, 0xc30163d203c94b63}, {0x9b407691d7fc44f8, 0x79e0de63425dcf1e}, {0xc21094364dfb5636, 0x985915fc12f542e5}, {0xf294b943e17a2bc4, 0x3e6f5b7b17b2939e}, {0x979cf3ca6cec5b5a, 0xa705992ceecf9c43}, {0xbd8430bd08277231, 0x50c6ff782a838354}, {0xece53cec4a314ebd, 0xa4f8bf5635246429}, {0x940f4613ae5ed136, 0x871b7795e136be9a}, {0xb913179899f68584, 0x28e2557b59846e40}, {0xe757dd7ec07426e5, 0x331aeada2fe589d0}, {0x9096ea6f3848984f, 0x3ff0d2c85def7622}, {0xb4bca50b065abe63, 0x0fed077a756b53aa}, {0xe1ebce4dc7f16dfb, 0xd3e8495912c62895}, {0x8d3360f09cf6e4bd, 0x64712dd7abbbd95d}, {0xb080392cc4349dec, 0xbd8d794d96aacfb4}, {0xdca04777f541c567, 0xecf0d7a0fc5583a1}, {0x89e42caaf9491b60, 0xf41686c49db57245}, {0xac5d37d5b79b6239, 0x311c2875c522ced6}, {0xd77485cb25823ac7, 0x7d633293366b828c}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xa8530886b54dbdeb, 0xd9f57f830283fdfd}, {0xd267caa862a12d66, 0xd072df63c324fd7c}, {0x8380dea93da4bc60, 0x4247cb9e59f71e6e}, {0xa46116538d0deb78, 0x52d9be85f074e609}, {0xcd795be870516656, 0x67902e276c921f8c}, {0x806bd9714632dff6, 0x00ba1cd8a3db53b7}, {0xa086cfcd97bf97f3, 0x80e8a40eccd228a5}, {0xc8a883c0fdaf7df0, 0x6122cd128006b2ce}, {0xfad2a4b13d1b5d6c, 0x796b805720085f82}, {0x9cc3a6eec6311a63, 0xcbe3303674053bb1}, {0xc3f490aa77bd60fc, 0xbedbfc4411068a9d}, {0xf4f1b4d515acb93b, 0xee92fb5515482d45}, {0x991711052d8bf3c5, 0x751bdd152d4d1c4b}, {0xbf5cd54678eef0b6, 0xd262d45a78a0635e}, {0xef340a98172aace4, 0x86fb897116c87c35}, {0x9580869f0e7aac0e, 0xd45d35e6ae3d4da1}, {0xbae0a846d2195712, 0x8974836059cca10a}, {0xe998d258869facd7, 0x2bd1a438703fc94c}, {0x91ff83775423cc06, 0x7b6306a34627ddd0}, {0xb67f6455292cbf08, 0x1a3bc84c17b1d543}, {0xe41f3d6a7377eeca, 0x20caba5f1d9e4a94}, {0x8e938662882af53e, 0x547eb47b7282ee9d}, {0xb23867fb2a35b28d, 0xe99e619a4f23aa44}, {0xdec681f9f4c31f31, 0x6405fa00e2ec94d5}, {0x8b3c113c38f9f37e, 0xde83bc408dd3dd05}, {0xae0b158b4738705e, 0x9624ab50b148d446}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0x87f8a8d4cfa417c9, 0xe54ca5d70a80e5d7}, {0xa9f6d30a038d1dbc, 0x5e9fcf4ccd211f4d}, {0xd47487cc8470652b, 0x7647c32000696720}, {0x84c8d4dfd2c63f3b, 0x29ecd9f40041e074}, {0xa5fb0a17c777cf09, 0xf468107100525891}, {0xcf79cc9db955c2cc, 0x7182148d4066eeb5}, {0x81ac1fe293d599bf, 0xc6f14cd848405531}, {0xa21727db38cb002f, 0xb8ada00e5a506a7d}, {0xca9cf1d206fdc03b, 0xa6d90811f0e4851d}, {0xfd442e4688bd304a, 0x908f4a166d1da664}, {0x9e4a9cec15763e2e, 0x9a598e4e043287ff}, {0xc5dd44271ad3cdba, 0x40eff1e1853f29fe}, {0xf7549530e188c128, 0xd12bee59e68ef47d}, {0x9a94dd3e8cf578b9, 0x82bb74f8301958cf}, {0xc13a148e3032d6e7, 0xe36a52363c1faf02}, {0xf18899b1bc3f8ca1, 0xdc44e6c3cb279ac2}, {0x96f5600f15a7b7e5, 0x29ab103a5ef8c0ba}, {0xbcb2b812db11a5de, 0x7415d448f6b6f0e8}, {0xebdf661791d60f56, 0x111b495b3464ad22}, {0x936b9fcebb25c995, 0xcab10dd900beec35}, {0xb84687c269ef3bfb, 0x3d5d514f40eea743}, {0xe65829b3046b0afa, 0x0cb4a5a3112a5113}, {0x8ff71a0fe2c2e6dc, 0x47f0e785eaba72ac}, {0xb3f4e093db73a093, 0x59ed216765690f57}, {0xe0f218b8d25088b8, 0x306869c13ec3532d}, {0x8c974f7383725573, 0x1e414218c73a13fc}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0xdbac6c247d62a583, 0xdf45f746b74abf3a}, {0x894bc396ce5da772, 0x6b8bba8c328eb784}, {0xab9eb47c81f5114f, 0x066ea92f3f326565}, {0xd686619ba27255a2, 0xc80a537b0efefebe}, {0x8613fd0145877585, 0xbd06742ce95f5f37}, {0xa798fc4196e952e7, 0x2c48113823b73705}, {0xd17f3b51fca3a7a0, 0xf75a15862ca504c6}, {0x82ef85133de648c4, 0x9a984d73dbe722fc}, {0xa3ab66580d5fdaf5, 0xc13e60d0d2e0ebbb}, {0xcc963fee10b7d1b3, 0x318df905079926a9}, {0xffbbcfe994e5c61f, 0xfdf17746497f7053}, {0x9fd561f1fd0f9bd3, 0xfeb6ea8bedefa634}, {0xc7caba6e7c5382c8, 0xfe64a52ee96b8fc1}, {0xf9bd690a1b68637b, 0x3dfdce7aa3c673b1}, {0x9c1661a651213e2d, 0x06bea10ca65c084f}, {0xc31bfa0fe5698db8, 0x486e494fcff30a63}, {0xf3e2f893dec3f126, 0x5a89dba3c3efccfb}, {0x986ddb5c6b3a76b7, 0xf89629465a75e01d}, {0xbe89523386091465, 0xf6bbb397f1135824}, {0xee2ba6c0678b597f, 0x746aa07ded582e2d}, {0x94db483840b717ef, 0xa8c2a44eb4571cdd}, {0xba121a4650e4ddeb, 0x92f34d62616ce414}, {0xe896a0d7e51e1566, 0x77b020baf9c81d18}, {0x915e2486ef32cd60, 0x0ace1474dc1d122f}, {0xb5b5ada8aaff80b8, 0x0d819992132456bb}, {0xe3231912d5bf60e6, 0x10e1fff697ed6c6a}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xb1736b96b6fd83b3, 0xbd308ff8a6b17cb3}, {0xddd0467c64bce4a0, 0xac7cb3f6d05ddbdf}, {0x8aa22c0dbef60ee4, 0x6bcdf07a423aa96c}, {0xad4ab7112eb3929d, 0x86c16c98d2c953c7}, {0xd89d64d57a607744, 0xe871c7bf077ba8b8}, {0x87625f056c7c4a8b, 0x11471cd764ad4973}, {0xa93af6c6c79b5d2d, 0xd598e40d3dd89bd0}, {0xd389b47879823479, 0x4aff1d108d4ec2c4}, {0x843610cb4bf160cb, 0xcedf722a585139bb}, {0xa54394fe1eedb8fe, 0xc2974eb4ee658829}, {0xce947a3da6a9273e, 0x733d226229feea33}, {0x811ccc668829b887, 0x0806357d5a3f5260}, {0xa163ff802a3426a8, 0xca07c2dcb0cf26f8}, {0xc9bcff6034c13052, 0xfc89b393dd02f0b6}, {0xfc2c3f3841f17c67, 0xbbac2078d443ace3}, {0x9d9ba7832936edc0, 0xd54b944b84aa4c0e}, {0xc5029163f384a931, 0x0a9e795e65d4df12}, {0xf64335bcf065d37d, 0x4d4617b5ff4a16d6}, {0x99ea0196163fa42e, 0x504bced1bf8e4e46}, {0xc06481fb9bcf8d39, 0xe45ec2862f71e1d7}, {0xf07da27a82c37088, 0x5d767327bb4e5a4d}, {0x964e858c91ba2655, 0x3a6a07f8d510f870}, {0xbbe226efb628afea, 0x890489f70a55368c}, {0xeadab0aba3b2dbe5, 0x2b45ac74ccea842f}, {0x92c8ae6b464fc96f, 0x3b0b8bc90012929e}, {0xb77ada0617e3bbcb, 0x09ce6ebb40173745}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0x8f57fa54c2a9eab6, 0x9fa946824a12232e}, {0xb32df8e9f3546564, 0x47939822dc96abfa}, {0xdff9772470297ebd, 0x59787e2b93bc56f8}, {0x8bfbea76c619ef36, 0x57eb4edb3c55b65b}, {0xaefae51477a06b03, 0xede622920b6b23f2}, {0xdab99e59958885c4, 0xe95fab368e45ecee}, {0x88b402f7fd75539b, 0x11dbcb0218ebb415}, {0xaae103b5fcd2a881, 0xd652bdc29f26a11a}, {0xd59944a37c0752a2, 0x4be76d3346f04960}, {0x857fcae62d8493a5, 0x6f70a4400c562ddc}, {0xa6dfbd9fb8e5b88e, 0xcb4ccd500f6bb953}, {0xd097ad07a71f26b2, 0x7e2000a41346a7a8}, {0x825ecc24c873782f, 0x8ed400668c0c28c9}, {0xa2f67f2dfa90563b, 0x728900802f0f32fb}, {0xcbb41ef979346bca, 0x4f2b40a03ad2ffba}, {0xfea126b7d78186bc, 0xe2f610c84987bfa9}, {0x9f24b832e6b0f436, 0x0dd9ca7d2df4d7ca}, {0xc6ede63fa05d3143, 0x91503d1c79720dbc}, {0xf8a95fcf88747d94, 0x75a44c6397ce912b}, {0x9b69dbe1b548ce7c, 0xc986afbe3ee11abb}, {0xc24452da229b021b, 0xfbe85badce996169}, {0xf2d56790ab41c2a2, 0xfae27299423fb9c4}, {0x97c560ba6b0919a5, 0xdccd879fc967d41b}, {0xbdb6b8e905cb600f, 0x5400e987bbc1c921}, {0xed246723473e3813, 0x290123e9aab23b69}, {0x9436c0760c86e30b, 0xf9a0b6720aaf6522}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0xe7958cb87392c2c2, 0xb60b1d1230b20e05}, {0x90bd77f3483bb9b9, 0xb1c6f22b5e6f48c3}, {0xb4ecd5f01a4aa828, 0x1e38aeb6360b1af4}, {0xe2280b6c20dd5232, 0x25c6da63c38de1b1}, {0x8d590723948a535f, 0x579c487e5a38ad0f}, {0xb0af48ec79ace837, 0x2d835a9df0c6d852}, {0xdcdb1b2798182244, 0xf8e431456cf88e66}, {0x8a08f0f8bf0f156b, 0x1b8e9ecb641b5900}, {0xac8b2d36eed2dac5, 0xe272467e3d222f40}, {0xd7adf884aa879177, 0x5b0ed81dcc6abb10}, {0x86ccbb52ea94baea, 0x98e947129fc2b4ea}, {0xa87fea27a539e9a5, 0x3f2398d747b36225}, {0xd29fe4b18e88640e, 0x8eec7f0d19a03aae}, {0x83a3eeeef9153e89, 0x1953cf68300424ad}, {0xa48ceaaab75a8e2b, 0x5fa8c3423c052dd8}, {0xcdb02555653131b6, 0x3792f412cb06794e}, {0x808e17555f3ebf11, 0xe2bbd88bbee40bd1}, {0xa0b19d2ab70e6ed6, 0x5b6aceaeae9d0ec5}, {0xc8de047564d20a8b, 0xf245825a5a445276}, {0xfb158592be068d2e, 0xeed6e2f0f0d56713}, {0x9ced737bb6c4183d, 0x55464dd69685606c}, {0xc428d05aa4751e4c, 0xaa97e14c3c26b887}, {0xf53304714d9265df, 0xd53dd99f4b3066a9}, {0x993fe2c6d07b7fab, 0xe546a8038efe402a}, {0xbf8fdb78849a5f96, 0xde98520472bdd034}, {0xef73d256a5c0f77c, 0x963e66858f6d4441}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xbb127c53b17ec159, 0x5560c018580d5d53}, {0xe9d71b689dde71af, 0xaab8f01e6e10b4a7}, {0x9226712162ab070d, 0xcab3961304ca70e9}, {0xb6b00d69bb55c8d1, 0x3d607b97c5fd0d23}, {0xe45c10c42a2b3b05, 0x8cb89a7db77c506b}, {0x8eb98a7a9a5b04e3, 0x77f3608e92adb243}, {0xb267ed1940f1c61c, 0x55f038b237591ed4}, {0xdf01e85f912e37a3, 0x6b6c46dec52f6689}, {0x8b61313bbabce2c6, 0x2323ac4b3b3da016}, {0xae397d8aa96c1b77, 0xabec975e0a0d081b}, {0xd9c7dced53c72255, 0x96e7bd358c904a22}, {0x881cea14545c7575, 0x7e50d64177da2e55}, {0xaa242499697392d2, 0xdde50bd1d5d0b9ea}, {0xd4ad2dbfc3d07787, 0x955e4ec64b44e865}, {0x84ec3c97da624ab4, 0xbd5af13bef0b113f}, {0xa6274bbdd0fadd61, 0xecb1ad8aeacdd58f}, {0xcfb11ead453994ba, 0x67de18eda5814af3}, {0x81ceb32c4b43fcf4, 0x80eacf948770ced8}, {0xa2425ff75e14fc31, 0xa1258379a94d028e}, {0xcad2f7f5359a3b3e, 0x096ee45813a04331}, {0xfd87b5f28300ca0d, 0x8bca9d6e188853fd}, {0x9e74d1b791e07e48, 0x775ea264cf55347e}, {0xc612062576589dda, 0x95364afe032a819e}, {0xf79687aed3eec551, 0x3a83ddbd83f52205}, {0x9abe14cd44753b52, 0xc4926a9672793543}, {0xc16d9a0095928a27, 0x75b7053c0f178294}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0x971da05074da7bee, 0xd3f6fc16ebca5e04}, {0xbce5086492111aea, 0x88f4bb1ca6bcf585}, {0xec1e4a7db69561a5, 0x2b31e9e3d06c32e6}, {0x9392ee8e921d5d07, 0x3aff322e62439fd0}, {0xb877aa3236a4b449, 0x09befeb9fad487c3}, {0xe69594bec44de15b, 0x4c2ebe687989a9b4}, {0x901d7cf73ab0acd9, 0x0f9d37014bf60a11}, {0xb424dc35095cd80f, 0x538484c19ef38c95}, {0xe12e13424bb40e13, 0x2865a5f206b06fba}, {0x8cbccc096f5088cb, 0xf93f87b7442e45d4}, {0xafebff0bcb24aafe, 0xf78f69a51539d749}, {0xdbe6fecebdedd5be, 0xb573440e5a884d1c}, {0x89705f4136b4a597, 0x31680a88f8953031}, {0xabcc77118461cefc, 0xfdc20d2b36ba7c3e}, {0xd6bf94d5e57a42bc, 0x3d32907604691b4d}, {0x8637bd05af6c69b5, 0xa63f9a49c2c1b110}, {0xa7c5ac471b478423, 0x0fcf80dc33721d54}, {0xd1b71758e219652b, 0xd3c36113404ea4a9}, {0x83126e978d4fdf3b, 0x645a1cac083126ea}, {0xa3d70a3d70a3d70a, 0x3d70a3d70a3d70a4}, {0xcccccccccccccccc, 0xcccccccccccccccd}, {0x8000000000000000, 0x0000000000000000}, {0xa000000000000000, 0x0000000000000000}, {0xc800000000000000, 0x0000000000000000}, {0xfa00000000000000, 0x0000000000000000}, {0x9c40000000000000, 0x0000000000000000}, {0xc350000000000000, 0x0000000000000000}, {0xf424000000000000, 0x0000000000000000}, {0x9896800000000000, 0x0000000000000000}, {0xbebc200000000000, 0x0000000000000000}, {0xee6b280000000000, 0x0000000000000000}, {0x9502f90000000000, 0x0000000000000000}, {0xba43b74000000000, 0x0000000000000000}, {0xe8d4a51000000000, 0x0000000000000000}, {0x9184e72a00000000, 0x0000000000000000}, {0xb5e620f480000000, 0x0000000000000000}, {0xe35fa931a0000000, 0x0000000000000000}, {0x8e1bc9bf04000000, 0x0000000000000000}, {0xb1a2bc2ec5000000, 0x0000000000000000}, {0xde0b6b3a76400000, 0x0000000000000000}, {0x8ac7230489e80000, 0x0000000000000000}, {0xad78ebc5ac620000, 0x0000000000000000}, {0xd8d726b7177a8000, 0x0000000000000000}, {0x878678326eac9000, 0x0000000000000000}, {0xa968163f0a57b400, 0x0000000000000000}, {0xd3c21bcecceda100, 0x0000000000000000}, {0x84595161401484a0, 0x0000000000000000}, {0xa56fa5b99019a5c8, 0x0000000000000000}, {0xcecb8f27f4200f3a, 0x0000000000000000}, {0x813f3978f8940984, 0x4000000000000000}, {0xa18f07d736b90be5, 0x5000000000000000}, {0xc9f2c9cd04674ede, 0xa400000000000000}, {0xfc6f7c4045812296, 0x4d00000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xc5371912364ce305, 0x6c28000000000000}, {0xf684df56c3e01bc6, 0xc732000000000000}, {0x9a130b963a6c115c, 0x3c7f400000000000}, {0xc097ce7bc90715b3, 0x4b9f100000000000}, {0xf0bdc21abb48db20, 0x1e86d40000000000}, {0x96769950b50d88f4, 0x1314448000000000}, {0xbc143fa4e250eb31, 0x17d955a000000000}, {0xeb194f8e1ae525fd, 0x5dcfab0800000000}, {0x92efd1b8d0cf37be, 0x5aa1cae500000000}, {0xb7abc627050305ad, 0xf14a3d9e40000000}, {0xe596b7b0c643c719, 0x6d9ccd05d0000000}, {0x8f7e32ce7bea5c6f, 0xe4820023a2000000}, {0xb35dbf821ae4f38b, 0xdda2802c8a800000}, {0xe0352f62a19e306e, 0xd50b2037ad200000}, {0x8c213d9da502de45, 0x4526f422cc340000}, {0xaf298d050e4395d6, 0x9670b12b7f410000}, {0xdaf3f04651d47b4c, 0x3c0cdd765f114000}, {0x88d8762bf324cd0f, 0xa5880a69fb6ac800}, {0xab0e93b6efee0053, 0x8eea0d047a457a00}, {0xd5d238a4abe98068, 0x72a4904598d6d880}, {0x85a36366eb71f041, 0x47a6da2b7f864750}, {0xa70c3c40a64e6c51, 0x999090b65f67d924}, {0xd0cf4b50cfe20765, 0xfff4b4e3f741cf6d}, {0x82818f1281ed449f, 0xbff8f10e7a8921a5}, {0xa321f2d7226895c7, 0xaff72d52192b6a0e}, {0xcbea6f8ceb02bb39, 0x9bf4f8a69f764491}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0x9f4f2726179a2245, 0x01d762422c946591}, {0xc722f0ef9d80aad6, 0x424d3ad2b7b97ef6}, {0xf8ebad2b84e0d58b, 0xd2e0898765a7deb3}, {0x9b934c3b330c8577, 0x63cc55f49f88eb30}, {0xc2781f49ffcfa6d5, 0x3cbf6b71c76b25fc}, {0xf316271c7fc3908a, 0x8bef464e3945ef7b}, {0x97edd871cfda3a56, 0x97758bf0e3cbb5ad}, {0xbde94e8e43d0c8ec, 0x3d52eeed1cbea318}, {0xed63a231d4c4fb27, 0x4ca7aaa863ee4bde}, {0x945e455f24fb1cf8, 0x8fe8caa93e74ef6b}, {0xb975d6b6ee39e436, 0xb3e2fd538e122b45}, {0xe7d34c64a9c85d44, 0x60dbbca87196b617}, {0x90e40fbeea1d3a4a, 0xbc8955e946fe31ce}, {0xb51d13aea4a488dd, 0x6babab6398bdbe42}, {0xe264589a4dcdab14, 0xc696963c7eed2dd2}, {0x8d7eb76070a08aec, 0xfc1e1de5cf543ca3}, {0xb0de65388cc8ada8, 0x3b25a55f43294bcc}, {0xdd15fe86affad912, 0x49ef0eb713f39ebf}, {0x8a2dbf142dfcc7ab, 0x6e3569326c784338}, {0xacb92ed9397bf996, 0x49c2c37f07965405}, {0xd7e77a8f87daf7fb, 0xdc33745ec97be907}, {0x86f0ac99b4e8dafd, 0x69a028bb3ded71a4}, {0xa8acd7c0222311bc, 0xc40832ea0d68ce0d}, {0xd2d80db02aabd62b, 0xf50a3fa490c30191}, {0x83c7088e1aab65db, 0x792667c6da79e0fb}, {0xa4b8cab1a1563f52, 0x577001b891185939}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0x80b05e5ac60b6178, 0x544f8158315b05b5}, {0xa0dc75f1778e39d6, 0x696361ae3db1c722}, {0xc913936dd571c84c, 0x03bc3a19cd1e38ea}, {0xfb5878494ace3a5f, 0x04ab48a04065c724}, {0x9d174b2dcec0e47b, 0x62eb0d64283f9c77}, {0xc45d1df942711d9a, 0x3ba5d0bd324f8395}, {0xf5746577930d6500, 0xca8f44ec7ee3647a}, {0x9968bf6abbe85f20, 0x7e998b13cf4e1ecc}, {0xbfc2ef456ae276e8, 0x9e3fedd8c321a67f}, {0xefb3ab16c59b14a2, 0xc5cfe94ef3ea101f}, {0x95d04aee3b80ece5, 0xbba1f1d158724a13}, {0xbb445da9ca61281f, 0x2a8a6e45ae8edc98}, {0xea1575143cf97226, 0xf52d09d71a3293be}, {0x924d692ca61be758, 0x593c2626705f9c57}, {0xb6e0c377cfa2e12e, 0x6f8b2fb00c77836d}, {0xe498f455c38b997a, 0x0b6dfb9c0f956448}, {0x8edf98b59a373fec, 0x4724bd4189bd5ead}, {0xb2977ee300c50fe7, 0x58edec91ec2cb658}, {0xdf3d5e9bc0f653e1, 0x2f2967b66737e3ee}, {0x8b865b215899f46c, 0xbd79e0d20082ee75}, {0xae67f1e9aec07187, 0xecd8590680a3aa12}, {0xda01ee641a708de9, 0xe80e6f4820cc9496}, {0x884134fe908658b2, 0x3109058d147fdcde}, {0xaa51823e34a7eede, 0xbd4b46f0599fd416}, {0xd4e5e2cdc1d1ea96, 0x6c9e18ac7007c91b}, {0x850fadc09923329e, 0x03e2cf6bc604ddb1}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0xcfe87f7cef46ff16, 0xe612641865679a64}, {0x81f14fae158c5f6e, 0x4fcb7e8f3f60c07f}, {0xa26da3999aef7749, 0xe3be5e330f38f09e}, {0xcb090c8001ab551c, 0x5cadf5bfd3072cc6}, {0xfdcb4fa002162a63, 0x73d9732fc7c8f7f7}, {0x9e9f11c4014dda7e, 0x2867e7fddcdd9afb}, {0xc646d63501a1511d, 0xb281e1fd541501b9}, {0xf7d88bc24209a565, 0x1f225a7ca91a4227}, {0x9ae757596946075f, 0x3375788de9b06959}, {0xc1a12d2fc3978937, 0x0052d6b1641c83af}, {0xf209787bb47d6b84, 0xc0678c5dbd23a49b}, {0x9745eb4d50ce6332, 0xf840b7ba963646e1}, {0xbd176620a501fbff, 0xb650e5a93bc3d899}, {0xec5d3fa8ce427aff, 0xa3e51f138ab4cebf}, {0x93ba47c980e98cdf, 0xc66f336c36b10138}, {0xb8a8d9bbe123f017, 0xb80b0047445d4185}, {0xe6d3102ad96cec1d, 0xa60dc059157491e6}, {0x9043ea1ac7e41392, 0x87c89837ad68db30}, {0xb454e4a179dd1877, 0x29babe4598c311fc}, {0xe16a1dc9d8545e94, 0xf4296dd6fef3d67b}, {0x8ce2529e2734bb1d, 0x1899e4a65f58660d}, {0xb01ae745b101e9e4, 0x5ec05dcff72e7f90}, {0xdc21a1171d42645d, 0x76707543f4fa1f74}, {0x899504ae72497eba, 0x6a06494a791c53a9}, {0xabfa45da0edbde69, 0x0487db9d17636893}, {0xd6f8d7509292d603, 0x45a9d2845d3c42b7}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xa7f26836f282b732, 0x8e6cac7768d7141f}, {0xd1ef0244af2364ff, 0x3207d795430cd927}, {0x8335616aed761f1f, 0x7f44e6bd49e807b9}, {0xa402b9c5a8d3a6e7, 0x5f16206c9c6209a7}, {0xcd036837130890a1, 0x36dba887c37a8c10}, {0x802221226be55a64, 0xc2494954da2c978a}, {0xa02aa96b06deb0fd, 0xf2db9baa10b7bd6d}, {0xc83553c5c8965d3d, 0x6f92829494e5acc8}, {0xfa42a8b73abbf48c, 0xcb772339ba1f17fa}, {0x9c69a97284b578d7, 0xff2a760414536efc}, {0xc38413cf25e2d70d, 0xfef5138519684abb}, {0xf46518c2ef5b8cd1, 0x7eb258665fc25d6a}, {0x98bf2f79d5993802, 0xef2f773ffbd97a62}, {0xbeeefb584aff8603, 0xaafb550ffacfd8fb}, {0xeeaaba2e5dbf6784, 0x95ba2a53f983cf39}, {0x952ab45cfa97a0b2, 0xdd945a747bf26184}, {0xba756174393d88df, 0x94f971119aeef9e5}, {0xe912b9d1478ceb17, 0x7a37cd5601aab85e}, {0x91abb422ccb812ee, 0xac62e055c10ab33b}, {0xb616a12b7fe617aa, 0x577b986b314d600a}, {0xe39c49765fdf9d94, 0xed5a7e85fda0b80c}, {0x8e41ade9fbebc27d, 0x14588f13be847308}, {0xb1d219647ae6b31c, 0x596eb2d8ae258fc9}, {0xde469fbd99a05fe3, 0x6fca5f8ed9aef3bc}, {0x8aec23d680043bee, 0x25de7bb9480d5855}, {0xada72ccc20054ae9, 0xaf561aa79a10ae6b}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0x87aa9aff79042286, 0x90fb44d2f05d0843}, {0xa99541bf57452b28, 0x353a1607ac744a54}, {0xd3fa922f2d1675f2, 0x42889b8997915ce9}, {0x847c9b5d7c2e09b7, 0x69956135febada12}, {0xa59bc234db398c25, 0x43fab9837e699096}, {0xcf02b2c21207ef2e, 0x94f967e45e03f4bc}, {0x8161afb94b44f57d, 0x1d1be0eebac278f6}, {0xa1ba1ba79e1632dc, 0x6462d92a69731733}, {0xca28a291859bbf93, 0x7d7b8f7503cfdcff}, {0xfcb2cb35e702af78, 0x5cda735244c3d43f}, {0x9defbf01b061adab, 0x3a0888136afa64a8}, {0xc56baec21c7a1916, 0x088aaa1845b8fdd1}, {0xf6c69a72a3989f5b, 0x8aad549e57273d46}, {0x9a3c2087a63f6399, 0x36ac54e2f678864c}, {0xc0cb28a98fcf3c7f, 0x84576a1bb416a7de}, {0xf0fdf2d3f3c30b9f, 0x656d44a2a11c51d6}, {0x969eb7c47859e743, 0x9f644ae5a4b1b326}, {0xbc4665b596706114, 0x873d5d9f0dde1fef}, {0xeb57ff22fc0c7959, 0xa90cb506d155a7eb}, {0x9316ff75dd87cbd8, 0x09a7f12442d588f3}, {0xb7dcbf5354e9bece, 0x0c11ed6d538aeb30}, {0xe5d3ef282a242e81, 0x8f1668c8a86da5fb}, {0x8fa475791a569d10, 0xf96e017d694487bd}, {0xb38d92d760ec4455, 0x37c981dcc395a9ad}, {0xe070f78d3927556a, 0x85bbe253f47b1418}, {0x8c469ab843b89562, 0x93956d7478ccec8f}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0xdb2e51bfe9d0696a, 0x06997b05fcc0319f}, {0x88fcf317f22241e2, 0x441fece3bdf81f04}, {0xab3c2fddeeaad25a, 0xd527e81cad7626c4}, {0xd60b3bd56a5586f1, 0x8a71e223d8d3b075}, {0x85c7056562757456, 0xf6872d5667844e4a}, {0xa738c6bebb12d16c, 0xb428f8ac016561dc}, {0xd106f86e69d785c7, 0xe13336d701beba53}, {0x82a45b450226b39c, 0xecc0024661173474}, {0xa34d721642b06084, 0x27f002d7f95d0191}, {0xcc20ce9bd35c78a5, 0x31ec038df7b441f5}, {0xff290242c83396ce, 0x7e67047175a15272}, {0x9f79a169bd203e41, 0x0f0062c6e984d387}, {0xc75809c42c684dd1, 0x52c07b78a3e60869}, {0xf92e0c3537826145, 0xa7709a56ccdf8a83}, {0x9bbcc7a142b17ccb, 0x88a66076400bb692}, {0xc2abf989935ddbfe, 0x6acff893d00ea436}, {0xf356f7ebf83552fe, 0x0583f6b8c4124d44}, {0x98165af37b2153de, 0xc3727a337a8b704b}, {0xbe1bf1b059e9a8d6, 0x744f18c0592e4c5d}, {0xeda2ee1c7064130c, 0x1162def06f79df74}, {0x9485d4d1c63e8be7, 0x8addcb5645ac2ba9}, {0xb9a74a0637ce2ee1, 0x6d953e2bd7173693}, {0xe8111c87c5c1ba99, 0xc8fa8db6ccdd0438}, {0x910ab1d4db9914a0, 0x1d9c9892400a22a3}, {0xb54d5e4a127f59c8, 0x2503beb6d00cab4c}, {0xe2a0b5dc971f303a, 0x2e44ae64840fd61e}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xb10d8e1456105dad, 0x7425a83e872c5f48}, {0xdd50f1996b947518, 0xd12f124e28f7771a}, {0x8a5296ffe33cc92f, 0x82bd6b70d99aaa70}, {0xace73cbfdc0bfb7b, 0x636cc64d1001550c}, {0xd8210befd30efa5a, 0x3c47f7e05401aa4f}, {0x8714a775e3e95c78, 0x65acfaec34810a72}, {0xa8d9d1535ce3b396, 0x7f1839a741a14d0e}, {0xd31045a8341ca07c, 0x1ede48111209a051}, {0x83ea2b892091e44d, 0x934aed0aab460433}, {0xa4e4b66b68b65d60, 0xf81da84d56178540}, {0xce1de40642e3f4b9, 0x36251260ab9d668f}, {0x80d2ae83e9ce78f3, 0xc1d72b7c6b42601a}, {0xa1075a24e4421730, 0xb24cf65b8612f820}, {0xc94930ae1d529cfc, 0xdee033f26797b628}, {0xfb9b7cd9a4a7443c, 0x169840ef017da3b2}, {0x9d412e0806e88aa5, 0x8e1f289560ee864f}, {0xc491798a08a2ad4e, 0xf1a6f2bab92a27e3}, {0xf5b5d7ec8acb58a2, 0xae10af696774b1dc}, {0x9991a6f3d6bf1765, 0xacca6da1e0a8ef2a}, {0xbff610b0cc6edd3f, 0x17fd090a58d32af4}, {0xeff394dcff8a948e, 0xddfc4b4cef07f5b1}, {0x95f83d0a1fb69cd9, 0x4abdaf101564f98f}, {0xbb764c4ca7a4440f, 0x9d6d1ad41abe37f2}, {0xea53df5fd18d5513, 0x84c86189216dc5ee}, {0x92746b9be2f8552c, 0x32fd3cf5b4e49bb5}, {0xb7118682dbb66a77, 0x3fbc8c33221dc2a2}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0x8f05b1163ba6832d, 0x29cb4d87f2a7400f}, {0xb2c71d5bca9023f8, 0x743e20e9ef511013}, {0xdf78e4b2bd342cf6, 0x914da9246b255417}, {0x8bab8eefb6409c1a, 0x1ad089b6c2f7548f}, {0xae9672aba3d0c320, 0xa184ac2473b529b2}, {0xda3c0f568cc4f3e8, 0xc9e5d72d90a2741f}, {0x8865899617fb1871, 0x7e2fa67c7a658893}, {0xaa7eebfb9df9de8d, 0xddbb901b98feeab8}, {0xd51ea6fa85785631, 0x552a74227f3ea566}, {0x8533285c936b35de, 0xd53a88958f872760}, {0xa67ff273b8460356, 0x8a892abaf368f138}, {0xd01fef10a657842c, 0x2d2b7569b0432d86}, {0x8213f56a67f6b29b, 0x9c3b29620e29fc74}, {0xa298f2c501f45f42, 0x8349f3ba91b47b90}, {0xcb3f2f7642717713, 0x241c70a936219a74}, {0xfe0efb53d30dd4d7, 0xed238cd383aa0111}, {0x9ec95d1463e8a506, 0xf4363804324a40ab}, {0xc67bb4597ce2ce48, 0xb143c6053edcd0d6}, {0xf81aa16fdc1b81da, 0xdd94b7868e94050b}, {0x9b10a4e5e9913128, 0xca7cf2b4191c8327}, {0xc1d4ce1f63f57d72, 0xfd1c2f611f63a3f1}, {0xf24a01a73cf2dccf, 0xbc633b39673c8ced}, {0x976e41088617ca01, 0xd5be0503e085d814}, {0xbd49d14aa79dbc82, 0x4b2d8644d8a74e19}, {0xec9c459d51852ba2, 0xddf8e7d60ed1219f}, {0x93e1ab8252f33b45, 0xcabb90e5c942b504}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0xe7109bfba19c0c9d, 0x0cc512670a783ad5}, {0x906a617d450187e2, 0x27fb2b80668b24c6}, {0xb484f9dc9641e9da, 0xb1f9f660802dedf7}, {0xe1a63853bbd26451, 0x5e7873f8a0396974}, {0x8d07e33455637eb2, 0xdb0b487b6423e1e9}, {0xb049dc016abc5e5f, 0x91ce1a9a3d2cda63}, {0xdc5c5301c56b75f7, 0x7641a140cc7810fc}, {0x89b9b3e11b6329ba, 0xa9e904c87fcb0a9e}, {0xac2820d9623bf429, 0x546345fa9fbdcd45}, {0xd732290fbacaf133, 0xa97c177947ad4096}, {0x867f59a9d4bed6c0, 0x49ed8eabcccc485e}, {0xa81f301449ee8c70, 0x5c68f256bfff5a75}, {0xd226fc195c6a2f8c, 0x73832eec6fff3112}, {0x83585d8fd9c25db7, 0xc831fd53c5ff7eac}, {0xa42e74f3d032f525, 0xba3e7ca8b77f5e56}, {0xcd3a1230c43fb26f, 0x28ce1bd2e55f35ec}, {0x80444b5e7aa7cf85, 0x7980d163cf5b81b4}, {0xa0555e361951c366, 0xd7e105bcc3326220}, {0xc86ab5c39fa63440, 0x8dd9472bf3fefaa8}, {0xfa856334878fc150, 0xb14f98f6f0feb952}, {0x9c935e00d4b9d8d2, 0x6ed1bf9a569f33d4}, {0xc3b8358109e84f07, 0x0a862f80ec4700c9}, {0xf4a642e14c6262c8, 0xcd27bb612758c0fb}, {0x98e7e9cccfbd7dbd, 0x8038d51cb897789d}, {0xbf21e44003acdd2c, 0xe0470a63e6bd56c4}, {0xeeea5d5004981478, 0x1858ccfce06cac75}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xbaa718e68396cffd, 0xd30560258f54e6bb}, {0xe950df20247c83fd, 0x47c6b82ef32a206a}, {0x91d28b7416cdd27e, 0x4cdc331d57fa5442}, {0xb6472e511c81471d, 0xe0133fe4adf8e953}, {0xe3d8f9e563a198e5, 0x58180fddd97723a7}, {0x8e679c2f5e44ff8f, 0x570f09eaa7ea7649}, {0xb201833b35d63f73, 0x2cd2cc6551e513db}, {0xde81e40a034bcf4f, 0xf8077f7ea65e58d2}, {0x8b112e86420f6191, 0xfb04afaf27faf783}, {0xadd57a27d29339f6, 0x79c5db9af1f9b564}, {0xd94ad8b1c7380874, 0x18375281ae7822bd}, {0x87cec76f1c830548, 0x8f2293910d0b15b6}, {0xa9c2794ae3a3c69a, 0xb2eb3875504ddb23}, {0xd433179d9c8cb841, 0x5fa60692a46151ec}, {0x849feec281d7f328, 0xdbc7c41ba6bcd334}, {0xa5c7ea73224deff3, 0x12b9b522906c0801}, {0xcf39e50feae16bef, 0xd768226b34870a01}, {0x81842f29f2cce375, 0xe6a1158300d46641}, {0xa1e53af46f801c53, 0x60495ae3c1097fd1}, {0xca5e89b18b602368, 0x385bb19cb14bdfc5}, {0xfcf62c1dee382c42, 0x46729e03dd9ed7b6}, {0x9e19db92b4e31ba9, 0x6c07a2c26a8346d2}, {0xc5a05277621be293, 0xc7098b7305241886}, {0xf70867153aa2db38, 0xb8cbee4fc66d1ea8}, {0x9a65406d44a5c903, 0x737f74f1dc043329}, {0xc0fe908895cf3b44, 0x505f522e53053ff3}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0}, {0x96c6e0eab509e64d, 0x5eca783430dc19f6}, {0xbc789925624c5fe0, 0xb67d16413d132073}, {0xeb96bf6ebadf77d8, 0xe41c5bd18c57e890}, {0x933e37a534cbaae7, 0x8e91b962f7b6f15a}, {0xb80dc58e81fe95a1, 0x723627bbb5a4adb1}, {0xe61136f2227e3b09, 0xcec3b1aaa30dd91d}, {0x8fcac257558ee4e6, 0x213a4f0aa5e8a7b2}, {0xb3bd72ed2af29e1f, 0xa988e2cd4f62d19e}, {0xe0accfa875af45a7, 0x93eb1b80a33b8606}, {0x8c6c01c9498d8b88, 0xbc72f130660533c4}, {0xaf87023b9bf0ee6a, 0xeb8fad7c7f8680b5}, { 0xdb68c2ca82ed2a05, 0xa67398db9f6820e2 } #else {0xff77b1fcbebcdc4f, 0x25e8e89c13bb0f7b}, {0xce5d73ff402d98e3, 0xfb0a3d212dc81290}, {0xa6b34ad8c9dfc06f, 0xf42faa48c0ea481f}, {0x86a8d39ef77164bc, 0xae5dff9c02033198}, {0xd98ddaee19068c76, 0x3badd624dd9b0958}, {0xafbd2350644eeacf, 0xe5d1929ef90898fb}, {0x8df5efabc5979c8f, 0xca8d3ffa1ef463c2}, {0xe55990879ddcaabd, 0xcc420a6a101d0516}, {0xb94470938fa89bce, 0xf808e40e8d5b3e6a}, {0x95a8637627989aad, 0xdde7001379a44aa9}, {0xf1c90080baf72cb1, 0x5324c68b12dd6339}, {0xc350000000000000, 0x0000000000000000}, {0x9dc5ada82b70b59d, 0xf020000000000000}, {0xfee50b7025c36a08, 0x02f236d04753d5b5}, {0xcde6fd5e09abcf26, 0xed4c0226b55e6f87}, {0xa6539930bf6bff45, 0x84db8346b786151d}, {0x865b86925b9bc5c2, 0x0b8a2392ba45a9b3}, {0xd910f7ff28069da4, 0x1b2ba1518094da05}, {0xaf58416654a6babb, 0x387ac8d1970027b3}, {0x8da471a9de737e24, 0x5ceaecfed289e5d3}, {0xe4d5e82392a40515, 0x0fabaf3feaa5334b}, {0xb8da1662e7b00a17, 0x3d6a751f3b936244}, {0x95527a5202df0ccb, 0x0f37801e0c43ebc9}, {0xf13e34aabb430a15, 0x647726b9e7c68ff0} #endif }; #if FMT_USE_FULL_CACHE_DRAGONBOX return pow10_significands[k - float_info::min_k]; #else static constexpr const uint64_t powers_of_5_64[] = { 0x0000000000000001, 0x0000000000000005, 0x0000000000000019, 0x000000000000007d, 0x0000000000000271, 0x0000000000000c35, 0x0000000000003d09, 0x000000000001312d, 0x000000000005f5e1, 0x00000000001dcd65, 0x00000000009502f9, 0x0000000002e90edd, 0x000000000e8d4a51, 0x0000000048c27395, 0x000000016bcc41e9, 0x000000071afd498d, 0x0000002386f26fc1, 0x000000b1a2bc2ec5, 0x000003782dace9d9, 0x00001158e460913d, 0x000056bc75e2d631, 0x0001b1ae4d6e2ef5, 0x000878678326eac9, 0x002a5a058fc295ed, 0x00d3c21bcecceda1, 0x0422ca8b0a00a425, 0x14adf4b7320334b9}; static const int compression_ratio = 27; // Compute base index. int cache_index = (k - float_info::min_k) / compression_ratio; int kb = cache_index * compression_ratio + float_info::min_k; int offset = k - kb; // Get base cache. uint128_fallback base_cache = pow10_significands[cache_index]; if (offset == 0) return base_cache; // Compute the required amount of bit-shift. int alpha = floor_log2_pow10(kb + offset) - floor_log2_pow10(kb) - offset; FMT_ASSERT(alpha > 0 && alpha < 64, "shifting error detected"); // Try to recover the real cache. uint64_t pow5 = powers_of_5_64[offset]; uint128_fallback recovered_cache = umul128(base_cache.high(), pow5); uint128_fallback middle_low = umul128(base_cache.low(), pow5); recovered_cache += middle_low.high(); uint64_t high_to_middle = recovered_cache.high() << (64 - alpha); uint64_t middle_to_low = recovered_cache.low() << (64 - alpha); recovered_cache = uint128_fallback{(recovered_cache.low() >> alpha) | high_to_middle, ((middle_low.low() >> alpha) | middle_to_low)}; FMT_ASSERT(recovered_cache.low() + 1 != 0, ""); return {recovered_cache.high(), recovered_cache.low() + 1}; #endif } struct compute_mul_result { carrier_uint result; bool is_integer; }; struct compute_mul_parity_result { bool parity; bool is_integer; }; static compute_mul_result compute_mul( carrier_uint u, const cache_entry_type& cache) noexcept { auto r = umul192_upper128(u, cache); return {r.high(), r.low() == 0}; } static uint32_t compute_delta(cache_entry_type const& cache, int beta) noexcept { return static_cast(cache.high() >> (64 - 1 - beta)); } static compute_mul_parity_result compute_mul_parity( carrier_uint two_f, const cache_entry_type& cache, int beta) noexcept { FMT_ASSERT(beta >= 1, ""); FMT_ASSERT(beta < 64, ""); auto r = umul192_lower128(two_f, cache); return {((r.high() >> (64 - beta)) & 1) != 0, ((r.high() << beta) | (r.low() >> (64 - beta))) == 0}; } static carrier_uint compute_left_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (cache.high() - (cache.high() >> (num_significand_bits() + 2))) >> (64 - num_significand_bits() - 1 - beta); } static carrier_uint compute_right_endpoint_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return (cache.high() + (cache.high() >> (num_significand_bits() + 1))) >> (64 - num_significand_bits() - 1 - beta); } static carrier_uint compute_round_up_for_shorter_interval_case( const cache_entry_type& cache, int beta) noexcept { return ((cache.high() >> (64 - num_significand_bits() - 2 - beta)) + 1) / 2; } }; FMT_FUNC uint128_fallback get_cached_power(int k) noexcept { return cache_accessor::get_cached_power(k); } // Various integer checks template bool is_left_endpoint_integer_shorter_interval(int exponent) noexcept { const int case_shorter_interval_left_endpoint_lower_threshold = 2; const int case_shorter_interval_left_endpoint_upper_threshold = 3; return exponent >= case_shorter_interval_left_endpoint_lower_threshold && exponent <= case_shorter_interval_left_endpoint_upper_threshold; } // Remove trailing zeros from n and return the number of zeros removed (float) FMT_INLINE int remove_trailing_zeros(uint32_t& n, int s = 0) noexcept { FMT_ASSERT(n != 0, ""); // Modular inverse of 5 (mod 2^32): (mod_inv_5 * 5) mod 2^32 = 1. constexpr uint32_t mod_inv_5 = 0xcccccccd; constexpr uint32_t mod_inv_25 = 0xc28f5c29; // = mod_inv_5 * mod_inv_5 while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // Removes trailing zeros and returns the number of zeros removed (double) FMT_INLINE int remove_trailing_zeros(uint64_t& n) noexcept { FMT_ASSERT(n != 0, ""); // This magic number is ceil(2^90 / 10^8). constexpr uint64_t magic_number = 12379400392853802749ull; auto nm = umul128(n, magic_number); // Is n is divisible by 10^8? if ((nm.high() & ((1ull << (90 - 64)) - 1)) == 0 && nm.low() < magic_number) { // If yes, work with the quotient... auto n32 = static_cast(nm.high() >> (90 - 64)); // ... and use the 32 bit variant of the function int s = remove_trailing_zeros(n32, 8); n = n32; return s; } // If n is not divisible by 10^8, work with n itself. constexpr uint64_t mod_inv_5 = 0xcccccccccccccccd; constexpr uint64_t mod_inv_25 = 0x8f5c28f5c28f5c29; // = mod_inv_5 * mod_inv_5 int s = 0; while (true) { auto q = rotr(n * mod_inv_25, 2); if (q > max_value() / 100) break; n = q; s += 2; } auto q = rotr(n * mod_inv_5, 1); if (q <= max_value() / 10) { n = q; s |= 1; } return s; } // The main algorithm for shorter interval case template FMT_INLINE decimal_fp shorter_interval_case(int exponent) noexcept { decimal_fp ret_value; // Compute k and beta const int minus_k = floor_log10_pow2_minus_log10_4_over_3(exponent); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute xi and zi using cache_entry_type = typename cache_accessor::cache_entry_type; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); auto xi = cache_accessor::compute_left_endpoint_for_shorter_interval_case( cache, beta); auto zi = cache_accessor::compute_right_endpoint_for_shorter_interval_case( cache, beta); // If the left endpoint is not an integer, increase it if (!is_left_endpoint_integer_shorter_interval(exponent)) ++xi; // Try bigger divisor ret_value.significand = zi / 10; // If succeed, remove trailing zeros if necessary and return if (ret_value.significand * 10 >= xi) { ret_value.exponent = minus_k + 1; ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; } // Otherwise, compute the round-up of y ret_value.significand = cache_accessor::compute_round_up_for_shorter_interval_case(cache, beta); ret_value.exponent = minus_k; // When tie occurs, choose one of them according to the rule if (exponent >= float_info::shorter_interval_tie_lower_threshold && exponent <= float_info::shorter_interval_tie_upper_threshold) { ret_value.significand = ret_value.significand % 2 == 0 ? ret_value.significand : ret_value.significand - 1; } else if (ret_value.significand < xi) { ++ret_value.significand; } return ret_value; } template decimal_fp to_decimal(T x) noexcept { // Step 1: integer promotion & Schubfach multiplier calculation. using carrier_uint = typename float_info::carrier_uint; using cache_entry_type = typename cache_accessor::cache_entry_type; auto br = bit_cast(x); // Extract significand bits and exponent bits. const carrier_uint significand_mask = (static_cast(1) << num_significand_bits()) - 1; carrier_uint significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); // Shorter interval case; proceed like Schubfach. // In fact, when exponent == 1 and significand == 0, the interval is // regular. However, it can be shown that the end-results are anyway same. if (significand == 0) return shorter_interval_case(exponent); significand |= (static_cast(1) << num_significand_bits()); } else { // Subnormal case; the interval is always regular. if (significand == 0) return {0, 0}; exponent = std::numeric_limits::min_exponent - num_significand_bits() - 1; } const bool include_left_endpoint = (significand % 2 == 0); const bool include_right_endpoint = include_left_endpoint; // Compute k and beta. const int minus_k = floor_log10_pow2(exponent) - float_info::kappa; const cache_entry_type cache = cache_accessor::get_cached_power(-minus_k); const int beta = exponent + floor_log2_pow10(-minus_k); // Compute zi and deltai. // 10^kappa <= deltai < 10^(kappa + 1) const uint32_t deltai = cache_accessor::compute_delta(cache, beta); const carrier_uint two_fc = significand << 1; // For the case of binary32, the result of integer check is not correct for // 29711844 * 2^-82 // = 6.1442653300000000008655037797566933477355632930994033813476... * 10^-18 // and 29711844 * 2^-81 // = 1.2288530660000000001731007559513386695471126586198806762695... * 10^-17, // and they are the unique counterexamples. However, since 29711844 is even, // this does not cause any problem for the endpoints calculations; it can only // cause a problem when we need to perform integer check for the center. // Fortunately, with these inputs, that branch is never executed, so we are // fine. const typename cache_accessor::compute_mul_result z_mul = cache_accessor::compute_mul((two_fc | 1) << beta, cache); // Step 2: Try larger divisor; remove trailing zeros if necessary. // Using an upper bound on zi, we might be able to optimize the division // better than the compiler; we are computing zi / big_divisor here. decimal_fp ret_value; ret_value.significand = divide_by_10_to_kappa_plus_1(z_mul.result); uint32_t r = static_cast(z_mul.result - float_info::big_divisor * ret_value.significand); if (r < deltai) { // Exclude the right endpoint if necessary. if (r == 0 && (z_mul.is_integer & !include_right_endpoint)) { --ret_value.significand; r = float_info::big_divisor; goto small_divisor_case_label; } } else if (r > deltai) { goto small_divisor_case_label; } else { // r == deltai; compare fractional parts. const typename cache_accessor::compute_mul_parity_result x_mul = cache_accessor::compute_mul_parity(two_fc - 1, cache, beta); if (!(x_mul.parity | (x_mul.is_integer & include_left_endpoint))) goto small_divisor_case_label; } ret_value.exponent = minus_k + float_info::kappa + 1; // We may need to remove trailing zeros. ret_value.exponent += remove_trailing_zeros(ret_value.significand); return ret_value; // Step 3: Find the significand with the smaller divisor. small_divisor_case_label: ret_value.significand *= 10; ret_value.exponent = minus_k + float_info::kappa; uint32_t dist = r - (deltai / 2) + (float_info::small_divisor / 2); const bool approx_y_parity = ((dist ^ (float_info::small_divisor / 2)) & 1) != 0; // Is dist divisible by 10^kappa? const bool divisible_by_small_divisor = check_divisibility_and_divide_by_pow10::kappa>(dist); // Add dist / 10^kappa to the significand. ret_value.significand += dist; if (!divisible_by_small_divisor) return ret_value; // Check z^(f) >= epsilon^(f). // We have either yi == zi - epsiloni or yi == (zi - epsiloni) - 1, // where yi == zi - epsiloni if and only if z^(f) >= epsilon^(f). // Since there are only 2 possibilities, we only need to care about the // parity. Also, zi and r should have the same parity since the divisor // is an even number. const auto y_mul = cache_accessor::compute_mul_parity(two_fc, cache, beta); // If z^(f) >= epsilon^(f), we might have a tie when z^(f) == epsilon^(f), // or equivalently, when y is an integer. if (y_mul.parity != approx_y_parity) --ret_value.significand; else if (y_mul.is_integer & (ret_value.significand % 2 != 0)) --ret_value.significand; return ret_value; } } // namespace dragonbox } // namespace detail template <> struct formatter { FMT_CONSTEXPR auto parse(format_parse_context& ctx) -> format_parse_context::iterator { return ctx.begin(); } auto format(const detail::bigint& n, format_context& ctx) const -> format_context::iterator { auto out = ctx.out(); bool first = true; for (auto i = n.bigits_.size(); i > 0; --i) { auto value = n.bigits_[i - 1u]; if (first) { out = format_to(out, FMT_STRING("{:x}"), value); first = false; continue; } out = format_to(out, FMT_STRING("{:08x}"), value); } if (n.exp_ > 0) out = format_to(out, FMT_STRING("p{}"), n.exp_ * detail::bigint::bigit_bits); return out; } }; FMT_FUNC detail::utf8_to_utf16::utf8_to_utf16(string_view s) { for_each_codepoint(s, [this](uint32_t cp, string_view) { if (cp == invalid_code_point) FMT_THROW(std::runtime_error("invalid utf8")); if (cp <= 0xFFFF) { buffer_.push_back(static_cast(cp)); } else { cp -= 0x10000; buffer_.push_back(static_cast(0xD800 + (cp >> 10))); buffer_.push_back(static_cast(0xDC00 + (cp & 0x3FF))); } return true; }); buffer_.push_back(0); } FMT_FUNC void format_system_error(detail::buffer& out, int error_code, const char* message) noexcept { FMT_TRY { auto ec = std::error_code(error_code, std::generic_category()); write(std::back_inserter(out), std::system_error(ec, message).what()); return; } FMT_CATCH(...) {} format_error_code(out, error_code, message); } FMT_FUNC void report_system_error(int error_code, const char* message) noexcept { report_error(format_system_error, error_code, message); } FMT_FUNC std::string vformat(string_view fmt, format_args args) { // Don't optimize the "{}" case to keep the binary size small and because it // can be better optimized in fmt::format anyway. auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); return to_string(buffer); } namespace detail { #ifndef _WIN32 FMT_FUNC bool write_console(std::FILE*, string_view) { return false; } #else using dword = conditional_t; extern "C" __declspec(dllimport) int __stdcall WriteConsoleW( // void*, const void*, dword, dword*, void*); FMT_FUNC bool write_console(std::FILE* f, string_view text) { auto fd = _fileno(f); if (!_isatty(fd)) return false; auto u16 = utf8_to_utf16(text); auto written = dword(); return WriteConsoleW(reinterpret_cast(_get_osfhandle(fd)), u16.c_str(), static_cast(u16.size()), &written, nullptr) != 0; } // Print assuming legacy (non-Unicode) encoding. FMT_FUNC void vprint_mojibake(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, basic_format_args>(args)); fwrite_fully(buffer.data(), 1, buffer.size(), f); } #endif FMT_FUNC void print(std::FILE* f, string_view text) { if (!write_console(f, text)) fwrite_fully(text.data(), 1, text.size(), f); } } // namespace detail FMT_FUNC void vprint(std::FILE* f, string_view fmt, format_args args) { auto buffer = memory_buffer(); detail::vformat_to(buffer, fmt, args); detail::print(f, {buffer.data(), buffer.size()}); } FMT_FUNC void vprint(string_view fmt, format_args args) { vprint(stdout, fmt, args); } namespace detail { struct singleton { unsigned char upper; unsigned char lower_count; }; inline auto is_printable(uint16_t x, const singleton* singletons, size_t singletons_size, const unsigned char* singleton_lowers, const unsigned char* normal, size_t normal_size) -> bool { auto upper = x >> 8; auto lower_start = 0; for (size_t i = 0; i < singletons_size; ++i) { auto s = singletons[i]; auto lower_end = lower_start + s.lower_count; if (upper < s.upper) break; if (upper == s.upper) { for (auto j = lower_start; j < lower_end; ++j) { if (singleton_lowers[j] == (x & 0xff)) return false; } } lower_start = lower_end; } auto xsigned = static_cast(x); auto current = true; for (size_t i = 0; i < normal_size; ++i) { auto v = static_cast(normal[i]); auto len = (v & 0x80) != 0 ? (v & 0x7f) << 8 | normal[++i] : v; xsigned -= len; if (xsigned < 0) break; current = !current; } return current; } // This code is generated by support/printable.py. FMT_FUNC auto is_printable(uint32_t cp) -> bool { static constexpr singleton singletons0[] = { {0x00, 1}, {0x03, 5}, {0x05, 6}, {0x06, 3}, {0x07, 6}, {0x08, 8}, {0x09, 17}, {0x0a, 28}, {0x0b, 25}, {0x0c, 20}, {0x0d, 16}, {0x0e, 13}, {0x0f, 4}, {0x10, 3}, {0x12, 18}, {0x13, 9}, {0x16, 1}, {0x17, 5}, {0x18, 2}, {0x19, 3}, {0x1a, 7}, {0x1c, 2}, {0x1d, 1}, {0x1f, 22}, {0x20, 3}, {0x2b, 3}, {0x2c, 2}, {0x2d, 11}, {0x2e, 1}, {0x30, 3}, {0x31, 2}, {0x32, 1}, {0xa7, 2}, {0xa9, 2}, {0xaa, 4}, {0xab, 8}, {0xfa, 2}, {0xfb, 5}, {0xfd, 4}, {0xfe, 3}, {0xff, 9}, }; static constexpr unsigned char singletons0_lower[] = { 0xad, 0x78, 0x79, 0x8b, 0x8d, 0xa2, 0x30, 0x57, 0x58, 0x8b, 0x8c, 0x90, 0x1c, 0x1d, 0xdd, 0x0e, 0x0f, 0x4b, 0x4c, 0xfb, 0xfc, 0x2e, 0x2f, 0x3f, 0x5c, 0x5d, 0x5f, 0xb5, 0xe2, 0x84, 0x8d, 0x8e, 0x91, 0x92, 0xa9, 0xb1, 0xba, 0xbb, 0xc5, 0xc6, 0xc9, 0xca, 0xde, 0xe4, 0xe5, 0xff, 0x00, 0x04, 0x11, 0x12, 0x29, 0x31, 0x34, 0x37, 0x3a, 0x3b, 0x3d, 0x49, 0x4a, 0x5d, 0x84, 0x8e, 0x92, 0xa9, 0xb1, 0xb4, 0xba, 0xbb, 0xc6, 0xca, 0xce, 0xcf, 0xe4, 0xe5, 0x00, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x3b, 0x45, 0x46, 0x49, 0x4a, 0x5e, 0x64, 0x65, 0x84, 0x91, 0x9b, 0x9d, 0xc9, 0xce, 0xcf, 0x0d, 0x11, 0x29, 0x45, 0x49, 0x57, 0x64, 0x65, 0x8d, 0x91, 0xa9, 0xb4, 0xba, 0xbb, 0xc5, 0xc9, 0xdf, 0xe4, 0xe5, 0xf0, 0x0d, 0x11, 0x45, 0x49, 0x64, 0x65, 0x80, 0x84, 0xb2, 0xbc, 0xbe, 0xbf, 0xd5, 0xd7, 0xf0, 0xf1, 0x83, 0x85, 0x8b, 0xa4, 0xa6, 0xbe, 0xbf, 0xc5, 0xc7, 0xce, 0xcf, 0xda, 0xdb, 0x48, 0x98, 0xbd, 0xcd, 0xc6, 0xce, 0xcf, 0x49, 0x4e, 0x4f, 0x57, 0x59, 0x5e, 0x5f, 0x89, 0x8e, 0x8f, 0xb1, 0xb6, 0xb7, 0xbf, 0xc1, 0xc6, 0xc7, 0xd7, 0x11, 0x16, 0x17, 0x5b, 0x5c, 0xf6, 0xf7, 0xfe, 0xff, 0x80, 0x0d, 0x6d, 0x71, 0xde, 0xdf, 0x0e, 0x0f, 0x1f, 0x6e, 0x6f, 0x1c, 0x1d, 0x5f, 0x7d, 0x7e, 0xae, 0xaf, 0xbb, 0xbc, 0xfa, 0x16, 0x17, 0x1e, 0x1f, 0x46, 0x47, 0x4e, 0x4f, 0x58, 0x5a, 0x5c, 0x5e, 0x7e, 0x7f, 0xb5, 0xc5, 0xd4, 0xd5, 0xdc, 0xf0, 0xf1, 0xf5, 0x72, 0x73, 0x8f, 0x74, 0x75, 0x96, 0x2f, 0x5f, 0x26, 0x2e, 0x2f, 0xa7, 0xaf, 0xb7, 0xbf, 0xc7, 0xcf, 0xd7, 0xdf, 0x9a, 0x40, 0x97, 0x98, 0x30, 0x8f, 0x1f, 0xc0, 0xc1, 0xce, 0xff, 0x4e, 0x4f, 0x5a, 0x5b, 0x07, 0x08, 0x0f, 0x10, 0x27, 0x2f, 0xee, 0xef, 0x6e, 0x6f, 0x37, 0x3d, 0x3f, 0x42, 0x45, 0x90, 0x91, 0xfe, 0xff, 0x53, 0x67, 0x75, 0xc8, 0xc9, 0xd0, 0xd1, 0xd8, 0xd9, 0xe7, 0xfe, 0xff, }; static constexpr singleton singletons1[] = { {0x00, 6}, {0x01, 1}, {0x03, 1}, {0x04, 2}, {0x08, 8}, {0x09, 2}, {0x0a, 5}, {0x0b, 2}, {0x0e, 4}, {0x10, 1}, {0x11, 2}, {0x12, 5}, {0x13, 17}, {0x14, 1}, {0x15, 2}, {0x17, 2}, {0x19, 13}, {0x1c, 5}, {0x1d, 8}, {0x24, 1}, {0x6a, 3}, {0x6b, 2}, {0xbc, 2}, {0xd1, 2}, {0xd4, 12}, {0xd5, 9}, {0xd6, 2}, {0xd7, 2}, {0xda, 1}, {0xe0, 5}, {0xe1, 2}, {0xe8, 2}, {0xee, 32}, {0xf0, 4}, {0xf8, 2}, {0xf9, 2}, {0xfa, 2}, {0xfb, 1}, }; static constexpr unsigned char singletons1_lower[] = { 0x0c, 0x27, 0x3b, 0x3e, 0x4e, 0x4f, 0x8f, 0x9e, 0x9e, 0x9f, 0x06, 0x07, 0x09, 0x36, 0x3d, 0x3e, 0x56, 0xf3, 0xd0, 0xd1, 0x04, 0x14, 0x18, 0x36, 0x37, 0x56, 0x57, 0x7f, 0xaa, 0xae, 0xaf, 0xbd, 0x35, 0xe0, 0x12, 0x87, 0x89, 0x8e, 0x9e, 0x04, 0x0d, 0x0e, 0x11, 0x12, 0x29, 0x31, 0x34, 0x3a, 0x45, 0x46, 0x49, 0x4a, 0x4e, 0x4f, 0x64, 0x65, 0x5c, 0xb6, 0xb7, 0x1b, 0x1c, 0x07, 0x08, 0x0a, 0x0b, 0x14, 0x17, 0x36, 0x39, 0x3a, 0xa8, 0xa9, 0xd8, 0xd9, 0x09, 0x37, 0x90, 0x91, 0xa8, 0x07, 0x0a, 0x3b, 0x3e, 0x66, 0x69, 0x8f, 0x92, 0x6f, 0x5f, 0xee, 0xef, 0x5a, 0x62, 0x9a, 0x9b, 0x27, 0x28, 0x55, 0x9d, 0xa0, 0xa1, 0xa3, 0xa4, 0xa7, 0xa8, 0xad, 0xba, 0xbc, 0xc4, 0x06, 0x0b, 0x0c, 0x15, 0x1d, 0x3a, 0x3f, 0x45, 0x51, 0xa6, 0xa7, 0xcc, 0xcd, 0xa0, 0x07, 0x19, 0x1a, 0x22, 0x25, 0x3e, 0x3f, 0xc5, 0xc6, 0x04, 0x20, 0x23, 0x25, 0x26, 0x28, 0x33, 0x38, 0x3a, 0x48, 0x4a, 0x4c, 0x50, 0x53, 0x55, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x63, 0x65, 0x66, 0x6b, 0x73, 0x78, 0x7d, 0x7f, 0x8a, 0xa4, 0xaa, 0xaf, 0xb0, 0xc0, 0xd0, 0xae, 0xaf, 0x79, 0xcc, 0x6e, 0x6f, 0x93, }; static constexpr unsigned char normal0[] = { 0x00, 0x20, 0x5f, 0x22, 0x82, 0xdf, 0x04, 0x82, 0x44, 0x08, 0x1b, 0x04, 0x06, 0x11, 0x81, 0xac, 0x0e, 0x80, 0xab, 0x35, 0x28, 0x0b, 0x80, 0xe0, 0x03, 0x19, 0x08, 0x01, 0x04, 0x2f, 0x04, 0x34, 0x04, 0x07, 0x03, 0x01, 0x07, 0x06, 0x07, 0x11, 0x0a, 0x50, 0x0f, 0x12, 0x07, 0x55, 0x07, 0x03, 0x04, 0x1c, 0x0a, 0x09, 0x03, 0x08, 0x03, 0x07, 0x03, 0x02, 0x03, 0x03, 0x03, 0x0c, 0x04, 0x05, 0x03, 0x0b, 0x06, 0x01, 0x0e, 0x15, 0x05, 0x3a, 0x03, 0x11, 0x07, 0x06, 0x05, 0x10, 0x07, 0x57, 0x07, 0x02, 0x07, 0x15, 0x0d, 0x50, 0x04, 0x43, 0x03, 0x2d, 0x03, 0x01, 0x04, 0x11, 0x06, 0x0f, 0x0c, 0x3a, 0x04, 0x1d, 0x25, 0x5f, 0x20, 0x6d, 0x04, 0x6a, 0x25, 0x80, 0xc8, 0x05, 0x82, 0xb0, 0x03, 0x1a, 0x06, 0x82, 0xfd, 0x03, 0x59, 0x07, 0x15, 0x0b, 0x17, 0x09, 0x14, 0x0c, 0x14, 0x0c, 0x6a, 0x06, 0x0a, 0x06, 0x1a, 0x06, 0x59, 0x07, 0x2b, 0x05, 0x46, 0x0a, 0x2c, 0x04, 0x0c, 0x04, 0x01, 0x03, 0x31, 0x0b, 0x2c, 0x04, 0x1a, 0x06, 0x0b, 0x03, 0x80, 0xac, 0x06, 0x0a, 0x06, 0x21, 0x3f, 0x4c, 0x04, 0x2d, 0x03, 0x74, 0x08, 0x3c, 0x03, 0x0f, 0x03, 0x3c, 0x07, 0x38, 0x08, 0x2b, 0x05, 0x82, 0xff, 0x11, 0x18, 0x08, 0x2f, 0x11, 0x2d, 0x03, 0x20, 0x10, 0x21, 0x0f, 0x80, 0x8c, 0x04, 0x82, 0x97, 0x19, 0x0b, 0x15, 0x88, 0x94, 0x05, 0x2f, 0x05, 0x3b, 0x07, 0x02, 0x0e, 0x18, 0x09, 0x80, 0xb3, 0x2d, 0x74, 0x0c, 0x80, 0xd6, 0x1a, 0x0c, 0x05, 0x80, 0xff, 0x05, 0x80, 0xdf, 0x0c, 0xee, 0x0d, 0x03, 0x84, 0x8d, 0x03, 0x37, 0x09, 0x81, 0x5c, 0x14, 0x80, 0xb8, 0x08, 0x80, 0xcb, 0x2a, 0x38, 0x03, 0x0a, 0x06, 0x38, 0x08, 0x46, 0x08, 0x0c, 0x06, 0x74, 0x0b, 0x1e, 0x03, 0x5a, 0x04, 0x59, 0x09, 0x80, 0x83, 0x18, 0x1c, 0x0a, 0x16, 0x09, 0x4c, 0x04, 0x80, 0x8a, 0x06, 0xab, 0xa4, 0x0c, 0x17, 0x04, 0x31, 0xa1, 0x04, 0x81, 0xda, 0x26, 0x07, 0x0c, 0x05, 0x05, 0x80, 0xa5, 0x11, 0x81, 0x6d, 0x10, 0x78, 0x28, 0x2a, 0x06, 0x4c, 0x04, 0x80, 0x8d, 0x04, 0x80, 0xbe, 0x03, 0x1b, 0x03, 0x0f, 0x0d, }; static constexpr unsigned char normal1[] = { 0x5e, 0x22, 0x7b, 0x05, 0x03, 0x04, 0x2d, 0x03, 0x66, 0x03, 0x01, 0x2f, 0x2e, 0x80, 0x82, 0x1d, 0x03, 0x31, 0x0f, 0x1c, 0x04, 0x24, 0x09, 0x1e, 0x05, 0x2b, 0x05, 0x44, 0x04, 0x0e, 0x2a, 0x80, 0xaa, 0x06, 0x24, 0x04, 0x24, 0x04, 0x28, 0x08, 0x34, 0x0b, 0x01, 0x80, 0x90, 0x81, 0x37, 0x09, 0x16, 0x0a, 0x08, 0x80, 0x98, 0x39, 0x03, 0x63, 0x08, 0x09, 0x30, 0x16, 0x05, 0x21, 0x03, 0x1b, 0x05, 0x01, 0x40, 0x38, 0x04, 0x4b, 0x05, 0x2f, 0x04, 0x0a, 0x07, 0x09, 0x07, 0x40, 0x20, 0x27, 0x04, 0x0c, 0x09, 0x36, 0x03, 0x3a, 0x05, 0x1a, 0x07, 0x04, 0x0c, 0x07, 0x50, 0x49, 0x37, 0x33, 0x0d, 0x33, 0x07, 0x2e, 0x08, 0x0a, 0x81, 0x26, 0x52, 0x4e, 0x28, 0x08, 0x2a, 0x56, 0x1c, 0x14, 0x17, 0x09, 0x4e, 0x04, 0x1e, 0x0f, 0x43, 0x0e, 0x19, 0x07, 0x0a, 0x06, 0x48, 0x08, 0x27, 0x09, 0x75, 0x0b, 0x3f, 0x41, 0x2a, 0x06, 0x3b, 0x05, 0x0a, 0x06, 0x51, 0x06, 0x01, 0x05, 0x10, 0x03, 0x05, 0x80, 0x8b, 0x62, 0x1e, 0x48, 0x08, 0x0a, 0x80, 0xa6, 0x5e, 0x22, 0x45, 0x0b, 0x0a, 0x06, 0x0d, 0x13, 0x39, 0x07, 0x0a, 0x36, 0x2c, 0x04, 0x10, 0x80, 0xc0, 0x3c, 0x64, 0x53, 0x0c, 0x48, 0x09, 0x0a, 0x46, 0x45, 0x1b, 0x48, 0x08, 0x53, 0x1d, 0x39, 0x81, 0x07, 0x46, 0x0a, 0x1d, 0x03, 0x47, 0x49, 0x37, 0x03, 0x0e, 0x08, 0x0a, 0x06, 0x39, 0x07, 0x0a, 0x81, 0x36, 0x19, 0x80, 0xb7, 0x01, 0x0f, 0x32, 0x0d, 0x83, 0x9b, 0x66, 0x75, 0x0b, 0x80, 0xc4, 0x8a, 0xbc, 0x84, 0x2f, 0x8f, 0xd1, 0x82, 0x47, 0xa1, 0xb9, 0x82, 0x39, 0x07, 0x2a, 0x04, 0x02, 0x60, 0x26, 0x0a, 0x46, 0x0a, 0x28, 0x05, 0x13, 0x82, 0xb0, 0x5b, 0x65, 0x4b, 0x04, 0x39, 0x07, 0x11, 0x40, 0x05, 0x0b, 0x02, 0x0e, 0x97, 0xf8, 0x08, 0x84, 0xd6, 0x2a, 0x09, 0xa2, 0xf7, 0x81, 0x1f, 0x31, 0x03, 0x11, 0x04, 0x08, 0x81, 0x8c, 0x89, 0x04, 0x6b, 0x05, 0x0d, 0x03, 0x09, 0x07, 0x10, 0x93, 0x60, 0x80, 0xf6, 0x0a, 0x73, 0x08, 0x6e, 0x17, 0x46, 0x80, 0x9a, 0x14, 0x0c, 0x57, 0x09, 0x19, 0x80, 0x87, 0x81, 0x47, 0x03, 0x85, 0x42, 0x0f, 0x15, 0x85, 0x50, 0x2b, 0x80, 0xd5, 0x2d, 0x03, 0x1a, 0x04, 0x02, 0x81, 0x70, 0x3a, 0x05, 0x01, 0x85, 0x00, 0x80, 0xd7, 0x29, 0x4c, 0x04, 0x0a, 0x04, 0x02, 0x83, 0x11, 0x44, 0x4c, 0x3d, 0x80, 0xc2, 0x3c, 0x06, 0x01, 0x04, 0x55, 0x05, 0x1b, 0x34, 0x02, 0x81, 0x0e, 0x2c, 0x04, 0x64, 0x0c, 0x56, 0x0a, 0x80, 0xae, 0x38, 0x1d, 0x0d, 0x2c, 0x04, 0x09, 0x07, 0x02, 0x0e, 0x06, 0x80, 0x9a, 0x83, 0xd8, 0x08, 0x0d, 0x03, 0x0d, 0x03, 0x74, 0x0c, 0x59, 0x07, 0x0c, 0x14, 0x0c, 0x04, 0x38, 0x08, 0x0a, 0x06, 0x28, 0x08, 0x22, 0x4e, 0x81, 0x54, 0x0c, 0x15, 0x03, 0x03, 0x05, 0x07, 0x09, 0x19, 0x07, 0x07, 0x09, 0x03, 0x0d, 0x07, 0x29, 0x80, 0xcb, 0x25, 0x0a, 0x84, 0x06, }; auto lower = static_cast(cp); if (cp < 0x10000) { return is_printable(lower, singletons0, sizeof(singletons0) / sizeof(*singletons0), singletons0_lower, normal0, sizeof(normal0)); } if (cp < 0x20000) { return is_printable(lower, singletons1, sizeof(singletons1) / sizeof(*singletons1), singletons1_lower, normal1, sizeof(normal1)); } if (0x2a6de <= cp && cp < 0x2a700) return false; if (0x2b735 <= cp && cp < 0x2b740) return false; if (0x2b81e <= cp && cp < 0x2b820) return false; if (0x2cea2 <= cp && cp < 0x2ceb0) return false; if (0x2ebe1 <= cp && cp < 0x2f800) return false; if (0x2fa1e <= cp && cp < 0x30000) return false; if (0x3134b <= cp && cp < 0xe0100) return false; if (0xe01f0 <= cp && cp < 0x110000) return false; return cp < 0x110000; } } // namespace detail FMT_END_NAMESPACE #endif // FMT_FORMAT_INL_H_ btop-1.3.0/include/fmt/format.h000066400000000000000000005235771454653170500163660ustar00rootroot00000000000000/* Formatting library for C++ Copyright (c) 2012 - present, Victor Zverovich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- Optional exception to the license --- As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into a machine-executable object form of such source code, you may redistribute such embedded portions in such object form without including the above copyright and permission notices. */ #ifndef FMT_FORMAT_H_ #define FMT_FORMAT_H_ #include // std::signbit #include // uint32_t #include // std::memcpy #include // std::initializer_list #include // std::numeric_limits #include // std::uninitialized_copy #include // std::runtime_error #include // std::system_error #ifdef __cpp_lib_bit_cast # include // std::bitcast #endif #include "core.h" #ifndef FMT_BEGIN_DETAIL_NAMESPACE # define FMT_BEGIN_DETAIL_NAMESPACE namespace detail { # define FMT_END_DETAIL_NAMESPACE } #endif #if defined __cpp_inline_variables && __cpp_inline_variables >= 201606L # define FMT_INLINE_VARIABLE inline #else # define FMT_INLINE_VARIABLE #endif #if FMT_HAS_CPP17_ATTRIBUTE(fallthrough) # define FMT_FALLTHROUGH [[fallthrough]] #elif defined(__clang__) # define FMT_FALLTHROUGH [[clang::fallthrough]] #elif FMT_GCC_VERSION >= 700 && \ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 520) # define FMT_FALLTHROUGH [[gnu::fallthrough]] #else # define FMT_FALLTHROUGH #endif #ifndef FMT_DEPRECATED # if FMT_HAS_CPP14_ATTRIBUTE(deprecated) || FMT_MSC_VERSION >= 1900 # define FMT_DEPRECATED [[deprecated]] # else # if (defined(__GNUC__) && !defined(__LCC__)) || defined(__clang__) # define FMT_DEPRECATED __attribute__((deprecated)) # elif FMT_MSC_VERSION # define FMT_DEPRECATED __declspec(deprecated) # else # define FMT_DEPRECATED /* deprecated */ # endif # endif #endif #if FMT_GCC_VERSION || defined(__clang__) # define FMT_VISIBILITY(value) __attribute__((visibility(value))) #else # define FMT_VISIBILITY(value) #endif #ifdef __has_builtin # define FMT_HAS_BUILTIN(x) __has_builtin(x) #else # define FMT_HAS_BUILTIN(x) 0 #endif #if FMT_GCC_VERSION || FMT_CLANG_VERSION # define FMT_NOINLINE __attribute__((noinline)) #else # define FMT_NOINLINE #endif #ifndef FMT_THROW # if FMT_EXCEPTIONS # if FMT_MSC_VERSION || defined(__NVCC__) FMT_BEGIN_NAMESPACE namespace detail { template inline void do_throw(const Exception& x) { // Silence unreachable code warnings in MSVC and NVCC because these // are nearly impossible to fix in a generic code. volatile bool b = true; if (b) throw x; } } // namespace detail FMT_END_NAMESPACE # define FMT_THROW(x) detail::do_throw(x) # else # define FMT_THROW(x) throw x # endif # else # define FMT_THROW(x) \ ::fmt::detail::assert_fail(__FILE__, __LINE__, (x).what()) # endif #endif #if FMT_EXCEPTIONS # define FMT_TRY try # define FMT_CATCH(x) catch (x) #else # define FMT_TRY if (true) # define FMT_CATCH(x) if (false) #endif #ifndef FMT_MAYBE_UNUSED # if FMT_HAS_CPP17_ATTRIBUTE(maybe_unused) # define FMT_MAYBE_UNUSED [[maybe_unused]] # else # define FMT_MAYBE_UNUSED # endif #endif #ifndef FMT_USE_USER_DEFINED_LITERALS // EDG based compilers (Intel, NVIDIA, Elbrus, etc), GCC and MSVC support UDLs. # if (FMT_HAS_FEATURE(cxx_user_literals) || FMT_GCC_VERSION >= 407 || \ FMT_MSC_VERSION >= 1900) && \ (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= /* UDL feature */ 480) # define FMT_USE_USER_DEFINED_LITERALS 1 # else # define FMT_USE_USER_DEFINED_LITERALS 0 # endif #endif // Defining FMT_REDUCE_INT_INSTANTIATIONS to 1, will reduce the number of // integer formatter template instantiations to just one by only using the // largest integer type. This results in a reduction in binary size but will // cause a decrease in integer formatting performance. #if !defined(FMT_REDUCE_INT_INSTANTIATIONS) # define FMT_REDUCE_INT_INSTANTIATIONS 0 #endif // __builtin_clz is broken in clang with Microsoft CodeGen: // https://github.com/fmtlib/fmt/issues/519. #if !FMT_MSC_VERSION # if FMT_HAS_BUILTIN(__builtin_clz) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZ(n) __builtin_clz(n) # endif # if FMT_HAS_BUILTIN(__builtin_clzll) || FMT_GCC_VERSION || FMT_ICC_VERSION # define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n) # endif #endif // __builtin_ctz is broken in Intel Compiler Classic on Windows: // https://github.com/fmtlib/fmt/issues/2510. #ifndef __ICL # if FMT_HAS_BUILTIN(__builtin_ctz) || FMT_GCC_VERSION || FMT_ICC_VERSION || \ defined(__NVCOMPILER) # define FMT_BUILTIN_CTZ(n) __builtin_ctz(n) # endif # if FMT_HAS_BUILTIN(__builtin_ctzll) || FMT_GCC_VERSION || \ FMT_ICC_VERSION || defined(__NVCOMPILER) # define FMT_BUILTIN_CTZLL(n) __builtin_ctzll(n) # endif #endif #if FMT_MSC_VERSION # include // _BitScanReverse[64], _BitScanForward[64], _umul128 #endif // Some compilers masquerade as both MSVC and GCC-likes or otherwise support // __builtin_clz and __builtin_clzll, so only define FMT_BUILTIN_CLZ using the // MSVC intrinsics if the clz and clzll builtins are not available. #if FMT_MSC_VERSION && !defined(FMT_BUILTIN_CLZLL) && \ !defined(FMT_BUILTIN_CTZLL) FMT_BEGIN_NAMESPACE namespace detail { // Avoid Clang with Microsoft CodeGen's -Wunknown-pragmas warning. # if !defined(__clang__) # pragma intrinsic(_BitScanForward) # pragma intrinsic(_BitScanReverse) # if defined(_WIN64) # pragma intrinsic(_BitScanForward64) # pragma intrinsic(_BitScanReverse64) # endif # endif inline auto clz(uint32_t x) -> int { unsigned long r = 0; _BitScanReverse(&r, x); FMT_ASSERT(x != 0, ""); // Static analysis complains about using uninitialized data // "r", but the only way that can happen is if "x" is 0, // which the callers guarantee to not happen. FMT_MSC_WARNING(suppress : 6102) return 31 ^ static_cast(r); } # define FMT_BUILTIN_CLZ(n) detail::clz(n) inline auto clzll(uint64_t x) -> int { unsigned long r = 0; # ifdef _WIN64 _BitScanReverse64(&r, x); # else // Scan the high 32 bits. if (_BitScanReverse(&r, static_cast(x >> 32))) return 63 ^ static_cast(r + 32); // Scan the low 32 bits. _BitScanReverse(&r, static_cast(x)); # endif FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. return 63 ^ static_cast(r); } # define FMT_BUILTIN_CLZLL(n) detail::clzll(n) inline auto ctz(uint32_t x) -> int { unsigned long r = 0; _BitScanForward(&r, x); FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. return static_cast(r); } # define FMT_BUILTIN_CTZ(n) detail::ctz(n) inline auto ctzll(uint64_t x) -> int { unsigned long r = 0; FMT_ASSERT(x != 0, ""); FMT_MSC_WARNING(suppress : 6102) // Suppress a bogus static analysis warning. # ifdef _WIN64 _BitScanForward64(&r, x); # else // Scan the low 32 bits. if (_BitScanForward(&r, static_cast(x))) return static_cast(r); // Scan the high 32 bits. _BitScanForward(&r, static_cast(x >> 32)); r += 32; # endif return static_cast(r); } # define FMT_BUILTIN_CTZLL(n) detail::ctzll(n) } // namespace detail FMT_END_NAMESPACE #endif FMT_BEGIN_NAMESPACE template struct disjunction : std::false_type {}; template struct disjunction

: P {}; template struct disjunction : conditional_t> {}; template struct conjunction : std::true_type {}; template struct conjunction

: P {}; template struct conjunction : conditional_t, P1> {}; namespace detail { FMT_CONSTEXPR inline void abort_fuzzing_if(bool condition) { ignore_unused(condition); #ifdef FMT_FUZZ if (condition) throw std::runtime_error("fuzzing limit reached"); #endif } template struct string_literal { static constexpr CharT value[sizeof...(C)] = {C...}; constexpr operator basic_string_view() const { return {value, sizeof...(C)}; } }; #if FMT_CPLUSPLUS < 201703L template constexpr CharT string_literal::value[sizeof...(C)]; #endif template class formatbuf : public Streambuf { private: using char_type = typename Streambuf::char_type; using streamsize = decltype(std::declval().sputn(nullptr, 0)); using int_type = typename Streambuf::int_type; using traits_type = typename Streambuf::traits_type; buffer& buffer_; public: explicit formatbuf(buffer& buf) : buffer_(buf) {} protected: // The put area is always empty. This makes the implementation simpler and has // the advantage that the streambuf and the buffer are always in sync and // sputc never writes into uninitialized memory. A disadvantage is that each // call to sputc always results in a (virtual) call to overflow. There is no // disadvantage here for sputn since this always results in a call to xsputn. auto overflow(int_type ch) -> int_type override { if (!traits_type::eq_int_type(ch, traits_type::eof())) buffer_.push_back(static_cast(ch)); return ch; } auto xsputn(const char_type* s, streamsize count) -> streamsize override { buffer_.append(s, s + count); return count; } }; // Implementation of std::bit_cast for pre-C++20. template FMT_CONSTEXPR20 auto bit_cast(const From& from) -> To { #ifdef __cpp_lib_bit_cast if (is_constant_evaluated()) return std::bit_cast(from); #endif auto to = To(); // The cast suppresses a bogus -Wclass-memaccess on GCC. std::memcpy(static_cast(&to), &from, sizeof(to)); return to; } inline auto is_big_endian() -> bool { #ifdef _WIN32 return false; #elif defined(__BIG_ENDIAN__) return true; #elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) return __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__; #else struct bytes { char data[sizeof(int)]; }; return bit_cast(1).data[0] == 0; #endif } class uint128_fallback { private: uint64_t lo_, hi_; friend uint128_fallback umul128(uint64_t x, uint64_t y) noexcept; public: constexpr uint128_fallback(uint64_t hi, uint64_t lo) : lo_(lo), hi_(hi) {} constexpr uint128_fallback(uint64_t value = 0) : lo_(value), hi_(0) {} constexpr uint64_t high() const noexcept { return hi_; } constexpr uint64_t low() const noexcept { return lo_; } template ::value)> constexpr explicit operator T() const { return static_cast(lo_); } friend constexpr auto operator==(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ == rhs.hi_ && lhs.lo_ == rhs.lo_; } friend constexpr auto operator!=(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return !(lhs == rhs); } friend constexpr auto operator>(const uint128_fallback& lhs, const uint128_fallback& rhs) -> bool { return lhs.hi_ != rhs.hi_ ? lhs.hi_ > rhs.hi_ : lhs.lo_ > rhs.lo_; } friend constexpr auto operator|(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ | rhs.hi_, lhs.lo_ | rhs.lo_}; } friend constexpr auto operator&(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { return {lhs.hi_ & rhs.hi_, lhs.lo_ & rhs.lo_}; } friend constexpr auto operator~(const uint128_fallback& n) -> uint128_fallback { return {~n.hi_, ~n.lo_}; } friend auto operator+(const uint128_fallback& lhs, const uint128_fallback& rhs) -> uint128_fallback { auto result = uint128_fallback(lhs); result += rhs; return result; } friend auto operator*(const uint128_fallback& lhs, uint32_t rhs) -> uint128_fallback { FMT_ASSERT(lhs.hi_ == 0, ""); uint64_t hi = (lhs.lo_ >> 32) * rhs; uint64_t lo = (lhs.lo_ & ~uint32_t()) * rhs; uint64_t new_lo = (hi << 32) + lo; return {(hi >> 32) + (new_lo < lo ? 1 : 0), new_lo}; } friend auto operator-(const uint128_fallback& lhs, uint64_t rhs) -> uint128_fallback { return {lhs.hi_ - (lhs.lo_ < rhs ? 1 : 0), lhs.lo_ - rhs}; } FMT_CONSTEXPR auto operator>>(int shift) const -> uint128_fallback { if (shift == 64) return {0, hi_}; if (shift > 64) return uint128_fallback(0, hi_) >> (shift - 64); return {hi_ >> shift, (hi_ << (64 - shift)) | (lo_ >> shift)}; } FMT_CONSTEXPR auto operator<<(int shift) const -> uint128_fallback { if (shift == 64) return {lo_, 0}; if (shift > 64) return uint128_fallback(lo_, 0) << (shift - 64); return {hi_ << shift | (lo_ >> (64 - shift)), (lo_ << shift)}; } FMT_CONSTEXPR auto operator>>=(int shift) -> uint128_fallback& { return *this = *this >> shift; } FMT_CONSTEXPR void operator+=(uint128_fallback n) { uint64_t new_lo = lo_ + n.lo_; uint64_t new_hi = hi_ + n.hi_ + (new_lo < lo_ ? 1 : 0); FMT_ASSERT(new_hi >= hi_, ""); lo_ = new_lo; hi_ = new_hi; } FMT_CONSTEXPR void operator&=(uint128_fallback n) { lo_ &= n.lo_; hi_ &= n.hi_; } FMT_CONSTEXPR20 uint128_fallback& operator+=(uint64_t n) noexcept { if (is_constant_evaluated()) { lo_ += n; hi_ += (lo_ < n ? 1 : 0); return *this; } #if FMT_HAS_BUILTIN(__builtin_addcll) && !defined(__ibmxl__) unsigned long long carry; lo_ = __builtin_addcll(lo_, n, 0, &carry); hi_ += carry; #elif FMT_HAS_BUILTIN(__builtin_ia32_addcarryx_u64) && !defined(__ibmxl__) unsigned long long result; auto carry = __builtin_ia32_addcarryx_u64(0, lo_, n, &result); lo_ = result; hi_ += carry; #elif defined(_MSC_VER) && defined(_M_X64) auto carry = _addcarry_u64(0, lo_, n, &lo_); _addcarry_u64(carry, hi_, 0, &hi_); #else lo_ += n; hi_ += (lo_ < n ? 1 : 0); #endif return *this; } }; using uint128_t = conditional_t; #ifdef UINTPTR_MAX using uintptr_t = ::uintptr_t; #else using uintptr_t = uint128_t; #endif // Returns the largest possible value for type T. Same as // std::numeric_limits::max() but shorter and not affected by the max macro. template constexpr auto max_value() -> T { return (std::numeric_limits::max)(); } template constexpr auto num_bits() -> int { return std::numeric_limits::digits; } // std::numeric_limits::digits may return 0 for 128-bit ints. template <> constexpr auto num_bits() -> int { return 128; } template <> constexpr auto num_bits() -> int { return 128; } // A heterogeneous bit_cast used for converting 96-bit long double to uint128_t // and 128-bit pointers to uint128_fallback. template sizeof(From))> inline auto bit_cast(const From& from) -> To { constexpr auto size = static_cast(sizeof(From) / sizeof(unsigned)); struct data_t { unsigned value[static_cast(size)]; } data = bit_cast(from); auto result = To(); if (const_check(is_big_endian())) { for (int i = 0; i < size; ++i) result = (result << num_bits()) | data.value[i]; } else { for (int i = size - 1; i >= 0; --i) result = (result << num_bits()) | data.value[i]; } return result; } template FMT_CONSTEXPR20 inline auto countl_zero_fallback(UInt n) -> int { int lz = 0; constexpr UInt msb_mask = static_cast(1) << (num_bits() - 1); for (; (n & msb_mask) == 0; n <<= 1) lz++; return lz; } FMT_CONSTEXPR20 inline auto countl_zero(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated()) return FMT_BUILTIN_CLZ(n); #endif return countl_zero_fallback(n); } FMT_CONSTEXPR20 inline auto countl_zero(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated()) return FMT_BUILTIN_CLZLL(n); #endif return countl_zero_fallback(n); } FMT_INLINE void assume(bool condition) { (void)condition; #if FMT_HAS_BUILTIN(__builtin_assume) && !FMT_ICC_VERSION __builtin_assume(condition); #endif } // An approximation of iterator_t for pre-C++20 systems. template using iterator_t = decltype(std::begin(std::declval())); template using sentinel_t = decltype(std::end(std::declval())); // A workaround for std::string not having mutable data() until C++17. template inline auto get_data(std::basic_string& s) -> Char* { return &s[0]; } template inline auto get_data(Container& c) -> typename Container::value_type* { return c.data(); } #if defined(_SECURE_SCL) && _SECURE_SCL // Make a checked iterator to avoid MSVC warnings. template using checked_ptr = stdext::checked_array_iterator; template constexpr auto make_checked(T* p, size_t size) -> checked_ptr { return {p, size}; } #else template using checked_ptr = T*; template constexpr auto make_checked(T* p, size_t) -> T* { return p; } #endif // Attempts to reserve space for n extra characters in the output range. // Returns a pointer to the reserved range or a reference to it. template ::value)> #if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION __attribute__((no_sanitize("undefined"))) #endif inline auto reserve(std::back_insert_iterator it, size_t n) -> checked_ptr { Container& c = get_container(it); size_t size = c.size(); c.resize(size + n); return make_checked(get_data(c) + size, n); } template inline auto reserve(buffer_appender it, size_t n) -> buffer_appender { buffer& buf = get_container(it); buf.try_reserve(buf.size() + n); return it; } template constexpr auto reserve(Iterator& it, size_t) -> Iterator& { return it; } template using reserve_iterator = remove_reference_t(), 0))>; template constexpr auto to_pointer(OutputIt, size_t) -> T* { return nullptr; } template auto to_pointer(buffer_appender it, size_t n) -> T* { buffer& buf = get_container(it); auto size = buf.size(); if (buf.capacity() < size + n) return nullptr; buf.try_resize(size + n); return buf.data() + size; } template ::value)> inline auto base_iterator(std::back_insert_iterator& it, checked_ptr) -> std::back_insert_iterator { return it; } template constexpr auto base_iterator(Iterator, Iterator it) -> Iterator { return it; } // is spectacularly slow to compile in C++20 so use a simple fill_n // instead (#1998). template FMT_CONSTEXPR auto fill_n(OutputIt out, Size count, const T& value) -> OutputIt { for (Size i = 0; i < count; ++i) *out++ = value; return out; } template FMT_CONSTEXPR20 auto fill_n(T* out, Size count, char value) -> T* { if (is_constant_evaluated()) { return fill_n(out, count, value); } std::memset(out, value, to_unsigned(count)); return out + count; } #ifdef __cpp_char8_t using char8_type = char8_t; #else enum char8_type : unsigned char {}; #endif template FMT_CONSTEXPR FMT_NOINLINE auto copy_str_noinline(InputIt begin, InputIt end, OutputIt out) -> OutputIt { return copy_str(begin, end, out); } // A public domain branchless UTF-8 decoder by Christopher Wellons: // https://github.com/skeeto/branchless-utf8 /* Decode the next character, c, from s, reporting errors in e. * * Since this is a branchless decoder, four bytes will be read from the * buffer regardless of the actual length of the next character. This * means the buffer _must_ have at least three bytes of zero padding * following the end of the data stream. * * Errors are reported in e, which will be non-zero if the parsed * character was somehow invalid: invalid byte sequence, non-canonical * encoding, or a surrogate half. * * The function returns a pointer to the next character. When an error * occurs, this pointer will be a guess that depends on the particular * error, but it will always advance at least one byte. */ FMT_CONSTEXPR inline auto utf8_decode(const char* s, uint32_t* c, int* e) -> const char* { constexpr const int masks[] = {0x00, 0x7f, 0x1f, 0x0f, 0x07}; constexpr const uint32_t mins[] = {4194304, 0, 128, 2048, 65536}; constexpr const int shiftc[] = {0, 18, 12, 6, 0}; constexpr const int shifte[] = {0, 6, 4, 2, 0}; int len = "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4" [static_cast(*s) >> 3]; // Compute the pointer to the next character early so that the next // iteration can start working on the next character. Neither Clang // nor GCC figure out this reordering on their own. const char* next = s + len + !len; using uchar = unsigned char; // Assume a four-byte character and load four bytes. Unused bits are // shifted out. *c = uint32_t(uchar(s[0]) & masks[len]) << 18; *c |= uint32_t(uchar(s[1]) & 0x3f) << 12; *c |= uint32_t(uchar(s[2]) & 0x3f) << 6; *c |= uint32_t(uchar(s[3]) & 0x3f) << 0; *c >>= shiftc[len]; // Accumulate the various error conditions. *e = (*c < mins[len]) << 6; // non-canonical encoding *e |= ((*c >> 11) == 0x1b) << 7; // surrogate half? *e |= (*c > 0x10FFFF) << 8; // out of range? *e |= (uchar(s[1]) & 0xc0) >> 2; *e |= (uchar(s[2]) & 0xc0) >> 4; *e |= uchar(s[3]) >> 6; *e ^= 0x2a; // top two bits of each tail byte correct? *e >>= shifte[len]; return next; } constexpr FMT_INLINE_VARIABLE uint32_t invalid_code_point = ~uint32_t(); // Invokes f(cp, sv) for every code point cp in s with sv being the string view // corresponding to the code point. cp is invalid_code_point on error. template FMT_CONSTEXPR void for_each_codepoint(string_view s, F f) { auto decode = [f](const char* buf_ptr, const char* ptr) { auto cp = uint32_t(); auto error = 0; auto end = utf8_decode(buf_ptr, &cp, &error); bool result = f(error ? invalid_code_point : cp, string_view(ptr, error ? 1 : to_unsigned(end - buf_ptr))); return result ? (error ? buf_ptr + 1 : end) : nullptr; }; auto p = s.data(); const size_t block_size = 4; // utf8_decode always reads blocks of 4 chars. if (s.size() >= block_size) { for (auto end = p + s.size() - block_size + 1; p < end;) { p = decode(p, p); if (!p) return; } } if (auto num_chars_left = s.data() + s.size() - p) { char buf[2 * block_size - 1] = {}; copy_str(p, p + num_chars_left, buf); const char* buf_ptr = buf; do { auto end = decode(buf_ptr, p); if (!end) return; p += end - buf_ptr; buf_ptr = end; } while (buf_ptr - buf < num_chars_left); } } template inline auto compute_width(basic_string_view s) -> size_t { return s.size(); } // Computes approximate display width of a UTF-8 string. FMT_CONSTEXPR inline size_t compute_width(string_view s) { size_t num_code_points = 0; // It is not a lambda for compatibility with C++14. struct count_code_points { size_t* count; FMT_CONSTEXPR auto operator()(uint32_t cp, string_view) const -> bool { *count += detail::to_unsigned( 1 + (cp >= 0x1100 && (cp <= 0x115f || // Hangul Jamo init. consonants cp == 0x2329 || // LEFT-POINTING ANGLE BRACKET cp == 0x232a || // RIGHT-POINTING ANGLE BRACKET // CJK ... Yi except IDEOGRAPHIC HALF FILL SPACE: (cp >= 0x2e80 && cp <= 0xa4cf && cp != 0x303f) || (cp >= 0xac00 && cp <= 0xd7a3) || // Hangul Syllables (cp >= 0xf900 && cp <= 0xfaff) || // CJK Compatibility Ideographs (cp >= 0xfe10 && cp <= 0xfe19) || // Vertical Forms (cp >= 0xfe30 && cp <= 0xfe6f) || // CJK Compatibility Forms (cp >= 0xff00 && cp <= 0xff60) || // Fullwidth Forms (cp >= 0xffe0 && cp <= 0xffe6) || // Fullwidth Forms (cp >= 0x20000 && cp <= 0x2fffd) || // CJK (cp >= 0x30000 && cp <= 0x3fffd) || // Miscellaneous Symbols and Pictographs + Emoticons: (cp >= 0x1f300 && cp <= 0x1f64f) || // Supplemental Symbols and Pictographs: (cp >= 0x1f900 && cp <= 0x1f9ff)))); return true; } }; // We could avoid branches by using utf8_decode directly. for_each_codepoint(s, count_code_points{&num_code_points}); return num_code_points; } inline auto compute_width(basic_string_view s) -> size_t { return compute_width( string_view(reinterpret_cast(s.data()), s.size())); } template inline auto code_point_index(basic_string_view s, size_t n) -> size_t { size_t size = s.size(); return n < size ? n : size; } // Calculates the index of the nth code point in a UTF-8 string. inline auto code_point_index(string_view s, size_t n) -> size_t { const char* data = s.data(); size_t num_code_points = 0; for (size_t i = 0, size = s.size(); i != size; ++i) { if ((data[i] & 0xc0) != 0x80 && ++num_code_points > n) return i; } return s.size(); } inline auto code_point_index(basic_string_view s, size_t n) -> size_t { return code_point_index( string_view(reinterpret_cast(s.data()), s.size()), n); } template struct is_integral : std::is_integral {}; template <> struct is_integral : std::true_type {}; template <> struct is_integral : std::true_type {}; template using is_signed = std::integral_constant::is_signed || std::is_same::value>; template using is_integer = bool_constant::value && !std::is_same::value && !std::is_same::value && !std::is_same::value>; #ifndef FMT_USE_FLOAT # define FMT_USE_FLOAT 1 #endif #ifndef FMT_USE_DOUBLE # define FMT_USE_DOUBLE 1 #endif #ifndef FMT_USE_LONG_DOUBLE # define FMT_USE_LONG_DOUBLE 1 #endif #ifndef FMT_USE_FLOAT128 # ifdef __clang__ // Clang emulates GCC, so it has to appear early. # if FMT_HAS_INCLUDE() # define FMT_USE_FLOAT128 1 # endif # elif defined(__GNUC__) // GNU C++: # if defined(_GLIBCXX_USE_FLOAT128) && !defined(__STRICT_ANSI__) # define FMT_USE_FLOAT128 1 # endif # endif # ifndef FMT_USE_FLOAT128 # define FMT_USE_FLOAT128 0 # endif #endif #if FMT_USE_FLOAT128 using float128 = __float128; #else using float128 = void; #endif template using is_float128 = std::is_same; template using is_floating_point = bool_constant::value || is_float128::value>; template ::value> struct is_fast_float : bool_constant::is_iec559 && sizeof(T) <= sizeof(double)> {}; template struct is_fast_float : std::false_type {}; template using is_double_double = bool_constant::digits == 106>; #ifndef FMT_USE_FULL_CACHE_DRAGONBOX # define FMT_USE_FULL_CACHE_DRAGONBOX 0 #endif template template void buffer::append(const U* begin, const U* end) { while (begin != end) { auto count = to_unsigned(end - begin); try_reserve(size_ + count); auto free_cap = capacity_ - size_; if (free_cap < count) count = free_cap; std::uninitialized_copy_n(begin, count, make_checked(ptr_ + size_, count)); size_ += count; begin += count; } } template struct is_locale : std::false_type {}; template struct is_locale> : std::true_type {}; } // namespace detail FMT_BEGIN_EXPORT // The number of characters to store in the basic_memory_buffer object itself // to avoid dynamic memory allocation. enum { inline_buffer_size = 500 }; /** \rst A dynamically growing memory buffer for trivially copyable/constructible types with the first ``SIZE`` elements stored in the object itself. You can use the ``memory_buffer`` type alias for ``char`` instead. **Example**:: auto out = fmt::memory_buffer(); format_to(std::back_inserter(out), "The answer is {}.", 42); This will append the following output to the ``out`` object: .. code-block:: none The answer is 42. The output can be converted to an ``std::string`` with ``to_string(out)``. \endrst */ template > class basic_memory_buffer final : public detail::buffer { private: T store_[SIZE]; // Don't inherit from Allocator avoid generating type_info for it. Allocator alloc_; // Deallocate memory allocated by the buffer. FMT_CONSTEXPR20 void deallocate() { T* data = this->data(); if (data != store_) alloc_.deallocate(data, this->capacity()); } protected: FMT_CONSTEXPR20 void grow(size_t size) override { detail::abort_fuzzing_if(size > 5000); const size_t max_size = std::allocator_traits::max_size(alloc_); size_t old_capacity = this->capacity(); size_t new_capacity = old_capacity + old_capacity / 2; if (size > new_capacity) new_capacity = size; else if (new_capacity > max_size) new_capacity = size > max_size ? size : max_size; T* old_data = this->data(); T* new_data = std::allocator_traits::allocate(alloc_, new_capacity); // The following code doesn't throw, so the raw pointer above doesn't leak. std::uninitialized_copy(old_data, old_data + this->size(), detail::make_checked(new_data, new_capacity)); this->set(new_data, new_capacity); // deallocate must not throw according to the standard, but even if it does, // the buffer already uses the new storage and will deallocate it in // destructor. if (old_data != store_) alloc_.deallocate(old_data, old_capacity); } public: using value_type = T; using const_reference = const T&; FMT_CONSTEXPR20 explicit basic_memory_buffer( const Allocator& alloc = Allocator()) : alloc_(alloc) { this->set(store_, SIZE); if (detail::is_constant_evaluated()) detail::fill_n(store_, SIZE, T()); } FMT_CONSTEXPR20 ~basic_memory_buffer() { deallocate(); } private: // Move data from other to this buffer. FMT_CONSTEXPR20 void move(basic_memory_buffer& other) { alloc_ = std::move(other.alloc_); T* data = other.data(); size_t size = other.size(), capacity = other.capacity(); if (data == other.store_) { this->set(store_, capacity); detail::copy_str(other.store_, other.store_ + size, detail::make_checked(store_, capacity)); } else { this->set(data, capacity); // Set pointer to the inline array so that delete is not called // when deallocating. other.set(other.store_, 0); other.clear(); } this->resize(size); } public: /** \rst Constructs a :class:`fmt::basic_memory_buffer` object moving the content of the other object to it. \endrst */ FMT_CONSTEXPR20 basic_memory_buffer(basic_memory_buffer&& other) noexcept { move(other); } /** \rst Moves the content of the other ``basic_memory_buffer`` object to this one. \endrst */ auto operator=(basic_memory_buffer&& other) noexcept -> basic_memory_buffer& { FMT_ASSERT(this != &other, ""); deallocate(); move(other); return *this; } // Returns a copy of the allocator associated with this buffer. auto get_allocator() const -> Allocator { return alloc_; } /** Resizes the buffer to contain *count* elements. If T is a POD type new elements may not be initialized. */ FMT_CONSTEXPR20 void resize(size_t count) { this->try_resize(count); } /** Increases the buffer capacity to *new_capacity*. */ void reserve(size_t new_capacity) { this->try_reserve(new_capacity); } // Directly append data into the buffer using detail::buffer::append; template void append(const ContiguousRange& range) { append(range.data(), range.data() + range.size()); } }; using memory_buffer = basic_memory_buffer; template struct is_contiguous> : std::true_type { }; FMT_END_EXPORT namespace detail { FMT_API bool write_console(std::FILE* f, string_view text); FMT_API void print(std::FILE*, string_view); } // namespace detail FMT_BEGIN_EXPORT // Suppress a misleading warning in older versions of clang. #if FMT_CLANG_VERSION # pragma clang diagnostic ignored "-Wweak-vtables" #endif /** An error reported from a formatting function. */ class FMT_VISIBILITY("default") format_error : public std::runtime_error { public: using std::runtime_error::runtime_error; }; namespace detail_exported { #if FMT_USE_NONTYPE_TEMPLATE_ARGS template struct fixed_string { constexpr fixed_string(const Char (&str)[N]) { detail::copy_str(static_cast(str), str + N, data); } Char data[N] = {}; }; #endif // Converts a compile-time string to basic_string_view. template constexpr auto compile_string_to_view(const Char (&s)[N]) -> basic_string_view { // Remove trailing NUL character if needed. Won't be present if this is used // with a raw character array (i.e. not defined as a string). return {s, N - (std::char_traits::to_int_type(s[N - 1]) == 0 ? 1 : 0)}; } template constexpr auto compile_string_to_view(detail::std_string_view s) -> basic_string_view { return {s.data(), s.size()}; } } // namespace detail_exported class loc_value { private: basic_format_arg value_; public: template ::value)> loc_value(T value) : value_(detail::make_arg(value)) {} template ::value)> loc_value(T) {} template auto visit(Visitor&& vis) -> decltype(vis(0)) { return visit_format_arg(vis, value_); } }; // A locale facet that formats values in UTF-8. // It is parameterized on the locale to avoid the heavy include. template class format_facet : public Locale::facet { private: std::string separator_; std::string grouping_; std::string decimal_point_; protected: virtual auto do_put(appender out, loc_value val, const format_specs<>& specs) const -> bool; public: static FMT_API typename Locale::id id; explicit format_facet(Locale& loc); explicit format_facet(string_view sep = "", std::initializer_list g = {3}, std::string decimal_point = ".") : separator_(sep.data(), sep.size()), grouping_(g.begin(), g.end()), decimal_point_(decimal_point) {} auto put(appender out, loc_value val, const format_specs<>& specs) const -> bool { return do_put(out, val, specs); } }; FMT_BEGIN_DETAIL_NAMESPACE // Returns true if value is negative, false otherwise. // Same as `value < 0` but doesn't produce warnings if T is an unsigned type. template ::value)> constexpr auto is_negative(T value) -> bool { return value < 0; } template ::value)> constexpr auto is_negative(T) -> bool { return false; } template FMT_CONSTEXPR auto is_supported_floating_point(T) -> bool { if (std::is_same()) return FMT_USE_FLOAT; if (std::is_same()) return FMT_USE_DOUBLE; if (std::is_same()) return FMT_USE_LONG_DOUBLE; return true; } // Smallest of uint32_t, uint64_t, uint128_t that is large enough to // represent all values of an integral type T. template using uint32_or_64_or_128_t = conditional_t() <= 32 && !FMT_REDUCE_INT_INSTANTIATIONS, uint32_t, conditional_t() <= 64, uint64_t, uint128_t>>; template using uint64_or_128_t = conditional_t() <= 64, uint64_t, uint128_t>; #define FMT_POWERS_OF_10(factor) \ factor * 10, (factor)*100, (factor)*1000, (factor)*10000, (factor)*100000, \ (factor)*1000000, (factor)*10000000, (factor)*100000000, \ (factor)*1000000000 // Converts value in the range [0, 100) to a string. constexpr const char* digits2(size_t value) { // GCC generates slightly better code when value is pointer-size. return &"0001020304050607080910111213141516171819" "2021222324252627282930313233343536373839" "4041424344454647484950515253545556575859" "6061626364656667686970717273747576777879" "8081828384858687888990919293949596979899"[value * 2]; } // Sign is a template parameter to workaround a bug in gcc 4.8. template constexpr Char sign(Sign s) { #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 604 static_assert(std::is_same::value, ""); #endif return static_cast("\0-+ "[s]); } template FMT_CONSTEXPR auto count_digits_fallback(T n) -> int { int count = 1; for (;;) { // Integer division is slow so do it for a group of four digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. if (n < 10) return count; if (n < 100) return count + 1; if (n < 1000) return count + 2; if (n < 10000) return count + 3; n /= 10000u; count += 4; } } #if FMT_USE_INT128 FMT_CONSTEXPR inline auto count_digits(uint128_opt n) -> int { return count_digits_fallback(n); } #endif #ifdef FMT_BUILTIN_CLZLL // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. inline auto do_count_digits(uint64_t n) -> int { // This has comparable performance to the version by Kendall Willets // (https://github.com/fmtlib/format-benchmark/blob/master/digits10) // but uses smaller tables. // Maps bsr(n) to ceil(log10(pow(2, bsr(n) + 1) - 1)). static constexpr uint8_t bsr2log10[] = { 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 19, 20}; auto t = bsr2log10[FMT_BUILTIN_CLZLL(n | 1) ^ 63]; static constexpr const uint64_t zero_or_powers_of_10[] = { 0, 0, FMT_POWERS_OF_10(1U), FMT_POWERS_OF_10(1000000000ULL), 10000000000000000000ULL}; return t - (n < zero_or_powers_of_10[t]); } #endif // Returns the number of decimal digits in n. Leading zeros are not counted // except for n == 0 in which case count_digits returns 1. FMT_CONSTEXPR20 inline auto count_digits(uint64_t n) -> int { #ifdef FMT_BUILTIN_CLZLL if (!is_constant_evaluated()) { return do_count_digits(n); } #endif return count_digits_fallback(n); } // Counts the number of digits in n. BITS = log2(radix). template FMT_CONSTEXPR auto count_digits(UInt n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated() && num_bits() == 32) return (FMT_BUILTIN_CLZ(static_cast(n) | 1) ^ 31) / BITS + 1; #endif // Lambda avoids unreachable code warnings from NVHPC. return [](UInt m) { int num_digits = 0; do { ++num_digits; } while ((m >>= BITS) != 0); return num_digits; }(n); } #ifdef FMT_BUILTIN_CLZ // It is a separate function rather than a part of count_digits to workaround // the lack of static constexpr in constexpr functions. FMT_INLINE auto do_count_digits(uint32_t n) -> int { // An optimization by Kendall Willets from https://bit.ly/3uOIQrB. // This increments the upper 32 bits (log10(T) - 1) when >= T is added. # define FMT_INC(T) (((sizeof(# T) - 1ull) << 32) - T) static constexpr uint64_t table[] = { FMT_INC(0), FMT_INC(0), FMT_INC(0), // 8 FMT_INC(10), FMT_INC(10), FMT_INC(10), // 64 FMT_INC(100), FMT_INC(100), FMT_INC(100), // 512 FMT_INC(1000), FMT_INC(1000), FMT_INC(1000), // 4096 FMT_INC(10000), FMT_INC(10000), FMT_INC(10000), // 32k FMT_INC(100000), FMT_INC(100000), FMT_INC(100000), // 256k FMT_INC(1000000), FMT_INC(1000000), FMT_INC(1000000), // 2048k FMT_INC(10000000), FMT_INC(10000000), FMT_INC(10000000), // 16M FMT_INC(100000000), FMT_INC(100000000), FMT_INC(100000000), // 128M FMT_INC(1000000000), FMT_INC(1000000000), FMT_INC(1000000000), // 1024M FMT_INC(1000000000), FMT_INC(1000000000) // 4B }; auto inc = table[FMT_BUILTIN_CLZ(n | 1) ^ 31]; return static_cast((n + inc) >> 32); } #endif // Optional version of count_digits for better performance on 32-bit platforms. FMT_CONSTEXPR20 inline auto count_digits(uint32_t n) -> int { #ifdef FMT_BUILTIN_CLZ if (!is_constant_evaluated()) { return do_count_digits(n); } #endif return count_digits_fallback(n); } template constexpr auto digits10() noexcept -> int { return std::numeric_limits::digits10; } template <> constexpr auto digits10() noexcept -> int { return 38; } template <> constexpr auto digits10() noexcept -> int { return 38; } template struct thousands_sep_result { std::string grouping; Char thousands_sep; }; template FMT_API auto thousands_sep_impl(locale_ref loc) -> thousands_sep_result; template inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { auto result = thousands_sep_impl(loc); return {result.grouping, Char(result.thousands_sep)}; } template <> inline auto thousands_sep(locale_ref loc) -> thousands_sep_result { return thousands_sep_impl(loc); } template FMT_API auto decimal_point_impl(locale_ref loc) -> Char; template inline auto decimal_point(locale_ref loc) -> Char { return Char(decimal_point_impl(loc)); } template <> inline auto decimal_point(locale_ref loc) -> wchar_t { return decimal_point_impl(loc); } // Compares two characters for equality. template auto equal2(const Char* lhs, const char* rhs) -> bool { return lhs[0] == Char(rhs[0]) && lhs[1] == Char(rhs[1]); } inline auto equal2(const char* lhs, const char* rhs) -> bool { return memcmp(lhs, rhs, 2) == 0; } // Copies two characters from src to dst. template FMT_CONSTEXPR20 FMT_INLINE void copy2(Char* dst, const char* src) { if (!is_constant_evaluated() && sizeof(Char) == sizeof(char)) { memcpy(dst, src, 2); return; } *dst++ = static_cast(*src++); *dst = static_cast(*src); } template struct format_decimal_result { Iterator begin; Iterator end; }; // Formats a decimal unsigned integer value writing into out pointing to a // buffer of specified size. The caller must ensure that the buffer is large // enough. template FMT_CONSTEXPR20 auto format_decimal(Char* out, UInt value, int size) -> format_decimal_result { FMT_ASSERT(size >= count_digits(value), "invalid digit count"); out += size; Char* end = out; while (value >= 100) { // Integer division is slow so do it for a group of two digits instead // of for every digit. The idea comes from the talk by Alexandrescu // "Three Optimization Tips for C++". See speed-test for a comparison. out -= 2; copy2(out, digits2(static_cast(value % 100))); value /= 100; } if (value < 10) { *--out = static_cast('0' + value); return {out, end}; } out -= 2; copy2(out, digits2(static_cast(value))); return {out, end}; } template >::value)> FMT_CONSTEXPR inline auto format_decimal(Iterator out, UInt value, int size) -> format_decimal_result { // Buffer is large enough to hold all digits (digits10 + 1). Char buffer[digits10() + 1] = {}; auto end = format_decimal(buffer, value, size).end; return {out, detail::copy_str_noinline(buffer, end, out)}; } template FMT_CONSTEXPR auto format_uint(Char* buffer, UInt value, int num_digits, bool upper = false) -> Char* { buffer += num_digits; Char* end = buffer; do { const char* digits = upper ? "0123456789ABCDEF" : "0123456789abcdef"; unsigned digit = static_cast(value & ((1 << BASE_BITS) - 1)); *--buffer = static_cast(BASE_BITS < 4 ? static_cast('0' + digit) : digits[digit]); } while ((value >>= BASE_BITS) != 0); return end; } template inline auto format_uint(It out, UInt value, int num_digits, bool upper = false) -> It { if (auto ptr = to_pointer(out, to_unsigned(num_digits))) { format_uint(ptr, value, num_digits, upper); return out; } // Buffer should be large enough to hold all digits (digits / BASE_BITS + 1). char buffer[num_bits() / BASE_BITS + 1]; format_uint(buffer, value, num_digits, upper); return detail::copy_str_noinline(buffer, buffer + num_digits, out); } // A converter from UTF-8 to UTF-16. class utf8_to_utf16 { private: basic_memory_buffer buffer_; public: FMT_API explicit utf8_to_utf16(string_view s); operator basic_string_view() const { return {&buffer_[0], size()}; } auto size() const -> size_t { return buffer_.size() - 1; } auto c_str() const -> const wchar_t* { return &buffer_[0]; } auto str() const -> std::wstring { return {&buffer_[0], size()}; } }; // A converter from UTF-16/UTF-32 (host endian) to UTF-8. template class to_utf8 { private: Buffer buffer_; public: to_utf8() {} explicit to_utf8(basic_string_view s) { static_assert(sizeof(WChar) == 2 || sizeof(WChar) == 4, "Expect utf16 or utf32"); if (!convert(s)) FMT_THROW(std::runtime_error(sizeof(WChar) == 2 ? "invalid utf16" : "invalid utf32")); } operator string_view() const { return string_view(&buffer_[0], size()); } size_t size() const { return buffer_.size() - 1; } const char* c_str() const { return &buffer_[0]; } std::string str() const { return std::string(&buffer_[0], size()); } // Performs conversion returning a bool instead of throwing exception on // conversion error. This method may still throw in case of memory allocation // error. bool convert(basic_string_view s) { if (!convert(buffer_, s)) return false; buffer_.push_back(0); return true; } static bool convert(Buffer& buf, basic_string_view s) { for (auto p = s.begin(); p != s.end(); ++p) { uint32_t c = static_cast(*p); if (sizeof(WChar) == 2 && c >= 0xd800 && c <= 0xdfff) { // surrogate pair ++p; if (p == s.end() || (c & 0xfc00) != 0xd800 || (*p & 0xfc00) != 0xdc00) { return false; } c = (c << 10) + static_cast(*p) - 0x35fdc00; } if (c < 0x80) { buf.push_back(static_cast(c)); } else if (c < 0x800) { buf.push_back(static_cast(0xc0 | (c >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if ((c >= 0x800 && c <= 0xd7ff) || (c >= 0xe000 && c <= 0xffff)) { buf.push_back(static_cast(0xe0 | (c >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else if (c >= 0x10000 && c <= 0x10ffff) { buf.push_back(static_cast(0xf0 | (c >> 18))); buf.push_back(static_cast(0x80 | ((c & 0x3ffff) >> 12))); buf.push_back(static_cast(0x80 | ((c & 0xfff) >> 6))); buf.push_back(static_cast(0x80 | (c & 0x3f))); } else { return false; } } return true; } }; // Computes 128-bit result of multiplication of two 64-bit unsigned integers. inline uint128_fallback umul128(uint64_t x, uint64_t y) noexcept { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return {static_cast(p >> 64), static_cast(p)}; #elif defined(_MSC_VER) && defined(_M_X64) auto result = uint128_fallback(); result.lo_ = _umul128(x, y, &result.hi_); return result; #else const uint64_t mask = static_cast(max_value()); uint64_t a = x >> 32; uint64_t b = x & mask; uint64_t c = y >> 32; uint64_t d = y & mask; uint64_t ac = a * c; uint64_t bc = b * c; uint64_t ad = a * d; uint64_t bd = b * d; uint64_t intermediate = (bd >> 32) + (ad & mask) + (bc & mask); return {ac + (intermediate >> 32) + (ad >> 32) + (bc >> 32), (intermediate << 32) + (bd & mask)}; #endif } namespace dragonbox { // Computes floor(log10(pow(2, e))) for e in [-2620, 2620] using the method from // https://fmt.dev/papers/Dragonbox.pdf#page=28, section 6.1. inline int floor_log10_pow2(int e) noexcept { FMT_ASSERT(e <= 2620 && e >= -2620, "too large exponent"); static_assert((-1 >> 1) == -1, "right shift is not arithmetic"); return (e * 315653) >> 20; } inline int floor_log2_pow10(int e) noexcept { FMT_ASSERT(e <= 1233 && e >= -1233, "too large exponent"); return (e * 1741647) >> 19; } // Computes upper 64 bits of multiplication of two 64-bit unsigned integers. inline uint64_t umul128_upper64(uint64_t x, uint64_t y) noexcept { #if FMT_USE_INT128 auto p = static_cast(x) * static_cast(y); return static_cast(p >> 64); #elif defined(_MSC_VER) && defined(_M_X64) return __umulh(x, y); #else return umul128(x, y).high(); #endif } // Computes upper 128 bits of multiplication of a 64-bit unsigned integer and a // 128-bit unsigned integer. inline uint128_fallback umul192_upper128(uint64_t x, uint128_fallback y) noexcept { uint128_fallback r = umul128(x, y.high()); r += umul128_upper64(x, y.low()); return r; } FMT_API uint128_fallback get_cached_power(int k) noexcept; // Type-specific information that Dragonbox uses. template struct float_info; template <> struct float_info { using carrier_uint = uint32_t; static const int exponent_bits = 8; static const int kappa = 1; static const int big_divisor = 100; static const int small_divisor = 10; static const int min_k = -31; static const int max_k = 46; static const int shorter_interval_tie_lower_threshold = -35; static const int shorter_interval_tie_upper_threshold = -35; }; template <> struct float_info { using carrier_uint = uint64_t; static const int exponent_bits = 11; static const int kappa = 2; static const int big_divisor = 1000; static const int small_divisor = 100; static const int min_k = -292; static const int max_k = 341; static const int shorter_interval_tie_lower_threshold = -77; static const int shorter_interval_tie_upper_threshold = -77; }; // An 80- or 128-bit floating point number. template struct float_info::digits == 64 || std::numeric_limits::digits == 113 || is_float128::value>> { using carrier_uint = detail::uint128_t; static const int exponent_bits = 15; }; // A double-double floating point number. template struct float_info::value>> { using carrier_uint = detail::uint128_t; }; template struct decimal_fp { using significand_type = typename float_info::carrier_uint; significand_type significand; int exponent; }; template FMT_API auto to_decimal(T x) noexcept -> decimal_fp; } // namespace dragonbox // Returns true iff Float has the implicit bit which is not stored. template constexpr bool has_implicit_bit() { // An 80-bit FP number has a 64-bit significand an no implicit bit. return std::numeric_limits::digits != 64; } // Returns the number of significand bits stored in Float. The implicit bit is // not counted since it is not stored. template constexpr int num_significand_bits() { // std::numeric_limits may not support __float128. return is_float128() ? 112 : (std::numeric_limits::digits - (has_implicit_bit() ? 1 : 0)); } template constexpr auto exponent_mask() -> typename dragonbox::float_info::carrier_uint { using float_uint = typename dragonbox::float_info::carrier_uint; return ((float_uint(1) << dragonbox::float_info::exponent_bits) - 1) << num_significand_bits(); } template constexpr auto exponent_bias() -> int { // std::numeric_limits may not support __float128. return is_float128() ? 16383 : std::numeric_limits::max_exponent - 1; } // Writes the exponent exp in the form "[+-]d{2,3}" to buffer. template FMT_CONSTEXPR auto write_exponent(int exp, It it) -> It { FMT_ASSERT(-10000 < exp && exp < 10000, "exponent out of range"); if (exp < 0) { *it++ = static_cast('-'); exp = -exp; } else { *it++ = static_cast('+'); } if (exp >= 100) { const char* top = digits2(to_unsigned(exp / 100)); if (exp >= 1000) *it++ = static_cast(top[0]); *it++ = static_cast(top[1]); exp %= 100; } const char* d = digits2(to_unsigned(exp)); *it++ = static_cast(d[0]); *it++ = static_cast(d[1]); return it; } // A floating-point number f * pow(2, e) where F is an unsigned type. template struct basic_fp { F f; int e; static constexpr const int num_significand_bits = static_cast(sizeof(F) * num_bits()); constexpr basic_fp() : f(0), e(0) {} constexpr basic_fp(uint64_t f_val, int e_val) : f(f_val), e(e_val) {} // Constructs fp from an IEEE754 floating-point number. template FMT_CONSTEXPR basic_fp(Float n) { assign(n); } // Assigns n to this and return true iff predecessor is closer than successor. template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::digits <= 113, "unsupported FP"); // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename dragonbox::float_info::carrier_uint; const auto num_float_significand_bits = detail::num_significand_bits(); const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; const auto significand_mask = implicit_bit - 1; auto u = bit_cast(n); f = static_cast(u & significand_mask); auto biased_e = static_cast((u & exponent_mask()) >> num_float_significand_bits); // The predecessor is closer if n is a normalized power of 2 (f == 0) // other than the smallest normalized number (biased_e > 1). auto is_predecessor_closer = f == 0 && biased_e > 1; if (biased_e == 0) biased_e = 1; // Subnormals use biased exponent 1 (min exponent). else if (has_implicit_bit()) f += static_cast(implicit_bit); e = biased_e - exponent_bias() - num_float_significand_bits; if (!has_implicit_bit()) ++e; return is_predecessor_closer; } template ::value)> FMT_CONSTEXPR auto assign(Float n) -> bool { static_assert(std::numeric_limits::is_iec559, "unsupported FP"); return assign(static_cast(n)); } }; using fp = basic_fp; // Normalizes the value converted from double and multiplied by (1 << SHIFT). template FMT_CONSTEXPR basic_fp normalize(basic_fp value) { // Handle subnormals. const auto implicit_bit = F(1) << num_significand_bits(); const auto shifted_implicit_bit = implicit_bit << SHIFT; while ((value.f & shifted_implicit_bit) == 0) { value.f <<= 1; --value.e; } // Subtract 1 to account for hidden bit. const auto offset = basic_fp::num_significand_bits - num_significand_bits() - SHIFT - 1; value.f <<= offset; value.e -= offset; return value; } // Computes lhs * rhs / pow(2, 64) rounded to nearest with half-up tie breaking. FMT_CONSTEXPR inline uint64_t multiply(uint64_t lhs, uint64_t rhs) { #if FMT_USE_INT128 auto product = static_cast<__uint128_t>(lhs) * rhs; auto f = static_cast(product >> 64); return (static_cast(product) & (1ULL << 63)) != 0 ? f + 1 : f; #else // Multiply 32-bit parts of significands. uint64_t mask = (1ULL << 32) - 1; uint64_t a = lhs >> 32, b = lhs & mask; uint64_t c = rhs >> 32, d = rhs & mask; uint64_t ac = a * c, bc = b * c, ad = a * d, bd = b * d; // Compute mid 64-bit of result and round. uint64_t mid = (bd >> 32) + (ad & mask) + (bc & mask) + (1U << 31); return ac + (ad >> 32) + (bc >> 32) + (mid >> 32); #endif } FMT_CONSTEXPR inline fp operator*(fp x, fp y) { return {multiply(x.f, y.f), x.e + y.e + 64}; } template struct basic_data { // Normalized 64-bit significands of pow(10, k), for k = -348, -340, ..., 340. // These are generated by support/compute-powers.py. static constexpr uint64_t pow10_significands[87] = { 0xfa8fd5a0081c0288, 0xbaaee17fa23ebf76, 0x8b16fb203055ac76, 0xcf42894a5dce35ea, 0x9a6bb0aa55653b2d, 0xe61acf033d1a45df, 0xab70fe17c79ac6ca, 0xff77b1fcbebcdc4f, 0xbe5691ef416bd60c, 0x8dd01fad907ffc3c, 0xd3515c2831559a83, 0x9d71ac8fada6c9b5, 0xea9c227723ee8bcb, 0xaecc49914078536d, 0x823c12795db6ce57, 0xc21094364dfb5637, 0x9096ea6f3848984f, 0xd77485cb25823ac7, 0xa086cfcd97bf97f4, 0xef340a98172aace5, 0xb23867fb2a35b28e, 0x84c8d4dfd2c63f3b, 0xc5dd44271ad3cdba, 0x936b9fcebb25c996, 0xdbac6c247d62a584, 0xa3ab66580d5fdaf6, 0xf3e2f893dec3f126, 0xb5b5ada8aaff80b8, 0x87625f056c7c4a8b, 0xc9bcff6034c13053, 0x964e858c91ba2655, 0xdff9772470297ebd, 0xa6dfbd9fb8e5b88f, 0xf8a95fcf88747d94, 0xb94470938fa89bcf, 0x8a08f0f8bf0f156b, 0xcdb02555653131b6, 0x993fe2c6d07b7fac, 0xe45c10c42a2b3b06, 0xaa242499697392d3, 0xfd87b5f28300ca0e, 0xbce5086492111aeb, 0x8cbccc096f5088cc, 0xd1b71758e219652c, 0x9c40000000000000, 0xe8d4a51000000000, 0xad78ebc5ac620000, 0x813f3978f8940984, 0xc097ce7bc90715b3, 0x8f7e32ce7bea5c70, 0xd5d238a4abe98068, 0x9f4f2726179a2245, 0xed63a231d4c4fb27, 0xb0de65388cc8ada8, 0x83c7088e1aab65db, 0xc45d1df942711d9a, 0x924d692ca61be758, 0xda01ee641a708dea, 0xa26da3999aef774a, 0xf209787bb47d6b85, 0xb454e4a179dd1877, 0x865b86925b9bc5c2, 0xc83553c5c8965d3d, 0x952ab45cfa97a0b3, 0xde469fbd99a05fe3, 0xa59bc234db398c25, 0xf6c69a72a3989f5c, 0xb7dcbf5354e9bece, 0x88fcf317f22241e2, 0xcc20ce9bd35c78a5, 0x98165af37b2153df, 0xe2a0b5dc971f303a, 0xa8d9d1535ce3b396, 0xfb9b7cd9a4a7443c, 0xbb764c4ca7a44410, 0x8bab8eefb6409c1a, 0xd01fef10a657842c, 0x9b10a4e5e9913129, 0xe7109bfba19c0c9d, 0xac2820d9623bf429, 0x80444b5e7aa7cf85, 0xbf21e44003acdd2d, 0x8e679c2f5e44ff8f, 0xd433179d9c8cb841, 0x9e19db92b4e31ba9, 0xeb96bf6ebadf77d9, 0xaf87023b9bf0ee6b, }; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wnarrowing" #endif // Binary exponents of pow(10, k), for k = -348, -340, ..., 340, corresponding // to significands above. static constexpr int16_t pow10_exponents[87] = { -1220, -1193, -1166, -1140, -1113, -1087, -1060, -1034, -1007, -980, -954, -927, -901, -874, -847, -821, -794, -768, -741, -715, -688, -661, -635, -608, -582, -555, -529, -502, -475, -449, -422, -396, -369, -343, -316, -289, -263, -236, -210, -183, -157, -130, -103, -77, -50, -24, 3, 30, 56, 83, 109, 136, 162, 189, 216, 242, 269, 295, 322, 348, 375, 402, 428, 455, 481, 508, 534, 561, 588, 614, 641, 667, 694, 720, 747, 774, 800, 827, 853, 880, 907, 933, 960, 986, 1013, 1039, 1066}; #if FMT_GCC_VERSION && FMT_GCC_VERSION < 409 # pragma GCC diagnostic pop #endif static constexpr uint64_t power_of_10_64[20] = { 1, FMT_POWERS_OF_10(1ULL), FMT_POWERS_OF_10(1000000000ULL), 10000000000000000000ULL}; // For checking rounding thresholds. // The kth entry is chosen to be the smallest integer such that the // upper 32-bits of 10^(k+1) times it is strictly bigger than 5 * 10^k. static constexpr uint32_t fractional_part_rounding_thresholds[8] = { 2576980378, // ceil(2^31 + 2^32/10^1) 2190433321, // ceil(2^31 + 2^32/10^2) 2151778616, // ceil(2^31 + 2^32/10^3) 2147913145, // ceil(2^31 + 2^32/10^4) 2147526598, // ceil(2^31 + 2^32/10^5) 2147487943, // ceil(2^31 + 2^32/10^6) 2147484078, // ceil(2^31 + 2^32/10^7) 2147483691 // ceil(2^31 + 2^32/10^8) }; }; #if FMT_CPLUSPLUS < 201703L template constexpr uint64_t basic_data::pow10_significands[]; template constexpr int16_t basic_data::pow10_exponents[]; template constexpr uint64_t basic_data::power_of_10_64[]; template constexpr uint32_t basic_data::fractional_part_rounding_thresholds[]; #endif // This is a struct rather than an alias to avoid shadowing warnings in gcc. struct data : basic_data<> {}; // Returns a cached power of 10 `c_k = c_k.f * pow(2, c_k.e)` such that its // (binary) exponent satisfies `min_exponent <= c_k.e <= min_exponent + 28`. FMT_CONSTEXPR inline fp get_cached_power(int min_exponent, int& pow10_exponent) { const int shift = 32; // log10(2) = 0x0.4d104d427de7fbcc... const int64_t significand = 0x4d104d427de7fbcc; int index = static_cast( ((min_exponent + fp::num_significand_bits - 1) * (significand >> shift) + ((int64_t(1) << shift) - 1)) // ceil >> 32 // arithmetic shift ); // Decimal exponent of the first (smallest) cached power of 10. const int first_dec_exp = -348; // Difference between 2 consecutive decimal exponents in cached powers of 10. const int dec_exp_step = 8; index = (index - first_dec_exp - 1) / dec_exp_step + 1; pow10_exponent = first_dec_exp + index * dec_exp_step; // Using *(x + index) instead of x[index] avoids an issue with some compilers // using the EDG frontend (e.g. nvhpc/22.3 in C++17 mode). return {*(data::pow10_significands + index), *(data::pow10_exponents + index)}; } template using convert_float_result = conditional_t::value || std::numeric_limits::digits == std::numeric_limits::digits, double, T>; template constexpr auto convert_float(T value) -> convert_float_result { return static_cast>(value); } template FMT_NOINLINE FMT_CONSTEXPR auto fill(OutputIt it, size_t n, const fill_t& fill) -> OutputIt { auto fill_size = fill.size(); if (fill_size == 1) return detail::fill_n(it, n, fill[0]); auto data = fill.data(); for (size_t i = 0; i < n; ++i) it = copy_str(data, data + fill_size, it); return it; } // Writes the output of f, padded according to format specifications in specs. // size: output size in code units. // width: output display width in (terminal) column positions. template FMT_CONSTEXPR auto write_padded(OutputIt out, const format_specs& specs, size_t size, size_t width, F&& f) -> OutputIt { static_assert(align == align::left || align == align::right, ""); unsigned spec_width = to_unsigned(specs.width); size_t padding = spec_width > width ? spec_width - width : 0; // Shifts are encoded as string literals because static constexpr is not // supported in constexpr functions. auto* shifts = align == align::left ? "\x1f\x1f\x00\x01" : "\x00\x1f\x00\x01"; size_t left_padding = padding >> shifts[specs.align]; size_t right_padding = padding - left_padding; auto it = reserve(out, size + padding * specs.fill.size()); if (left_padding != 0) it = fill(it, left_padding, specs.fill); it = f(it); if (right_padding != 0) it = fill(it, right_padding, specs.fill); return base_iterator(out, it); } template constexpr auto write_padded(OutputIt out, const format_specs& specs, size_t size, F&& f) -> OutputIt { return write_padded(out, specs, size, size, f); } template FMT_CONSTEXPR auto write_bytes(OutputIt out, string_view bytes, const format_specs& specs) -> OutputIt { return write_padded( out, specs, bytes.size(), [bytes](reserve_iterator it) { const char* data = bytes.data(); return copy_str(data, data + bytes.size(), it); }); } template auto write_ptr(OutputIt out, UIntPtr value, const format_specs* specs) -> OutputIt { int num_digits = count_digits<4>(value); auto size = to_unsigned(num_digits) + size_t(2); auto write = [=](reserve_iterator it) { *it++ = static_cast('0'); *it++ = static_cast('x'); return format_uint<4, Char>(it, value, num_digits); }; return specs ? write_padded(out, *specs, size, write) : base_iterator(out, write(reserve(out, size))); } // Returns true iff the code point cp is printable. FMT_API auto is_printable(uint32_t cp) -> bool; inline auto needs_escape(uint32_t cp) -> bool { return cp < 0x20 || cp == 0x7f || cp == '"' || cp == '\\' || !is_printable(cp); } template struct find_escape_result { const Char* begin; const Char* end; uint32_t cp; }; template using make_unsigned_char = typename conditional_t::value, std::make_unsigned, type_identity>::type; template auto find_escape(const Char* begin, const Char* end) -> find_escape_result { for (; begin != end; ++begin) { uint32_t cp = static_cast>(*begin); if (const_check(sizeof(Char) == 1) && cp >= 0x80) continue; if (needs_escape(cp)) return {begin, begin + 1, cp}; } return {begin, nullptr, 0}; } inline auto find_escape(const char* begin, const char* end) -> find_escape_result { if (!is_utf8()) return find_escape(begin, end); auto result = find_escape_result{end, nullptr, 0}; for_each_codepoint(string_view(begin, to_unsigned(end - begin)), [&](uint32_t cp, string_view sv) { if (needs_escape(cp)) { result = {sv.begin(), sv.end(), cp}; return false; } return true; }); return result; } #define FMT_STRING_IMPL(s, base, explicit) \ [] { \ /* Use the hidden visibility as a workaround for a GCC bug (#1973). */ \ /* Use a macro-like name to avoid shadowing warnings. */ \ struct FMT_VISIBILITY("hidden") FMT_COMPILE_STRING : base { \ using char_type FMT_MAYBE_UNUSED = fmt::remove_cvref_t; \ FMT_MAYBE_UNUSED FMT_CONSTEXPR explicit \ operator fmt::basic_string_view() const { \ return fmt::detail_exported::compile_string_to_view(s); \ } \ }; \ return FMT_COMPILE_STRING(); \ }() /** \rst Constructs a compile-time format string from a string literal *s*. **Example**:: // A compile-time error because 'd' is an invalid specifier for strings. std::string s = fmt::format(FMT_STRING("{:d}"), "foo"); \endrst */ #define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string, ) template auto write_codepoint(OutputIt out, char prefix, uint32_t cp) -> OutputIt { *out++ = static_cast('\\'); *out++ = static_cast(prefix); Char buf[width]; fill_n(buf, width, static_cast('0')); format_uint<4>(buf, cp, width); return copy_str(buf, buf + width, out); } template auto write_escaped_cp(OutputIt out, const find_escape_result& escape) -> OutputIt { auto c = static_cast(escape.cp); switch (escape.cp) { case '\n': *out++ = static_cast('\\'); c = static_cast('n'); break; case '\r': *out++ = static_cast('\\'); c = static_cast('r'); break; case '\t': *out++ = static_cast('\\'); c = static_cast('t'); break; case '"': FMT_FALLTHROUGH; case '\'': FMT_FALLTHROUGH; case '\\': *out++ = static_cast('\\'); break; default: if (escape.cp < 0x100) { return write_codepoint<2, Char>(out, 'x', escape.cp); } if (escape.cp < 0x10000) { return write_codepoint<4, Char>(out, 'u', escape.cp); } if (escape.cp < 0x110000) { return write_codepoint<8, Char>(out, 'U', escape.cp); } for (Char escape_char : basic_string_view( escape.begin, to_unsigned(escape.end - escape.begin))) { out = write_codepoint<2, Char>(out, 'x', static_cast(escape_char) & 0xFF); } return out; } *out++ = c; return out; } template auto write_escaped_string(OutputIt out, basic_string_view str) -> OutputIt { *out++ = static_cast('"'); auto begin = str.begin(), end = str.end(); do { auto escape = find_escape(begin, end); out = copy_str(begin, escape.begin, out); begin = escape.end; if (!begin) break; out = write_escaped_cp(out, escape); } while (begin != end); *out++ = static_cast('"'); return out; } template auto write_escaped_char(OutputIt out, Char v) -> OutputIt { *out++ = static_cast('\''); if ((needs_escape(static_cast(v)) && v != static_cast('"')) || v == static_cast('\'')) { out = write_escaped_cp( out, find_escape_result{&v, &v + 1, static_cast(v)}); } else { *out++ = v; } *out++ = static_cast('\''); return out; } template FMT_CONSTEXPR auto write_char(OutputIt out, Char value, const format_specs& specs) -> OutputIt { bool is_debug = specs.type == presentation_type::debug; return write_padded(out, specs, 1, [=](reserve_iterator it) { if (is_debug) return write_escaped_char(it, value); *it++ = value; return it; }); } template FMT_CONSTEXPR auto write(OutputIt out, Char value, const format_specs& specs, locale_ref loc = {}) -> OutputIt { // char is formatted as unsigned char for consistency across platforms. using unsigned_type = conditional_t::value, unsigned char, unsigned>; return check_char_specs(specs) ? write_char(out, value, specs) : write(out, static_cast(value), specs, loc); } // Data for write_int that doesn't depend on output iterator type. It is used to // avoid template code bloat. template struct write_int_data { size_t size; size_t padding; FMT_CONSTEXPR write_int_data(int num_digits, unsigned prefix, const format_specs& specs) : size((prefix >> 24) + to_unsigned(num_digits)), padding(0) { if (specs.align == align::numeric) { auto width = to_unsigned(specs.width); if (width > size) { padding = width - size; size = width; } } else if (specs.precision > num_digits) { size = (prefix >> 24) + to_unsigned(specs.precision); padding = to_unsigned(specs.precision - num_digits); } } }; // Writes an integer in the format // // where are written by write_digits(it). // prefix contains chars in three lower bytes and the size in the fourth byte. template FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, int num_digits, unsigned prefix, const format_specs& specs, W write_digits) -> OutputIt { // Slightly faster check for specs.width == 0 && specs.precision == -1. if ((specs.width | (specs.precision + 1)) == 0) { auto it = reserve(out, to_unsigned(num_digits) + (prefix >> 24)); if (prefix != 0) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); } return base_iterator(out, write_digits(it)); } auto data = write_int_data(num_digits, prefix, specs); return write_padded( out, specs, data.size, [=](reserve_iterator it) { for (unsigned p = prefix & 0xffffff; p != 0; p >>= 8) *it++ = static_cast(p & 0xff); it = detail::fill_n(it, data.padding, static_cast('0')); return write_digits(it); }); } template class digit_grouping { private: std::string grouping_; std::basic_string thousands_sep_; struct next_state { std::string::const_iterator group; int pos; }; next_state initial_state() const { return {grouping_.begin(), 0}; } // Returns the next digit group separator position. int next(next_state& state) const { if (thousands_sep_.empty()) return max_value(); if (state.group == grouping_.end()) return state.pos += grouping_.back(); if (*state.group <= 0 || *state.group == max_value()) return max_value(); state.pos += *state.group++; return state.pos; } public: explicit digit_grouping(locale_ref loc, bool localized = true) { if (!localized) return; auto sep = thousands_sep(loc); grouping_ = sep.grouping; if (sep.thousands_sep) thousands_sep_.assign(1, sep.thousands_sep); } digit_grouping(std::string grouping, std::basic_string sep) : grouping_(std::move(grouping)), thousands_sep_(std::move(sep)) {} bool has_separator() const { return !thousands_sep_.empty(); } int count_separators(int num_digits) const { int count = 0; auto state = initial_state(); while (num_digits > next(state)) ++count; return count; } // Applies grouping to digits and write the output to out. template Out apply(Out out, basic_string_view digits) const { auto num_digits = static_cast(digits.size()); auto separators = basic_memory_buffer(); separators.push_back(0); auto state = initial_state(); while (int i = next(state)) { if (i >= num_digits) break; separators.push_back(i); } for (int i = 0, sep_index = static_cast(separators.size() - 1); i < num_digits; ++i) { if (num_digits - i == separators[sep_index]) { out = copy_str(thousands_sep_.data(), thousands_sep_.data() + thousands_sep_.size(), out); --sep_index; } *out++ = static_cast(digits[to_unsigned(i)]); } return out; } }; // Writes a decimal integer with digit grouping. template auto write_int(OutputIt out, UInt value, unsigned prefix, const format_specs& specs, const digit_grouping& grouping) -> OutputIt { static_assert(std::is_same, UInt>::value, ""); int num_digits = count_digits(value); char digits[40]; format_decimal(digits, value, num_digits); unsigned size = to_unsigned((prefix != 0 ? 1 : 0) + num_digits + grouping.count_separators(num_digits)); return write_padded( out, specs, size, size, [&](reserve_iterator it) { if (prefix != 0) { char sign = static_cast(prefix); *it++ = static_cast(sign); } return grouping.apply(it, string_view(digits, to_unsigned(num_digits))); }); } // Writes a localized value. FMT_API auto write_loc(appender out, loc_value value, const format_specs<>& specs, locale_ref loc) -> bool; template inline auto write_loc(OutputIt, loc_value, const format_specs&, locale_ref) -> bool { return false; } FMT_CONSTEXPR inline void prefix_append(unsigned& prefix, unsigned value) { prefix |= prefix != 0 ? value << 8 : value; prefix += (1u + (value > 0xff ? 1 : 0)) << 24; } template struct write_int_arg { UInt abs_value; unsigned prefix; }; template FMT_CONSTEXPR auto make_write_int_arg(T value, sign_t sign) -> write_int_arg> { auto prefix = 0u; auto abs_value = static_cast>(value); if (is_negative(value)) { prefix = 0x01000000 | '-'; abs_value = 0 - abs_value; } else { constexpr const unsigned prefixes[4] = {0, 0, 0x1000000u | '+', 0x1000000u | ' '}; prefix = prefixes[sign]; } return {abs_value, prefix}; } template struct loc_writer { buffer_appender out; const format_specs& specs; std::basic_string sep; std::string grouping; std::basic_string decimal_point; template ::value)> auto operator()(T value) -> bool { auto arg = make_write_int_arg(value, specs.sign); write_int(out, static_cast>(arg.abs_value), arg.prefix, specs, digit_grouping(grouping, sep)); return true; } template ::value)> auto operator()(T) -> bool { return false; } }; template FMT_CONSTEXPR FMT_INLINE auto write_int(OutputIt out, write_int_arg arg, const format_specs& specs, locale_ref) -> OutputIt { static_assert(std::is_same>::value, ""); auto abs_value = arg.abs_value; auto prefix = arg.prefix; switch (specs.type) { case presentation_type::none: case presentation_type::dec: { auto num_digits = count_digits(abs_value); return write_int( out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_decimal(it, abs_value, num_digits).end; }); } case presentation_type::hex_lower: case presentation_type::hex_upper: { bool upper = specs.type == presentation_type::hex_upper; if (specs.alt) prefix_append(prefix, unsigned(upper ? 'X' : 'x') << 8 | '0'); int num_digits = count_digits<4>(abs_value); return write_int( out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<4, Char>(it, abs_value, num_digits, upper); }); } case presentation_type::bin_lower: case presentation_type::bin_upper: { bool upper = specs.type == presentation_type::bin_upper; if (specs.alt) prefix_append(prefix, unsigned(upper ? 'B' : 'b') << 8 | '0'); int num_digits = count_digits<1>(abs_value); return write_int(out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<1, Char>(it, abs_value, num_digits); }); } case presentation_type::oct: { int num_digits = count_digits<3>(abs_value); // Octal prefix '0' is counted as a digit, so only add it if precision // is not greater than the number of digits. if (specs.alt && specs.precision <= num_digits && abs_value != 0) prefix_append(prefix, '0'); return write_int(out, num_digits, prefix, specs, [=](reserve_iterator it) { return format_uint<3, Char>(it, abs_value, num_digits); }); } case presentation_type::chr: return write_char(out, static_cast(abs_value), specs); default: throw_format_error("invalid format specifier"); } return out; } template FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline( OutputIt out, write_int_arg arg, const format_specs& specs, locale_ref loc) -> OutputIt { return write_int(out, arg, specs, loc); } template ::value && !std::is_same::value && std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs& specs, locale_ref loc) -> OutputIt { if (specs.localized && write_loc(out, value, specs, loc)) return out; return write_int_noinline(out, make_write_int_arg(value, specs.sign), specs, loc); } // An inlined version of write used in format string compilation. template ::value && !std::is_same::value && !std::is_same>::value)> FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs& specs, locale_ref loc) -> OutputIt { if (specs.localized && write_loc(out, value, specs, loc)) return out; return write_int(out, make_write_int_arg(value, specs.sign), specs, loc); } // An output iterator that counts the number of objects written to it and // discards them. class counting_iterator { private: size_t count_; public: using iterator_category = std::output_iterator_tag; using difference_type = std::ptrdiff_t; using pointer = void; using reference = void; FMT_UNCHECKED_ITERATOR(counting_iterator); struct value_type { template FMT_CONSTEXPR void operator=(const T&) {} }; FMT_CONSTEXPR counting_iterator() : count_(0) {} FMT_CONSTEXPR size_t count() const { return count_; } FMT_CONSTEXPR counting_iterator& operator++() { ++count_; return *this; } FMT_CONSTEXPR counting_iterator operator++(int) { auto it = *this; ++*this; return it; } FMT_CONSTEXPR friend counting_iterator operator+(counting_iterator it, difference_type n) { it.count_ += static_cast(n); return it; } FMT_CONSTEXPR value_type operator*() const { return {}; } }; template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view s, const format_specs& specs) -> OutputIt { auto data = s.data(); auto size = s.size(); if (specs.precision >= 0 && to_unsigned(specs.precision) < size) size = code_point_index(s, to_unsigned(specs.precision)); bool is_debug = specs.type == presentation_type::debug; size_t width = 0; if (specs.width != 0) { if (is_debug) width = write_escaped_string(counting_iterator{}, s).count(); else width = compute_width(basic_string_view(data, size)); } return write_padded(out, specs, size, width, [=](reserve_iterator it) { if (is_debug) return write_escaped_string(it, s); return copy_str(data, data + size, it); }); } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view> s, const format_specs& specs, locale_ref) -> OutputIt { return write(out, s, specs); } template FMT_CONSTEXPR auto write(OutputIt out, const Char* s, const format_specs& specs, locale_ref) -> OutputIt { return specs.type != presentation_type::pointer ? write(out, basic_string_view(s), specs, {}) : write_ptr(out, bit_cast(s), &specs); } template ::value && !std::is_same::value && !std::is_same::value)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { auto abs_value = static_cast>(value); bool negative = is_negative(value); // Don't do -abs_value since it trips unsigned-integer-overflow sanitizer. if (negative) abs_value = ~abs_value + 1; int num_digits = count_digits(abs_value); auto size = (negative ? 1 : 0) + static_cast(num_digits); auto it = reserve(out, size); if (auto ptr = to_pointer(it, size)) { if (negative) *ptr++ = static_cast('-'); format_decimal(ptr, abs_value, num_digits); return out; } if (negative) *it++ = static_cast('-'); it = format_decimal(it, abs_value, num_digits).end; return base_iterator(out, it); } // A floating-point presentation format. enum class float_format : unsigned char { general, // General: exponent notation or fixed point based on magnitude. exp, // Exponent notation with the default precision of 6, e.g. 1.2e-3. fixed, // Fixed point with the default precision of 6, e.g. 0.0012. hex }; struct float_specs { int precision; float_format format : 8; sign_t sign : 8; bool upper : 1; bool locale : 1; bool binary32 : 1; bool showpoint : 1; }; template FMT_CONSTEXPR auto parse_float_type_spec(const format_specs& specs, ErrorHandler&& eh = {}) -> float_specs { auto result = float_specs(); result.showpoint = specs.alt; result.locale = specs.localized; switch (specs.type) { case presentation_type::none: result.format = float_format::general; break; case presentation_type::general_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::general_lower: result.format = float_format::general; break; case presentation_type::exp_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::exp_lower: result.format = float_format::exp; result.showpoint |= specs.precision != 0; break; case presentation_type::fixed_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::fixed_lower: result.format = float_format::fixed; result.showpoint |= specs.precision != 0; break; case presentation_type::hexfloat_upper: result.upper = true; FMT_FALLTHROUGH; case presentation_type::hexfloat_lower: result.format = float_format::hex; break; default: eh.on_error("invalid format specifier"); break; } return result; } template FMT_CONSTEXPR20 auto write_nonfinite(OutputIt out, bool isnan, format_specs specs, const float_specs& fspecs) -> OutputIt { auto str = isnan ? (fspecs.upper ? "NAN" : "nan") : (fspecs.upper ? "INF" : "inf"); constexpr size_t str_size = 3; auto sign = fspecs.sign; auto size = str_size + (sign ? 1 : 0); // Replace '0'-padding with space for non-finite values. const bool is_zero_fill = specs.fill.size() == 1 && *specs.fill.data() == static_cast('0'); if (is_zero_fill) specs.fill[0] = static_cast(' '); return write_padded(out, specs, size, [=](reserve_iterator it) { if (sign) *it++ = detail::sign(sign); return copy_str(str, str + str_size, it); }); } // A decimal floating-point number significand * pow(10, exp). struct big_decimal_fp { const char* significand; int significand_size; int exponent; }; constexpr auto get_significand_size(const big_decimal_fp& f) -> int { return f.significand_size; } template inline auto get_significand_size(const dragonbox::decimal_fp& f) -> int { return count_digits(f.significand); } template constexpr auto write_significand(OutputIt out, const char* significand, int significand_size) -> OutputIt { return copy_str(significand, significand + significand_size, out); } template inline auto write_significand(OutputIt out, UInt significand, int significand_size) -> OutputIt { return format_decimal(out, significand, significand_size).end; } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int exponent, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { out = write_significand(out, significand, significand_size); return detail::fill_n(out, exponent, static_cast('0')); } auto buffer = memory_buffer(); write_significand(appender(buffer), significand, significand_size); detail::fill_n(appender(buffer), exponent, '0'); return grouping.apply(out, string_view(buffer.data(), buffer.size())); } template ::value)> inline auto write_significand(Char* out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> Char* { if (!decimal_point) return format_decimal(out, significand, significand_size).end; out += significand_size + 1; Char* end = out; int floating_size = significand_size - integral_size; for (int i = floating_size / 2; i > 0; --i) { out -= 2; copy2(out, digits2(static_cast(significand % 100))); significand /= 100; } if (floating_size % 2 != 0) { *--out = static_cast('0' + significand % 10); significand /= 10; } *--out = decimal_point; format_decimal(out - integral_size, significand, integral_size); return end; } template >::value)> inline auto write_significand(OutputIt out, UInt significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { // Buffer is large enough to hold digits (digits10 + 1) and a decimal point. Char buffer[digits10() + 2]; auto end = write_significand(buffer, significand, significand_size, integral_size, decimal_point); return detail::copy_str_noinline(buffer, end, out); } template FMT_CONSTEXPR auto write_significand(OutputIt out, const char* significand, int significand_size, int integral_size, Char decimal_point) -> OutputIt { out = detail::copy_str_noinline(significand, significand + integral_size, out); if (!decimal_point) return out; *out++ = decimal_point; return detail::copy_str_noinline(significand + integral_size, significand + significand_size, out); } template FMT_CONSTEXPR20 auto write_significand(OutputIt out, T significand, int significand_size, int integral_size, Char decimal_point, const Grouping& grouping) -> OutputIt { if (!grouping.has_separator()) { return write_significand(out, significand, significand_size, integral_size, decimal_point); } auto buffer = basic_memory_buffer(); write_significand(buffer_appender(buffer), significand, significand_size, integral_size, decimal_point); grouping.apply( out, basic_string_view(buffer.data(), to_unsigned(integral_size))); return detail::copy_str_noinline(buffer.data() + integral_size, buffer.end(), out); } template > FMT_CONSTEXPR20 auto do_write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, float_specs fspecs, locale_ref loc) -> OutputIt { auto significand = f.significand; int significand_size = get_significand_size(f); const Char zero = static_cast('0'); auto sign = fspecs.sign; size_t size = to_unsigned(significand_size) + (sign ? 1 : 0); using iterator = reserve_iterator; Char decimal_point = fspecs.locale ? detail::decimal_point(loc) : static_cast('.'); int output_exp = f.exponent + significand_size - 1; auto use_exp_format = [=]() { if (fspecs.format == float_format::exp) return true; if (fspecs.format != float_format::general) return false; // Use the fixed notation if the exponent is in [exp_lower, exp_upper), // e.g. 0.0001 instead of 1e-04. Otherwise use the exponent notation. const int exp_lower = -4, exp_upper = 16; return output_exp < exp_lower || output_exp >= (fspecs.precision > 0 ? fspecs.precision : exp_upper); }; if (use_exp_format()) { int num_zeros = 0; if (fspecs.showpoint) { num_zeros = fspecs.precision - significand_size; if (num_zeros < 0) num_zeros = 0; size += to_unsigned(num_zeros); } else if (significand_size == 1) { decimal_point = Char(); } auto abs_output_exp = output_exp >= 0 ? output_exp : -output_exp; int exp_digits = 2; if (abs_output_exp >= 100) exp_digits = abs_output_exp >= 1000 ? 4 : 3; size += to_unsigned((decimal_point ? 1 : 0) + 2 + exp_digits); char exp_char = fspecs.upper ? 'E' : 'e'; auto write = [=](iterator it) { if (sign) *it++ = detail::sign(sign); // Insert a decimal point after the first digit and add an exponent. it = write_significand(it, significand, significand_size, 1, decimal_point); if (num_zeros > 0) it = detail::fill_n(it, num_zeros, zero); *it++ = static_cast(exp_char); return write_exponent(output_exp, it); }; return specs.width > 0 ? write_padded(out, specs, size, write) : base_iterator(out, write(reserve(out, size))); } int exp = f.exponent + significand_size; if (f.exponent >= 0) { // 1234e5 -> 123400000[.0+] size += to_unsigned(f.exponent); int num_zeros = fspecs.precision - exp; abort_fuzzing_if(num_zeros > 5000); if (fspecs.showpoint) { ++size; if (num_zeros <= 0 && fspecs.format != float_format::fixed) num_zeros = 0; if (num_zeros > 0) size += to_unsigned(num_zeros); } auto grouping = Grouping(loc, fspecs.locale); size += to_unsigned(grouping.count_separators(exp)); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); it = write_significand(it, significand, significand_size, f.exponent, grouping); if (!fspecs.showpoint) return it; *it++ = decimal_point; return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it; }); } else if (exp > 0) { // 1234e-2 -> 12.34[0+] int num_zeros = fspecs.showpoint ? fspecs.precision - significand_size : 0; size += 1 + to_unsigned(num_zeros > 0 ? num_zeros : 0); auto grouping = Grouping(loc, fspecs.locale); size += to_unsigned(grouping.count_separators(exp)); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); it = write_significand(it, significand, significand_size, exp, decimal_point, grouping); return num_zeros > 0 ? detail::fill_n(it, num_zeros, zero) : it; }); } // 1234e-6 -> 0.001234 int num_zeros = -exp; if (significand_size == 0 && fspecs.precision >= 0 && fspecs.precision < num_zeros) { num_zeros = fspecs.precision; } bool pointy = num_zeros != 0 || significand_size != 0 || fspecs.showpoint; size += 1 + (pointy ? 1 : 0) + to_unsigned(num_zeros); return write_padded(out, specs, size, [&](iterator it) { if (sign) *it++ = detail::sign(sign); *it++ = zero; if (!pointy) return it; *it++ = decimal_point; it = detail::fill_n(it, num_zeros, zero); return write_significand(it, significand, significand_size); }); } template class fallback_digit_grouping { public: constexpr fallback_digit_grouping(locale_ref, bool) {} constexpr bool has_separator() const { return false; } constexpr int count_separators(int) const { return 0; } template constexpr Out apply(Out out, basic_string_view) const { return out; } }; template FMT_CONSTEXPR20 auto write_float(OutputIt out, const DecimalFP& f, const format_specs& specs, float_specs fspecs, locale_ref loc) -> OutputIt { if (is_constant_evaluated()) { return do_write_float>(out, f, specs, fspecs, loc); } else { return do_write_float(out, f, specs, fspecs, loc); } } template constexpr bool isnan(T value) { return !(value >= value); // std::isnan doesn't support __float128. } template struct has_isfinite : std::false_type {}; template struct has_isfinite> : std::true_type {}; template ::value&& has_isfinite::value)> FMT_CONSTEXPR20 bool isfinite(T value) { constexpr T inf = T(std::numeric_limits::infinity()); if (is_constant_evaluated()) return !detail::isnan(value) && value < inf && value > -inf; return std::isfinite(value); } template ::value)> FMT_CONSTEXPR bool isfinite(T value) { T inf = T(std::numeric_limits::infinity()); // std::isfinite doesn't support __float128. return !detail::isnan(value) && value < inf && value > -inf; } template ::value)> FMT_INLINE FMT_CONSTEXPR bool signbit(T value) { if (is_constant_evaluated()) { #ifdef __cpp_if_constexpr if constexpr (std::numeric_limits::is_iec559) { auto bits = detail::bit_cast(static_cast(value)); return (bits >> (num_bits() - 1)) != 0; } #endif } return std::signbit(static_cast(value)); } enum class round_direction { unknown, up, down }; // Given the divisor (normally a power of 10), the remainder = v % divisor for // some number v and the error, returns whether v should be rounded up, down, or // whether the rounding direction can't be determined due to error. // error should be less than divisor / 2. FMT_CONSTEXPR inline round_direction get_round_direction(uint64_t divisor, uint64_t remainder, uint64_t error) { FMT_ASSERT(remainder < divisor, ""); // divisor - remainder won't overflow. FMT_ASSERT(error < divisor, ""); // divisor - error won't overflow. FMT_ASSERT(error < divisor - error, ""); // error * 2 won't overflow. // Round down if (remainder + error) * 2 <= divisor. if (remainder <= divisor - remainder && error * 2 <= divisor - remainder * 2) return round_direction::down; // Round up if (remainder - error) * 2 >= divisor. if (remainder >= error && remainder - error >= divisor - (remainder - error)) { return round_direction::up; } return round_direction::unknown; } namespace digits { enum result { more, // Generate more digits. done, // Done generating digits. error // Digit generation cancelled due to an error. }; } struct gen_digits_handler { char* buf; int size; int precision; int exp10; bool fixed; FMT_CONSTEXPR digits::result on_digit(char digit, uint64_t divisor, uint64_t remainder, uint64_t error, bool integral) { FMT_ASSERT(remainder < divisor, ""); buf[size++] = digit; if (!integral && error >= remainder) return digits::error; if (size < precision) return digits::more; if (!integral) { // Check if error * 2 < divisor with overflow prevention. // The check is not needed for the integral part because error = 1 // and divisor > (1 << 32) there. if (error >= divisor || error >= divisor - error) return digits::error; } else { FMT_ASSERT(error == 1 && divisor > 2, ""); } auto dir = get_round_direction(divisor, remainder, error); if (dir != round_direction::up) return dir == round_direction::down ? digits::done : digits::error; ++buf[size - 1]; for (int i = size - 1; i > 0 && buf[i] > '9'; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] > '9') { buf[0] = '1'; if (fixed) buf[size++] = '0'; else ++exp10; } return digits::done; } }; inline FMT_CONSTEXPR20 void adjust_precision(int& precision, int exp10) { // Adjust fixed precision by exponent because it is relative to decimal // point. if (exp10 > 0 && precision > max_value() - exp10) FMT_THROW(format_error("number is too big")); precision += exp10; } // Generates output using the Grisu digit-gen algorithm. // error: the size of the region (lower, upper) outside of which numbers // definitely do not round to value (Delta in Grisu3). FMT_INLINE FMT_CONSTEXPR20 auto grisu_gen_digits(fp value, uint64_t error, int& exp, gen_digits_handler& handler) -> digits::result { const fp one(1ULL << -value.e, value.e); // The integral part of scaled value (p1 in Grisu) = value / one. It cannot be // zero because it contains a product of two 64-bit numbers with MSB set (due // to normalization) - 1, shifted right by at most 60 bits. auto integral = static_cast(value.f >> -one.e); FMT_ASSERT(integral != 0, ""); FMT_ASSERT(integral == value.f >> -one.e, ""); // The fractional part of scaled value (p2 in Grisu) c = value % one. uint64_t fractional = value.f & (one.f - 1); exp = count_digits(integral); // kappa in Grisu. // Non-fixed formats require at least one digit and no precision adjustment. if (handler.fixed) { adjust_precision(handler.precision, exp + handler.exp10); // Check if precision is satisfied just by leading zeros, e.g. // format("{:.2f}", 0.001) gives "0.00" without generating any digits. if (handler.precision <= 0) { if (handler.precision < 0) return digits::done; // Divide by 10 to prevent overflow. uint64_t divisor = data::power_of_10_64[exp - 1] << -one.e; auto dir = get_round_direction(divisor, value.f / 10, error * 10); if (dir == round_direction::unknown) return digits::error; handler.buf[handler.size++] = dir == round_direction::up ? '1' : '0'; return digits::done; } } // Generate digits for the integral part. This can produce up to 10 digits. do { uint32_t digit = 0; auto divmod_integral = [&](uint32_t divisor) { digit = integral / divisor; integral %= divisor; }; // This optimization by Milo Yip reduces the number of integer divisions by // one per iteration. switch (exp) { case 10: divmod_integral(1000000000); break; case 9: divmod_integral(100000000); break; case 8: divmod_integral(10000000); break; case 7: divmod_integral(1000000); break; case 6: divmod_integral(100000); break; case 5: divmod_integral(10000); break; case 4: divmod_integral(1000); break; case 3: divmod_integral(100); break; case 2: divmod_integral(10); break; case 1: digit = integral; integral = 0; break; default: FMT_ASSERT(false, "invalid number of digits"); } --exp; auto remainder = (static_cast(integral) << -one.e) + fractional; auto result = handler.on_digit(static_cast('0' + digit), data::power_of_10_64[exp] << -one.e, remainder, error, true); if (result != digits::more) return result; } while (exp > 0); // Generate digits for the fractional part. for (;;) { fractional *= 10; error *= 10; char digit = static_cast('0' + (fractional >> -one.e)); fractional &= one.f - 1; --exp; auto result = handler.on_digit(digit, one.f, fractional, error, false); if (result != digits::more) return result; } } class bigint { private: // A bigint is stored as an array of bigits (big digits), with bigit at index // 0 being the least significant one. using bigit = uint32_t; using double_bigit = uint64_t; enum { bigits_capacity = 32 }; basic_memory_buffer bigits_; int exp_; FMT_CONSTEXPR20 bigit operator[](int index) const { return bigits_[to_unsigned(index)]; } FMT_CONSTEXPR20 bigit& operator[](int index) { return bigits_[to_unsigned(index)]; } static constexpr const int bigit_bits = num_bits(); friend struct formatter; FMT_CONSTEXPR20 void subtract_bigits(int index, bigit other, bigit& borrow) { auto result = static_cast((*this)[index]) - other - borrow; (*this)[index] = static_cast(result); borrow = static_cast(result >> (bigit_bits * 2 - 1)); } FMT_CONSTEXPR20 void remove_leading_zeros() { int num_bigits = static_cast(bigits_.size()) - 1; while (num_bigits > 0 && (*this)[num_bigits] == 0) --num_bigits; bigits_.resize(to_unsigned(num_bigits + 1)); } // Computes *this -= other assuming aligned bigints and *this >= other. FMT_CONSTEXPR20 void subtract_aligned(const bigint& other) { FMT_ASSERT(other.exp_ >= exp_, "unaligned bigints"); FMT_ASSERT(compare(*this, other) >= 0, ""); bigit borrow = 0; int i = other.exp_ - exp_; for (size_t j = 0, n = other.bigits_.size(); j != n; ++i, ++j) subtract_bigits(i, other.bigits_[j], borrow); while (borrow > 0) subtract_bigits(i, 0, borrow); remove_leading_zeros(); } FMT_CONSTEXPR20 void multiply(uint32_t value) { const double_bigit wide_value = value; bigit carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { double_bigit result = bigits_[i] * wide_value + carry; bigits_[i] = static_cast(result); carry = static_cast(result >> bigit_bits); } if (carry != 0) bigits_.push_back(carry); } template ::value || std::is_same::value)> FMT_CONSTEXPR20 void multiply(UInt value) { using half_uint = conditional_t::value, uint64_t, uint32_t>; const int shift = num_bits() - bigit_bits; const UInt lower = static_cast(value); const UInt upper = value >> num_bits(); UInt carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { UInt result = lower * bigits_[i] + static_cast(carry); carry = (upper * bigits_[i] << shift) + (result >> bigit_bits) + (carry >> bigit_bits); bigits_[i] = static_cast(result); } while (carry != 0) { bigits_.push_back(static_cast(carry)); carry >>= bigit_bits; } } template ::value || std::is_same::value)> FMT_CONSTEXPR20 void assign(UInt n) { size_t num_bigits = 0; do { bigits_[num_bigits++] = static_cast(n); n >>= bigit_bits; } while (n != 0); bigits_.resize(num_bigits); exp_ = 0; } public: FMT_CONSTEXPR20 bigint() : exp_(0) {} explicit bigint(uint64_t n) { assign(n); } bigint(const bigint&) = delete; void operator=(const bigint&) = delete; FMT_CONSTEXPR20 void assign(const bigint& other) { auto size = other.bigits_.size(); bigits_.resize(size); auto data = other.bigits_.data(); std::copy(data, data + size, make_checked(bigits_.data(), size)); exp_ = other.exp_; } template FMT_CONSTEXPR20 void operator=(Int n) { FMT_ASSERT(n > 0, ""); assign(uint64_or_128_t(n)); } FMT_CONSTEXPR20 int num_bigits() const { return static_cast(bigits_.size()) + exp_; } FMT_NOINLINE FMT_CONSTEXPR20 bigint& operator<<=(int shift) { FMT_ASSERT(shift >= 0, ""); exp_ += shift / bigit_bits; shift %= bigit_bits; if (shift == 0) return *this; bigit carry = 0; for (size_t i = 0, n = bigits_.size(); i < n; ++i) { bigit c = bigits_[i] >> (bigit_bits - shift); bigits_[i] = (bigits_[i] << shift) + carry; carry = c; } if (carry != 0) bigits_.push_back(carry); return *this; } template FMT_CONSTEXPR20 bigint& operator*=(Int value) { FMT_ASSERT(value > 0, ""); multiply(uint32_or_64_or_128_t(value)); return *this; } friend FMT_CONSTEXPR20 int compare(const bigint& lhs, const bigint& rhs) { int num_lhs_bigits = lhs.num_bigits(), num_rhs_bigits = rhs.num_bigits(); if (num_lhs_bigits != num_rhs_bigits) return num_lhs_bigits > num_rhs_bigits ? 1 : -1; int i = static_cast(lhs.bigits_.size()) - 1; int j = static_cast(rhs.bigits_.size()) - 1; int end = i - j; if (end < 0) end = 0; for (; i >= end; --i, --j) { bigit lhs_bigit = lhs[i], rhs_bigit = rhs[j]; if (lhs_bigit != rhs_bigit) return lhs_bigit > rhs_bigit ? 1 : -1; } if (i != j) return i > j ? 1 : -1; return 0; } // Returns compare(lhs1 + lhs2, rhs). friend FMT_CONSTEXPR20 int add_compare(const bigint& lhs1, const bigint& lhs2, const bigint& rhs) { auto minimum = [](int a, int b) { return a < b ? a : b; }; auto maximum = [](int a, int b) { return a > b ? a : b; }; int max_lhs_bigits = maximum(lhs1.num_bigits(), lhs2.num_bigits()); int num_rhs_bigits = rhs.num_bigits(); if (max_lhs_bigits + 1 < num_rhs_bigits) return -1; if (max_lhs_bigits > num_rhs_bigits) return 1; auto get_bigit = [](const bigint& n, int i) -> bigit { return i >= n.exp_ && i < n.num_bigits() ? n[i - n.exp_] : 0; }; double_bigit borrow = 0; int min_exp = minimum(minimum(lhs1.exp_, lhs2.exp_), rhs.exp_); for (int i = num_rhs_bigits - 1; i >= min_exp; --i) { double_bigit sum = static_cast(get_bigit(lhs1, i)) + get_bigit(lhs2, i); bigit rhs_bigit = get_bigit(rhs, i); if (sum > rhs_bigit + borrow) return 1; borrow = rhs_bigit + borrow - sum; if (borrow > 1) return -1; borrow <<= bigit_bits; } return borrow != 0 ? -1 : 0; } // Assigns pow(10, exp) to this bigint. FMT_CONSTEXPR20 void assign_pow10(int exp) { FMT_ASSERT(exp >= 0, ""); if (exp == 0) return *this = 1; // Find the top bit. int bitmask = 1; while (exp >= bitmask) bitmask <<= 1; bitmask >>= 1; // pow(10, exp) = pow(5, exp) * pow(2, exp). First compute pow(5, exp) by // repeated squaring and multiplication. *this = 5; bitmask >>= 1; while (bitmask != 0) { square(); if ((exp & bitmask) != 0) *this *= 5; bitmask >>= 1; } *this <<= exp; // Multiply by pow(2, exp) by shifting. } FMT_CONSTEXPR20 void square() { int num_bigits = static_cast(bigits_.size()); int num_result_bigits = 2 * num_bigits; basic_memory_buffer n(std::move(bigits_)); bigits_.resize(to_unsigned(num_result_bigits)); auto sum = uint128_t(); for (int bigit_index = 0; bigit_index < num_bigits; ++bigit_index) { // Compute bigit at position bigit_index of the result by adding // cross-product terms n[i] * n[j] such that i + j == bigit_index. for (int i = 0, j = bigit_index; j >= 0; ++i, --j) { // Most terms are multiplied twice which can be optimized in the future. sum += static_cast(n[i]) * n[j]; } (*this)[bigit_index] = static_cast(sum); sum >>= num_bits(); // Compute the carry. } // Do the same for the top half. for (int bigit_index = num_bigits; bigit_index < num_result_bigits; ++bigit_index) { for (int j = num_bigits - 1, i = bigit_index - j; i < num_bigits;) sum += static_cast(n[i++]) * n[j--]; (*this)[bigit_index] = static_cast(sum); sum >>= num_bits(); } remove_leading_zeros(); exp_ *= 2; } // If this bigint has a bigger exponent than other, adds trailing zero to make // exponents equal. This simplifies some operations such as subtraction. FMT_CONSTEXPR20 void align(const bigint& other) { int exp_difference = exp_ - other.exp_; if (exp_difference <= 0) return; int num_bigits = static_cast(bigits_.size()); bigits_.resize(to_unsigned(num_bigits + exp_difference)); for (int i = num_bigits - 1, j = i + exp_difference; i >= 0; --i, --j) bigits_[j] = bigits_[i]; std::uninitialized_fill_n(bigits_.data(), exp_difference, 0); exp_ -= exp_difference; } // Divides this bignum by divisor, assigning the remainder to this and // returning the quotient. FMT_CONSTEXPR20 int divmod_assign(const bigint& divisor) { FMT_ASSERT(this != &divisor, ""); if (compare(*this, divisor) < 0) return 0; FMT_ASSERT(divisor.bigits_[divisor.bigits_.size() - 1u] != 0, ""); align(divisor); int quotient = 0; do { subtract_aligned(divisor); ++quotient; } while (compare(*this, divisor) >= 0); return quotient; } }; // format_dragon flags. enum dragon { predecessor_closer = 1, fixup = 2, // Run fixup to correct exp10 which can be off by one. fixed = 4, }; // Formats a floating-point number using a variation of the Fixed-Precision // Positive Floating-Point Printout ((FPP)^2) algorithm by Steele & White: // https://fmt.dev/papers/p372-steele.pdf. FMT_CONSTEXPR20 inline void format_dragon(basic_fp value, unsigned flags, int num_digits, buffer& buf, int& exp10) { bigint numerator; // 2 * R in (FPP)^2. bigint denominator; // 2 * S in (FPP)^2. // lower and upper are differences between value and corresponding boundaries. bigint lower; // (M^- in (FPP)^2). bigint upper_store; // upper's value if different from lower. bigint* upper = nullptr; // (M^+ in (FPP)^2). // Shift numerator and denominator by an extra bit or two (if lower boundary // is closer) to make lower and upper integers. This eliminates multiplication // by 2 during later computations. bool is_predecessor_closer = (flags & dragon::predecessor_closer) != 0; int shift = is_predecessor_closer ? 2 : 1; if (value.e >= 0) { numerator = value.f; numerator <<= value.e + shift; lower = 1; lower <<= value.e; if (is_predecessor_closer) { upper_store = 1; upper_store <<= value.e + 1; upper = &upper_store; } denominator.assign_pow10(exp10); denominator <<= shift; } else if (exp10 < 0) { numerator.assign_pow10(-exp10); lower.assign(numerator); if (is_predecessor_closer) { upper_store.assign(numerator); upper_store <<= 1; upper = &upper_store; } numerator *= value.f; numerator <<= shift; denominator = 1; denominator <<= shift - value.e; } else { numerator = value.f; numerator <<= shift; denominator.assign_pow10(exp10); denominator <<= shift - value.e; lower = 1; if (is_predecessor_closer) { upper_store = 1ULL << 1; upper = &upper_store; } } int even = static_cast((value.f & 1) == 0); if (!upper) upper = &lower; if ((flags & dragon::fixup) != 0) { if (add_compare(numerator, *upper, denominator) + even <= 0) { --exp10; numerator *= 10; if (num_digits < 0) { lower *= 10; if (upper != &lower) *upper *= 10; } } if ((flags & dragon::fixed) != 0) adjust_precision(num_digits, exp10 + 1); } // Invariant: value == (numerator / denominator) * pow(10, exp10). if (num_digits < 0) { // Generate the shortest representation. num_digits = 0; char* data = buf.data(); for (;;) { int digit = numerator.divmod_assign(denominator); bool low = compare(numerator, lower) - even < 0; // numerator <[=] lower. // numerator + upper >[=] pow10: bool high = add_compare(numerator, *upper, denominator) + even > 0; data[num_digits++] = static_cast('0' + digit); if (low || high) { if (!low) { ++data[num_digits - 1]; } else if (high) { int result = add_compare(numerator, numerator, denominator); // Round half to even. if (result > 0 || (result == 0 && (digit % 2) != 0)) ++data[num_digits - 1]; } buf.try_resize(to_unsigned(num_digits)); exp10 -= num_digits - 1; return; } numerator *= 10; lower *= 10; if (upper != &lower) *upper *= 10; } } // Generate the given number of digits. exp10 -= num_digits - 1; if (num_digits == 0) { denominator *= 10; auto digit = add_compare(numerator, numerator, denominator) > 0 ? '1' : '0'; buf.push_back(digit); return; } buf.try_resize(to_unsigned(num_digits)); for (int i = 0; i < num_digits - 1; ++i) { int digit = numerator.divmod_assign(denominator); buf[i] = static_cast('0' + digit); numerator *= 10; } int digit = numerator.divmod_assign(denominator); auto result = add_compare(numerator, numerator, denominator); if (result > 0 || (result == 0 && (digit % 2) != 0)) { if (digit == 9) { const auto overflow = '0' + 10; buf[num_digits - 1] = overflow; // Propagate the carry. for (int i = num_digits - 1; i > 0 && buf[i] == overflow; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] == overflow) { buf[0] = '1'; ++exp10; } return; } ++digit; } buf[num_digits - 1] = static_cast('0' + digit); } // Formats a floating-point number using the hexfloat format. template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision, float_specs specs, buffer& buf) { // float is passed as double to reduce the number of instantiations and to // simplify implementation. static_assert(!std::is_same::value, ""); using info = dragonbox::float_info; // Assume Float is in the format [sign][exponent][significand]. using carrier_uint = typename info::carrier_uint; constexpr auto num_float_significand_bits = detail::num_significand_bits(); basic_fp f(value); f.e += num_float_significand_bits; if (!has_implicit_bit()) --f.e; constexpr auto num_fraction_bits = num_float_significand_bits + (has_implicit_bit() ? 1 : 0); constexpr auto num_xdigits = (num_fraction_bits + 3) / 4; constexpr auto leading_shift = ((num_xdigits - 1) * 4); const auto leading_mask = carrier_uint(0xF) << leading_shift; const auto leading_xdigit = static_cast((f.f & leading_mask) >> leading_shift); if (leading_xdigit > 1) f.e -= (32 - countl_zero(leading_xdigit) - 1); int print_xdigits = num_xdigits - 1; if (precision >= 0 && print_xdigits > precision) { const int shift = ((print_xdigits - precision - 1) * 4); const auto mask = carrier_uint(0xF) << shift; const auto v = static_cast((f.f & mask) >> shift); if (v >= 8) { const auto inc = carrier_uint(1) << (shift + 4); f.f += inc; f.f &= ~(inc - 1); } // Check long double overflow if (!has_implicit_bit()) { const auto implicit_bit = carrier_uint(1) << num_float_significand_bits; if ((f.f & implicit_bit) == implicit_bit) { f.f >>= 4; f.e += 4; } } print_xdigits = precision; } char xdigits[num_bits() / 4]; detail::fill_n(xdigits, sizeof(xdigits), '0'); format_uint<4>(xdigits, f.f, num_xdigits, specs.upper); // Remove zero tail while (print_xdigits > 0 && xdigits[print_xdigits] == '0') --print_xdigits; buf.push_back('0'); buf.push_back(specs.upper ? 'X' : 'x'); buf.push_back(xdigits[0]); if (specs.showpoint || print_xdigits > 0 || print_xdigits < precision) buf.push_back('.'); buf.append(xdigits + 1, xdigits + 1 + print_xdigits); for (; print_xdigits < precision; ++print_xdigits) buf.push_back('0'); buf.push_back(specs.upper ? 'P' : 'p'); uint32_t abs_e; if (f.e < 0) { buf.push_back('-'); abs_e = static_cast(-f.e); } else { buf.push_back('+'); abs_e = static_cast(f.e); } format_decimal(appender(buf), abs_e, detail::count_digits(abs_e)); } template ::value)> FMT_CONSTEXPR20 void format_hexfloat(Float value, int precision, float_specs specs, buffer& buf) { format_hexfloat(static_cast(value), precision, specs, buf); } template FMT_CONSTEXPR20 auto format_float(Float value, int precision, float_specs specs, buffer& buf) -> int { // float is passed as double to reduce the number of instantiations. static_assert(!std::is_same::value, ""); FMT_ASSERT(value >= 0, "value is negative"); auto converted_value = convert_float(value); const bool fixed = specs.format == float_format::fixed; if (value <= 0) { // <= instead of == to silence a warning. if (precision <= 0 || !fixed) { buf.push_back('0'); return 0; } buf.try_resize(to_unsigned(precision)); fill_n(buf.data(), precision, '0'); return -precision; } int exp = 0; bool use_dragon = true; unsigned dragon_flags = 0; if (!is_fast_float()) { const auto inv_log2_10 = 0.3010299956639812; // 1 / log2(10) using info = dragonbox::float_info; const auto f = basic_fp(converted_value); // Compute exp, an approximate power of 10, such that // 10^(exp - 1) <= value < 10^exp or 10^exp <= value < 10^(exp + 1). // This is based on log10(value) == log2(value) / log2(10) and approximation // of log2(value) by e + num_fraction_bits idea from double-conversion. exp = static_cast( std::ceil((f.e + count_digits<1>(f.f) - 1) * inv_log2_10 - 1e-10)); dragon_flags = dragon::fixup; } else if (!is_constant_evaluated() && precision < 0) { // Use Dragonbox for the shortest format. if (specs.binary32) { auto dec = dragonbox::to_decimal(static_cast(value)); write(buffer_appender(buf), dec.significand); return dec.exponent; } auto dec = dragonbox::to_decimal(static_cast(value)); write(buffer_appender(buf), dec.significand); return dec.exponent; } else if (is_constant_evaluated()) { // Use Grisu + Dragon4 for the given precision: // https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf. const int min_exp = -60; // alpha in Grisu. int cached_exp10 = 0; // K in Grisu. fp normalized = normalize(fp(converted_value)); const auto cached_pow = get_cached_power( min_exp - (normalized.e + fp::num_significand_bits), cached_exp10); normalized = normalized * cached_pow; gen_digits_handler handler{buf.data(), 0, precision, -cached_exp10, fixed}; if (grisu_gen_digits(normalized, 1, exp, handler) != digits::error && !is_constant_evaluated()) { exp += handler.exp10; buf.try_resize(to_unsigned(handler.size)); use_dragon = false; } else { exp += handler.size - cached_exp10 - 1; precision = handler.precision; } } else { // Extract significand bits and exponent bits. using info = dragonbox::float_info; auto br = bit_cast(static_cast(value)); const uint64_t significand_mask = (static_cast(1) << num_significand_bits()) - 1; uint64_t significand = (br & significand_mask); int exponent = static_cast((br & exponent_mask()) >> num_significand_bits()); if (exponent != 0) { // Check if normal. exponent -= exponent_bias() + num_significand_bits(); significand |= (static_cast(1) << num_significand_bits()); significand <<= 1; } else { // Normalize subnormal inputs. FMT_ASSERT(significand != 0, "zeros should not appear hear"); int shift = countl_zero(significand); FMT_ASSERT(shift >= num_bits() - num_significand_bits(), ""); shift -= (num_bits() - num_significand_bits() - 2); exponent = (std::numeric_limits::min_exponent - num_significand_bits()) - shift; significand <<= shift; } // Compute the first several nonzero decimal significand digits. // We call the number we get the first segment. const int k = info::kappa - dragonbox::floor_log10_pow2(exponent); exp = -k; const int beta = exponent + dragonbox::floor_log2_pow10(k); uint64_t first_segment; bool has_more_segments; int digits_in_the_first_segment; { const auto r = dragonbox::umul192_upper128( significand << beta, dragonbox::get_cached_power(k)); first_segment = r.high(); has_more_segments = r.low() != 0; // The first segment can have 18 ~ 19 digits. if (first_segment >= 1000000000000000000ULL) { digits_in_the_first_segment = 19; } else { // When it is of 18-digits, we align it to 19-digits by adding a bogus // zero at the end. digits_in_the_first_segment = 18; first_segment *= 10; } } // Compute the actual number of decimal digits to print. if (fixed) { adjust_precision(precision, exp + digits_in_the_first_segment); } // Use Dragon4 only when there might be not enough digits in the first // segment. if (digits_in_the_first_segment > precision) { use_dragon = false; if (precision <= 0) { exp += digits_in_the_first_segment; if (precision < 0) { // Nothing to do, since all we have are just leading zeros. buf.try_resize(0); } else { // We may need to round-up. buf.try_resize(1); if ((first_segment | static_cast(has_more_segments)) > 5000000000000000000ULL) { buf[0] = '1'; } else { buf[0] = '0'; } } } // precision <= 0 else { exp += digits_in_the_first_segment - precision; // When precision > 0, we divide the first segment into three // subsegments, each with 9, 9, and 0 ~ 1 digits so that each fits // in 32-bits which usually allows faster calculation than in // 64-bits. Since some compiler (e.g. MSVC) doesn't know how to optimize // division-by-constant for large 64-bit divisors, we do it here // manually. The magic number 7922816251426433760 below is equal to // ceil(2^(64+32) / 10^10). const uint32_t first_subsegment = static_cast( dragonbox::umul128_upper64(first_segment, 7922816251426433760ULL) >> 32); const uint64_t second_third_subsegments = first_segment - first_subsegment * 10000000000ULL; uint64_t prod; uint32_t digits; bool should_round_up; int number_of_digits_to_print = precision > 9 ? 9 : precision; // Print a 9-digits subsegment, either the first or the second. auto print_subsegment = [&](uint32_t subsegment, char* buffer) { int number_of_digits_printed = 0; // If we want to print an odd number of digits from the subsegment, if ((number_of_digits_to_print & 1) != 0) { // Convert to 64-bit fixed-point fractional form with 1-digit // integer part. The magic number 720575941 is a good enough // approximation of 2^(32 + 24) / 10^8; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(720575941)) >> 24) + 1; digits = static_cast(prod >> 32); *buffer = static_cast('0' + digits); number_of_digits_printed++; } // If we want to print an even number of digits from the // first_subsegment, else { // Convert to 64-bit fixed-point fractional form with 2-digits // integer part. The magic number 450359963 is a good enough // approximation of 2^(32 + 20) / 10^7; see // https://jk-jeon.github.io/posts/2022/12/fixed-precision-formatting/#fixed-length-case // for details. prod = ((subsegment * static_cast(450359963)) >> 20) + 1; digits = static_cast(prod >> 32); copy2(buffer, digits2(digits)); number_of_digits_printed += 2; } // Print all digit pairs. while (number_of_digits_printed < number_of_digits_to_print) { prod = static_cast(prod) * static_cast(100); digits = static_cast(prod >> 32); copy2(buffer + number_of_digits_printed, digits2(digits)); number_of_digits_printed += 2; } }; // Print first subsegment. print_subsegment(first_subsegment, buf.data()); // Perform rounding if the first subsegment is the last subsegment to // print. if (precision <= 9) { // Rounding inside the subsegment. // We round-up if: // - either the fractional part is strictly larger than 1/2, or // - the fractional part is exactly 1/2 and the last digit is odd. // We rely on the following observations: // - If fractional_part >= threshold, then the fractional part is // strictly larger than 1/2. // - If the MSB of fractional_part is set, then the fractional part // must be at least 1/2. // - When the MSB of fractional_part is set, either // second_third_subsegments being nonzero or has_more_segments // being true means there are further digits not printed, so the // fractional part is strictly larger than 1/2. if (precision < 9) { uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= data::fractional_part_rounding_thresholds [8 - number_of_digits_to_print] || ((fractional_part >> 31) & ((digits & 1) | (second_third_subsegments != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. // In this case, the fractional part is at least 1/2 if and only if // second_third_subsegments >= 5000000000ULL, and is strictly larger // than 1/2 if we further have either second_third_subsegments > // 5000000000ULL or has_more_segments == true. else { should_round_up = second_third_subsegments > 5000000000ULL || (second_third_subsegments == 5000000000ULL && ((digits & 1) != 0 || has_more_segments)); } } // Otherwise, print the second subsegment. else { // Compilers are not aware of how to leverage the maximum value of // second_third_subsegments to find out a better magic number which // allows us to eliminate an additional shift. 1844674407370955162 = // ceil(2^64/10) < ceil(2^64*(10^9/(10^10 - 1))). const uint32_t second_subsegment = static_cast(dragonbox::umul128_upper64( second_third_subsegments, 1844674407370955162ULL)); const uint32_t third_subsegment = static_cast(second_third_subsegments) - second_subsegment * 10; number_of_digits_to_print = precision - 9; print_subsegment(second_subsegment, buf.data() + 9); // Rounding inside the subsegment. if (precision < 18) { // The condition third_subsegment != 0 implies that the segment was // of 19 digits, so in this case the third segment should be // consisting of a genuine digit from the input. uint32_t fractional_part = static_cast(prod); should_round_up = fractional_part >= data::fractional_part_rounding_thresholds [8 - number_of_digits_to_print] || ((fractional_part >> 31) & ((digits & 1) | (third_subsegment != 0) | has_more_segments)) != 0; } // Rounding at the subsegment boundary. else { // In this case, the segment must be of 19 digits, thus // the third subsegment should be consisting of a genuine digit from // the input. should_round_up = third_subsegment > 5 || (third_subsegment == 5 && ((digits & 1) != 0 || has_more_segments)); } } // Round-up if necessary. if (should_round_up) { ++buf[precision - 1]; for (int i = precision - 1; i > 0 && buf[i] > '9'; --i) { buf[i] = '0'; ++buf[i - 1]; } if (buf[0] > '9') { buf[0] = '1'; if (fixed) buf[precision++] = '0'; else ++exp; } } buf.try_resize(to_unsigned(precision)); } } // if (digits_in_the_first_segment > precision) else { // Adjust the exponent for its use in Dragon4. exp += digits_in_the_first_segment - 1; } } if (use_dragon) { auto f = basic_fp(); bool is_predecessor_closer = specs.binary32 ? f.assign(static_cast(value)) : f.assign(converted_value); if (is_predecessor_closer) dragon_flags |= dragon::predecessor_closer; if (fixed) dragon_flags |= dragon::fixed; // Limit precision to the maximum possible number of significant digits in // an IEEE754 double because we don't need to generate zeros. const int max_double_digits = 767; if (precision > max_double_digits) precision = max_double_digits; format_dragon(f, dragon_flags, precision, buf, exp); } if (!fixed && !specs.showpoint) { // Remove trailing zeros. auto num_digits = buf.size(); while (num_digits > 0 && buf[num_digits - 1] == '0') { --num_digits; ++exp; } buf.try_resize(num_digits); } return exp; } template FMT_CONSTEXPR20 auto write_float(OutputIt out, T value, format_specs specs, locale_ref loc) -> OutputIt { float_specs fspecs = parse_float_type_spec(specs); fspecs.sign = specs.sign; if (detail::signbit(value)) { // value < 0 is false for NaN so use signbit. fspecs.sign = sign::minus; value = -value; } else if (fspecs.sign == sign::minus) { fspecs.sign = sign::none; } if (!detail::isfinite(value)) return write_nonfinite(out, detail::isnan(value), specs, fspecs); if (specs.align == align::numeric && fspecs.sign) { auto it = reserve(out, 1); *it++ = detail::sign(fspecs.sign); out = base_iterator(out, it); fspecs.sign = sign::none; if (specs.width != 0) --specs.width; } memory_buffer buffer; if (fspecs.format == float_format::hex) { if (fspecs.sign) buffer.push_back(detail::sign(fspecs.sign)); format_hexfloat(convert_float(value), specs.precision, fspecs, buffer); return write_bytes(out, {buffer.data(), buffer.size()}, specs); } int precision = specs.precision >= 0 || specs.type == presentation_type::none ? specs.precision : 6; if (fspecs.format == float_format::exp) { if (precision == max_value()) throw_format_error("number is too big"); else ++precision; } else if (fspecs.format != float_format::fixed && precision == 0) { precision = 1; } if (const_check(std::is_same())) fspecs.binary32 = true; int exp = format_float(convert_float(value), precision, fspecs, buffer); fspecs.precision = precision; auto f = big_decimal_fp{buffer.data(), static_cast(buffer.size()), exp}; return write_float(out, f, specs, fspecs, loc); } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value, format_specs specs, locale_ref loc = {}) -> OutputIt { if (const_check(!is_supported_floating_point(value))) return out; return specs.localized && write_loc(out, value, specs, loc) ? out : write_float(out, value, specs, loc); } template ::value)> FMT_CONSTEXPR20 auto write(OutputIt out, T value) -> OutputIt { if (is_constant_evaluated()) return write(out, value, format_specs()); if (const_check(!is_supported_floating_point(value))) return out; auto fspecs = float_specs(); if (detail::signbit(value)) { fspecs.sign = sign::minus; value = -value; } constexpr auto specs = format_specs(); using floaty = conditional_t::value, double, T>; using floaty_uint = typename dragonbox::float_info::carrier_uint; floaty_uint mask = exponent_mask(); if ((bit_cast(value) & mask) == mask) return write_nonfinite(out, std::isnan(value), specs, fspecs); auto dec = dragonbox::to_decimal(static_cast(value)); return write_float(out, dec, specs, fspecs, {}); } template ::value && !is_fast_float::value)> inline auto write(OutputIt out, T value) -> OutputIt { return write(out, value, format_specs()); } template auto write(OutputIt out, monostate, format_specs = {}, locale_ref = {}) -> OutputIt { FMT_ASSERT(false, ""); return out; } template FMT_CONSTEXPR auto write(OutputIt out, basic_string_view value) -> OutputIt { auto it = reserve(out, value.size()); it = copy_str_noinline(value.begin(), value.end(), it); return base_iterator(out, it); } template ::value)> constexpr auto write(OutputIt out, const T& value) -> OutputIt { return write(out, to_string_view(value)); } // FMT_ENABLE_IF() condition separated to workaround an MSVC bug. template < typename Char, typename OutputIt, typename T, bool check = std::is_enum::value && !std::is_same::value && mapped_type_constant>::value != type::custom_type, FMT_ENABLE_IF(check)> FMT_CONSTEXPR auto write(OutputIt out, T value) -> OutputIt { return write(out, static_cast>(value)); } template ::value)> FMT_CONSTEXPR auto write(OutputIt out, T value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return specs.type != presentation_type::none && specs.type != presentation_type::string ? write(out, value ? 1 : 0, specs, {}) : write_bytes(out, value ? "true" : "false", specs); } template FMT_CONSTEXPR auto write(OutputIt out, Char value) -> OutputIt { auto it = reserve(out, 1); *it++ = value; return base_iterator(out, it); } template FMT_CONSTEXPR_CHAR_TRAITS auto write(OutputIt out, const Char* value) -> OutputIt { if (value) return write(out, basic_string_view(value)); throw_format_error("string pointer is null"); return out; } template ::value)> auto write(OutputIt out, const T* value, const format_specs& specs = {}, locale_ref = {}) -> OutputIt { return write_ptr(out, bit_cast(value), &specs); } // A write overload that handles implicit conversions. template > FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> enable_if_t< std::is_class::value && !is_string::value && !is_floating_point::value && !std::is_same::value && !std::is_same().map( value))>>::value, OutputIt> { return write(out, arg_mapper().map(value)); } template > FMT_CONSTEXPR auto write(OutputIt out, const T& value) -> enable_if_t::value == type::custom_type, OutputIt> { auto ctx = Context(out, {}, {}); return typename Context::template formatter_type().format(value, ctx); } // An argument visitor that formats the argument and writes it via the output // iterator. It's a class and not a generic lambda for compatibility with C++11. template struct default_arg_formatter { using iterator = buffer_appender; using context = buffer_context; iterator out; basic_format_args args; locale_ref loc; template auto operator()(T value) -> iterator { return write(out, value); } auto operator()(typename basic_format_arg::handle h) -> iterator { basic_format_parse_context parse_ctx({}); context format_ctx(out, args, loc); h.format(parse_ctx, format_ctx); return format_ctx.out(); } }; template struct arg_formatter { using iterator = buffer_appender; using context = buffer_context; iterator out; const format_specs& specs; locale_ref locale; template FMT_CONSTEXPR FMT_INLINE auto operator()(T value) -> iterator { return detail::write(out, value, specs, locale); } auto operator()(typename basic_format_arg::handle) -> iterator { // User-defined types are handled separately because they require access // to the parse context. return out; } }; template struct custom_formatter { basic_format_parse_context& parse_ctx; buffer_context& ctx; void operator()( typename basic_format_arg>::handle h) const { h.format(parse_ctx, ctx); } template void operator()(T) const {} }; template class width_checker { public: explicit FMT_CONSTEXPR width_checker(ErrorHandler& eh) : handler_(eh) {} template ::value)> FMT_CONSTEXPR auto operator()(T value) -> unsigned long long { if (is_negative(value)) handler_.on_error("negative width"); return static_cast(value); } template ::value)> FMT_CONSTEXPR auto operator()(T) -> unsigned long long { handler_.on_error("width is not integer"); return 0; } private: ErrorHandler& handler_; }; template class precision_checker { public: explicit FMT_CONSTEXPR precision_checker(ErrorHandler& eh) : handler_(eh) {} template ::value)> FMT_CONSTEXPR auto operator()(T value) -> unsigned long long { if (is_negative(value)) handler_.on_error("negative precision"); return static_cast(value); } template ::value)> FMT_CONSTEXPR auto operator()(T) -> unsigned long long { handler_.on_error("precision is not integer"); return 0; } private: ErrorHandler& handler_; }; template