Code Monkey home page Code Monkey logo

fatrat's People

Contributors

dwatzke avatar lubosd avatar michalhecko avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fatrat's Issues

Current code incompatible with libtorrent (Rasterbar) 1.1

Current code isn't compatible with version 1.1 of libtorrent (Rasterbar).

Building fails with

[ 54%] Building CXX object CMakeFiles/fatrat.dir/src/TransfersModel.cpp.o
/usr/local/peter/Tests/FatRat/Projekt/fatrat/src/TransfersModel.cpp: In member function 'virtual void ProgressDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const':
/usr/local/peter/Tests/FatRat/Projekt/fatrat/src/TransfersModel.cpp:381:29: warning: 'QStyleOptionProgressBarV2' is deprecated [-Wdeprecated-declarations]
QStyleOptionProgressBarV2 opts;
                          ^~~~
In file included from /usr/include/qt/QtWidgets/qabstractitemdelegate.h:44:0,
from /usr/include/qt/QtWidgets/qabstractitemview.h:46,
from /usr/include/qt/QtWidgets/qtreeview.h:43,
from /usr/include/qt/QtWidgets/QTreeView:1,
from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/TransfersModel.h:32,
from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/TransfersModel.cpp:33:
/usr/include/qt/QtWidgets/qstyleoption.h:337:51: note: declared here
typedef Q_DECL_DEPRECATED QStyleOptionProgressBar QStyleOptionProgressBarV2;
                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~
[ 54%] Building CXX object CMakeFiles/fatrat.dir/src/Logger.cpp.o
In file included from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/Transfer.cpp:33:0:
/usr/local/peter/Tests/FatRat/Projekt/fatrat/src/engines/TorrentDownload.h:138:29: error: field 'm_status' has incomplete type 'libtorrent::torrent_status'
libtorrent::torrent_status m_status;
                           ^~~~~~~~
In file included from /usr/include/libtorrent/session_handle.hpp:38:0,
from /usr/include/libtorrent/session.hpp:53,
from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/engines/TorrentDownload.h:43,
from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/Transfer.cpp:33:
/usr/include/libtorrent/torrent_handle.hpp:72:9: note: forward declaration of 'struct libtorrent::torrent_status'
struct torrent_status;
       ^~~~~~~~~~~~~~
[ 54%] Building CXX object CMakeFiles/fatrat.dir/src/XmlRpc.cpp.o
make[2]: *** [CMakeFiles/fatrat.dir/build.make:1521: CMakeFiles/fatrat.dir/src/Transfer.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [CMakeFiles/Makefile2:100: CMakeFiles/fatrat.dir/all] Error 2 
make: *** [Makefile:128: all] Error 2

but succeeds after downgrading to 1.0.9 (or dropping CMake variable -DWITH_BITTORRENT=ON).

removed files of finished downloads get created after next fatrat startup

When a download is finished and you leave it in fatrat, quit fatrat, remove the file, start fatrat, then fatrat recreates those files empty - only containing zeroes. This is pointless. It would be better to just notify the user by changing the transfer icon to something else and explaining the situation in the message column

Fatrat doesn't start in Ubuntu

Fatrat Version: 1.2.0
Ubuntu 18.04

:~$ fatrat
Current locale "en"
Loading queues
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
Transfer::createInstance(): "GeneralDownload"
CurlDownload(0x55c7ec8cbd20) changeActive true
Adding a polling master 21 QThread(0x55c7ec6918e0)
The limit is 0
----------- CurlDownload::startSegment(): 0
Start new seg:  0 419112667
CurlDownload::startSegment(): seg offset: 0 ; bytes: 419112667
CurlDownload(0x55c7ec8cbd20) changeActive false
Before final simplify segments: ()
After final simplify segments: ()
----------- CurlDownload::startSegment(): 0
Segmentation fault (core dumped)

Use ExtJS for the web interface

Develop a 3rd gen web interface with ExtJS instead of jQuery UI. jQuery UI is good for websites, but not for complex apps.

Download speed of manager questionable

I noticed after using it, the download speed for a file is slower than on Free Download Manager. I can download the same file but Fatrat is slower than when downloading it on FDM. Fatrat downloads the same file at about 130 kb/s, whereas FDM downloads at 1200 kb/s. It only happened on that file download. I did a test from Filehippo, and both managers are at the same speed of of about 2700 kb/s. Is there something than can be tweaked?

Incompatibility with libtorrent-rasterbar 2.0

Trying to build the "feature/poconet_migration" branch on Arch. libtorrent-rasterbar version is 1:2.0.8-3. PKGBUILD contains the following build function:

build() {
  mkdir -p build
  cd build
  cmake "$srcdir/$_pkgname/" \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_CXX_STANDARD=14 \
        -DCMAKE_CXX_STANDARD_REQUIRED=ON \
        -DCMAKE_CXX_EXTENSIONS=OFF \
        -DWITH_DOCUMENTATION=ON \
        -DWITH_NLS=ON \
        -DWITH_CURL=ON \
        -DWITH_BITTORRENT=ON \
        -DWITH_WEBINTERFACE=ON
  make
}

Results in the following error:

[ 52%] Building CXX object CMakeFiles/fatrat.dir/src/Transfer.cpp.o
In file included from /build/fatrat-git/src/fatrat/src/Transfer.cpp:33:
/build/fatrat-git/src/fatrat/src/engines/TorrentDownload.h:82:53: error: ‘libtorrent::lazy_entry’ has not been declared
   82 |         static void lazy_bdecode_simple(libtorrent::lazy_entry& e, QByteArray array);
      |                                                     ^~~~~~~~~~
/build/fatrat-git/src/fatrat/src/Transfer.cpp: In member function ‘void Transfer::fireCompleted()’:
/build/fatrat-git/src/fatrat/src/Transfer.cpp:493:32: warning: ‘static bool QProcess::startDetached(const QString&)’ is deprecated: Use QProcess::startDetached(const QString &program, const QStringList &arguments) instead [-Wdeprecated-declarations]
  493 |         QProcess::startDetached(exec);
      |         ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
In file included from /usr/include/qt/QtCore/QProcess:1,
                 from /build/fatrat-git/src/fatrat/src/Transfer.cpp:50:
/usr/include/qt/QtCore/qprocess.h:280:17: note: declared here
  280 |     static bool startDetached(const QString &command);
      |                 ^~~~~~~~~~~~~
make[2]: *** [CMakeFiles/fatrat.dir/build.make:1303: CMakeFiles/fatrat.dir/src/Transfer.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:112: CMakeFiles/fatrat.dir/all] Error 2
make: *** [Makefile:136: all] Error 2

Cant compile FatRat - JObject.cpp:514:30 invalid conversion

[ 61%] Building CXX object CMakeFiles/fatrat.dir/src/java/JObject.cpp.o
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat-build/src/java/JObject.cpp: In member function ‘void JObject::setNull()’:
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat-build/src/java/JObject.cpp:514:30: error: invalid conversion from ‘jobject {aka _jobject}’ to ‘jweak {aka _jweak}’ [-fpermissive]
env->DeleteWeakGlobalRef(o);
^
In file included from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat-build/src/java/JObject.h:35:0,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat-build/src/java/JObject.cpp:28:
/usr/include/jni.h:1530:8: note: initializing argument 1 of ‘void _Jv_JNIEnv::DeleteWeakGlobalRef(jweak)’
void DeleteWeakGlobalRef (jweak val0)
^
CMakeFiles/fatrat.dir/build.make:3013: návod pro cíl „CMakeFiles/fatrat.dir/src/java/JObject.cpp.o“ selhal
make[2]: *** [CMakeFiles/fatrat.dir/src/java/JObject.cpp.o] Chyba 1
CMakeFiles/Makefile2:60: návod pro cíl „CMakeFiles/fatrat.dir/all“ selhal
make[1]: *** [CMakeFiles/fatrat.dir/all] Chyba 2
Makefile:116: návod pro cíl „all“ selhal
make: *** [all] Chyba 2

System :
Arch Linux 64bit
gcc 5.1.0
cmake 3.2.2
qmake-qt4 --version
QMake version 2.01a
Using Qt version 4.8.6 in /usr/lib
java (tested with jdk7, 8 OpenJDK 7)

display info bar

when you click on display info bar for an invalid transfer, the bar just stay all time over the windows, and do not fade

make install error

cmake .
-DCMAKE_INSTALL_PREFIX=/usr
-DWITH_DOCUMENTATION=ON
-DWITH_NLS=ON
-DWITH_CURL=ON
-DWITH_BITTORRENT=ON
make
...
make install
...
-- Installing: /tmp/yaourt-tmp-max/aur-fatrat-git/pkg/fatrat-git/usr/share/fatrat/data/bttrackers.txt
CMake Error at cmake_install.cmake:143 (file):
file INSTALL cannot find
"/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/doc/fatrat.qhc".

Build error: `unique_ptr.h`: error: wrong number of template arguments (2, should be 1)

<command-line>: error: redeclared with 2 template parameters
In file included from /opt/local/include/gcc12/c++/bits/shared_ptr_base.h:59,
                 from /opt/local/include/gcc12/c++/bits/shared_ptr.h:53,
                 from /opt/local/include/gcc12/c++/condition_variable:42,
                 from /opt/local/include/gcc12/c++/mutex:46,
                 from /opt/local/libexec/boost/1.81/include/boost/system/detail/error_category_impl.hpp:104,
                 from /opt/local/libexec/boost/1.81/include/boost/system/error_category.hpp:11,
                 from /opt/local/libexec/boost/1.81/include/boost/system/error_code.hpp:14,
                 from /opt/local/include/libtorrent/error_code.hpp:41,
                 from /opt/local/include/libtorrent/entry.hpp:75,
                 from /opt/local/include/libtorrent/bencode.hpp:61,
                 from /opt/local/include/libtorrent/create_torrent.hpp:39,
                 from /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/tools/CreateTorrentDlg.h:36,
                 from /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/AppTools.cpp:35:
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: previous declaration 'template<class> class std::auto_ptr' used 1 template parameter
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:527:32: error: wrong number of template arguments (2, should be 1)
  527 |     class unique_ptr<_Tp[], _Dp>
      |                                ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:808:29: error: wrong number of template arguments (2, should be 1)
  808 |     swap(unique_ptr<_Tp, _Dp>& __x,
      |                             ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:809:29: error: wrong number of template arguments (2, should be 1)
  809 |          unique_ptr<_Tp, _Dp>& __y) noexcept
      |                             ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h: In function 'typename std::enable_if<std::__is_swappable<_T2>::value>::type std::swap(int&, int&)':
/opt/local/include/gcc12/c++/bits/unique_ptr.h:810:11: error: request for member 'swap' in '__x', which is of non-class type 'int'
  810 |     { __x.swap(__y); }
      |           ^~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h: At global scope:
/opt/local/include/gcc12/c++/bits/unique_ptr.h:815:29: error: wrong number of template arguments (2, should be 1)
  815 |     swap(unique_ptr<_Tp, _Dp>&,
      |                             ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:816:29: error: wrong number of template arguments (2, should be 1)
  816 |          unique_ptr<_Tp, _Dp>&) = delete;
      |                             ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:824:41: error: wrong number of template arguments (2, should be 1)
  824 |     operator==(const unique_ptr<_Tp, _Dp>& __x,
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:825:41: error: wrong number of template arguments (2, should be 1)
  825 |                const unique_ptr<_Up, _Ep>& __y)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:824:5: error: 'bool std::operator==(const int&, const int&)' must have an argument of class or enumerated type
  824 |     operator==(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:832:41: error: wrong number of template arguments (2, should be 1)
  832 |     operator==(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:832:5: error: 'bool std::operator==(const int&, nullptr_t)' must have an argument of class or enumerated type
  832 |     operator==(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:840:52: error: wrong number of template arguments (2, should be 1)
  840 |     operator==(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept
      |                                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:840:5: error: 'bool std::operator==(nullptr_t, const int&)' must have an argument of class or enumerated type
  840 |     operator==(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:848:41: error: wrong number of template arguments (2, should be 1)
  848 |     operator!=(const unique_ptr<_Tp, _Dp>& __x,
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:849:41: error: wrong number of template arguments (2, should be 1)
  849 |                const unique_ptr<_Up, _Ep>& __y)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:848:5: error: 'bool std::operator!=(const int&, const int&)' must have an argument of class or enumerated type
  848 |     operator!=(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:856:41: error: wrong number of template arguments (2, should be 1)
  856 |     operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:856:5: error: 'bool std::operator!=(const int&, nullptr_t)' must have an argument of class or enumerated type
  856 |     operator!=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:863:52: error: wrong number of template arguments (2, should be 1)
  863 |     operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept
      |                                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:863:5: error: 'bool std::operator!=(nullptr_t, const int&)' must have an argument of class or enumerated type
  863 |     operator!=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x) noexcept
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:872:40: error: wrong number of template arguments (2, should be 1)
  872 |     operator<(const unique_ptr<_Tp, _Dp>& __x,
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:873:40: error: wrong number of template arguments (2, should be 1)
  873 |               const unique_ptr<_Up, _Ep>& __y)
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:872:5: error: 'bool std::operator<(const int&, const int&)' must have an argument of class or enumerated type
  872 |     operator<(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:885:40: error: wrong number of template arguments (2, should be 1)
  885 |     operator<(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:885:5: error: 'bool std::operator<(const int&, nullptr_t)' must have an argument of class or enumerated type
  885 |     operator<(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:895:51: error: wrong number of template arguments (2, should be 1)
  895 |     operator<(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |                                                   ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:895:5: error: 'bool std::operator<(nullptr_t, const int&)' must have an argument of class or enumerated type
  895 |     operator<(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:906:41: error: wrong number of template arguments (2, should be 1)
  906 |     operator<=(const unique_ptr<_Tp, _Dp>& __x,
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:907:41: error: wrong number of template arguments (2, should be 1)
  907 |                const unique_ptr<_Up, _Ep>& __y)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:906:5: error: 'bool std::operator<=(const int&, const int&)' must have an argument of class or enumerated type
  906 |     operator<=(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:914:41: error: wrong number of template arguments (2, should be 1)
  914 |     operator<=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:914:5: error: 'bool std::operator<=(const int&, nullptr_t)' must have an argument of class or enumerated type
  914 |     operator<=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:921:52: error: wrong number of template arguments (2, should be 1)
  921 |     operator<=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |                                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:921:5: error: 'bool std::operator<=(nullptr_t, const int&)' must have an argument of class or enumerated type
  921 |     operator<=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:929:40: error: wrong number of template arguments (2, should be 1)
  929 |     operator>(const unique_ptr<_Tp, _Dp>& __x,
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:930:40: error: wrong number of template arguments (2, should be 1)
  930 |               const unique_ptr<_Up, _Ep>& __y)
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:929:5: error: 'bool std::operator>(const int&, const int&)' must have an argument of class or enumerated type
  929 |     operator>(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:937:40: error: wrong number of template arguments (2, should be 1)
  937 |     operator>(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:937:5: error: 'bool std::operator>(const int&, nullptr_t)' must have an argument of class or enumerated type
  937 |     operator>(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:947:51: error: wrong number of template arguments (2, should be 1)
  947 |     operator>(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |                                                   ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:947:5: error: 'bool std::operator>(nullptr_t, const int&)' must have an argument of class or enumerated type
  947 |     operator>(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:958:41: error: wrong number of template arguments (2, should be 1)
  958 |     operator>=(const unique_ptr<_Tp, _Dp>& __x,
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:959:41: error: wrong number of template arguments (2, should be 1)
  959 |                const unique_ptr<_Up, _Ep>& __y)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:958:5: error: 'bool std::operator>=(const int&, const int&)' must have an argument of class or enumerated type
  958 |     operator>=(const unique_ptr<_Tp, _Dp>& __x,
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:966:41: error: wrong number of template arguments (2, should be 1)
  966 |     operator>=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |                                         ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:966:5: error: 'bool std::operator>=(const int&, nullptr_t)' must have an argument of class or enumerated type
  966 |     operator>=(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:972:52: error: wrong number of template arguments (2, should be 1)
  972 |     operator>=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |                                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:972:5: error: 'bool std::operator>=(nullptr_t, const int&)' must have an argument of class or enumerated type
  972 |     operator>=(nullptr_t, const unique_ptr<_Tp, _Dp>& __x)
      |     ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1022:33: error: wrong number of template arguments (2, should be 1)
 1022 |     struct hash<unique_ptr<_Tp, _Dp>>
      |                                 ^~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1022:36: error: template argument 1 is invalid
 1022 |     struct hash<unique_ptr<_Tp, _Dp>>
      |                                    ^~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1023:50: error: wrong number of template arguments (2, should be 1)
 1023 |     : public __hash_base<size_t, unique_ptr<_Tp, _Dp>>,
      |                                                  ^~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1023:53: error: template argument 2 is invalid
 1023 |     : public __hash_base<size_t, unique_ptr<_Tp, _Dp>>,
      |                                                     ^~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1024:46: error: wrong number of template arguments (2, should be 1)
 1024 |       public __uniq_ptr_hash<unique_ptr<_Tp, _Dp>>
      |                                              ^~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1024:49: error: template argument 1 is invalid
 1024 |       public __uniq_ptr_hash<unique_ptr<_Tp, _Dp>>
      |                                                 ^~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1024:49: error: template argument 2 is invalid
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1024:49: error: template argument 3 is invalid
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1156:56: error: wrong number of template arguments (2, should be 1)
 1156 |       struct _Never_valueless_alt<std::unique_ptr<_Tp, _Del>>
      |                                                        ^~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:1156:60: error: template argument 1 is invalid
 1156 |       struct _Never_valueless_alt<std::unique_ptr<_Tp, _Del>>
      |                                                            ^~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1036:49: error: wrong number of template arguments (2, should be 1)
 1036 |         __shared_count(std::unique_ptr<_Tp, _Del>&& __r) : _M_pi(0)
      |                                                 ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h: In constructor 'std::__shared_count<_Lp>::__shared_count(int&&)':
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1040:19: error: request for member 'get' in '__r', which is of non-class type 'int'
 1040 |           if (__r.get() == nullptr)
      |                   ^~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1043:53: error: wrong number of template arguments (2, should be 1)
 1043 |           using _Ptr = typename unique_ptr<_Tp, _Del>::pointer;
      |                                                     ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1048:35: error: '_Ptr' was not declared in this scope
 1048 |             = _Sp_counted_deleter<_Ptr, _Del2, allocator<void>, _Lp>;
      |                                   ^~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1048:68: error: template argument 1 is invalid
 1048 |             = _Sp_counted_deleter<_Ptr, _Del2, allocator<void>, _Lp>;
      |                                                                    ^
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1049:36: error: '_Sp_cd_type' was not declared in this scope
 1049 |           using _Alloc = allocator<_Sp_cd_type>;
      |                                    ^~~~~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1049:47: error: template argument 1 is invalid
 1049 |           using _Alloc = allocator<_Sp_cd_type>;
      |                                               ^
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1050:50: error: '_Alloc' was not declared in this scope; did you mean 'malloc'?
 1050 |           using _Alloc_traits = allocator_traits<_Alloc>;
      |                                                  ^~~~~~
      |                                                  malloc
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1050:56: error: template argument 1 is invalid
 1050 |           using _Alloc_traits = allocator_traits<_Alloc>;
      |                                                        ^
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1051:18: error: expected ';' before '__a'
 1051 |           _Alloc __a;
      |                  ^~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1052:24: error: '__mem' was not declared in this scope
 1052 |           _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
      |                        ^~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1052:32: error: '_Alloc_traits' has not been declared
 1052 |           _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
      |                                ^~~~~~~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1052:56: error: '__a' was not declared in this scope; did you mean '__r'?
 1052 |           _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
      |                                                        ^~~
      |                                                        __r
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1056:11: error: '_Alloc_traits' has not been declared
 1056 |           _Alloc_traits::construct(__a, __mem, __r.release(),
      |           ^~~~~~~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1056:52: error: request for member 'release' in '__r', which is of non-class type 'int'
 1056 |           _Alloc_traits::construct(__a, __mem, __r.release(),
      |                                                    ^~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1057:59: error: request for member 'get_deleter' in '__r', which is of non-class type 'int'
 1057 |                                    std::forward<_Del>(__r.get_deleter()));
      |                                                           ^~~~~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h: At global scope:
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1445:61: error: wrong number of template arguments (2, should be 1)
 1445 |                typename _Ptr = typename unique_ptr<_Yp, _Del>::pointer>
      |                                                             ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1454:73: error: template argument 4 is invalid
 1454 |         using _UniqAssignable = _UniqCompatible<_Yp, _Del, __shared_ptr&>;
      |                                                                         ^
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1557:48: error: template argument 4 is invalid
 1557 |                typename = _UniqCompatible<_Yp, _Del>>
      |                                                ^~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1558:42: error: wrong number of template arguments (2, should be 1)
 1558 |         __shared_ptr(unique_ptr<_Yp, _Del>&& __r)
      |                                          ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1633:9: error: '_UniqAssignable' does not name a type; did you mean '_Assignable'?
 1633 |         _UniqAssignable<_Yp, _Del>
      |         ^~~~~~~~~~~~~~~
      |         _Assignable
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h: In constructor 'std::__shared_ptr<_Tp, _Lp>::__shared_ptr(int&&)':
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1559:22: error: request for member 'get' in '__r', which is of non-class type 'int'
 1559 |         : _M_ptr(__r.get()), _M_refcount()
      |                      ^~~
/opt/local/include/gcc12/c++/bits/shared_ptr_base.h:1561:41: error: request for member 'get' in '__r', which is of non-class type 'int'
 1561 |           auto __raw = __to_address(__r.get());
      |                                         ^~~
/opt/local/include/gcc12/c++/bits/shared_ptr.h: At global scope:
/opt/local/include/gcc12/c++/bits/shared_ptr.h:394:58: error: wrong number of template arguments (2, should be 1)
  394 |                typename = _Constructible<unique_ptr<_Yp, _Del>>>
      |                                                          ^~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:394:62: error: template argument 1 is invalid
  394 |                typename = _Constructible<unique_ptr<_Yp, _Del>>>
      |                                                              ^~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:395:40: error: wrong number of template arguments (2, should be 1)
  395 |         shared_ptr(unique_ptr<_Yp, _Del>&& __r)
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:453:37: error: wrong number of template arguments (2, should be 1)
  453 |         _Assignable<unique_ptr<_Yp, _Del>>
      |                                     ^~~~
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:453:41: error: template argument 1 is invalid
  453 |         _Assignable<unique_ptr<_Yp, _Del>>
      |                                         ^~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:454:39: error: wrong number of template arguments (2, should be 1)
  454 |         operator=(unique_ptr<_Yp, _Del>&& __r)
      |                                       ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/include/gcc12/c++/bits/shared_ptr.h:545:36: error: wrong number of template arguments (2, should be 1)
  545 |     shared_ptr(unique_ptr<_Tp, _Del>) ->  shared_ptr<_Tp>;
      |                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
In file included from /opt/local/include/gcc12/c++/memory:81,
                 from /opt/local/include/libtorrent/disk_interface.hpp:41,
                 from /opt/local/include/libtorrent/file_storage.hpp:55,
                 from /opt/local/include/libtorrent/create_torrent.hpp:40:
/opt/local/include/gcc12/c++/backward/auto_ptr.h:328:24: error: wrong number of template arguments (2, should be 1)
  328 |     unique_ptr<_Tp, _Dp>::unique_ptr(auto_ptr<_Up>&& __u) noexcept
      |                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
<command-line>: error: too many template-parameter-lists
/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp: In function 'void daemonize()':
/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp:672:15: warning: 'int daemon(int, int)' is deprecated [-Wdeprecated-declarations]
  672 |         daemon(true, false);
      |         ~~~~~~^~~~~~~~~~~~~
In file included from /opt/local/include/gcc12/c++/cstdlib:75,
                 from /opt/local/include/gcc12/c++/bits/stl_algo.h:69,
                 from /opt/local/include/gcc12/c++/algorithm:61,
                 from /opt/local/libexec/qt4/include/QtCore/qglobal.h:68,
                 from /opt/local/libexec/qt4/include/QtCore/qchar.h:45,
                 from /opt/local/libexec/qt4/include/QtCore/qstring.h:45,
                 from /opt/local/libexec/qt4/include/QtCore/QString:1,
                 from /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.h:31,
                 from /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp:29:
/usr/include/stdlib.h:289:10: note: declared here
  289 | int      daemon(int, int) __DARWIN_1050(daemon) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_0,__MAC_10_5,__IPHONE_2_0,__IPHONE_2_0);
      |          ^~~~~~
[ 49%] Building CXX object CMakeFiles/fatrat.dir/src/Queue.cpp.o
/opt/local/bin/g++-mp-12 -DBOOST_ASIO_DYN_LINK -DBOOST_FILESYSTEM_NARROW_ONLY -DNDEBUG -DQT_CORE_LIB -DQT_DBUS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WEBKIT_LIB -DQT_XML_LIB -DTORRENT_USE_OPENSSL -Dunique_ptr=auto_ptr -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src -I/opt/local/libexec/boost/1.81/include -I/opt/local/include/p11-kit-1 -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/.. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/build -isystem /opt/local/libexec/qt4/include -isystem /opt/local/libexec/qt4/include/QtSvg -isystem /opt/local/libexec/qt4/include/QtWebKit -isystem /opt/local/libexec/qt4/include/QtGui -isystem /opt/local/libexec/qt4/include/QtDBus -isystem /opt/local/libexec/qt4/include/QtXml -isystem /opt/local/libexec/qt4/include/QtNetwork -isystem /opt/local/libexec/qt4/include/QtCore -pipe -I/opt/local/libexec/openssl3/include -I/opt/local/libexec/boost/1.81/include -Os -DNDEBUG -I/opt/local/libexec/openssl3/include -I/opt/local/libexec/boost/1.81/include -isystem/opt/local/include -D_GLIBCXX_USE_CXX11_ABI=0 -arch ppc -mmacosx-version-min=10.6   -ggdb -Wall -MD -MT CMakeFiles/fatrat.dir/src/Queue.cpp.o -MF CMakeFiles/fatrat.dir/src/Queue.cpp.o.d -o CMakeFiles/fatrat.dir/src/Queue.cpp.o -c /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/Queue.cpp
[ 50%] Building CXX object CMakeFiles/fatrat.dir/src/QueueMgr.cpp.o
/opt/local/bin/g++-mp-12 -DBOOST_ASIO_DYN_LINK -DBOOST_FILESYSTEM_NARROW_ONLY -DNDEBUG -DQT_CORE_LIB -DQT_DBUS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WEBKIT_LIB -DQT_XML_LIB -DTORRENT_USE_OPENSSL -Dunique_ptr=auto_ptr -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src -I/opt/local/libexec/boost/1.81/include -I/opt/local/include/p11-kit-1 -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/.. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/build -isystem /opt/local/libexec/qt4/include -isystem /opt/local/libexec/qt4/include/QtSvg -isystem /opt/local/libexec/qt4/include/QtWebKit -isystem /opt/local/libexec/qt4/include/QtGui -isystem /opt/local/libexec/qt4/include/QtDBus -isystem /opt/local/libexec/qt4/include/QtXml -isystem /opt/local/libexec/qt4/include/QtNetwork -isystem /opt/local/libexec/qt4/include/QtCore -pipe -I/opt/local/libexec/openssl3/include -I/opt/local/libexec/boost/1.81/include -Os -DNDEBUG -I/opt/local/libexec/openssl3/include -I/opt/local/libexec/boost/1.81/include -isystem/opt/local/include -D_GLIBCXX_USE_CXX11_ABI=0 -arch ppc -mmacosx-version-min=10.6   -ggdb -Wall -MD -MT CMakeFiles/fatrat.dir/src/QueueMgr.cpp.o -MF CMakeFiles/fatrat.dir/src/QueueMgr.cpp.o.d -o CMakeFiles/fatrat.dir/src/QueueMgr.cpp.o -c /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/QueueMgr.cpp
/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp: At global scope:
/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp:108:13: warning: 'void testJava()' declared 'static' but never defined [-Wunused-function]
  108 | static void testJava();
      |             ^~~~~~~~
/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_net_fatrat/fatrat/work/fatrat-b5be2b17ee291f6253484ec749037bc2c9200ccc/src/fatrat.cpp:675:6: warning: 'void testNotif()' defined but not used [-Wunused-function]
  675 | void testNotif()
      |      ^~~~~~~~~
In file included from /opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:17,
                 from /opt/local/libexec/boost/1.81/include/boost/shared_ptr.hpp:17,
                 from /opt/local/libexec/boost/1.81/include/boost/date_time/time_clock.hpp:17,
                 from /opt/local/libexec/boost/1.81/include/boost/date_time/posix_time/posix_time_types.hpp:10,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/time_traits.hpp:23,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/detail/timer_queue_ptime.hpp:22,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/detail/deadline_timer_service.hpp:31,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/basic_waitable_timer.hpp:22,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/steady_timer.hpp:22,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/basic_socket_streambuf.hpp:36,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/basic_socket_iostream.hpp:24,
                 from /opt/local/libexec/boost/1.81/include/boost/asio/ip/tcp.hpp:20,
                 from /opt/local/include/libtorrent/socket.hpp:56,
                 from /opt/local/include/libtorrent/kademlia/dht_state.hpp:40,
                 from /opt/local/include/libtorrent/session_params.hpp:46,
                 from /opt/local/include/libtorrent/create_torrent.hpp:44:
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:383:48: error: wrong number of template arguments (2, should be 1)
  383 |     explicit shared_count( std::unique_ptr<Y, D> & r ): pi_( 0 )
      |                                                ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp: In constructor 'boost::detail::shared_count::shared_count(int&)':
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:390:36: error: request for member 'get_deleter' in 'r', which is of non-class type 'int'
  390 |         D2 d2( static_cast<D&&>( r.get_deleter() ) );
      |                                    ^~~~~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:391:68: error: wrong number of template arguments (2, should be 1)
  391 |         pi_ = new sp_counted_impl_pd< typename std::unique_ptr<Y, D>::pointer, D2 >( r.get(), d2 );
      |                                                                    ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:391:69: error: '<declaration error>' is not a template [-fpermissive]
  391 |         pi_ = new sp_counted_impl_pd< typename std::unique_ptr<Y, D>::pointer, D2 >( r.get(), d2 );
      |                                                                     ^~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:391:83: error: template argument 1 is invalid
  391 |         pi_ = new sp_counted_impl_pd< typename std::unique_ptr<Y, D>::pointer, D2 >( r.get(), d2 );
      |                                                                                   ^
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:391:88: error: request for member 'get' in 'r', which is of non-class type 'int'
  391 |         pi_ = new sp_counted_impl_pd< typename std::unique_ptr<Y, D>::pointer, D2 >( r.get(), d2 );
      |                                                                                        ^~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/detail/shared_count.hpp:402:11: error: request for member 'release' in 'r', which is of non-class type 'int'
  402 |         r.release();
      |           ^~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp: At global scope:
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:552:39: error: wrong number of template arguments (2, should be 1)
  552 |     shared_ptr( std::unique_ptr< Y, D > && r ): px( r.get() ), pn()
      |                                       ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:634:49: error: wrong number of template arguments (2, should be 1)
  634 |     shared_ptr & operator=( std::unique_ptr<Y, D> && r )
      |                                                 ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp: In constructor 'boost::shared_ptr<T>::shared_ptr(int&&)':
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:552:55: error: request for member 'get' in 'r', which is of non-class type 'int'
  552 |     shared_ptr( std::unique_ptr< Y, D > && r ): px( r.get() ), pn()
      |                                                       ^~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:556:40: error: wrong number of template arguments (2, should be 1)
  556 |         typename std::unique_ptr< Y, D >::pointer tmp = r.get();
      |                                        ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:556:41: error: '<declaration error>' is not a template [-fpermissive]
  556 |         typename std::unique_ptr< Y, D >::pointer tmp = r.get();
      |                                         ^~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:556:59: error: request for member 'get' in 'r', which is of non-class type 'int'
  556 |         typename std::unique_ptr< Y, D >::pointer tmp = r.get();
      |                                                           ^~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp: In member function 'boost::shared_ptr<T>& boost::shared_ptr<T>::operator=(int&&)':
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:636:53: error: wrong number of template arguments (2, should be 1)
  636 |         this_type( static_cast< std::unique_ptr<Y, D> && >( r ) ).swap(*this);
      |                                                     ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:636:18: error: expected primary-expression before '(' token
  636 |         this_type( static_cast< std::unique_ptr<Y, D> && >( r ) ).swap(*this);
      |                  ^
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:636:55: error: expected '>' before '&&' token
  636 |         this_type( static_cast< std::unique_ptr<Y, D> && >( r ) ).swap(*this);
      |                                                       ^~
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:636:55: error: expected '(' before '&&' token
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:636:58: error: expected identifier before '>' token
  636 |         this_type( static_cast< std::unique_ptr<Y, D> && >( r ) ).swap(*this);
      |                                                          ^
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp: At global scope:
/opt/local/libexec/boost/1.81/include/boost/smart_ptr/shared_ptr.hpp:1264:60: error: wrong number of template arguments (2, should be 1)
 1264 | template<class T, class D> shared_ptr( std::unique_ptr<T, D> ) -> shared_ptr<T>;
      |                                                            ^
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: provided for 'template<class> class std::auto_ptr'
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
<command-line>: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: declared here
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
<command-line>: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: declared here
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
<command-line>: warning: 'template<class> class std::auto_ptr' is deprecated: use 'std::unique_ptr' instead [-Wdeprecated-declarations]
/opt/local/include/gcc12/c++/bits/unique_ptr.h:64:28: note: declared here
   64 |   template<typename> class auto_ptr;
      |                            ^~~~~~~~
make[2]: *** [CMakeFiles/fatrat.dir/src/AppTools.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....

fatrat recent git not work with java 11.0.1

kuh3h3@reandro:~/bin$ ./fatrat

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(fatrat-my:10972): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
QApplication: invalid style override passed, ignoring it.
Current locale "ko_KR"
Locating the Java VM for Java-based plugins...
libjvm found in "/opt/java/64/jdk-11.0.1/lib/server/libjvm.so"
Java Classpath set to "-Djava.class.path=/usr/share/fatrat/data/java/libs/commons-codec-1.10.jar:/usr/share/fatrat/data/java/libs/commons-io-2.4.jar:/usr/share/fatrat/data/java/libs/commons-lang-2.6.jar:/usr/share/fatrat/data/java/libs/fatrat-jplugins-core.jar:/usr/share/fatrat/data/java/libs/fatrat-jplugins-json.jar:/usr/share/fatrat/data/java/libs/jsoup-1.6.3.jar:/usr/share/fatrat/data/java/libs/logback-classic-1.0.12.jar:/usr/share/fatrat/data/java/libs/logback-core-1.0.12.jar:/usr/share/fatrat/data/java/libs/rhino-1.7.7.jar:/usr/share/fatrat/data/java/libs/slf4j-api-1.7.5.jar"

A fatal error has been detected by the Java Runtime Environment:

SIGSEGV (0xb) at pc=0x00007f5533744ef0, pid=10972, tid=10972

JRE version: Java(TM) SE Runtime Environment (11.0.1+13) (build 11.0.1+13-LTS)

Java VM: Java HotSpot(TM) 64-Bit Server VM (11.0.1+13-LTS, mixed mode, tiered, compressed oops, g1 gc, linux-amd64)

Problematic frame:

V [libjvm.so+0xc26ef0] OopStorage::Block::release_entries(unsigned long, OopStorage::Block* volatile*)+0x20

Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport %p %s %c %d %P" (or dumping to /home/kuh3h3/bin/core.10972)

An error report file with more information is saved as:

/home/kuh3h3/bin/hs_err_pid10972.log

If you would like to submit a bug report, please visit:

http://bugreport.java.com/bugreport/crash.jsp

Aborted (core dumped)
hs_err_pid10972.log

fix the torrent search

  1. most importantly the thepiratebay search does not work
  2. cztorrent no longer allows torrent searching for non-logged users
  3. bittorrentmonster does not work (seems kind of does, nor does btjunkie

I didn't try the rest, so you might want to check those too.

backdoor for android

this is not working for backdoor android

how to fix this

they cant bee band any apk

Torrent file list won't refresh after the torrent gets downloaded using magnet link

To reproduce the bug:

  1. add a magnet link
  2. quickly go to the transfer file list - it's not empty as expected
  3. but wait a second - it gets downloaded and then the list is still empty

the issue here is that the file list doesn't get refreshed - it's got a simple workaround: you have to switch to other tab and then return back again, but it's a bug nevertheless

show popup on torrent DL finish even when seeding is active

Hi,

currently fatrat shows a popup about a finished transfer only when a transfer reaches the "completed" state - but in case of torrents, this means that user doesn't get informed about a finished transfer until the pre-set ratio of seeding is reached (if seeding is enabled). This kind of sucks and I think that there should be two popups - one when the content of a torrent is downloaded and another one when the seeding is finished.

Thanks!

square brackets in URL encode improperly on save and load

This causes a url with [] to be encoded and saved and then re-encoded on load so that the URL becomes invalid and you get a failed download.

so [test] becomes %5Btest%5D which becomes %255Btest%255D

My current workaround is to use change line 252 in CurlDownload.cpp to use url.url.toString() instead of url.url.toEncoded()

I didn't have time to research if this is the correct fix or not, but for now everything is working as needed.

Request: merge develop into master and tag a new release

Please merge the develop branch into master and tag a new release.

The last release (1.2.0_beta2) was over a decade ago, in 2012. It is difficult to build on modern systems because Qt4 is no longer available in many repositories, as everyone long ago moved on to Qt5. Now some have started transitioning to Qt6. Would be a nice to tag a release before Qt6 is fully adopted and Qt5 abandoned.

To build on a modern system, the develop branch must be used. Perhaps the current master could be tagged 1.2.0. Then develop merged to master. Then another release tagged at 1.2.1 or 1.3.0?

Current code incompatible with g++ 6

Current VCS code is incompatible with changes introduced in g++ 6.

Compiling using that version fails at least with some of the available CMake options like e. g. -DWITH_BITTORRENT=ON. Problem does not get manifest using no CMake options at all, -DCMAKE_INSTALL_PREFIX=/usr, -DWITH_DOCUMENTATION=ON, -DWITH_NLS=ON or -DWITH_CURL=ON.

Seen compiling fb0e0db on up to date Arch Linux. Output of make uploaded at https://gist.github.com/pmattern/14a8dbcb2be8bc867ca2fe446486b3a8.

On a side note there are some warnings about incompatibility with C++ 11 while compiling which don't cause failure but seem to be worth having a look at nevertheless.

Improve Content-Disposition handling

Support filenames with non-ASCII chars, e.g.:

Content-Disposition: attachment;filename*=UTF-8''Cvi%C4%8D%C3%ADme-s-M%C3%AD%C5%A1ou-1-6-%2B-Foto-DVD-Rip-avi.rar

FatRat currently cannot handle this and falls back to filename extraction from URL.

SIGSEGV on approx. two seconds after start

Hello!
I've installed new version of FatRat from git repo on git.dolezel.info, but it fails to start.
I built it with -DWITH_EVERYTHING.
I tried to use both Oracle and openjdk.
Output:

Current locale "ru_RU"
Loading JVM from the stored location: "/usr/lib/jvm/java-8-jdk/jre/lib/amd64/server/libjvm.so"
libjvm found in "/usr/lib/jvm/java-8-jdk/jre/lib/amd64/server/libjvm.so"
Java Classpath set to "-Djava.class.path=:/usr/share/fatrat/data/java/fatrat-jplugins.jar:/usr/share/fatrat/data/java/libs/commons-codec.jar:/usr/share/fatrat/data/java/libs/commons-io.jar:/usr/share/fatrat/data/java/libs/commons-lang.jar:/usr/share/fatrat/data/java/libs/js-14.jar:/usr/share/fatrat/data/java/libs/json.jar:/usr/share/fatrat/data/java/libs/jsoup.jar"
Java HotSpot(TM) 64-Bit Server VM warning: Using the ParNew young collector with the Serial old collector is deprecated and will likely be removed in a future release
Found 0 annotated classes (DownloadPluginInfo)
Found 0 annotated classes (ExtractorPluginInfo)
Found 0 annotated classes (UploadPluginInfo)
Found 0 annotated classes (SearchPluginInfo)
Loading queues
HttpService::applySettings()
libpng warning: iCCP: known incorrect sRGB profile
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f80769f1c4d, pid=11194, tid=140189884102720
#
# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libgnutls.so.30+0x96c4d]
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# An error report file with more information is saved as:
# /home/mouse/hs_err_pid11194.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

hs_err_pid11194.log contains:

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  SIGSEGV (0xb) at pc=0x00007f80769f1c4d, pid=11194, tid=140189884102720
#
# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C  [libgnutls.so.30+0x96c4d]
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x00000000013ec800):  JavaThread "main" [_thread_in_native, id=11194, stack(0x00007ffc748fe000,0x00007ffc749fe000)]

siginfo: si_signo: 11 (SIGSEGV), si_code: 128 (SI_KERNEL), si_addr: 0x0000000000000000

Registers:
RAX=0x0052007400610127, RBX=0x00520074006100e7, RCX=0x00007ffc749fa794, RDX=0x0000000000000000
RSP=0x00007ffc749fa590, RBP=0x00007ffc749fa810, RSI=0x0000000000000000, RDI=0x00520074006100e7
R8 =0x00007ffc749fa790, R9 =0x00007ffc749fa798, R10=0x000000000000049b, R11=0x00007f807e8a3a10
R12=0x00007ffc749fa794, R13=0x00007ffc749fa798, R14=0x00007ffc749fa790, R15=0x0000000000000000
RIP=0x00007f80769f1c4d, EFLAGS=0x0000000000010202, CSGSFS=0x002b000000000033, ERR=0x0000000000000000
  TRAPNO=0x000000000000000d

Top of Stack: (sp=0x00007ffc749fa590)
0x00007ffc749fa590:   00000000038ee4e3 00007ffc749fa794
0x00007ffc749fa5a0:   0000000000000000 0000000001a5c850
0x00007ffc749fa5b0:   0000000100000000 00007f807e7dd4b8
0x00007ffc749fa5c0:   00007ffc749fa5f4 00007ffc749fa6c0
0x00007ffc749fa5d0:   0000000001923b70 000000000000007e
0x00007ffc749fa5e0:   0000000000000000 00007ffc00000000
0x00007ffc749fa5f0:   0000000000000000 0000000000000000
0x00007ffc749fa600:   00656d6954637475 00007f8080499358
0x00007ffc749fa610:   00007ffc749fa760 0000000000000000
0x00007ffc749fa620:   0000000000000000 00007f8080499000
0x00007ffc749fa630:   00007ffc749fa788 00007f80802c2d3f
0x00007ffc749fa640:   000000000000000a 0000000000000000
0x00007ffc749fa650:   0000000000000005 0000000000000000
0x00007ffc749fa660:   0000000000000001 00007f8080499000
0x00007ffc749fa670:   000000000000000c 0000000000000000
0x00007ffc749fa680:   0000000000000010 0000000000000000
0x00007ffc749fa690:   00007f8080499358 00007ffc749fa6d0
0x00007ffc749fa6a0:   0000000176a587a0 00007ffc749fa6c0
0x00007ffc749fa6b0:   00000000038ee4e3 00007f807e800e73
0x00007ffc749fa6c0:   00000000ffffffff 00007f80769ca744
0x00007ffc749fa6d0:   00007f807e7e4340 a39dc039daa59900
0x00007ffc749fa6e0:   0000000000000010 0000000000000001
0x00007ffc749fa6f0:   00007ffc749fa810 00007ffc749fa794
0x00007ffc749fa700:   0000000000000001 0000000000000000
0x00007ffc749fa710:   0000000001740520 00007f80769f361b
0x00007ffc749fa720:   0000000055db173b 00007ffc749fa794
0x00007ffc749fa730:   0000000000000001 0000000001a5c850
0x00007ffc749fa740:   0000000000000000 00007f80769f35b2
0x00007ffc749fa750:   0000000001a55ce0 0000000000000000
0x00007ffc749fa760:   0000000000000000 00007ffc749fa790
0x00007ffc749fa770:   0000000055db173b 00007ffc749fa808
0x00007ffc749fa780:   0000000000000000 0000000000000000 

Instructions: (pc=0x00007f80769f1c4d)
0x00007f80769f1c2d:   c2 4d 8b 7d 00 49 83 c5 08 4c 39 ed 75 de 4c 8b
0x00007f80769f1c3d:   6c 24 28 4d 85 ed 74 04 4d 89 7d 00 48 8d 43 40
0x00007f80769f1c4d:   48 8b 3b 48 8d 4c 24 50 48 8d 15 db 03 06 00 bd
0x00007f80769f1c5d:   01 00 00 00 48 89 c6 48 89 44 24 38 48 89 4c 24 

Register to memory mapping:

RAX=0x0052007400610127 is an unknown value
RBX=0x00520074006100e7 is an unknown value
RCX=0x00007ffc749fa794 is pointing into the stack for thread: 0x00000000013ec800
RDX=0x0000000000000000 is an unknown value
RSP=0x00007ffc749fa590 is pointing into the stack for thread: 0x00000000013ec800
RBP=0x00007ffc749fa810 is pointing into the stack for thread: 0x00000000013ec800
RSI=0x0000000000000000 is an unknown value
RDI=0x00520074006100e7 is an unknown value
R8 =0x00007ffc749fa790 is pointing into the stack for thread: 0x00000000013ec800
R9 =0x00007ffc749fa798 is pointing into the stack for thread: 0x00000000013ec800
R10=0x000000000000049b is an unknown value
R11=0x00007f807e8a3a10: _ZN5gloox12GnuTLSClient16verifyAgainstCAsEP19gnutls_x509_crt_intPS2_i+0 in /usr/lib/libgloox.so.13 at 0x00007f807e7d9000
R12=0x00007ffc749fa794 is pointing into the stack for thread: 0x00000000013ec800
R13=0x00007ffc749fa798 is pointing into the stack for thread: 0x00000000013ec800
R14=0x00007ffc749fa790 is pointing into the stack for thread: 0x00000000013ec800
R15=0x0000000000000000 is an unknown value


Stack: [0x00007ffc748fe000,0x00007ffc749fe000],  sp=0x00007ffc749fa590,  free space=1009k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [libgnutls.so.30+0x96c4d]
C  [libgloox.so.13+0xcaa3c]  gloox::GnuTLSClient::verifyAgainstCAs(gnutls_x509_crt_int*, gnutls_x509_crt_int**, int)+0x2c


---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x00000000014ba800 JavaThread "Service Thread" daemon [_thread_blocked, id=11207, stack(0x00007f80492d4000,0x00007f80493d5000)]
  0x000000000149d000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=11206, stack(0x00007f80493d5000,0x00007f80494d6000)]
  0x000000000149b000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=11205, stack(0x00007f80494d6000,0x00007f80495d7000)]
  0x0000000001499000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=11204, stack(0x00007f80495d7000,0x00007f80496d8000)]
  0x0000000001496800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=11203, stack(0x00007f80496d8000,0x00007f80497d9000)]
  0x000000000145f800 JavaThread "Finalizer" daemon [_thread_blocked, id=11202, stack(0x00007f80497d9000,0x00007f80498da000)]
  0x000000000145d800 JavaThread "Reference Handler" daemon [_thread_blocked, id=11201, stack(0x00007f80498da000,0x00007f80499db000)]
=>0x00000000013ec800 JavaThread "main" [_thread_in_native, id=11194, stack(0x00007ffc748fe000,0x00007ffc749fe000)]

Other Threads:
  0x0000000001458800 VMThread [stack: 0x00007f80499db000,0x00007f8049adc000] [id=11200]
  0x00000000014c7800 WatcherThread [stack: 0x00007f80491d3000,0x00007f80492d4000] [id=11208]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap:
 par new generation   total 7424K, used 4835K [0x00000000fe800000, 0x00000000ff000000, 0x00000000ff000000)
  eden space 6656K,  72% used [0x00000000fe800000, 0x00000000fecb8d68, 0x00000000fee80000)
  from space 768K,   0% used [0x00000000fee80000, 0x00000000fee80000, 0x00000000fef40000)
  to   space 768K,   0% used [0x00000000fef40000, 0x00000000fef40000, 0x00000000ff000000)
 tenured generation   total 16384K, used 0K [0x00000000ff000000, 0x0000000100000000, 0x0000000100000000)
   the space 16384K,   0% used [0x00000000ff000000, 0x00000000ff000000, 0x00000000ff000200, 0x0000000100000000)
 Metaspace       used 3584K, capacity 4604K, committed 4864K, reserved 1056768K
  class space    used 406K, capacity 428K, committed 512K, reserved 1048576K

Card table byte_map: [0x00007f80802e2000,0x00007f80802ef000] byte_map_base: 0x00007f807faee000

Polling page: 0x00007f80802f8000

CodeCache: size=245760Kb used=1405Kb max_used=1405Kb free=244354Kb
 bounds [0x00007f804b19c000, 0x00007f804b40c000, 0x00007f805a19c000]
 total_blobs=416 nmethods=176 adapters=155
 compilation: enabled

Compilation events (10 events):
Event: 1,194 Thread 0x000000000149d000  170       3       java.lang.ClassLoader::checkName (43 bytes)
Event: 1,195 Thread 0x000000000149d000 nmethod 170 0x00007f804b2f91d0 code [0x00007f804b2f9380, 0x00007f804b2f9ad8]
Event: 1,195 Thread 0x000000000149d000  171       3       sun.misc.VM::allowArraySyntax (4 bytes)
Event: 1,195 Thread 0x000000000149d000 nmethod 171 0x00007f804b2f9d50 code [0x00007f804b2f9ea0, 0x00007f804b2f9ff0]
Event: 1,195 Thread 0x000000000149d000  174       1       java.lang.AbstractStringBuilder::length (5 bytes)
Event: 1,195 Thread 0x000000000149d000 nmethod 174 0x00007f804b2fa050 code [0x00007f804b2fa1a0, 0x00007f804b2fa2b0]
Event: 1,509 Thread 0x000000000149d000  175       3       java.io.File::<init> (47 bytes)
Event: 1,511 Thread 0x000000000149d000 nmethod 175 0x00007f804b2fa510 code [0x00007f804b2fa6e0, 0x00007f804b2fadc8]
Event: 1,511 Thread 0x000000000149d000  176       3       java.security.AccessControlContext::getDebug (32 bytes)
Event: 1,512 Thread 0x000000000149d000 nmethod 176 0x00007f804b2fb110 code [0x00007f804b2fb2e0, 0x00007f804b2fb9e8]

GC Heap History (0 events):
No events

Deoptimization events (1 events):
Event: 1,507 Thread 0x00000000013ec800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f804b2e4380 method=java.lang.String.<init>([CII)V @ 18

Internal exceptions (7 events):
Event: 0,257 Thread 0x00000000013ec800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x00000000fe8129e8) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/shar
Event: 0,257 Thread 0x00000000013ec800 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x00000000fe812cd0) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jni.cpp
Event: 0,868 Thread 0x00000000013ec800 Exception <a 'java/io/FileNotFoundException'> (0x00000000fe94bc98) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jni.cpp, line 709]
Event: 0,924 Thread 0x00000000013ec800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000fe980d60) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jvm.cpp, line 1386]
Event: 0,924 Thread 0x00000000013ec800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000fe980f70) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jvm.cpp, line 1386]
Event: 0,925 Thread 0x00000000013ec800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000fe983400) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jvm.cpp, line 1386]
Event: 0,925 Thread 0x00000000013ec800 Exception <a 'java/security/PrivilegedActionException'> (0x00000000fe983610) thrown at [/HUDSON/workspace/8-2-build-linux-amd64/jdk8u60/4407/hotspot/src/share/vm/prims/jvm.cpp, line 1386]

Events (10 events):
Event: 1,156 loading class info/dolezel/fatrat/plugins/util/XmlUtils done
Event: 1,507 Thread 0x00000000013ec800 Uncommon trap: trap_request=0xffffff65 fr.pc=0x00007f804b2e4380
Event: 1,507 Thread 0x00000000013ec800 DEOPT PACKING pc=0x00007f804b2e4380 sp=0x00007ffc749fa100
Event: 1,507 Thread 0x00000000013ec800 DEOPT UNPACKING pc=0x00007f804b1a1229 sp=0x00007ffc749fa0c8 mode 2
Event: 1,507 loading class java/util/ArrayList$SubList
Event: 1,508 loading class java/util/ArrayList$SubList done
Event: 1,508 loading class java/util/ArrayList$SubList$1
Event: 1,508 loading class java/util/ListIterator
Event: 1,509 loading class java/util/ListIterator done
Event: 1,509 loading class java/util/ArrayList$SubList$1 done


Dynamic libraries:
00400000-00748000 r-xp 00000000 08:01 175635                             /usr/bin/fatrat
00947000-00959000 r--p 00347000 08:01 175635                             /usr/bin/fatrat
00959000-0095d000 rw-p 00359000 08:01 175635                             /usr/bin/fatrat
0095d000-0095e000 rw-p 00000000 00:00 0 
012ed000-01aac000 rw-p 00000000 00:00 0                                  [heap]
fe800000-100080000 rw-p 00000000 00:00 0 
100080000-140000000 ---p 00000000 00:00 0 
7f7ff4e53000-7f7ff520f000 rw-s 00000000 00:05 1277957                    /SYSV00000000 (deleted)
7f7ff520f000-7f7ff5213000 r-xp 00000000 08:01 155263                     /usr/lib/libtxc_dxtn.so
7f7ff5213000-7f7ff5412000 ---p 00004000 08:01 155263                     /usr/lib/libtxc_dxtn.so
7f7ff5412000-7f7ff5413000 r--p 00003000 08:01 155263                     /usr/lib/libtxc_dxtn.so
7f7ff5413000-7f7ff5414000 rw-p 00004000 08:01 155263                     /usr/lib/libtxc_dxtn.so
7f7ff5414000-7f7ff5415000 ---p 00000000 00:00 0 
7f7ff5415000-7f7ff5c15000 rw-p 00000000 00:00 0                          [stack:11214]
7f7ff5c15000-7f7ff5c74000 r-xp 00000000 08:01 134644                     /usr/lib/libncursesw.so.5.9
7f7ff5c74000-7f7ff5e74000 ---p 0005f000 08:01 134644                     /usr/lib/libncursesw.so.5.9
7f7ff5e74000-7f7ff5e78000 r--p 0005f000 08:01 134644                     /usr/lib/libncursesw.so.5.9
7f7ff5e78000-7f7ff5e7a000 rw-p 00063000 08:01 134644                     /usr/lib/libncursesw.so.5.9
7f7ff5e7a000-7f7ff7bbd000 r-xp 00000000 08:01 163419                     /usr/lib/libLLVM-3.6.so
7f7ff7bbd000-7f7ff7dbc000 ---p 01d43000 08:01 163419                     /usr/lib/libLLVM-3.6.so
7f7ff7dbc000-7f7ff7fd1000 r--p 01d42000 08:01 163419                     /usr/lib/libLLVM-3.6.so
7f7ff7fd1000-7f7ff7feb000 rw-p 01f57000 08:01 163419                     /usr/lib/libLLVM-3.6.so
7f7ff7feb000-7f7ff8000000 rw-p 00000000 00:00 0 
7f7ff8000000-7f7ff806a000 rw-p 00000000 00:00 0 
7f7ff806a000-7f7ffc000000 ---p 00000000 00:00 0 
7f7ffc000000-7f7ffc021000 rw-p 00000000 00:00 0 
7f7ffc021000-7f8000000000 ---p 00000000 00:00 0 
7f80000b0000-7f80000e6000 r-xp 00000000 08:01 155291                     /usr/lib/libedit.so.0.0.53
7f80000e6000-7f80002e6000 ---p 00036000 08:01 155291                     /usr/lib/libedit.so.0.0.53
7f80002e6000-7f80002e8000 r--p 00036000 08:01 155291                     /usr/lib/libedit.so.0.0.53
7f80002e8000-7f80002e9000 rw-p 00038000 08:01 155291                     /usr/lib/libedit.so.0.0.53
7f80002e9000-7f80002ed000 rw-p 00000000 00:00 0 
7f80002ed000-7f8000302000 r-xp 00000000 08:01 155159                     /usr/lib/libelf-0.163.so
7f8000302000-7f8000501000 ---p 00015000 08:01 155159                     /usr/lib/libelf-0.163.so
7f8000501000-7f8000502000 r--p 00014000 08:01 155159                     /usr/lib/libelf-0.163.so
7f8000502000-7f8000503000 rw-p 00015000 08:01 155159                     /usr/lib/libelf-0.163.so
7f8000503000-7f800050e000 r-xp 00000000 08:01 186252                     /usr/lib/libdrm_radeon.so.1.0.1
7f800050e000-7f800070d000 ---p 0000b000 08:01 186252                     /usr/lib/libdrm_radeon.so.1.0.1
7f800070d000-7f800070e000 r--p 0000a000 08:01 186252                     /usr/lib/libdrm_radeon.so.1.0.1
7f800070e000-7f800070f000 rw-p 0000b000 08:01 186252                     /usr/lib/libdrm_radeon.so.1.0.1
7f800070f000-7f8000715000 r-xp 00000000 08:01 177267                     /usr/lib/libdrm_nouveau.so.2.0.0
7f8000715000-7f8000914000 ---p 00006000 08:01 177267                     /usr/lib/libdrm_nouveau.so.2.0.0
7f8000914000-7f8000915000 r--p 00005000 08:01 177267                     /usr/lib/libdrm_nouveau.so.2.0.0
7f8000915000-7f8000916000 rw-p 00006000 08:01 177267                     /usr/lib/libdrm_nouveau.so.2.0.0
7f8000953000-7f80010ee000 r-xp 00000000 08:01 397051                     /usr/lib/xorg/modules/dri/radeonsi_dri.so
7f80010ee000-7f80012ee000 ---p 0079b000 08:01 397051                     /usr/lib/xorg/modules/dri/radeonsi_dri.so
7f80012ee000-7f8001344000 r--p 0079b000 08:01 397051                     /usr/lib/xorg/modules/dri/radeonsi_dri.so
7f8001344000-7f800134d000 rw-p 007f1000 08:01 397051                     /usr/lib/xorg/modules/dri/radeonsi_dri.so
7f800134d000-7f8001532000 rw-p 00000000 00:00 0 
7f8001532000-7f8001571000 r-xp 00000000 08:01 662125                     /usr/lib/qt/plugins/bearer/libqnmbearer.so
7f8001571000-7f8001770000 ---p 0003f000 08:01 662125                     /usr/lib/qt/plugins/bearer/libqnmbearer.so
7f8001770000-7f8001772000 r--p 0003e000 08:01 662125                     /usr/lib/qt/plugins/bearer/libqnmbearer.so
7f8001772000-7f8001773000 rw-p 00040000 08:01 662125                     /usr/lib/qt/plugins/bearer/libqnmbearer.so
7f8001773000-7f8001780000 r-xp 00000000 08:01 662123                     /usr/lib/qt/plugins/bearer/libqgenericbearer.so
7f8001780000-7f8001980000 ---p 0000d000 08:01 662123                     /usr/lib/qt/plugins/bearer/libqgenericbearer.so
7f8001980000-7f8001981000 r--p 0000d000 08:01 662123                     /usr/lib/qt/plugins/bearer/libqgenericbearer.so
7f8001981000-7f8001982000 rw-p 0000e000 08:01 662123                     /usr/lib/qt/plugins/bearer/libqgenericbearer.so
7f8001982000-7f80019b6000 r-xp 00000000 08:01 662124                     /usr/lib/qt/plugins/bearer/libqconnmanbearer.so
7f80019b6000-7f8001bb6000 ---p 00034000 08:01 662124                     /usr/lib/qt/plugins/bearer/libqconnmanbearer.so
7f8001bb6000-7f8001bb7000 r--p 00034000 08:01 662124                     /usr/lib/qt/plugins/bearer/libqconnmanbearer.so
7f8001bb7000-7f8001bb8000 rw-p 00035000 08:01 662124                     /usr/lib/qt/plugins/bearer/libqconnmanbearer.so
7f8001bb8000-7f8001bb9000 ---p 00000000 00:00 0 
7f8001bb9000-7f80023b9000 rw-p 00000000 00:00 0                          [stack:11213]
7f80023b9000-7f800240f000 r--p 00000000 08:01 667550                     /usr/share/fonts/TTF/LiberationSans-Regular.ttf
7f800240f000-7f8002413000 r-xp 00000000 08:01 668934                     /usr/lib/qt/plugins/imageformats/libqwebp.so
7f8002413000-7f8002613000 ---p 00004000 08:01 668934                     /usr/lib/qt/plugins/imageformats/libqwebp.so
7f8002613000-7f8002614000 r--p 00004000 08:01 668934                     /usr/lib/qt/plugins/imageformats/libqwebp.so
7f8002614000-7f8002615000 rw-p 00005000 08:01 668934                     /usr/lib/qt/plugins/imageformats/libqwebp.so
7f8002615000-7f8002619000 r-xp 00000000 08:01 668932                     /usr/lib/qt/plugins/imageformats/libqwbmp.so
7f8002619000-7f8002819000 ---p 00004000 08:01 668932                     /usr/lib/qt/plugins/imageformats/libqwbmp.so
7f8002819000-7f800281a000 r--p 00004000 08:01 668932                     /usr/lib/qt/plugins/imageformats/libqwbmp.so
7f800281a000-7f800281b000 rw-p 00005000 08:01 668932                     /usr/lib/qt/plugins/imageformats/libqwbmp.so
7f800281b000-7f8002897000 r-xp 00000000 08:01 159018                     /usr/lib/libtiff.so.5.2.2
7f8002897000-7f8002a97000 ---p 0007c000 08:01 159018                     /usr/lib/libtiff.so.5.2.2
7f8002a97000-7f8002a98000 r--p 0007c000 08:01 159018                     /usr/lib/libtiff.so.5.2.2
7f8002a98000-7f8002a9e000 rw-p 0007d000 08:01 159018                     /usr/lib/libtiff.so.5.2.2
7f8002a9e000-7f8002a9f000 rw-p 00000000 00:00 0 
7f8002a9f000-7f8002aa6000 r-xp 00000000 08:01 668933                     /usr/lib/qt/plugins/imageformats/libqtiff.so
7f8002aa6000-7f8002ca5000 ---p 00007000 08:01 668933                     /usr/lib/qt/plugins/imageformats/libqtiff.so
7f8002ca5000-7f8002ca6000 r--p 00006000 08:01 668933                     /usr/lib/qt/plugins/imageformats/libqtiff.so
7f8002ca6000-7f8002ca7000 rw-p 00007000 08:01 668933                     /usr/lib/qt/plugins/imageformats/libqtiff.so
7f8002ca7000-7f8002cac000 r-xp 00000000 08:01 662594                     /usr/lib/qt/plugins/imageformats/libqsvg.so
7f8002cac000-7f8002eab000 ---p 00005000 08:01 662594                     /usr/lib/qt/plugins/imageformats/libqsvg.so
7f8002eab000-7f8002eac000 r--p 00004000 08:01 662594                     /usr/lib/qt/plugins/imageformats/libqsvg.so
7f8002eac000-7f8002ead000 rw-p 00005000 08:01 662594                     /usr/lib/qt/plugins/imageformats/libqsvg.so
7f8002ead000-7f8002f03000 r-xp 00000000 08:01 159061                     /usr/lib/liblcms2.so.2.0.7
7f8002f03000-7f8003102000 ---p 00056000 08:01 159061                     /usr/lib/liblcms2.so.2.0.7
7f8003102000-7f8003103000 r--p 00055000 08:01 159061                     /usr/lib/liblcms2.so.2.0.7
7f8003103000-7f8003108000 rw-p 00056000 08:01 159061                     /usr/lib/liblcms2.so.2.0.7
7f8003108000-7f8003175000 r-xp 00000000 08:01 159072                     /usr/lib/libmng.so.2.0.2
7f8003175000-7f8003375000 ---p 0006d000 08:01 159072                     /usr/lib/libmng.so.2.0.2
7f8003375000-7f8003378000 r--p 0006d000 08:01 159072                     /usr/lib/libmng.so.2.0.2
7f8003378000-7f800337a000 rw-p 00070000 08:01 159072                     /usr/lib/libmng.so.2.0.2
7f800337a000-7f8003380000 r-xp 00000000 08:01 668929                     /usr/lib/qt/plugins/imageformats/libqmng.so
7f8003380000-7f800357f000 ---p 00006000 08:01 668929                     /usr/lib/qt/plugins/imageformats/libqmng.so
7f800357f000-7f8003580000 r--p 00005000 08:01 668929                     /usr/lib/qt/plugins/imageformats/libqmng.so
7f8003580000-7f8003581000 rw-p 00006000 08:01 668929                     /usr/lib/qt/plugins/imageformats/libqmng.so
7f8003581000-7f800358b000 r-xp 00000000 08:01 662126                     /usr/lib/qt/plugins/imageformats/libqjpeg.so
7f800358b000-7f800378a000 ---p 0000a000 08:01 662126                     /usr/lib/qt/plugins/imageformats/libqjpeg.so
7f800378a000-7f800378b000 r--p 00009000 08:01 662126                     /usr/lib/qt/plugins/imageformats/libqjpeg.so
7f800378b000-7f800378c000 rw-p 0000a000 08:01 662126                     /usr/lib/qt/plugins/imageformats/libqjpeg.so
7f800378c000-7f80037db000 r-xp 00000000 08:01 177115                     /usr/lib/libjasper.so.1.0.0
7f80037db000-7f80039da000 ---p 0004f000 08:01 177115                     /usr/lib/libjasper.so.1.0.0
7f80039da000-7f80039db000 r--p 0004e000 08:01 177115                     /usr/lib/libjasper.so.1.0.0
7f80039db000-7f80039df000 rw-p 0004f000 08:01 177115                     /usr/lib/libjasper.so.1.0.0
7f80039df000-7f80039e6000 rw-p 00000000 00:00 0 
7f80039e6000-7f80039ee000 r-xp 00000000 08:01 668930                     /usr/lib/qt/plugins/imageformats/libqjp2.so
7f80039ee000-7f8003bed000 ---p 00008000 08:01 668930                     /usr/lib/qt/plugins/imageformats/libqjp2.so
7f8003bed000-7f8003bee000 r--p 00007000 08:01 668930                     /usr/lib/qt/plugins/imageformats/libqjp2.so
7f8003bee000-7f8003bef000 rw-p 00008000 08:01 668930                     /usr/lib/qt/plugins/imageformats/libqjp2.so
7f8003bef000-7f8003bf5000 r-xp 00000000 08:01 662128                     /usr/lib/qt/plugins/imageformats/libqico.so
7f8003bf5000-7f8003df4000 ---p 00006000 08:01 662128                     /usr/lib/qt/plugins/imageformats/libqico.so
7f8003df4000-7f8003df5000 r--p 00005000 08:01 662128                     /usr/lib/qt/plugins/imageformats/libqico.so
7f8003df5000-7f8003df6000 rw-p 00006000 08:01 662128                     /usr/lib/qt/plugins/imageformats/libqico.so
7f8003df6000-7f8003dff000 r-xp 00000000 08:01 667128                     /usr/lib/qt/plugins/imageformats/libqicns.so
7f8003dff000-7f8003ffe000 ---p 00009000 08:01 667128                     /usr/lib/qt/plugins/imageformats/libqicns.so
7f8003ffe000-7f8003fff000 r--p 00008000 08:01 667128                     /usr/lib/qt/plugins/imageformats/libqicns.so
7f8003fff000-7f8004000000 rw-p 00009000 08:01 667128                     /usr/lib/qt/plugins/imageformats/libqicns.so
7f8004000000-7f8004021000 rw-p 00000000 00:00 0 
7f8004021000-7f8008000000 ---p 00000000 00:00 0 
7f8008030000-7f8008036000 r-xp 00000000 08:01 662127                     /usr/lib/qt/plugins/imageformats/libqgif.so
7f8008036000-7f8008235000 ---p 00006000 08:01 662127                     /usr/lib/qt/plugins/imageformats/libqgif.so
7f8008235000-7f8008236000 r--p 00005000 08:01 662127                     /usr/lib/qt/plugins/imageformats/libqgif.so
7f8008236000-7f8008237000 rw-p 00006000 08:01 662127                     /usr/lib/qt/plugins/imageformats/libqgif.so
7f8008237000-7f8008242000 r-xp 00000000 08:01 668928                     /usr/lib/qt/plugins/imageformats/libqdds.so
7f8008242000-7f8008441000 ---p 0000b000 08:01 668928                     /usr/lib/qt/plugins/imageformats/libqdds.so
7f8008441000-7f8008442000 r--p 0000a000 08:01 668928                     /usr/lib/qt/plugins/imageformats/libqdds.so
7f8008442000-7f8008443000 rw-p 0000b000 08:01 668928                     /usr/lib/qt/plugins/imageformats/libqdds.so
7f8008443000-7f8008453000 r-xp 00000000 08:01 667949                     /usr/lib/qt/plugins/imageformats/kimg_xcf.so
7f8008453000-7f8008653000 ---p 00010000 08:01 667949                     /usr/lib/qt/plugins/imageformats/kimg_xcf.so
7f8008653000-7f8008654000 r--p 00010000 08:01 667949                     /usr/lib/qt/plugins/imageformats/kimg_xcf.so
7f8008654000-7f8008655000 rw-p 00011000 08:01 667949                     /usr/lib/qt/plugins/imageformats/kimg_xcf.so
7f8008655000-7f8008659000 rw-p 00000000 00:00 0 
7f8008659000-7f800865e000 r-xp 00000000 08:01 667920                     /usr/lib/qt/plugins/imageformats/kimg_tga.so
7f800865e000-7f800885d000 ---p 00005000 08:01 667920                     /usr/lib/qt/plugins/imageformats/kimg_tga.so
7f800885d000-7f800885e000 r--p 00004000 08:01 667920                     /usr/lib/qt/plugins/imageformats/kimg_tga.so
7f800885e000-7f800885f000 rw-p 00005000 08:01 667920                     /usr/lib/qt/plugins/imageformats/kimg_tga.so
7f800885f000-7f8008868000 r-xp 00000000 08:01 667918                     /usr/lib/qt/plugins/imageformats/kimg_rgb.so
7f8008868000-7f8008a67000 ---p 00009000 08:01 667918                     /usr/lib/qt/plugins/imageformats/kimg_rgb.so
7f8008a67000-7f8008a68000 r--p 00008000 08:01 667918                     /usr/lib/qt/plugins/imageformats/kimg_rgb.so
7f8008a68000-7f8008a69000 rw-p 00009000 08:01 667918                     /usr/lib/qt/plugins/imageformats/kimg_rgb.so
7f8008a69000-7f8008a6e000 r-xp 00000000 08:01 667916                     /usr/lib/qt/plugins/imageformats/kimg_ras.so
7f8008a6e000-7f8008c6d000 ---p 00005000 08:01 667916                     /usr/lib/qt/plugins/imageformats/kimg_ras.so
7f8008c6d000-7f8008c6e000 r--p 00004000 08:01 667916                     /usr/lib/qt/plugins/imageformats/kimg_ras.so
7f8008c6e000-7f8008c6f000 rw-p 00005000 08:01 667916                     /usr/lib/qt/plugins/imageformats/kimg_ras.so
7f8008c6f000-7f8008c73000 r-xp 00000000 08:01 667898                     /usr/lib/qt/plugins/imageformats/kimg_psd.so
7f8008c73000-7f8008e72000 ---p 00004000 08:01 667898                     /usr/lib/qt/plugins/imageformats/kimg_psd.so
7f8008e72000-7f8008e73000 r--p 00003000 08:01 667898                     /usr/lib/qt/plugins/imageformats/kimg_psd.so
7f8008e73000-7f8008e74000 rw-p 00004000 08:01 667898                     /usr/lib/qt/plugins/imageformats/kimg_psd.so
7f8008e74000-7f8008e7c000 r-xp 00000000 08:01 667842                     /usr/lib/qt/plugins/imageformats/kimg_pic.so
7f8008e7c000-7f800907b000 ---p 00008000 08:01 667842                     /usr/lib/qt/plugins/imageformats/kimg_pic.so
7f800907b000-7f800907c000 r--p 00007000 08:01 667842                     /usr/lib/qt/plugins/imageformats/kimg_pic.so
7f800907c000-7f800907d000 rw-p 00008000 08:01 667842                     /usr/lib/qt/plugins/imageformats/kimg_pic.so
7f800907d000-7f8009083000 r-xp 00000000 08:01 667755                     /usr/lib/qt/plugins/imageformats/kimg_pcx.so
7f8009083000-7f8009282000 ---p 00006000 08:01 667755                     /usr/lib/qt/plugins/imageformats/kimg_pcx.so
7f8009282000-7f8009283000 r--p 00005000 08:01 667755                     /usr/lib/qt/plugins/imageformats/kimg_pcx.so
7f8009283000-7f8009284000 rw-p 00006000 08:01 667755                     /usr/lib/qt/plugins/imageformats/kimg_pcx.so
7f8009284000-7f800928a000 r-xp 00000000 08:01 156928                     /usr/lib/libIlmThread-2_2.so.12.0.0
7f800928a000-7f8009489000 ---p 00006000 08:01 156928                     /usr/lib/libIlmThread-2_2.so.12.0.0
7f8009489000-7f800948a000 r--p 00005000 08:01 156928                     /usr/lib/libIlmThread-2_2.so.12.0.0
7f800948a000-7f800948b000 rw-p 00006000 08:01 156928                     /usr/lib/libIlmThread-2_2.so.12.0.0
7f800948b000-7f800949c000 r-xp 00000000 08:01 156927                     /usr/lib/libImath-2_2.so.12.0.0
7f800949c000-7f800969b000 ---p 00011000 08:01 156927                     /usr/lib/libImath-2_2.so.12.0.0
7f800969b000-7f800969c000 r--p 00010000 08:01 156927                     /usr/lib/libImath-2_2.so.12.0.0
7f800969c000-7f800969d000 rw-p 00011000 08:01 156927                     /usr/lib/libImath-2_2.so.12.0.0
7f800969d000-7f80096b9000 r-xp 00000000 08:01 156925                     /usr/lib/libIex-2_2.so.12.0.0
7f80096b9000-7f80098b9000 ---p 0001c000 08:01 156925                     /usr/lib/libIex-2_2.so.12.0.0
7f80098b9000-7f80098bc000 r--p 0001c000 08:01 156925                     /usr/lib/libIex-2_2.so.12.0.0
7f80098bc000-7f80098bd000 rw-p 0001f000 08:01 156925                     /usr/lib/libIex-2_2.so.12.0.0
7f80098bd000-7f80098ff000 r-xp 00000000 08:01 156924                     /usr/lib/libHalf.so.12.0.0
7f80098ff000-7f8009afe000 ---p 00042000 08:01 156924                     /usr/lib/libHalf.so.12.0.0
7f8009afe000-7f8009aff000 r--p 00041000 08:01 156924                     /usr/lib/libHalf.so.12.0.0
7f8009aff000-7f8009b00000 rw-p 00042000 08:01 156924                     /usr/lib/libHalf.so.12.0.0
7f8009b00000-7f8009cd1000 r-xp 00000000 08:01 157940                     /usr/lib/libIlmImf-2_2.so.22.0.0
7f8009cd1000-7f8009ed1000 ---p 001d1000 08:01 157940                     /usr/lib/libIlmImf-2_2.so.22.0.0
7f8009ed1000-7f8009ed4000 r--p 001d1000 08:01 157940                     /usr/lib/libIlmImf-2_2.so.22.0.0
7f8009ed4000-7f8009fd7000 rw-p 001d4000 08:01 157940                     /usr/lib/libIlmImf-2_2.so.22.0.0
7f8009fd7000-7f8009fdc000 r-xp 00000000 08:01 667754                     /usr/lib/qt/plugins/imageformats/kimg_exr.so
7f8009fdc000-7f800a1db000 ---p 00005000 08:01 667754                     /usr/lib/qt/plugins/imageformats/kimg_exr.so
7f800a1db000-7f800a1dc000 r--p 00004000 08:01 667754                     /usr/lib/qt/plugins/imageformats/kimg_exr.so
7f800a1dc000-7f800a1dd000 rw-p 00005000 08:01 667754                     /usr/lib/qt/plugins/imageformats/kimg_exr.so
7f800a1dd000-7f800a1e7000 r-xp 00000000 08:01 667752                     /usr/lib/qt/plugins/imageformats/kimg_eps.so
7f800a1e7000-7f800a3e6000 ---p 0000a000 08:01 667752                     /usr/lib/qt/plugins/imageformats/kimg_eps.so
7f800a3e6000-7f800a3e7000 r--p 00009000 08:01 667752                     /usr/lib/qt/plugins/imageformats/kimg_eps.so
7f800a3e7000-7f800a3e8000 rw-p 0000a000 08:01 667752                     /usr/lib/qt/plugins/imageformats/kimg_eps.so
7f800a3e8000-7f800a3ed000 r-xp 00000000 08:01 133742                     /usr/lib/libnss_dns-2.22.so
7f800a3ed000-7f800a5ec000 ---p 00005000 08:01 133742                     /usr/lib/libnss_dns-2.22.so
7f800a5ec000-7f800a5ed000 r--p 00004000 08:01 133742                     /usr/lib/libnss_dns-2.22.so
7f800a5ed000-7f800a5ee000 rw-p 00005000 08:01 133742                     /usr/lib/libnss_dns-2.22.so
7f800a5ee000-7f800a5ef000 ---p 00000000 00:00 0 
7f800a5ef000-7f800adef000 rw-p 00000000 00:00 0                          [stack:11212]
7f800adef000-7f800b7ff000 rw-s 00000000 08:03 3670248                    /home/mouse/.cache/icon-cache.kcache
7f800b7ff000-7f800b800000 ---p 00000000 00:00 0 
7f800b800000-7f800c000000 rw-p 00000000 00:00 0                          [stack:11211]
7f800c000000-7f800c021000 rw-p 00000000 00:00 0 
7f800c021000-7f8010000000 ---p 00000000 00:00 0 
7f8010000000-7f8010052000 rw-p 00000000 00:00 0 
7f8010052000-7f8014000000 ---p 00000000 00:00 0 
7f8014000000-7f8014021000 rw-p 00000000 00:00 0 
7f8014021000-7f8018000000 ---p 00000000 00:00 0 
7f8018000000-7f8018021000 rw-p 00000000 00:00 0 
7f8018021000-7f801c000000 ---p 00000000 00:00 0 
7f801c000000-7f801c058000 rw-p 00000000 00:00 0 
7f801c058000-7f8020000000 ---p 00000000 00:00 0 
7f8020000000-7f8020146000 rw-p 00000000 00:00 0 
7f8020146000-7f8024000000 ---p 00000000 00:00 0 
7f8024000000-7f8024021000 rw-p 00000000 00:00 0 
7f8024021000-7f8028000000 ---p 00000000 00:00 0 
7f8028000000-7f802805c000 rw-p 00000000 00:00 0 
7f802805c000-7f802c000000 ---p 00000000 00:00 0 
7f802c000000-7f802c021000 rw-p 00000000 00:00 0 
7f802c021000-7f8030000000 ---p 00000000 00:00 0 
7f8030000000-7f8030021000 rw-p 00000000 00:00 0 
7f8030021000-7f8034000000 ---p 00000000 00:00 0 
7f8034000000-7f8034021000 rw-p 00000000 00:00 0 
7f8034021000-7f8038000000 ---p 00000000 00:00 0 
7f8038000000-7f8038021000 rw-p 00000000 00:00 0 
7f8038021000-7f803c000000 ---p 00000000 00:00 0 
7f803c000000-7f803c021000 rw-p 00000000 00:00 0 
7f803c021000-7f8040000000 ---p 00000000 00:00 0 
7f8040000000-7f8040021000 rw-p 00000000 00:00 0 
7f8040021000-7f8044000000 ---p 00000000 00:00 0 
7f8044000000-7f8044021000 rw-p 00000000 00:00 0 
7f8044021000-7f8048000000 ---p 00000000 00:00 0 
7f804802e000-7f8048085000 r--p 00000000 08:01 667558                     /usr/share/fonts/TTF/LiberationSans-Bold.ttf
7f8048085000-7f804808f000 r--s 00000000 08:01 2360192                    /var/cache/fontconfig/f3ec410d4c616b3bcbbb155394e2c853-le64.cache-4
7f804808f000-7f80480a8000 r--s 00000000 08:01 2359540                    /var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le64.cache-4
7f80480a8000-7f80480b2000 r--s 00000000 08:01 2359550                    /var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-4
7f80480b2000-7f80480bb000 r--s 00000000 08:01 2359626                    /var/cache/fontconfig/f349e9996a5320f6dd491cedd2b1f964-le64.cache-4
7f80480bb000-7f804812e000 r--s 00000000 08:01 2359625                    /var/cache/fontconfig/17090aa38d5c6f09fb8c5c354938f1d7-le64.cache-4
7f804812e000-7f80481a1000 r--s 00000000 08:01 2359558                    /var/cache/fontconfig/df311e82a1a24c41a75c2c930223552e-le64.cache-4
7f80481a1000-7f80481a2000 ---p 00000000 00:00 0 
7f80481a2000-7f80489a2000 rw-p 00000000 00:00 0                          [stack:11210]
7f80489a2000-7f80489a3000 ---p 00000000 00:00 0 
7f80489a3000-7f80491a3000 rw-p 00000000 00:00 0                          [stack:11209]
7f80491a3000-7f80491d3000 r--p 00000000 08:01 133686                     /usr/share/locale/ru/LC_MESSAGES/libc.mo
7f80491d3000-7f80491d4000 ---p 00000000 00:00 0 
7f80491d4000-7f80492d4000 rw-p 00000000 00:00 0                          [stack:11208]
7f80492d4000-7f80492d7000 ---p 00000000 00:00 0 
7f80492d7000-7f80493d5000 rw-p 00000000 00:00 0                          [stack:11207]
7f80493d5000-7f80493d8000 ---p 00000000 00:00 0 
7f80493d8000-7f80494d6000 rw-p 00000000 00:00 0                          [stack:11206]
7f80494d6000-7f80494d9000 ---p 00000000 00:00 0 
7f80494d9000-7f80495d7000 rw-p 00000000 00:00 0                          [stack:11205]
7f80495d7000-7f80495da000 ---p 00000000 00:00 0 
7f80495da000-7f80496d8000 rw-p 00000000 00:00 0                          [stack:11204]
7f80496d8000-7f80496db000 ---p 00000000 00:00 0 
7f80496db000-7f80497d9000 rw-p 00000000 00:00 0                          [stack:11203]
7f80497d9000-7f80497dc000 ---p 00000000 00:00 0 
7f80497dc000-7f80498da000 rw-p 00000000 00:00 0                          [stack:11202]
7f80498da000-7f80498dd000 ---p 00000000 00:00 0 
7f80498dd000-7f80499db000 rw-p 00000000 00:00 0                          [stack:11201]
7f80499db000-7f80499dc000 ---p 00000000 00:00 0 
7f80499dc000-7f8049b2b000 rw-p 00000000 00:00 0                          [stack:11200]
7f8049b2b000-7f8049d03000 r--s 03d17000 08:01 3017313                    /usr/lib/jvm/java-8-jdk/jre/lib/rt.jar
7f8049d03000-7f804a214000 rw-p 00000000 00:00 0 
7f804a214000-7f804a5d4000 ---p 00000000 00:00 0 
7f804a5d4000-7f804a9d8000 rw-p 00000000 00:00 0 
7f804a9d8000-7f804a9d9000 ---p 00000000 00:00 0 
7f804a9d9000-7f804aad9000 rw-p 00000000 00:00 0                          [stack:11199]
7f804aad9000-7f804aada000 ---p 00000000 00:00 0 
7f804aada000-7f804abda000 rw-p 00000000 00:00 0                          [stack:11198]
7f804abda000-7f804abdb000 ---p 00000000 00:00 0 
7f804abdb000-7f804acdb000 rw-p 00000000 00:00 0                          [stack:11197]
7f804acdb000-7f804acdc000 ---p 00000000 00:00 0 
7f804acdc000-7f804ade6000 rw-p 00000000 00:00 0                          [stack:11196]
7f804ade6000-7f804b19c000 ---p 00000000 00:00 0 
7f804b19c000-7f804b40c000 rwxp 00000000 00:00 0 
7f804b40c000-7f805a19c000 ---p 00000000 00:00 0 
7f805a19c000-7f805a1b6000 r-xp 00000000 08:01 3017415                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libzip.so
7f805a1b6000-7f805a3b6000 ---p 0001a000 08:01 3017415                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libzip.so
7f805a3b6000-7f805a3b7000 rw-p 0001a000 08:01 3017415                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libzip.so
7f805a3b7000-7f805a3c2000 r-xp 00000000 08:01 133803                     /usr/lib/libnss_files-2.22.so
7f805a3c2000-7f805a5c1000 ---p 0000b000 08:01 133803                     /usr/lib/libnss_files-2.22.so
7f805a5c1000-7f805a5c2000 r--p 0000a000 08:01 133803                     /usr/lib/libnss_files-2.22.so
7f805a5c2000-7f805a5c3000 rw-p 0000b000 08:01 133803                     /usr/lib/libnss_files-2.22.so
7f805a5c3000-7f805a5c9000 rw-p 00000000 00:00 0 
7f805a5c9000-7f805a5f3000 r-xp 00000000 08:01 3017435                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libjava.so
7f805a5f3000-7f805a7f3000 ---p 0002a000 08:01 3017435                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libjava.so
7f805a7f3000-7f805a7f5000 rw-p 0002a000 08:01 3017435                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libjava.so
7f805a7f5000-7f805a802000 r-xp 00000000 08:01 3017421                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libverify.so
7f805a802000-7f805aa02000 ---p 0000d000 08:01 3017421                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libverify.so
7f805aa02000-7f805aa04000 rw-p 0000d000 08:01 3017421                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/libverify.so
7f805aa04000-7f805b6c2000 r-xp 00000000 08:01 3150363                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/server/libjvm.so
7f805b6c2000-7f805b8c1000 ---p 00cbe000 08:01 3150363                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/server/libjvm.so
7f805b8c1000-7f805b999000 rw-p 00cbd000 08:01 3150363                    /usr/lib/jvm/java-8-jdk/jre/lib/amd64/server/libjvm.so
7f805b999000-7f805b9de000 rw-p 00000000 00:00 0 
7f805b9de000-7f805b9e7000 r-xp 00000000 08:01 163939                     /usr/lib/libKF5Style.so.5.13.0
7f805b9e7000-7f805bbe6000 ---p 00009000 08:01 163939                     /usr/lib/libKF5Style.so.5.13.0
7f805bbe6000-7f805bbe7000 r--p 00008000 08:01 163939                     /usr/lib/libKF5Style.so.5.13.0
7f805bbe7000-7f805bbe8000 rw-p 00009000 08:01 163939                     /usr/lib/libKF5Style.so.5.13.0
7f805bbe8000-7f805bbfd000 r--s 00153000 08:01 1998723                    /usr/share/fatrat/data/java/libs/js-14.jar
7f805bbfd000-7f805bc25000 rw-p 00000000 00:00 0 
7f805bc25000-7f805bc9a000 r-xp 00000000 08:01 663000                     /usr/lib/qt/plugins/styles/breeze.so
7f805bc9a000-7f805be99000 ---p 00075000 08:01 663000                     /usr/lib/qt/plugins/styles/breeze.so
7f805be99000-7f805be9d000 r--p 00074000 08:01 663000                     /usr/lib/qt/plugins/styles/breeze.so
7f805be9d000-7f805be9e000 rw-p 00078000 08:01 663000                     /usr/lib/qt/plugins/styles/breeze.so
7f805be9e000-7f805bea8000 r-xp 00000000 08:01 662107                     /usr/lib/qt/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
7f805bea8000-7f805c0a7000 ---p 0000a000 08:01 662107                     /usr/lib/qt/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
7f805c0a7000-7f805c0a8000 r--p 00009000 08:01 662107                     /usr/lib/qt/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
7f805c0a8000-7f805c0a9000 rw-p 0000a000 08:01 662107                     /usr/lib/qt/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
7f805c0a9000-7f805c0af000 r-xp 00000000 08:01 162181                     /usr/lib/libogg.so.0.8.2
7f805c0af000-7f805c2ae000 ---p 00006000 08:01 162181                     /usr/lib/libogg.so.0.8.2
7f805c2ae000-7f805c2af000 r--p 00005000 08:01 162181                     /usr/lib/libogg.so.0.8.2
7f805c2af000-7f805c2b0000 rw-p 00006000 08:01 162181                     /usr/lib/libogg.so.0.8.2
7f805c2b0000-7f805c2db000 r-xp 00000000 08:01 163151                     /usr/lib/libvorbis.so.0.4.8
7f805c2db000-7f805c4db000 ---p 0002b000 08:01 163151                     /usr/lib/libvorbis.so.0.4.8
7f805c4db000-7f805c4dc000 r--p 0002b000 08:01 163151                     /usr/lib/libvorbis.so.0.4.8
7f805c4dc000-7f805c4dd000 rw-p 0002c000 08:01 163151                     /usr/lib/libvorbis.so.0.4.8
7f805c4dd000-7f805c56e000 r-xp 00000000 08:01 163148                     /usr/lib/libvorbisenc.so.2.0.11
7f805c56e000-7f805c76d000 ---p 00091000 08:01 163148                     /usr/lib/libvorbisenc.so.2.0.11
7f805c76d000-7f805c78f000 r--p 00090000 08:01 163148                     /usr/lib/libvorbisenc.so.2.0.11
7f805c78f000-7f805c790000 rw-p 000b2000 08:01 163148                     /usr/lib/libvorbisenc.so.2.0.11
7f805c790000-7f805c802000 r-xp 00000000 08:01 163144                     /usr/lib/libFLAC.so.8.3.0
7f805c802000-7f805ca01000 ---p 00072000 08:01 163144                     /usr/lib/libFLAC.so.8.3.0
7f805ca01000-7f805ca02000 r--p 00071000 08:01 163144                     /usr/lib/libFLAC.so.8.3.0
7f805ca02000-7f805ca03000 rw-p 00072000 08:01 163144                     /usr/lib/libFLAC.so.8.3.0
7f805ca03000-7f805ca08000 r-xp 00000000 08:01 163132                     /usr/lib/libasyncns.so.0.3.1
7f805ca08000-7f805cc07000 ---p 00005000 08:01 163132                     /usr/lib/libasyncns.so.0.3.1
7f805cc07000-7f805cc08000 r--p 00004000 08:01 163132                     /usr/lib/libasyncns.so.0.3.1
7f805cc08000-7f805cc09000 rw-p 00005000 08:01 163132                     /usr/lib/libasyncns.so.0.3.1
7f805cc09000-7f805cc6a000 r-xp 00000000 08:01 163183                     /usr/lib/libsndfile.so.1.0.25
7f805cc6a000-7f805ce6a000 ---p 00061000 08:01 163183                     /usr/lib/libsndfile.so.1.0.25
7f805ce6a000-7f805ce6c000 r--p 00061000 08:01 163183                     /usr/lib/libsndfile.so.1.0.25
7f805ce6c000-7f805ce6d000 rw-p 00063000 08:01 163183                     /usr/lib/libsndfile.so.1.0.25
7f805ce6d000-7f805ce71000 rw-p 00000000 00:00 0 
7f805ce71000-7f805ceed000 r-xp 00000000 08:01 921243                     /usr/lib/pulseaudio/libpulsecommon-6.0.so
7f805ceed000-7f805d0ec000 ---p 0007c000 08:01 921243                     /usr/lib/pulseaudio/libpulsecommon-6.0.so
7f805d0ec000-7f805d0ee000 r--p 0007b000 08:01 921243                     /usr/lib/pulseaudio/libpulsecommon-6.0.so
7f805d0ee000-7f805d0f0000 rw-p 0007d000 08:01 921243                     /usr/lib/pulseaudio/libpulsecommon-6.0.so
7f805d0f0000-7f805d0fa000 r-xp 00000000 08:01 163187                     /usr/lib/libjson-c.so.2.0.1
7f805d0fa000-7f805d2f9000 ---p 0000a000 08:01 163187                     /usr/lib/libjson-c.so.2.0.1
7f805d2f9000-7f805d2fa000 r--p 00009000 08:01 163187                     /usr/lib/libjson-c.so.2.0.1
7f805d2fa000-7f805d2fb000 rw-p 0000a000 08:01 163187                     /usr/lib/libjson-c.so.2.0.1
7f805d2fb000-7f805d322000 r-xp 00000000 08:01 158664                     /usr/lib/libKF5SonnetCore.so.5.13.0
7f805d322000-7f805d521000 ---p 00027000 08:01 158664                     /usr/lib/libKF5SonnetCore.so.5.13.0
7f805d521000-7f805d522000 r--p 00026000 08:01 158664                     /usr/lib/libKF5SonnetCore.so.5.13.0
7f805d522000-7f805d523000 rw-p 00027000 08:01 158664                     /usr/lib/libKF5SonnetCore.so.5.13.0
7f805d523000-7f805d545000 r-xp 00000000 08:01 158665                     /usr/lib/libKF5SonnetUi.so.5.13.0
7f805d545000-7f805d744000 ---p 00022000 08:01 158665                     /usr/lib/libKF5SonnetUi.so.5.13.0
7f805d744000-7f805d746000 r--p 00021000 08:01 158665                     /usr/lib/libKF5SonnetUi.so.5.13.0
7f805d746000-7f805d747000 rw-p 00023000 08:01 158665                     /usr/lib/libKF5SonnetUi.so.5.13.0
7f805d747000-7f805d74b000 r-xp 00000000 08:01 163204                     /usr/lib/libpulse-mainloop-glib.so.0.0.5
7f805d74b000-7f805d94a000 ---p 00004000 08:01 163204                     /usr/lib/libpulse-mainloop-glib.so.0.0.5
7f805d94a000-7f805d94b000 r--p 00003000 08:01 163204                     /usr/lib/libpulse-mainloop-glib.so.0.0.5
7f805d94b000-7f805d94c000 rw-p 00004000 08:01 163204                     /usr/lib/libpulse-mainloop-glib.so.0.0.5
7f805d94c000-7f805d99b000 r-xp 00000000 08:01 163201                     /usr/lib/libpulse.so.0.18.0
7f805d99b000-7f805db9b000 ---p 0004f000 08:01 163201                     /usr/lib/libpulse.so.0.18.0
7f805db9b000-7f805db9c000 r--p 0004f000 08:01 163201                     /usr/lib/libpulse.so.0.18.0
7f805db9c000-7f805db9d000 rw-p 00050000 08:01 163201                     /usr/lib/libpulse.so.0.18.0
7f805db9d000-7f805dba3000 r-xp 00000000 08:01 157600                     /usr/lib/libfam.so.0.0.0
7f805dba3000-7f805dda2000 ---p 00006000 08:01 157600                     /usr/lib/libfam.so.0.0.0
7f805dda2000-7f805dda3000 r--p 00005000 08:01 157600                     /usr/lib/libfam.so.0.0.0
7f805dda3000-7f805dda4000 rw-p 00006000 08:01 157600                     /usr/lib/libfam.so.0.0.0
7f805dda4000-7f805ddbe000 r-xp 00000000 08:01 181537                     /usr/lib/libKF5GuiAddons.so.5.13.0
7f805ddbe000-7f805dfbe000 ---p 0001a000 08:01 181537                     /usr/lib/libKF5GuiAddons.so.5.13.0
7f805dfbe000-7f805dfbf000 r--p 0001a000 08:01 181537                     /usr/lib/libKF5GuiAddons.so.5.13.0
7f805dfbf000-7f805dfc0000 rw-p 0001b000 08:01 181537                     /usr/lib/libKF5GuiAddons.so.5.13.0
7f805dfc0000-7f805dfd3000 r-xp 00000000 08:01 158221                     /usr/lib/libKF5Auth.so.5.13.0
7f805dfd3000-7f805e1d3000 ---p 00013000 08:01 158221                     /usr/lib/libKF5Auth.so.5.13.0
7f805e1d3000-7f805e1d4000 r--p 00013000 08:01 158221                     /usr/lib/libKF5Auth.so.5.13.0
7f805e1d4000-7f805e1d5000 rw-p 00014000 08:01 158221                     /usr/lib/libKF5Auth.so.5.13.0
7f805e1d5000-7f805e27b000 r-xp 00000000 08:01 142487                     /usr/lib/libKF5Attica.so.5.13.0
7f805e27b000-7f805e47a000 ---p 000a6000 08:01 142487                     /usr/lib/libKF5Attica.so.5.13.0
7f805e47a000-7f805e47e000 r--p 000a5000 08:01 142487                     /usr/lib/libKF5Attica.so.5.13.0
7f805e47e000-7f805e480000 rw-p 000a9000 08:01 142487                     /usr/lib/libKF5Attica.so.5.13.0
7f805e480000-7f805e4a1000 r-xp 00000000 08:01 158017                     /usr/lib/libKF5GlobalAccel.so.5.13.0
7f805e4a1000-7f805e6a1000 ---p 00021000 08:01 158017                     /usr/lib/libKF5GlobalAccel.so.5.13.0
7f805e6a1000-7f805e6a2000 r--p 00021000 08:01 158017                     /usr/lib/libKF5GlobalAccel.so.5.13.0
7f805e6a2000-7f805e6a3000 rw-p 00022000 08:01 158017                     /usr/lib/libKF5GlobalAccel.so.5.13.0
7f805e6a3000-7f805e6e1000 r-xp 00000000 08:01 158715                     /usr/lib/libKF5TextWidgets.so.5.13.0
7f805e6e1000-7f805e8e0000 ---p 0003e000 08:01 158715                     /usr/lib/libKF5TextWidgets.so.5.13.0
7f805e8e0000-7f805e8e3000 r--p 0003d000 08:01 158715                     /usr/lib/libKF5TextWidgets.so.5.13.0
7f805e8e3000-7f805e8e5000 rw-p 00040000 08:01 158715                     /usr/lib/libKF5TextWidgets.so.5.13.0
7f805e8e5000-7f805e8ed000 r-xp 00000000 08:01 141501                     /usr/lib/libacl.so.1.1.0
7f805e8ed000-7f805eaec000 ---p 00008000 08:01 141501                     /usr/lib/libacl.so.1.1.0
7f805eaec000-7f805eaed000 r--p 00007000 08:01 141501                     /usr/lib/libacl.so.1.1.0
7f805eaed000-7f805eaee000 rw-p 00008000 08:01 141501                     /usr/lib/libacl.so.1.1.0
7f805eaee000-7f805eafd000 r-xp 00000000 08:01 157905                     /usr/lib/libKF5DBusAddons.so.5.13.0
7f805eafd000-7f805ecfd000 ---p 0000f000 08:01 157905                     /usr/lib/libKF5DBusAddons.so.5.13.0
7f805ecfd000-7f805ecfe000 r--p 0000f000 08:01 157905                     /usr/lib/libKF5DBusAddons.so.5.13.0
7f805ecfe000-7f805ecff000 rw-p 00010000 08:01 157905                     /usr/lib/libKF5DBusAddons.so.5.13.0
7f805ecff000-7f805ed8d000 r-xp 00000000 08:01 163720                     /usr/lib/libphonon4qt5.so.4.8.3
7f805ed8d000-7f805ef8c000 ---p 0008e000 08:01 163720                     /usr/lib/libphonon4qt5.so.4.8.3
7f805ef8c000-7f805ef90000 r--p 0008d000 08:01 163720                     /usr/lib/libphonon4qt5.so.4.8.3
7f805ef90000-7f805ef92000 rw-p 00091000 08:01 163720                     /usr/lib/libphonon4qt5.so.4.8.3
7f805ef92000-7f805ef93000 rw-p 00000000 00:00 0 
7f805ef93000-7f805efca000 r-xp 00000000 08:01 163725                     /usr/lib/libdbusmenu-qt5.so.2.6.0
7f805efca000-7f805f1c9000 ---p 00037000 08:01 163725                     /usr/lib/libdbusmenu-qt5.so.2.6.0
7f805f1c9000-7f805f1ca000 r--p 00036000 08:01 163725                     /usr/lib/libdbusmenu-qt5.so.2.6.0
7f805f1ca000-7f805f1cb000 rw-p 00037000 08:01 163725                     /usr/lib/libdbusmenu-qt5.so.2.6.0
7f805f1cb000-7f805f1d0000 r-xp 00000000 08:01 155451                     /usr/lib/libXtst.so.6.1.0
7f805f1d0000-7f805f3cf000 ---p 00005000 08:01 155451                     /usr/lib/libXtst.so.6.1.0
7f805f3cf000-7f805f3d0000 r--p 00004000 08:01 155451                     /usr/lib/libXtst.so.6.1.0
7f805f3d0000-7f805f3d1000 rw-p 00005000 08:01 155451                     /usr/lib/libXtst.so.6.1.0
7f805f3d1000-7f805f41d000 r-xp 00000000 08:01 157846                     /usr/lib/libKF5WindowSystem.so.5.13.0
7f805f41d000-7f805f61d000 ---p 0004c000 08:01 157846                     /usr/lib/libKF5WindowSystem.so.5.13.0
7f805f61d000-7f805f61f000 r--p 0004c000 08:01 157846                     /usr/lib/libKF5WindowSystem.so.5.13.0
7f805f61f000-7f805f620000 rw-p 0004e000 08:01 157846                     /usr/lib/libKF5WindowSystem.so.5.13.0
7f805f620000-7f805f621000 rw-p 00000000 00:00 0 
7f805f621000-7f805f69b000 r-xp 00000000 08:01 177069                     /usr/lib/libKF5Service.so.5.13.0
7f805f69b000-7f805f89a000 ---p 0007a000 08:01 177069                     /usr/lib/libKF5Service.so.5.13.0
7f805f89a000-7f805f89c000 r--p 00079000 08:01 177069                     /usr/lib/libKF5Service.so.5.13.0
7f805f89c000-7f805f89e000 rw-p 0007b000 08:01 177069                     /usr/lib/libKF5Service.so.5.13.0
7f805f89e000-7f805f8dc000 r-xp 00000000 08:01 158284                     /usr/lib/libKF5Codecs.so.5.13.0
7f805f8dc000-7f805fadc000 ---p 0003e000 08:01 158284                     /usr/lib/libKF5Codecs.so.5.13.0
7f805fadc000-7f805fadf000 r--p 0003e000 08:01 158284                     /usr/lib/libKF5Codecs.so.5.13.0
7f805fadf000-7f805fae0000 rw-p 00041000 08:01 158284                     /usr/lib/libKF5Codecs.so.5.13.0
7f805fae0000-7f805fb1d000 r-xp 00000000 08:01 158461                     /usr/lib/libKF5ItemViews.so.5.13.0
7f805fb1d000-7f805fd1c000 ---p 0003d000 08:01 158461                     /usr/lib/libKF5ItemViews.so.5.13.0
7f805fd1c000-7f805fd1e000 r--p 0003c000 08:01 158461                     /usr/lib/libKF5ItemViews.so.5.13.0
7f805fd1e000-7f805fd1f000 rw-p 0003e000 08:01 158461                     /usr/lib/libKF5ItemViews.so.5.13.0
7f805fd1f000-7f805fdf3000 r-xp 00000000 08:01 157504                     /usr/lib/libKF5Solid.so.5.13.0
7f805fdf3000-7f805fff3000 ---p 000d4000 08:01 157504                     /usr/lib/libKF5Solid.so.5.13.0
7f805fff3000-7f805fffe000 r--p 000d4000 08:01 157504                     /usr/lib/libKF5Solid.so.5.13.0
7f805fffe000-7f8060000000 rw-p 000df000 08:01 157504                     /usr/lib/libKF5Solid.so.5.13.0
7f8060000000-7f8060023000 rw-p 00000000 00:00 0 
7f8060023000-7f8064000000 ---p 00000000 00:00 0 
7f8064000000-7f8064001000 rw-p 00000000 00:00 0 
7f8064001000-7f8064008000 r--s 00000000 08:01 2359681                    /var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-4
7f8064008000-7f806400e000 r--s 0003e000 08:01 1998725                    /usr/share/fatrat/data/java/libs/jsoup.jar
7f806400e000-7f806400f000 r--s 00005000 08:01 1998724                    /usr/share/fatrat/data/java/libs/json.jar
7f806400f000-7f8064014000 r--s 00041000 08:01 1998722                    /usr/share/fatrat/data/java/libs/commons-lang.jar
7f8064014000-7f806401d000 rw-p 00000000 00:00 0 
7f806401d000-7f8064064000 r-xp 00000000 08:01 158830                     /usr/lib/libKF5Bookmarks.so.5.13.0
7f8064064000-7f8064264000 ---p 00047000 08:01 158830                     /usr/lib/libKF5Bookmarks.so.5.13.0
7f8064264000-7f8064266000 r--p 00047000 08:01 158830                     /usr/lib/libKF5Bookmarks.so.5.13.0
7f8064266000-7f8064268000 rw-p 00049000 08:01 158830                     /usr/lib/libKF5Bookmarks.so.5.13.0
7f8064268000-7f80642f3000 r-xp 00000000 08:01 157614                     /usr/lib/libKF5CoreAddons.so.5.13.0
7f80642f3000-7f80644f2000 ---p 0008b000 08:01 157614                     /usr/lib/libKF5CoreAddons.so.5.13.0
7f80644f2000-7f80644f4000 r--p 0008a000 08:01 157614                     /usr/lib/libKF5CoreAddons.so.5.13.0
7f80644f4000-7f80644f6000 rw-p 0008c000 08:01 157614                     /usr/lib/libKF5CoreAddons.so.5.13.0
7f80644f6000-7f80644f7000 rw-p 00000000 00:00 0 
7f80644f7000-7f80644fa000 r-xp 00000000 08:01 185106                     /usr/lib/libQt5X11Extras.so.5.5.0
7f80644fa000-7f80646f9000 ---p 00003000 08:01 185106                     /usr/lib/libQt5X11Extras.so.5.5.0
7f80646f9000-7f80646fa000 r--p 00002000 08:01 185106                     /usr/lib/libQt5X11Extras.so.5.5.0
7f80646fa000-7f80646fb000 rw-p 00003000 08:01 185106                     /usr/lib/libQt5X11Extras.so.5.5.0
7f80646fb000-7f806475e000 r-xp 00000000 08:01 157797                     /usr/lib/libKF5ConfigCore.so.5.13.0
7f806475e000-7f806495e000 ---p 00063000 08:01 157797                     /usr/lib/libKF5ConfigCore.so.5.13.0
7f806495e000-7f8064960000 r--p 00063000 08:01 157797                     /usr/lib/libKF5ConfigCore.so.5.13.0
7f8064960000-7f8064961000 rw-p 00065000 08:01 157797                     /usr/lib/libKF5ConfigCore.so.5.13.0
7f8064961000-7f8064aa6000 r-xp 00000000 08:01 157669                     /usr/lib/libKF5WidgetsAddons.so.5.13.0
7f8064aa6000-7f8064ca6000 ---p 00145000 08:01 157669                     /usr/lib/libKF5WidgetsAddons.so.5.13.0
7f8064ca6000-7f8064cb1000 r--p 00145000 08:01 157669                     /usr/lib/libKF5WidgetsAddons.so.5.13.0
7f8064cb1000-7f8064cb6000 rw-p 00150000 08:01 157669                     /usr/lib/libKF5WidgetsAddons.so.5.13.0
7f8064cb6000-7f8064ce7000 r-xp 00000000 08:01 142560                     /usr/lib/libKF5I18n.so.5.13.0
7f8064ce7000-7f8064ee7000 ---p 00031000 08:01 142560                     /usr/lib/libKF5I18n.so.5.13.0
7f8064ee7000-7f8064ee8000 r--p 00031000 08:01 142560                     /usr/lib/libKF5I18n.so.5.13.0
7f8064ee8000-7f8064ee9000 rw-p 00032000 08:01 142560                     /usr/lib/libKF5I18n.so.5.13.0
7f8064ee9000-7f8064f08000 r-xp 00000000 08:01 157798                     /usr/lib/libKF5ConfigGui.so.5.13.0
7f8064f08000-7f8065108000 ---p 0001f000 08:01 157798                     /usr/lib/libKF5ConfigGui.so.5.13.0
7f8065108000-7f8065109000 r--p 0001f000 08:01 157798                     /usr/lib/libKF5ConfigGui.so.5.13.0
7f8065109000-7f806510a000 rw-p 00020000 08:01 157798                     /usr/lib/libKF5ConfigGui.so.5.13.0
7f806510a000-7f806510b000 rw-p 00000000 00:00 0 
7f806510b000-7f806515b000 r-xp 00000000 08:01 158354                     /usr/lib/libKF5ConfigWidgets.so.5.13.0
7f806515b000-7f806535a000 ---p 00050000 08:01 158354                     /usr/lib/libKF5ConfigWidgets.so.5.13.0
7f806535a000-7f806535d000 r--p 0004f000 08:01 158354                     /usr/lib/libKF5ConfigWidgets.so.5.13.0
7f806535d000-7f806535f000 rw-p 00052000 08:01 158354                     /usr/lib/libKF5ConfigWidgets.so.5.13.0
7f806535f000-7f806539d000 r-xp 00000000 08:01 158517                     /usr/lib/libKF5IconThemes.so.5.13.0
7f806539d000-7f806559c000 ---p 0003e000 08:01 158517                     /usr/lib/libKF5IconThemes.so.5.13.0
7f806559c000-7f806559e000 r--p 0003d000 08:01 158517                     /usr/lib/libKF5IconThemes.so.5.13.0
7f806559e000-7f806559f000 rw-p 0003f000 08:01 158517                     /usr/lib/libKF5IconThemes.so.5.13.0
7f806559f000-7f80656a0000 r-xp 00000000 08:01 158775                     /usr/lib/libKF5XmlGui.so.5.13.0
7f80656a0000-7f806589f000 ---p 00101000 08:01 158775                     /usr/lib/libKF5XmlGui.so.5.13.0
7f806589f000-7f80658a8000 r--p 00100000 08:01 158775                     /usr/lib/libKF5XmlGui.so.5.13.0
7f80658a8000-7f80658ab000 rw-p 00109000 08:01 158775                     /usr/lib/libKF5XmlGui.so.5.13.0
7f80658ab000-7f80658e7000 r-xp 00000000 08:01 158067                     /usr/lib/libKF5Completion.so.5.13.0
7f80658e7000-7f8065ae6000 ---p 0003c000 08:01 158067                     /usr/lib/libKF5Completion.so.5.13.0
7f8065ae6000-7f8065ae8000 r--p 0003b000 08:01 158067                     /usr/lib/libKF5Completion.so.5.13.0
7f8065ae8000-7f8065ae9000 rw-p 0003d000 08:01 158067                     /usr/lib/libKF5Completion.so.5.13.0
7f8065ae9000-7f8065b14000 r-xp 00000000 08:01 157730                     /usr/lib/libKF5JobWidgets.so.5.13.0
7f8065b14000-7f8065d13000 ---p 0002b000 08:01 157730                     /usr/lib/libKF5JobWidgets.so.5.13.0
7f8065d13000-7f8065d15000 r--p 0002a000 08:01 157730                     /usr/lib/libKF5JobWidgets.so.5.13.0
7f8065d15000-7f8065d16000 rw-p 0002c000 08:01 157730                     /usr/lib/libKF5JobWidgets.so.5.13.0
7f8065d16000-7f8065e8a000 r-xp 00000000 08:01 163861                     /usr/lib/libKF5KIOCore.so.5.12.0
7f8065e8a000-7f806608a000 ---p 00174000 08:01 163861                     /usr/lib/libKF5KIOCore.so.5.12.0
7f806608a000-7f806608f000 r--p 00174000 08:01 163861                     /usr/lib/libKF5KIOCore.so.5.12.0
7f806608f000-7f8066093000 rw-p 00179000 08:01 163861                     /usr/lib/libKF5KIOCore.so.5.12.0
7f8066093000-7f80660e2000 r-xp 00000000 08:01 163733                     /usr/lib/libKF5Notifications.so.5.13.0
7f80660e2000-7f80662e1000 ---p 0004f000 08:01 163733                     /usr/lib/libKF5Notifications.so.5.13.0
7f80662e1000-7f80662e3000 r--p 0004e000 08:01 163733                     /usr/lib/libKF5Notifications.so.5.13.0
7f80662e3000-7f80662e5000 rw-p 00050000 08:01 163733                     /usr/lib/libKF5Notifications.so.5.13.0
7f80662e5000-7f8066414000 r-xp 00000000 08:01 163865                     /usr/lib/libKF5KIOWidgets.so.5.12.0
7f8066414000-7f8066613000 ---p 0012f000 08:01 163865                     /usr/lib/libKF5KIOWidgets.so.5.12.0
7f8066613000-7f806661a000 r--p 0012e000 08:01 163865                     /usr/lib/libKF5KIOWidgets.so.5.12.0
7f806661a000-7f806661e000 rw-p 00135000 08:01 163865                     /usr/lib/libKF5KIOWidgets.so.5.12.0
7f806661e000-7f80666e3000 r-xp 00000000 08:01 163866                     /usr/lib/libKF5KIOFileWidgets.so.5.12.0
7f80666e3000-7f80668e3000 ---p 000c5000 08:01 163866                     /usr/lib/libKF5KIOFileWidgets.so.5.12.0
7f80668e3000-7f80668e8000 r--p 000c5000 08:01 163866                     /usr/lib/libKF5KIOFileWidgets.so.5.12.0
7f80668e8000-7f80668eb000 rw-p 000ca000 08:01 163866                     /usr/lib/libKF5KIOFileWidgets.so.5.12.0
7f80668eb000-7f806691a000 r-xp 00000000 08:01 663238                     /usr/lib/qt/plugins/platformthemes/KDEPlatformTheme.so
7f806691a000-7f8066b1a000 ---p 0002f000 08:01 663238                     /usr/lib/qt/plugins/platformthemes/KDEPlatformTheme.so
7f8066b1a000-7f8066b1c000 r--p 0002f000 08:01 663238                     /usr/lib/qt/plugins/platformthemes/KDEPlatformTheme.so
7f8066b1c000-7f8066b1d000 rw-p 00031000 08:01 663238                     /usr/lib/qt/plugins/platformthemes/KDEPlatformTheme.so
7f8066b1d000-7f8066b2b000 r-xp 00000000 08:01 1588643                    /usr/lib/qt/plugins/xcbglintegrations/libqxcb-glx-integration.so
7f8066b2b000-7f8066d2b000 ---p 0000e000 08:01 1588643                    /usr/lib/qt/plugins/xcbglintegrations/libqxcb-glx-integration.so
7f8066d2b000-7f8066d2c000 r--p 0000e000 08:01 1588643                    /usr/lib/qt/plugins/xcbglintegrations/libqxcb-glx-integration.so
7f8066d2c000-7f8066d2d000 rw-p 0000f000 08:01 1588643                    /usr/lib/qt/plugins/xcbglintegrations/libqxcb-glx-integration.so
7f8066d2d000-7f8066d37000 r-xp 00000000 08:01 156321                     /usr/lib/libXcursor.so.1.0.2
7f8066d37000-7f8066f36000 ---p 0000a000 08:01 156321                     /usr/lib/libXcursor.so.1.0.2
7f8066f36000-7f8066f37000 r--p 00009000 08:01 156321                     /usr/lib/libXcursor.so.1.0.2
7f8066f37000-7f8066f38000 rw-p 0000a000 08:01 156321                     /usr/lib/libXcursor.so.1.0.2
7f8066f38000-7f8066f39000 ---p 00000000 00:00 0 
7f8066f39000-7f8067739000 rw-p 00000000 00:00 0                          [stack:11195]
7f8067739000-7f806773e000 r-xp 00000000 08:01 155511                     /usr/lib/libxcb-util.so.1.0.0
7f806773e000-7f806793d000 ---p 00005000 08:01 155511                     /usr/lib/libxcb-util.so.1.0.0
7f806793d000-7f806793e000 r--p 00004000 08:01 155511                     /usr/lib/libxcb-util.so.1.0.0
7f806793e000-7f806793f000 rw-p 00005000 08:01 155511                     /usr/lib/libxcb-util.so.1.0.0
7f806793f000-7f8067943000 r-xp 00000000 08:01 137413                     /usr/lib/libuuid.so.1.3.0
7f8067943000-7f8067b42000 ---p 00004000 08:01 137413                     /usr/lib/libuuid.so.1.3.0
7f8067b42000-7f8067b43000 r--p 00003000 08:01 137413                     /usr/lib/libuuid.so.1.3.0
7f8067b43000-7f8067b44000 rw-p 00004000 08:01 137413                     /usr/lib/libuuid.so.1.3.0
7f8067b44000-7f8067b81000 r-xp 00000000 08:01 157033                     /usr/lib/libxkbcommon.so.0.0.0
7f8067b81000-7f8067d81000 ---p 0003d000 08:01 157033                     /usr/lib/libxkbcommon.so.0.0.0
7f8067d81000-7f8067d83000 r--p 0003d000 08:01 157033                     /usr/lib/libxkbcommon.so.0.0.0
7f8067d83000-7f8067d84000 rw-p 0003f000 08:01 157033                     /usr/lib/libxkbcommon.so.0.0.0
7f8067d84000-7f8067dc1000 r-xp 00000000 08:01 155819                     /usr/lib/libfontconfig.so.1.8.0
7f8067dc1000-7f8067fc0000 ---p 0003d000 08:01 155819                     /usr/lib/libfontconfig.so.1.8.0
7f8067fc0000-7f8067fc2000 r--p 0003c000 08:01 155819                     /usr/lib/libfontconfig.so.1.8.0
7f8067fc2000-7f8067fc3000 rw-p 0003e000 08:01 155819                     /usr/lib/libfontconfig.so.1.8.0
7f8067fc3000-7f8067fca000 r-xp 00000000 08:01 157037                     /usr/lib/libxkbcommon-x11.so.0.0.0
7f8067fca000-7f80681c9000 ---p 00007000 08:01 157037                     /usr/lib/libxkbcommon-x11.so.0.0.0
7f80681c9000-7f80681ca000 r--p 00006000 08:01 157037                     /usr/lib/libxkbcommon-x11.so.0.0.0
7f80681ca000-7f80681cb000 rw-p 00007000 08:01 157037                     /usr/lib/libxkbcommon-x11.so.0.0.0
7f80681cb000-7f80681e6000 r-xp 00000000 08:01 154182                     /usr/lib/libxcb-xkb.so.1.0.0
7f80681e6000-7f80683e5000 ---p 0001b000 08:01 154182                     /usr/lib/libxcb-xkb.so.1.0.0
7f80683e5000-7f80683e6000 r--p 0001a000 08:01 154182                     /usr/lib/libxcb-xkb.so.1.0.0
7f80683e6000-7f80683e7000 rw-p 0001b000 08:01 154182                     /usr/lib/libxcb-xkb.so.1.0.0
7f80683e7000-7f80683e9000 r-xp 00000000 08:01 156548                     /usr/lib/libxcb-keysyms.so.1.0.0
7f80683e9000-7f80685e8000 ---p 00002000 08:01 156548                     /usr/lib/libxcb-keysyms.so.1.0.0
7f80685e8000-7f80685e9000 r--p 00001000 08:01 156548                     /usr/lib/libxcb-keysyms.so.1.0.0
7f80685e9000-7f80685ea000 rw-p 00002000 08:01 156548                     /usr/lib/libxcb-keysyms.so.1.0.0
7f80685ea000-7f80685ec000 r-xp 00000000 08:01 154143                     /usr/lib/libxcb-shm.so.0.0.0
7f80685ec000-7f80687ec000 ---p 00002000 08:01 154143                     /usr/lib/libxcb-shm.so.0.0.0
7f80687ec000-7f80687ed000 r--p 00002000 08:01 154143                     /usr/lib/libxcb-shm.so.0.0.0
7f80687ed000-7f80687ee000 rw-p 00003000 08:01 154143                     /usr/lib/libxcb-shm.so.0.0.0
7f80687ee000-7f80687f2000 r-xp 00000000 08:01 156554                     /usr/lib/libxcb-icccm.so.4.0.0
7f80687f2000-7f80689f1000 ---p 00004000 08:01 156554                     /usr/lib/libxcb-icccm.so.4.0.0
7f80689f1000-7f80689f2000 r--p 00003000 08:01 156554                     /usr/lib/libxcb-icccm.so.4.0.0
7f80689f2000-7f80689f3000 rw-p 00004000 08:01 156554                     /usr/lib/libxcb-icccm.so.4.0.0
7f80689f3000-7f80689f7000 r-xp 00000000 08:01 156569                     /usr/lib/libxcb-image.so.0.0.0
7f80689f7000-7f8068bf6000 ---p 00004000 08:01 156569                     /usr/lib/libxcb-image.so.0.0.0
7f8068bf6000-7f8068bf7000 r--p 00003000 08:01 156569                     /usr/lib/libxcb-image.so.0.0.0
7f8068bf7000-7f8068bf8000 rw-p 00004000 08:01 156569                     /usr/lib/libxcb-image.so.0.0.0
7f8068bf8000-7f8068c10000 r-xp 00000000 08:01 155831                     /usr/lib/libICE.so.6.3.0
7f8068c10000-7f8068e0f000 ---p 00018000 08:01 155831                     /usr/lib/libICE.so.6.3.0
7f8068e0f000-7f8068e10000 r--p 00017000 08:01 155831                     /usr/lib/libICE.so.6.3.0
7f8068e10000-7f8068e11000 rw-p 00018000 08:01 155831                     /usr/lib/libICE.so.6.3.0
7f8068e11000-7f8068e15000 rw-p 00000000 00:00 0 
7f8068e15000-7f8068e1c000 r-xp 00000000 08:01 155979                     /usr/lib/libSM.so.6.0.1
7f8068e1c000-7f806901b000 ---p 00007000 08:01 155979                     /usr/lib/libSM.so.6.0.1
7f806901b000-7f806901c000 r--p 00006000 08:01 155979                     /usr/lib/libSM.so.6.0.1
7f806901c000-7f806901d000 rw-p 00007000 08:01 155979                     /usr/lib/libSM.so.6.0.1
7f806901d000-7f806902c000 r-xp 00000000 08:01 155435                     /usr/lib/libXi.so.6.1.0
7f806902c000-7f806922c000 ---p 0000f000 08:01 155435                     /usr/lib/libXi.so.6.1.0
7f806922c000-7f806922d000 r--p 0000f000 08:01 155435                     /usr/lib/libXi.so.6.1.0
7f806922d000-7f806922e000 rw-p 00010000 08:01 155435                     /usr/lib/libXi.so.6.1.0
7f806922e000-7f806930d000 r-xp 00000000 08:01 187461                     /usr/lib/libQt5XcbQpa.so.5.5.0
7f806930d000-7f806950d000 ---p 000df000 08:01 187461                     /usr/lib/libQt5XcbQpa.so.5.5.0
7f806950d000-7f8069511000 r--p 000df000 08:01 187461                     /usr/lib/libQt5XcbQpa.so.5.5.0
7f8069511000-7f8069515000 rw-p 000e3000 08:01 187461                     /usr/lib/libQt5XcbQpa.so.5.5.0
7f8069515000-7f8069517000 r-xp 00000000 08:01 662111                     /usr/lib/qt/plugins/platforms/libqxcb.so
7f8069517000-7f8069716000 ---p 00002000 08:01 662111                     /usr/lib/qt/plugins/platforms/libqxcb.so
7f8069716000-7f8069717000 r--p 00001000 08:01 662111                     /usr/lib/qt/plugins/platforms/libqxcb.so
7f8069717000-7f8069718000 rw-p 00002000 08:01 662111                     /usr/lib/qt/plugins/platforms/libqxcb.so
7f8069718000-7f80699d7000 r--p 00000000 08:01 170053                     /usr/lib/locale/locale-archive
7f80699d7000-7f80699db000 r-xp 00000000 08:01 141472                     /usr/lib/libattr.so.1.1.0
7f80699db000-7f8069bda000 ---p 00004000 08:01 141472                     /usr/lib/libattr.so.1.1.0
7f8069bda000-7f8069bdb000 r--p 00003000 08:01 141472                     /usr/lib/libattr.so.1.1.0
7f8069bdb000-7f8069bdc000 rw-p 00004000 08:01 141472                     /usr/lib/libattr.so.1.1.0
7f8069bdc000-7f8069be1000 r-xp 00000000 08:01 151840                     /usr/lib/libXdmcp.so.6.0.0
7f8069be1000-7f8069de0000 ---p 00005000 08:01 151840                     /usr/lib/libXdmcp.so.6.0.0
7f8069de0000-7f8069de1000 r--p 00004000 08:01 151840                     /usr/lib/libXdmcp.so.6.0.0
7f8069de1000-7f8069de2000 rw-p 00005000 08:01 151840                     /usr/lib/libXdmcp.so.6.0.0
7f8069de2000-7f8069de4000 r-xp 00000000 08:01 151844                     /usr/lib/libXau.so.6.0.0
7f8069de4000-7f8069fe4000 ---p 00002000 08:01 151844                     /usr/lib/libXau.so.6.0.0
7f8069fe4000-7f8069fe5000 r--p 00002000 08:01 151844                     /usr/lib/libXau.so.6.0.0
7f8069fe5000-7f8069fe6000 rw-p 00003000 08:01 151844                     /usr/lib/libXau.so.6.0.0
7f8069fe6000-7f806a01d000 r-xp 00000000 08:01 164204                     /usr/lib/libgsttag-1.0.so.0.405.0
7f806a01d000-7f806a21c000 ---p 00037000 08:01 164204                     /usr/lib/libgsttag-1.0.so.0.405.0
7f806a21c000-7f806a21e000 r--p 00036000 08:01 164204                     /usr/lib/libgsttag-1.0.so.0.405.0
7f806a21e000-7f806a21f000 rw-p 00038000 08:01 164204                     /usr/lib/libgsttag-1.0.so.0.405.0
7f806a21f000-7f806a29f000 r-xp 00000000 08:01 163303                     /usr/lib/liborc-0.4.so.0.23.0
7f806a29f000-7f806a49e000 ---p 00080000 08:01 163303                     /usr/lib/liborc-0.4.so.0.23.0
7f806a49e000-7f806a4a0000 r--p 0007f000 08:01 163303                     /usr/lib/liborc-0.4.so.0.23.0
7f806a4a0000-7f806a4a4000 rw-p 00081000 08:01 163303                     /usr/lib/liborc-0.4.so.0.23.0
7f806a4a4000-7f806a4a7000 r-xp 00000000 08:01 142102                     /usr/lib/libgmodule-2.0.so.0.4400.1
7f806a4a7000-7f806a6a6000 ---p 00003000 08:01 142102                     /usr/lib/libgmodule-2.0.so.0.4400.1
7f806a6a6000-7f806a6a7000 r--p 00002000 08:01 142102                     /usr/lib/libgmodule-2.0.so.0.4400.1
7f806a6a7000-7f806a6a8000 rw-p 00003000 08:01 142102                     /usr/lib/libgmodule-2.0.so.0.4400.1
7f806a6a8000-7f806a6ac000 r-xp 00000000 08:01 141601                     /usr/lib/libcap.so.2.24
7f806a6ac000-7f806a8ab000 ---p 00004000 08:01 141601                     /usr/lib/libcap.so.2.24
7f806a8ab000-7f806a8ac000 rw-p 00003000 08:01 141601                     /usr/lib/libcap.so.2.24
7f806a8ac000-7f806a8be000 r-xp 00000000 08:01 142274                     /usr/lib/libgpg-error.so.0.15.0
7f806a8be000-7f806aabd000 ---p 00012000 08:01 142274                     /usr/lib/libgpg-error.so.0.15.0
7f806aabd000-7f806aabe000 r--p 00011000 08:01 142274                     /usr/lib/libgpg-error.so.0.15.0
7f806aabe000-7f806aabf000 rw-p 00012000 08:01 142274                     /usr/lib/libgpg-error.so.0.15.0
7f806aabf000-7f806ab96000 r-xp 00000000 08:01 142306                     /usr/lib/libgcrypt.so.20.0.3
7f806ab96000-7f806ad96000 ---p 000d7000 08:01 142306                     /usr/lib/libgcrypt.so.20.0.3
7f806ad96000-7f806ad97000 r--p 000d7000 08:01 142306                     /usr/lib/libgcrypt.so.20.0.3
7f806ad97000-7f806ada0000 rw-p 000d8000 08:01 142306                     /usr/lib/libgcrypt.so.20.0.3
7f806ada0000-7f806adb1000 r-xp 00000000 08:01 185070                     /usr/lib/liblz4.so.1.7.1
7f806adb1000-7f806afb0000 ---p 00011000 08:01 185070                     /usr/lib/liblz4.so.1.7.1
7f806afb0000-7f806afb1000 r--p 00010000 08:01 185070                     /usr/lib/liblz4.so.1.7.1
7f806afb1000-7f806afb2000 rw-p 00011000 08:01 185070                     /usr/lib/liblz4.so.1.7.1
7f806afb2000-7f806afd7000 r-xp 00000000 08:01 142193                     /usr/lib/liblzma.so.5.2.1
7f806afd7000-7f806b1d6000 ---p 00025000 08:01 142193                     /usr/lib/liblzma.so.5.2.1
7f806b1d6000-7f806b1d7000 r--p 00024000 08:01 142193                     /usr/lib/liblzma.so.5.2.1
7f806b1d7000-7f806b1d8000 rw-p 00025000 08:01 142193                     /usr/lib/liblzma.so.5.2.1
7f806b1d8000-7f806b1e5000 r-xp 00000000 08:01 173851                     /usr/lib/libdrm.so.2.4.0
7f806b1e5000-7f806b3e4000 ---p 0000d000 08:01 173851                     /usr/lib/libdrm.so.2.4.0
7f806b3e4000-7f806b3e5000 r--p 0000c000 08:01 173851                     /usr/lib/libdrm.so.2.4.0
7f806b3e5000-7f806b3e6000 rw-p 0000d000 08:01 173851                     /usr/lib/libdrm.so.2.4.0
7f806b3e6000-7f806b3eb000 r-xp 00000000 08:01 155130                     /usr/lib/libXxf86vm.so.1.0.0
7f806b3eb000-7f806b5ea000 ---p 00005000 08:01 155130                     /usr/lib/libXxf86vm.so.1.0.0
7f806b5ea000-7f806b5eb000 r--p 00004000 08:01 155130                     /usr/lib/libXxf86vm.so.1.0.0
7f806b5eb000-7f806b5ec000 rw-p 00005000 08:01 155130                     /usr/lib/libXxf86vm.so.1.0.0
7f806b5ec000-7f806b5ed000 r-xp 00000000 08:01 155145                     /usr/lib/libxshmfence.so.1.0.0
7f806b5ed000-7f806b7ed000 ---p 00001000 08:01 155145                     /usr/lib/libxshmfence.so.1.0.0
7f806b7ed000-7f806b7ee000 r--p 00001000 08:01 155145                     /usr/lib/libxshmfence.so.1.0.0
7f806b7ee000-7f806b7ef000 rw-p 00002000 08:01 155145                     /usr/lib/libxshmfence.so.1.0.0
7f806b7ef000-7f806b7f4000 r-xp 00000000 08:01 154162                     /usr/lib/libxcb-sync.so.1.0.0
7f806b7f4000-7f806b9f4000 ---p 00005000 08:01 154162                     /usr/lib/libxcb-sync.so.1.0.0
7f806b9f4000-7f806b9f5000 r--p 00005000 08:01 154162                     /usr/lib/libxcb-sync.so.1.0.0
7f806b9f5000-7f806b9f6000 rw-p 00006000 08:01 154162                     /usr/lib/libxcb-sync.so.1.0.0
7f806b9f6000-7f806b9f9000 r-xp 00000000 08:01 154131                     /usr/lib/libxcb-shape.so.0.0.0
7f806b9f9000-7f806bbf8000 ---p 00003000 08:01 154131                     /usr/lib/libxcb-shape.so.0.0.0
7f806bbf8000-7f806bbf9000 r--p 00002000 08:01 154131                     /usr/lib/libxcb-shape.so.0.0.0
7f806bbf9000-7f806bbfa000 rw-p 00003000 08:01 154131                     /usr/lib/libxcb-shape.so.0.0.0
7f806bbfa000-7f806bc03000 r-xp 00000000 08:01 154116                     /usr/lib/libxcb-render.so.0.0.0
7f806bc03000-7f806be02000 ---p 00009000 08:01 154116                     /usr/lib/libxcb-render.so.0.0.0
7f806be02000-7f806be03000 r--p 00008000 08:01 154116                     /usr/lib/libxcb-render.so.0.0.0
7f806be03000-7f806be04000 rw-p 00009000 08:01 154116                     /usr/lib/libxcb-render.so.0.0.0
7f806be04000-7f806be0a000 r-xp 00000000 08:01 154113                     /usr/lib/libxcb-xfixes.so.0.0.0
7f806be0a000-7f806c00a000 ---p 00006000 08:01 154113                     /usr/lib/libxcb-xfixes.so.0.0.0
7f806c00a000-7f806c00b000 r--p 00006000 08:01 154113                     /usr/lib/libxcb-xfixes.so.0.0.0
7f806c00b000-7f806c00c000 rw-p 00007000 08:01 154113                     /usr/lib/libxcb-xfixes.so.0.0.0
7f806c00c000-7f806c019000 r-xp 00000000 08:01 154170                     /usr/lib/libxcb-randr.so.0.1.0
7f806c019000-7f806c218000 ---p 0000d000 08:01 154170                     /usr/lib/libxcb-randr.so.0.1.0
7f806c218000-7f806c219000 r--p 0000c000 08:01 154170                     /usr/lib/libxcb-randr.so.0.1.0
7f806c219000-7f806c21a000 rw-p 0000d000 08:01 154170                     /usr/lib/libxcb-randr.so.0.1.0
7f806c21a000-7f806c21c000 r-xp 00000000 08:01 154149                     /usr/lib/libxcb-present.so.0.0.0
7f806c21c000-7f806c41b000 ---p 00002000 08:01 154149                     /usr/lib/libxcb-present.so.0.0.0
7f806c41b000-7f806c41c000 r--p 00001000 08:01 154149                     /usr/lib/libxcb-present.so.0.0.0
7f806c41c000-7f806c41d000 rw-p 00002000 08:01 154149                     /usr/lib/libxcb-present.so.0.0.0
7f806c41d000-7f806c41f000 r-xp 00000000 08:01 154121                     /usr/lib/libxcb-dri3.so.0.0.0
7f806c41f000-7f806c61e000 ---p 00002000 08:01 154121                     /usr/lib/libxcb-dri3.so.0.0.0
7f806c61e000-7f806c61f000 r--p 00001000 08:01 154121                     /usr/lib/libxcb-dri3.so.0.0.0
7f806c61f000-7f806c620000 rw-p 00002000 08:01 154121                     /usr/lib/libxcb-dri3.so.0.0.0
7f806c620000-7f806c624000 r-xp 00000000 08:01 154146                     /usr/lib/libxcb-dri2.so.0.0.0
7f806c624000-7f806c823000 ---p 00004000 08:01 154146                     /usr/lib/libxcb-dri2.so.0.0.0
7f806c823000-7f806c824000 r--p 00003000 08:01 154146                     /usr/lib/libxcb-dri2.so.0.0.0
7f806c824000-7f806c825000 rw-p 00004000 08:01 154146                     /usr/lib/libxcb-dri2.so.0.0.0
7f806c825000-7f806c83c000 r-xp 00000000 08:01 154120                     /usr/lib/libxcb-glx.so.0.0.0
7f806c83c000-7f806ca3c000 ---p 00017000 08:01 154120                     /usr/lib/libxcb-glx.so.0.0.0
7f806ca3c000-7f806ca3e000 r--p 00017000 08:01 154120                     /usr/lib/libxcb-glx.so.0.0.0
7f806ca3e000-7f806ca3f000 rw-p 00019000 08:01 154120                     /usr/lib/libxcb-glx.so.0.0.0
7f806ca3f000-7f806ca40000 r-xp 00000000 08:01 154216                     /usr/lib/libX11-xcb.so.1.0.0
7f806ca40000-7f806cc3f000 ---p 00001000 08:01 154216                     /usr/lib/libX11-xcb.so.1.0.0
7f806cc3f000-7f806cc40000 r--p 00000000 08:01 154216                     /usr/lib/libX11-xcb.so.1.0.0
7f806cc40000-7f806cc41000 rw-p 00001000 08:01 154216                     /usr/lib/libX11-xcb.so.1.0.0
7f806cc41000-7f806cc46000 r-xp 00000000 08:01 155135                     /usr/lib/libXfixes.so.3.1.0
7f806cc46000-7f806ce45000 ---p 00005000 08:01 155135                     /usr/lib/libXfixes.so.3.1.0
7f806ce45000-7f806ce46000 r--p 00004000 08:01 155135                     /usr/lib/libXfixes.so.3.1.0
7f806ce46000-7f806ce47000 rw-p 00005000 08:01 155135                     /usr/lib/libXfixes.so.3.1.0
7f806ce47000-7f806ce49000 r-xp 00000000 08:01 155141                     /usr/lib/libXdamage.so.1.1.0
7f806ce49000-7f806d048000 ---p 00002000 08:01 155141                     /usr/lib/libXdamage.so.1.1.0
7f806d048000-7f806d049000 r--p 00001000 08:01 155141                     /usr/lib/libXdamage.so.1.1.0
7f806d049000-7f806d04a000 rw-p 00002000 08:01 155141                     /usr/lib/libXdamage.so.1.1.0
7f806d04a000-7f806d05b000 r-xp 00000000 08:01 155101                     /usr/lib/libXext.so.6.4.0
7f806d05b000-7f806d25a000 ---p 00011000 08:01 155101                     /usr/lib/libXext.so.6.4.0
7f806d25a000-7f806d25b000 r--p 00010000 08:01 155101                     /usr/lib/libXext.so.6.4.0
7f806d25b000-7f806d25c000 rw-p 00011000 08:01 155101                     /usr/lib/libXext.so.6.4.0
7f806d25c000-7f806d284000 r-xp 00000000 08:01 185079                     /usr/lib/libglapi.so.0.0.0
7f806d284000-7f806d484000 ---p 00028000 08:01 185079                     /usr/lib/libglapi.so.0.0.0
7f806d484000-7f806d488000 r--p 00028000 08:01 185079                     /usr/lib/libglapi.so.0.0.0
7f806d488000-7f806d489000 rw-p 0002c000 08:01 185079                     /usr/lib/libglapi.so.0.0.0
7f806d489000-7f806d48a000 rw-p 00000000 00:00 0 
7f806d48a000-7f806d4b1000 r-xp 00000000 08:01 141858                     /usr/lib/libexpat.so.1.6.0
7f806d4b1000-7f806d6b0000 ---p 00027000 08:01 141858                     /usr/lib/libexpat.so.1.6.0
7f806d6b0000-7f806d6b3000 r--p 00026000 08:01 141858                     /usr/lib/libexpat.so.1.6.0
7f806d6b3000-7f806d6b4000 rw-p 00029000 08:01 141858                     /usr/lib/libexpat.so.1.6.0
7f806d6b4000-7f806d6df000 r-xp 00000000 08:01 155572                     /usr/lib/libgraphite2.so.3.0.1
7f806d6df000-7f806d8df000 ---p 0002b000 08:01 155572                     /usr/lib/libgraphite2.so.3.0.1
7f806d8df000-7f806d8e1000 r--p 0002b000 08:01 155572                     /usr/lib/libgraphite2.so.3.0.1
7f806d8e1000-7f806d8e2000 rw-p 0002d000 08:01 155572                     /usr/lib/libgraphite2.so.3.0.1
7f806d8e2000-7f806d997000 r-xp 00000000 08:01 155591                     /usr/lib/libfreetype.so.6.12.0
7f806d997000-7f806db96000 ---p 000b5000 08:01 155591                     /usr/lib/libfreetype.so.6.12.0
7f806db96000-7f806db9c000 r--p 000b4000 08:01 155591                     /usr/lib/libfreetype.so.6.12.0
7f806db9c000-7f806db9d000 rw-p 000ba000 08:01 155591                     /usr/lib/libfreetype.so.6.12.0
7f806db9d000-7f806dbbe000 r-xp 00000000 08:01 154134                     /usr/lib/libxcb.so.1.1.0
7f806dbbe000-7f806ddbd000 ---p 00021000 08:01 154134                     /usr/lib/libxcb.so.1.1.0
7f806ddbd000-7f806ddbe000 r--p 00020000 08:01 154134                     /usr/lib/libxcb.so.1.1.0
7f806ddbe000-7f806ddbf000 rw-p 00021000 08:01 154134                     /usr/lib/libxcb.so.1.1.0
7f806ddbf000-7f806ddc7000 r-xp 00000000 08:01 142016                     /usr/lib/libffi.so.6.0.4
7f806ddc7000-7f806dfc6000 ---p 00008000 08:01 142016                     /usr/lib/libffi.so.6.0.4
7f806dfc6000-7f806dfc7000 r--p 00007000 08:01 142016                     /usr/lib/libffi.so.6.0.4
7f806dfc7000-7f806dfc8000 rw-p 00008000 08:01 142016                     /usr/lib/libffi.so.6.0.4
7f806dfc8000-7f806e036000 r-xp 00000000 08:01 134306                     /usr/lib/libpcre.so.1.2.5
7f806e036000-7f806e236000 ---p 0006e000 08:01 134306                     /usr/lib/libpcre.so.1.2.5
7f806e236000-7f806e237000 r--p 0006e000 08:01 134306                     /usr/lib/libpcre.so.1.2.5
7f806e237000-7f806e238000 rw-p 0006f000 08:01 134306                     /usr/lib/libpcre.so.1.2.5
7f806e238000-7f806faee000 r--p 00000000 08:01 156811                     /usr/lib/libicudata.so.55.1
7f806faee000-7f806fced000 ---p 018b6000 08:01 156811                     /usr/lib/libicudata.so.55.1
7f806fced000-7f806fcee000 r--p 018b5000 08:01 156811                     /usr/lib/libicudata.so.55.1
7f806fcee000-7f806fcf1000 r-xp 00000000 08:01 141129                     /usr/lib/libkeyutils.so.1.5
7f806fcf1000-7f806fef0000 ---p 00003000 08:01 141129                     /usr/lib/libkeyutils.so.1.5
7f806fef0000-7f806fef1000 r--p 00002000 08:01 141129                     /usr/lib/libkeyutils.so.1.5
7f806fef1000-7f806fef2000 rw-p 00003000 08:01 141129                     /usr/lib/libkeyutils.so.1.5
7f806fef2000-7f806fefe000 r-xp 00000000 08:01 141173                     /usr/lib/libkrb5support.so.0.1
7f806fefe000-7f80700fd000 ---p 0000c000 08:01 141173                     /usr/lib/libkrb5support.so.0.1
7f80700fd000-7f80700fe000 r--p 0000b000 08:01 141173                     /usr/lib/libkrb5support.so.0.1
7f80700fe000-7f80700ff000 rw-p 0000c000 08:01 141173                     /usr/lib/libkrb5support.so.0.1
7f80700ff000-7f807018f000 r-xp 00000000 08:01 141559                     /usr/lib/libgmp.so.10.2.0
7f807018f000-7f807038f000 ---p 00090000 08:01 141559                     /usr/lib/libgmp.so.10.2.0
7f807038f000-7f8070390000 r--p 00090000 08:01 141559                     /usr/lib/libgmp.so.10.2.0
7f8070390000-7f8070391000 rw-p 00091000 08:01 141559                     /usr/lib/libgmp.so.10.2.0
7f8070391000-7f80703c3000 r-xp 00000000 08:01 163910                     /usr/lib/libhogweed.so.4.1
7f80703c3000-7f80705c3000 ---p 00032000 08:01 163910                     /usr/lib/libhogweed.so.4.1
7f80705c3000-7f80705c4000 r--p 00032000 08:01 163910                     /usr/lib/libhogweed.so.4.1
7f80705c4000-7f80705c5000 rw-p 00033000 08:01 163910                     /usr/lib/libhogweed.so.4.1
7f80705c5000-7f80705fb000 r-xp 00000000 08:01 163908                     /usr/lib/libnettle.so.6.1
7f80705fb000-7f80707fa000 ---p 00036000 08:01 163908                     /usr/lib/libnettle.so.6.1
7f80707fa000-7f80707fc000 r--p 00035000 08:01 163908                     /usr/lib/libnettle.so.6.1
7f80707fc000-7f80707fd000 rw-p 00037000 08:01 163908                     /usr/lib/libnettle.so.6.1
7f80707fd000-7f807080e000 r-xp 00000000 08:01 148191                     /usr/lib/libtasn1.so.6.4.2
7f807080e000-7f8070a0e000 ---p 00011000 08:01 148191                     /usr/lib/libtasn1.so.6.4.2
7f8070a0e000-7f8070a0f000 r--p 00011000 08:01 148191                     /usr/lib/libtasn1.so.6.4.2
7f8070a0f000-7f8070a10000 rw-p 00012000 08:01 148191                     /usr/lib/libtasn1.so.6.4.2
7f8070a10000-7f8070a6a000 r-xp 00000000 08:01 148210                     /usr/lib/libp11-kit.so.0.1.0
7f8070a6a000-7f8070c6a000 ---p 0005a000 08:01 148210                     /usr/lib/libp11-kit.so.0.1.0
7f8070c6a000-7f8070c74000 r--p 0005a000 08:01 148210                     /usr/lib/libp11-kit.so.0.1.0
7f8070c74000-7f8070c76000 rw-p 00064000 08:01 148210                     /usr/lib/libp11-kit.so.0.1.0
7f8070c76000-7f8070c93000 r-xp 00000000 08:01 164075                     /usr/lib/libQt5WebChannel.so.5.5.0
7f8070c93000-7f8070e92000 ---p 0001d000 08:01 164075                     /usr/lib/libQt5WebChannel.so.5.5.0
7f8070e92000-7f8070e93000 r--p 0001c000 08:01 164075                     /usr/lib/libQt5WebChannel.so.5.5.0
7f8070e93000-7f8070e94000 rw-p 0001d000 08:01 164075                     /usr/lib/libQt5WebChannel.so.5.5.0
7f8070e94000-7f80712b2000 r-xp 00000000 08:01 157070                     /usr/lib/libQt5Qml.so.5.5.0
7f80712b2000-7f80714b2000 ---p 0041e000 08:01 157070                     /usr/lib/libQt5Qml.so.5.5.0
7f80714b2000-7f80714c5000 r--p 0041e000 08:01 157070                     /usr/lib/libQt5Qml.so.5.5.0
7f80714c5000-7f80714ce000 rw-p 00431000 08:01 157070                     /usr/lib/libQt5Qml.so.5.5.0
7f80714ce000-7f80714d1000 rw-p 00000000 00:00 0 
7f80714d1000-7f807188a000 r-xp 00000000 08:01 164963                     /usr/lib/libQt5Quick.so.5.5.0
7f807188a000-7f8071a89000 ---p 003b9000 08:01 164963                     /usr/lib/libQt5Quick.so.5.5.0
7f8071a89000-7f8071aa8000 r--p 003b8000 08:01 164963                     /usr/lib/libQt5Quick.so.5.5.0
7f8071aa8000-7f8071ab0000 rw-p 003d7000 08:01 164963                     /usr/lib/libQt5Quick.so.5.5.0
7f8071ab0000-7f8071ab1000 rw-p 00000000 00:00 0 
7f8071ab1000-7f8071aef000 r-xp 00000000 08:01 164067                     /usr/lib/libQt5Positioning.so.5.5.0
7f8071aef000-7f8071cee000 ---p 0003e000 08:01 164067                     /usr/lib/libQt5Positioning.so.5.5.0
7f8071cee000-7f8071cef000 r--p 0003d000 08:01 164067                     /usr/lib/libQt5Positioning.so.5.5.0
7f8071cef000-7f8071cf0000 rw-p 0003e000 08:01 164067                     /usr/lib/libQt5Positioning.so.5.5.0
7f8071cf0000-7f8071db2000 r-xp 00000000 08:01 186245                     /usr/lib/libsqlite3.so.0.8.6
7f8071db2000-7f8071fb2000 ---p 000c2000 08:01 186245                     /usr/lib/libsqlite3.so.0.8.6
7f8071fb2000-7f8071fb4000 r--p 000c2000 08:01 186245                     /usr/lib/libsqlite3.so.0.8.6
7f8071fb4000-7f8071fb7000 rw-p 000c4000 08:01 186245                     /usr/lib/libsqlite3.so.0.8.6
7f8071fb7000-7f8072003000 r-xp 00000000 08:01 164210                     /usr/lib/libgstaudio-1.0.so.0.405.0
7f8072003000-7f8072202000 ---p 0004c000 08:01 164210                     /usr/lib/libgstaudio-1.0.so.0.405.0
7f8072202000-7f8072204000 r--p 0004b000 08:01 164210                     /usr/lib/libgstaudio-1.0.so.0.405.0
7f8072204000-7f8072206000 rw-p 0004d000 08:01 164210                     /usr/lib/libgstaudio-1.0.so.0.405.0
7f8072206000-7f807224c000 r-xp 00000000 08:01 164209                     /usr/lib/libgstvideo-1.0.so.0.405.0
7f807224c000-7f807244c000 ---p 00046000 08:01 164209                     /usr/lib/libgstvideo-1.0.so.0.405.0
7f807244c000-7f807244e000 r--p 00046000 08:01 164209                     /usr/lib/libgstvideo-1.0.so.0.405.0
7f807244e000-7f8072452000 rw-p 00048000 08:01 164209                     /usr/lib/libgstvideo-1.0.so.0.405.0
7f8072452000-7f8072453000 rw-p 00000000 00:00 0 
7f8072453000-7f8072478000 r-xp 00000000 08:01 164211                     /usr/lib/libgstpbutils-1.0.so.0.405.0
7f8072478000-7f8072678000 ---p 00025000 08:01 164211                     /usr/lib/libgstpbutils-1.0.so.0.405.0
7f8072678000-7f807267a000 r--p 00025000 08:01 164211                     /usr/lib/libgstpbutils-1.0.so.0.405.0
7f807267a000-7f807267b000 rw-p 00027000 08:01 164211                     /usr/lib/libgstpbutils-1.0.so.0.405.0
7f807267b000-7f80726d8000 r-xp 00000000 08:01 164131                     /usr/lib/libgstbase-1.0.so.0.405.0
7f80726d8000-7f80728d8000 ---p 0005d000 08:01 164131                     /usr/lib/libgstbase-1.0.so.0.405.0
7f80728d8000-7f80728d9000 r--p 0005d000 08:01 164131                     /usr/lib/libgstbase-1.0.so.0.405.0
7f80728d9000-7f80728da000 rw-p 0005e000 08:01 164131                     /usr/lib/libgstbase-1.0.so.0.405.0
7f80728da000-7f80728e6000 r-xp 00000000 08:01 164213                     /usr/lib/libgstapp-1.0.so.0.405.0
7f80728e6000-7f8072ae5000 ---p 0000c000 08:01 164213                     /usr/lib/libgstapp-1.0.so.0.405.0
7f8072ae5000-7f8072ae6000 r--p 0000b000 08:01 164213                     /usr/lib/libgstapp-1.0.so.0.405.0
7f8072ae6000-7f8072ae7000 rw-p 0000c000 08:01 164213                     /usr/lib/libgstapp-1.0.so.0.405.0
7f8072ae7000-7f8072bef000 r-xp 00000000 08:01 164130                     /usr/lib/libgstreamer-1.0.so.0.405.0
7f8072bef000-7f8072dee000 ---p 00108000 08:01 164130                     /usr/lib/libgstreamer-1.0.so.0.405.0
7f8072dee000-7f8072df4000 r--p 00107000 08:01 164130                     /usr/lib/libgstreamer-1.0.so.0.405.0
7f8072df4000-7f8072df6000 rw-p 0010d000 08:01 164130                     /usr/lib/libgstreamer-1.0.so.0.405.0
7f8072df6000-7f8072df8000 rw-p 00000000 00:00 0 
7f8072df8000-7f8072f52000 r-xp 00000000 08:01 157215                     /usr/lib/libxml2.so.2.9.2
7f8072f52000-7f8073151000 ---p 0015a000 08:01 157215                     /usr/lib/libxml2.so.2.9.2
7f8073151000-7f8073159000 r--p 00159000 08:01 157215                     /usr/lib/libxml2.so.2.9.2
7f8073159000-7f807315b000 rw-p 00161000 08:01 157215                     /usr/lib/libxml2.so.2.9.2
7f807315b000-7f807315d000 rw-p 00000000 00:00 0 
7f807315d000-7f807319a000 r-xp 00000000 08:01 158882                     /usr/lib/libxslt.so.1.1.28
7f807319a000-7f8073399000 ---p 0003d000 08:01 158882                     /usr/lib/libxslt.so.1.1.28
7f8073399000-7f807339a000 r--p 0003c000 08:01 158882                     /usr/lib/libxslt.so.1.1.28
7f807339a000-7f807339b000 rw-p 0003d000 08:01 158882                     /usr/lib/libxslt.so.1.1.28
7f807339b000-7f807339c000 rw-p 00000000 00:00 0 
7f807339c000-7f80733f8000 r-xp 00000000 08:01 164308                     /usr/lib/libwebp.so.5.0.3
7f80733f8000-7f80735f7000 ---p 0005c000 08:01 164308                     /usr/lib/libwebp.so.5.0.3
7f80735f7000-7f80735f9000 r--p 0005b000 08:01 164308                     /usr/lib/libwebp.so.5.0.3
7f80735f9000-7f80735fb000 rw-p 0005d000 08:01 164308                     /usr/lib/libwebp.so.5.0.3
7f80735fb000-7f80735fd000 rw-p 00000000 00:00 0 
7f80735fd000-7f8073654000 r-xp 00000000 08:01 156529                     /usr/lib/libjpeg.so.8.0.2
7f8073654000-7f8073854000 ---p 00057000 08:01 156529                     /usr/lib/libjpeg.so.8.0.2
7f8073854000-7f8073855000 r--p 00057000 08:01 156529                     /usr/lib/libjpeg.so.8.0.2
7f8073855000-7f8073856000 rw-p 00058000 08:01 156529                     /usr/lib/libjpeg.so.8.0.2
7f8073856000-7f8073858000 r-xp 00000000 08:01 156364                     /usr/lib/libXcomposite.so.1.0.0
7f8073858000-7f8073a57000 ---p 00002000 08:01 156364                     /usr/lib/libXcomposite.so.1.0.0
7f8073a57000-7f8073a58000 r--p 00001000 08:01 156364                     /usr/lib/libXcomposite.so.1.0.0
7f8073a58000-7f8073a59000 rw-p 00002000 08:01 156364                     /usr/lib/libXcomposite.so.1.0.0
7f8073a59000-7f8073a62000 r-xp 00000000 08:01 156267                     /usr/lib/libXrender.so.1.3.0
7f8073a62000-7f8073c61000 ---p 00009000 08:01 156267                     /usr/lib/libXrender.so.1.3.0
7f8073c61000-7f8073c62000 r--p 00008000 08:01 156267                     /usr/lib/libXrender.so.1.3.0
7f8073c62000-7f8073c63000 rw-p 00009000 08:01 156267                     /usr/lib/libXrender.so.1.3.0
7f8073c63000-7f8073cc7000 r-xp 00000000 08:01 134310                     /usr/lib/libpcre16.so.0.2.5
7f8073cc7000-7f8073ec7000 ---p 00064000 08:01 134310                     /usr/lib/libpcre16.so.0.2.5
7f8073ec7000-7f8073ec8000 r--p 00064000 08:01 134310                     /usr/lib/libpcre16.so.0.2.5
7f8073ec8000-7f8073ec9000 rw-p 00065000 08:01 134310                     /usr/lib/libpcre16.so.0.2.5
7f8073ec9000-7f8074046000 r-xp 00000000 08:01 156809                     /usr/lib/libicuuc.so.55.1
7f8074046000-7f8074246000 ---p 0017d000 08:01 156809                     /usr/lib/libicuuc.so.55.1
7f8074246000-7f8074257000 r--p 0017d000 08:01 156809                     /usr/lib/libicuuc.so.55.1
7f8074257000-7f8074258000 rw-p 0018e000 08:01 156809                     /usr/lib/libicuuc.so.55.1
7f8074258000-7f807425c000 rw-p 00000000 00:00 0 
7f807425c000-7f80744af000 r-xp 00000000 08:01 156802                     /usr/lib/libicui18n.so.55.1
7f80744af000-7f80746af000 ---p 00253000 08:01 156802                     /usr/lib/libicui18n.so.55.1
7f80746af000-7f80746bf000 r--p 00253000 08:01 156802                     /usr/lib/libicui18n.so.55.1
7f80746bf000-7f80746c1000 rw-p 00263000 08:01 156802                     /usr/lib/libicui18n.so.55.1
7f80746c1000-7f80746c2000 rw-p 00000000 00:00 0 
7f80746c2000-7f8074756000 r-xp 00000000 08:01 662112                     /usr/lib/mesa/libGL.so.1.2.0
7f8074756000-7f8074955000 ---p 00094000 08:01 662112                     /usr/lib/mesa/libGL.so.1.2.0
7f8074955000-7f8074958000 r--p 00093000 08:01 662112                     /usr/lib/mesa/libGL.so.1.2.0
7f8074958000-7f8074959000 rw-p 00096000 08:01 662112                     /usr/lib/mesa/libGL.so.1.2.0
7f8074959000-7f807495a000 rw-p 00000000 00:00 0 
7f807495a000-7f80749b7000 r-xp 00000000 08:01 155584                     /usr/lib/libharfbuzz.so.0.10000.1
7f80749b7000-7f8074bb7000 ---p 0005d000 08:01 155584                     /usr/lib/libharfbuzz.so.0.10000.1
7f8074bb7000-7f8074bb8000 r--p 0005d000 08:01 155584                     /usr/lib/libharfbuzz.so.0.10000.1
7f8074bb8000-7f8074bb9000 rw-p 0005e000 08:01 155584                     /usr/lib/libharfbuzz.so.0.10000.1
7f8074bb9000-7f8074bed000 r-xp 00000000 08:01 155552                     /usr/lib/libpng16.so.16.18.0
7f8074bed000-7f8074dec000 ---p 00034000 08:01 155552                     /usr/lib/libpng16.so.16.18.0
7f8074dec000-7f8074ded000 r--p 00033000 08:01 155552                     /usr/lib/libpng16.so.16.18.0
7f8074ded000-7f8074dee000 rw-p 00034000 08:01 155552                     /usr/lib/libpng16.so.16.18.0
7f8074dee000-7f8074f29000 r-xp 00000000 08:01 154215                     /usr/lib/libX11.so.6.3.0
7f8074f29000-7f8075128000 ---p 0013b000 08:01 154215                     /usr/lib/libX11.so.6.3.0
7f8075128000-7f807512a000 r--p 0013a000 08:01 154215                     /usr/lib/libX11.so.6.3.0
7f807512a000-7f807512f000 rw-p 0013c000 08:01 154215                     /usr/lib/libX11.so.6.3.0
7f807512f000-7f8075130000 rw-p 00000000 00:00 0 
7f8075130000-7f807523c000 r-xp 00000000 08:01 142101                     /usr/lib/libglib-2.0.so.0.4400.1
7f807523c000-7f807543b000 ---p 0010c000 08:01 142101                     /usr/lib/libglib-2.0.so.0.4400.1
7f807543b000-7f807543c000 r--p 0010b000 08:01 142101                     /usr/lib/libglib-2.0.so.0.4400.1
7f807543c000-7f807543d000 rw-p 0010c000 08:01 142101                     /usr/lib/libglib-2.0.so.0.4400.1
7f807543d000-7f807543e000 rw-p 00000000 00:00 0 
7f807543e000-7f807548d000 r-xp 00000000 08:01 142104                     /usr/lib/libgobject-2.0.so.0.4400.1
7f807548d000-7f807568d000 ---p 0004f000 08:01 142104                     /usr/lib/libgobject-2.0.so.0.4400.1
7f807568d000-7f807568e000 r--p 0004f000 08:01 142104                     /usr/lib/libgobject-2.0.so.0.4400.1
7f807568e000-7f807568f000 rw-p 00050000 08:01 142104                     /usr/lib/libgobject-2.0.so.0.4400.1
7f807568f000-7f807569e000 r-xp 00000000 08:01 137317                     /usr/lib/libbz2.so.1.0.6
7f807569e000-7f807589d000 ---p 0000f000 08:01 137317                     /usr/lib/libbz2.so.1.0.6
7f807589d000-7f807589f000 rw-p 0000e000 08:01 137317                     /usr/lib/libbz2.so.1.0.6
7f807589f000-7f80759aa000 r-xp 00000000 08:01 177915                     /usr/lib/libboost_regex.so.1.58.0
7f80759aa000-7f8075baa000 ---p 0010b000 08:01 177915                     /usr/lib/libboost_regex.so.1.58.0
7f8075baa000-7f8075bae000 r--p 0010b000 08:01 177915                     /usr/lib/libboost_regex.so.1.58.0
7f8075bae000-7f8075bb0000 rw-p 0010f000 08:01 177915                     /usr/lib/libboost_regex.so.1.58.0
7f8075bb0000-7f8075bc5000 r-xp 00000000 08:01 133779                     /usr/lib/libnsl-2.22.so
7f8075bc5000-7f8075dc4000 ---p 00015000 08:01 133779                     /usr/lib/libnsl-2.22.so
7f8075dc4000-7f8075dc5000 r--p 00014000 08:01 133779                     /usr/lib/libnsl-2.22.so
7f8075dc5000-7f8075dc6000 rw-p 00015000 08:01 133779                     /usr/lib/libnsl-2.22.so
7f8075dc6000-7f8075dc8000 rw-p 00000000 00:00 0 
7f8075dc8000-7f8075dcb000 r-xp 00000000 08:01 137512                     /usr/lib/libcom_err.so.2.1
7f8075dcb000-7f8075fca000 ---p 00003000 08:01 137512                     /usr/lib/libcom_err.so.2.1
7f8075fca000-7f8075fcb000 r--p 00002000 08:01 137512                     /usr/lib/libcom_err.so.2.1
7f8075fcb000-7f8075fcc000 rw-p 00003000 08:01 137512                     /usr/lib/libcom_err.so.2.1
7f8075fcc000-7f8075ffa000 r-xp 00000000 08:01 141175                     /usr/lib/libk5crypto.so.3.1
7f8075ffa000-7f80761f9000 ---p 0002e000 08:01 141175                     /usr/lib/libk5crypto.so.3.1
7f80761f9000-7f80761fb000 r--p 0002d000 08:01 141175                     /usr/lib/libk5crypto.so.3.1
7f80761fb000-7f80761fc000 rw-p 0002f000 08:01 141175                     /usr/lib/libk5crypto.so.3.1
7f80761fc000-7f80761fd000 rw-p 00000000 00:00 0 
7f80761fd000-7f80762d2000 r-xp 00000000 08:01 141176                     /usr/lib/libkrb5.so.3.3
7f80762d2000-7f80764d2000 ---p 000d5000 08:01 141176                     /usr/lib/libkrb5.so.3.3
7f80764d2000-7f80764df000 r--p 000d5000 08:01 141176                     /usr/lib/libkrb5.so.3.3
7f80764df000-7f80764e2000 rw-p 000e2000 08:01 141176                     /usr/lib/libkrb5.so.3.3
7f80764e2000-7f807652c000 r-xp 00000000 08:01 141177                     /usr/lib/libgssapi_krb5.so.2.2
7f807652c000-7f807672b000 ---p 0004a000 08:01 141177                     /usr/lib/libgssapi_krb5.so.2.2
7f807672b000-7f807672d000 r--p 00049000 08:01 141177                     /usr/lib/libgssapi_krb5.so.2.2
7f807672d000-7f807672f000 rw-p 0004b000 08:01 141177                     /usr/lib/libgssapi_krb5.so.2.2
7f807672f000-7f8076759000 r-xp 00000000 08:01 186866                     /usr/lib/libssh2.so.1.0.1
7f8076759000-7f8076959000 ---p 0002a000 08:01 186866                     /usr/lib/libssh2.so.1.0.1
7f8076959000-7f807695a000 r--p 0002a000 08:01 186866                     /usr/lib/libssh2.so.1.0.1
7f807695a000-7f807695b000 rw-p 0002b000 08:01 186866                     /usr/lib/libssh2.so.1.0.1
7f807695b000-7f8076a80000 r-xp 00000000 08:01 186847                     /usr/lib/libgnutls.so.30.2.0
7f8076a80000-7f8076c7f000 ---p 00125000 08:01 186847                     /usr/lib/libgnutls.so.30.2.0
7f8076c7f000-7f8076c8a000 r--p 00124000 08:01 186847                     /usr/lib/libgnutls.so.30.2.0
7f8076c8a000-7f8076c8d000 rw-p 0012f000 08:01 186847                     /usr/lib/libgnutls.so.30.2.0
7f8076c8d000-7f8076c8e000 rw-p 00000000 00:00 0 
7f8076c8e000-7f8076cc0000 r-xp 00000000 08:01 142546                     /usr/lib/libidn.so.11.6.15
7f8076cc0000-7f8076ec0000 ---p 00032000 08:01 142546                     /usr/lib/libidn.so.11.6.15
7f8076ec0000-7f8076ec1000 r--p 00032000 08:01 142546                     /usr/lib/libidn.so.11.6.15
7f8076ec1000-7f8076ec2000 rw-p 00033000 08:01 142546                     /usr/lib/libidn.so.11.6.15
7f8076ec2000-7f8076ed6000 r-xp 00000000 08:01 133787                     /usr/lib/libresolv-2.22.so
7f8076ed6000-7f80770d5000 ---p 00014000 08:01 133787                     /usr/lib/libresolv-2.22.so
7f80770d5000-7f80770d6000 r--p 00013000 08:01 133787                     /usr/lib/libresolv-2.22.so
7f80770d6000-7f80770d7000 rw-p 00014000 08:01 133787                     /usr/lib/libresolv-2.22.so
7f80770d7000-7f80770d9000 rw-p 00000000 00:00 0 
7f80770d9000-7f80770e0000 r-xp 00000000 08:01 133785                     /usr/lib/librt-2.22.so
7f80770e0000-7f80772df000 ---p 00007000 08:01 133785                     /usr/lib/librt-2.22.so
7f80772df000-7f80772e0000 r--p 00006000 08:01 133785                     /usr/lib/librt-2.22.so
7f80772e0000-7f80772e1000 rw-p 00007000 08:01 133785                     /usr/lib/librt-2.22.so
7f80772e1000-7f8077310000 r-xp 00000000 08:01 178821                     /usr/lib/libGeoIP.so.1.6.2
7f8077310000-7f8077510000 ---p 0002f000 08:01 178821                     /usr/lib/libGeoIP.so.1.6.2
7f8077510000-7f8077511000 r--p 0002f000 08:01 178821                     /usr/lib/libGeoIP.so.1.6.2
7f8077511000-7f8077513000 rw-p 00030000 08:01 178821                     /usr/lib/libGeoIP.so.1.6.2
7f8077513000-7f8077582000 r-xp 00000000 08:01 139328                     /usr/lib/libssl.so.1.0.0
7f8077582000-7f8077781000 ---p 0006f000 08:01 139328                     /usr/lib/libssl.so.1.0.0
7f8077781000-7f8077786000 r--p 0006e000 08:01 139328                     /usr/lib/libssl.so.1.0.0
7f8077786000-7f807778d000 rw-p 00073000 08:01 139328                     /usr/lib/libssl.so.1.0.0
7f807778d000-7f80777d4000 r-xp 00000000 08:01 170054                     /usr/lib/libdbus-1.so.3.8.13
7f80777d4000-7f80779d4000 ---p 00047000 08:01 170054                     /usr/lib/libdbus-1.so.3.8.13
7f80779d4000-7f80779d5000 r--p 00047000 08:01 170054                     /usr/lib/libdbus-1.so.3.8.13
7f80779d5000-7f80779d6000 rw-p 00048000 08:01 170054                     /usr/lib/libdbus-1.so.3.8.13
7f80779d6000-7f80779eb000 r-xp 00000000 08:01 137321                     /usr/lib/libz.so.1.2.8
7f80779eb000-7f8077bea000 ---p 00015000 08:01 137321                     /usr/lib/libz.so.1.2.8
7f8077bea000-7f8077beb000 r--p 00014000 08:01 137321                     /usr/lib/libz.so.1.2.8
7f8077beb000-7f8077bec000 rw-p 00015000 08:01 137321                     /usr/lib/libz.so.1.2.8
7f8077bec000-7f8077cd6000 r-xp 00000000 08:01 166547                     /usr/lib/libQt5CLucene.so.5.5.0
7f8077cd6000-7f8077ed6000 ---p 000ea000 08:01 166547                     /usr/lib/libQt5CLucene.so.5.5.0
7f8077ed6000-7f8077ee6000 r--p 000ea000 08:01 166547                     /usr/lib/libQt5CLucene.so.5.5.0
7f8077ee6000-7f8077ee7000 rw-p 000fa000 08:01 166547                     /usr/lib/libQt5CLucene.so.5.5.0
7f8077ee7000-7f8077ee8000 rw-p 00000000 00:00 0 
7f8077ee8000-7f8077f29000 r-xp 00000000 08:01 185082                     /usr/lib/libQt5Sql.so.5.5.0
7f8077f29000-7f8078128000 ---p 00041000 08:01 185082                     /usr/lib/libQt5Sql.so.5.5.0
7f8078128000-7f807812a000 r--p 00040000 08:01 185082                     /usr/lib/libQt5Sql.so.5.5.0
7f807812a000-7f807812b000 rw-p 00042000 08:01 185082                     /usr/lib/libQt5Sql.so.5.5.0
7f807812b000-7f8078183000 r-xp 00000000 08:01 187458                     /usr/lib/libQt5OpenGL.so.5.5.0
7f8078183000-7f8078382000 ---p 00058000 08:01 187458                     /usr/lib/libQt5OpenGL.so.5.5.0
7f8078382000-7f8078384000 r--p 00057000 08:01 187458                     /usr/lib/libQt5OpenGL.so.5.5.0
7f8078384000-7f8078386000 rw-p 00059000 08:01 187458                     /usr/lib/libQt5OpenGL.so.5.5.0
7f8078386000-7f80783f4000 r-xp 00000000 08:01 187459                     /usr/lib/libQt5PrintSupport.so.5.5.0
7f80783f4000-7f80785f3000 ---p 0006e000 08:01 187459                     /usr/lib/libQt5PrintSupport.so.5.5.0
7f80785f3000-7f80785f7000 r--p 0006d000 08:01 187459                     /usr/lib/libQt5PrintSupport.so.5.5.0
7f80785f7000-7f80785f9000 rw-p 00071000 08:01 187459                     /usr/lib/libQt5PrintSupport.so.5.5.0
7f80785f9000-7f8078632000 r-xp 00000000 08:01 164035                     /usr/lib/libQt5Sensors.so.5.5.0
7f8078632000-7f8078832000 ---p 00039000 08:01 164035                     /usr/lib/libQt5Sensors.so.5.5.0
7f8078832000-7f8078836000 r--p 00039000 08:01 164035                     /usr/lib/libQt5Sensors.so.5.5.0
7f8078836000-7f8078837000 rw-p 0003d000 08:01 164035                     /usr/lib/libQt5Sensors.so.5.5.0
7f8078837000-7f807aaf0000 r-xp 00000000 08:01 164324                     /usr/lib/libQt5WebKit.so.5.5.0
7f807aaf0000-7f807acf0000 ---p 022b9000 08:01 164324                     /usr/lib/libQt5WebKit.so.5.5.0
7f807acf0000-7f807ae84000 r--p 022b9000 08:01 164324                     /usr/lib/libQt5WebKit.so.5.5.0
7f807ae84000-7f807aea9000 rw-p 0244d000 08:01 164324                     /usr/lib/libQt5WebKit.so.5.5.0
7f807aea9000-7f807aed7000 rw-p 00000000 00:00 0 
7f807aed7000-7f807b072000 r-xp 00000000 08:01 133796                     /usr/lib/libc-2.22.so
7f807b072000-7f807b271000 ---p 0019b000 08:01 133796                     /usr/lib/libc-2.22.so
7f807b271000-7f807b275000 r--p 0019a000 08:01 133796                     /usr/lib/libc-2.22.so
7f807b275000-7f807b277000 rw-p 0019e000 08:01 133796                     /usr/lib/libc-2.22.so
7f807b277000-7f807b27b000 rw-p 00000000 00:00 0 
7f807b27b000-7f807b291000 r-xp 00000000 08:01 134599                     /usr/lib/libgcc_s.so.1
7f807b291000-7f807b490000 ---p 00016000 08:01 134599                     /usr/lib/libgcc_s.so.1
7f807b490000-7f807b491000 rw-p 00015000 08:01 134599                     /usr/lib/libgcc_s.so.1
7f807b491000-7f807b58e000 r-xp 00000000 08:01 133789                     /usr/lib/libm-2.22.so
7f807b58e000-7f807b78d000 ---p 000fd000 08:01 133789                     /usr/lib/libm-2.22.so
7f807b78d000-7f807b78e000 r--p 000fc000 08:01 133789                     /usr/lib/libm-2.22.so
7f807b78e000-7f807b78f000 rw-p 000fd000 08:01 133789                     /usr/lib/libm-2.22.so
7f807b78f000-7f807b901000 r-xp 00000000 08:01 148675                     /usr/lib/libstdc++.so.6.0.21
7f807b901000-7f807bb01000 ---p 00172000 08:01 148675                     /usr/lib/libstdc++.so.6.0.21
7f807bb01000-7f807bb0b000 r--p 00172000 08:01 148675                     /usr/lib/libstdc++.so.6.0.21
7f807bb0b000-7f807bb0d000 rw-p 0017c000 08:01 148675                     /usr/lib/libstdc++.so.6.0.21
7f807bb0d000-7f807bb11000 rw-p 00000000 00:00 0 
7f807bb11000-7f807bfe9000 r-xp 00000000 08:01 184284                     /usr/lib/libQt5Core.so.5.5.0
7f807bfe9000-7f807c1e8000 ---p 004d8000 08:01 184284                     /usr/lib/libQt5Core.so.5.5.0
7f807c1e8000-7f807c1f4000 r--p 004d7000 08:01 184284                     /usr/lib/libQt5Core.so.5.5.0
7f807c1f4000-7f807c1fa000 rw-p 004e3000 08:01 184284                     /usr/lib/libQt5Core.so.5.5.0
7f807c1fa000-7f807c1fe000 rw-p 00000000 00:00 0 
7f807c1fe000-7f807c744000 r-xp 00000000 08:01 185086                     /usr/lib/libQt5Gui.so.5.5.0
7f807c744000-7f807c944000 ---p 00546000 08:01 185086                     /usr/lib/libQt5Gui.so.5.5.0
7f807c944000-7f807c959000 r--p 00546000 08:01 185086                     /usr/lib/libQt5Gui.so.5.5.0
7f807c959000-7f807c965000 rw-p 0055b000 08:01 185086                     /usr/lib/libQt5Gui.so.5.5.0
7f807c965000-7f807c96a000 rw-p 00000000 00:00 0 
7f807c96a000-7f807cfe4000 r-xp 00000000 08:01 185089                     /usr/lib/libQt5Widgets.so.5.5.0
7f807cfe4000-7f807d1e3000 ---p 0067a000 08:01 185089                     /usr/lib/libQt5Widgets.so.5.5.0
7f807d1e3000-7f807d211000 r--p 00679000 08:01 185089                     /usr/lib/libQt5Widgets.so.5.5.0
7f807d211000-7f807d21e000 rw-p 006a7000 08:01 185089                     /usr/lib/libQt5Widgets.so.5.5.0
7f807d21e000-7f807d36e000 r-xp 00000000 08:01 185083                     /usr/lib/libQt5Network.so.5.5.0
7f807d36e000-7f807d56d000 ---p 00150000 08:01 185083                     /usr/lib/libQt5Network.so.5.5.0
7f807d56d000-7f807d573000 r--p 0014f000 08:01 185083                     /usr/lib/libQt5Network.so.5.5.0
7f807d573000-7f807d576000 rw-p 00155000 08:01 185083                     /usr/lib/libQt5Network.so.5.5.0
7f807d576000-7f807d657000 r-xp 00000000 08:01 158774                     /usr/lib/libpion-5.0.so
7f807d657000-7f807d856000 ---p 000e1000 08:01 158774                     /usr/lib/libpion-5.0.so
7f807d856000-7f807d85d000 r--p 000e0000 08:01 158774                     /usr/lib/libpion-5.0.so
7f807d85d000-7f807d85f000 rw-p 000e7000 08:01 158774                     /usr/lib/libpion-5.0.so
7f807d85f000-7f807daac000 r-xp 00000000 08:01 139327                     /usr/lib/libcrypto.so.1.0.0
7f807daac000-7f807dcab000 ---p 0024d000 08:01 139327                     /usr/lib/libcrypto.so.1.0.0
7f807dcab000-7f807dcc7000 r--p 0024c000 08:01 139327                     /usr/lib/libcrypto.so.1.0.0
7f807dcc7000-7f807dcd3000 rw-p 00268000 08:01 139327                     /usr/lib/libcrypto.so.1.0.0
7f807dcd3000-7f807dcd6000 rw-p 00000000 00:00 0 
7f807dcd6000-7f807dd12000 r-xp 00000000 08:01 158704                     /usr/lib/liblog4cpp.so.5.0.6
7f807dd12000-7f807df11000 ---p 0003c000 08:01 158704                     /usr/lib/liblog4cpp.so.5.0.6
7f807df11000-7f807df13000 r--p 0003b000 08:01 158704                     /usr/lib/liblog4cpp.so.5.0.6
7f807df13000-7f807df14000 rw-p 0003d000 08:01 158704                     /usr/lib/liblog4cpp.so.5.0.6
7f807df14000-7f807df2b000 r-xp 00000000 08:01 177910                     /usr/lib/libboost_filesystem.so.1.58.0
7f807df2b000-7f807e12a000 ---p 00017000 08:01 177910                     /usr/lib/libboost_filesystem.so.1.58.0
7f807e12a000-7f807e12b000 r--p 00016000 08:01 177910                     /usr/lib/libboost_filesystem.so.1.58.0
7f807e12b000-7f807e12c000 rw-p 00017000 08:01 177910                     /usr/lib/libboost_filesystem.so.1.58.0
7f807e12c000-7f807e151000 r-xp 00000000 08:01 177912                     /usr/lib/libboost_thread.so.1.58.0
7f807e151000-7f807e350000 ---p 00025000 08:01 177912                     /usr/lib/libboost_thread.so.1.58.0
7f807e350000-7f807e352000 r--p 00024000 08:01 177912                     /usr/lib/libboost_thread.so.1.58.0
7f807e352000-7f807e353000 rw-p 00026000 08:01 177912                     /usr/lib/libboost_thread.so.1.58.0
7f807e353000-7f807e363000 r-xp 00000000 08:01 177911                     /usr/lib/libboost_date_time.so.1.58.0
7f807e363000-7f807e563000 ---p 00010000 08:01 177911                     /usr/lib/libboost_date_time.so.1.58.0
7f807e563000-7f807e564000 r--p 00010000 08:01 177911                     /usr/lib/libboost_date_time.so.1.58.0
7f807e564000-7f807e565000 rw-p 00011000 08:01 177911                     /usr/lib/libboost_date_time.so.1.58.0
7f807e565000-7f807e5d5000 r-xp 00000000 08:01 186271                     /usr/lib/libcurl.so.4.3.0
7f807e5d5000-7f807e7d5000 ---p 00070000 08:01 186271                     /usr/lib/libcurl.so.4.3.0
7f807e7d5000-7f807e7d7000 r--p 00070000 08:01 186271                     /usr/lib/libcurl.so.4.3.0
7f807e7d7000-7f807e7d8000 rw-p 00072000 08:01 186271                     /usr/lib/libcurl.so.4.3.0
7f807e7d8000-7f807e7d9000 rw-p 00000000 00:00 0 
7f807e7d9000-7f807e924000 r-xp 00000000 08:01 158324                     /usr/lib/libgloox.so.13.0.0
7f807e924000-7f807eb24000 ---p 0014b000 08:01 158324                     /usr/lib/libgloox.so.13.0.0
7f807eb24000-7f807eb2a000 r--p 0014b000 08:01 158324                     /usr/lib/libgloox.so.13.0.0
7f807eb2a000-7f807eb2d000 rw-p 00151000 08:01 158324                     /usr/lib/libgloox.so.13.0.0
7f807eb2d000-7f807eb30000 r-xp 00000000 08:01 177906                     /usr/lib/libboost_system.so.1.58.0
7f807eb30000-7f807ed2f000 ---p 00003000 08:01 177906                     /usr/lib/libboost_system.so.1.58.0
7f807ed2f000-7f807ed30000 r--p 00002000 08:01 177906                     /usr/lib/libboost_system.so.1.58.0
7f807ed30000-7f807ed31000 rw-p 00003000 08:01 177906                     /usr/lib/libboost_system.so.1.58.0
7f807ed31000-7f807f096000 r-xp 00000000 08:01 163799                     /usr/lib/libtorrent-rasterbar.so.8.0.0
7f807f096000-7f807f295000 ---p 00365000 08:01 163799                     /usr/lib/libtorrent-rasterbar.so.8.0.0
7f807f295000-7f807f29f000 r--p 00364000 08:01 163799                     /usr/lib/libtorrent-rasterbar.so.8.0.0
7f807f29f000-7f807f2ab000 rw-p 0036e000 08:01 163799                     /usr/lib/libtorrent-rasterbar.so.8.0.0
7f807f2ab000-7f807f2ac000 rw-p 00000000 00:00 0 
7f807f2ac000-7f807f2e6000 r-xp 00000000 08:01 185081                     /usr/lib/libQt5Xml.so.5.5.0
7f807f2e6000-7f807f4e6000 ---p 0003a000 08:01 185081                     /usr/lib/libQt5Xml.so.5.5.0
7f807f4e6000-7f807f4e8000 r--p 0003a000 08:01 185081                     /usr/lib/libQt5Xml.so.5.5.0
7f807f4e8000-7f807f4e9000 rw-p 0003c000 08:01 185081                     /usr/lib/libQt5Xml.so.5.5.0
7f807f4e9000-7f807f566000 r-xp 00000000 08:01 185084                     /usr/lib/libQt5DBus.so.5.5.0
7f807f566000-7f807f766000 ---p 0007d000 08:01 185084                     /usr/lib/libQt5DBus.so.5.5.0
7f807f766000-7f807f767000 r--p 0007d000 08:01 185084                     /usr/lib/libQt5DBus.so.5.5.0
7f807f767000-7f807f769000 rw-p 0007e000 08:01 185084                     /usr/lib/libQt5DBus.so.5.5.0
7f807f769000-7f807f7bd000 r-xp 00000000 08:01 185090                     /usr/lib/libQt5Svg.so.5.5.0
7f807f7bd000-7f807f9bc000 ---p 00054000 08:01 185090                     /usr/lib/libQt5Svg.so.5.5.0
7f807f9bc000-7f807f9be000 r--p 00053000 08:01 185090                     /usr/lib/libQt5Svg.so.5.5.0
7f807f9be000-7f807f9c0000 rw-p 00055000 08:01 185090                     /usr/lib/libQt5Svg.so.5.5.0
7f807f9c0000-7f807fa4c000 r-xp 00000000 08:01 166548                     /usr/lib/libQt5Help.so.5.5.0
7f807fa4c000-7f807fc4b000 ---p 0008c000 08:01 166548                     /usr/lib/libQt5Help.so.5.5.0
7f807fc4b000-7f807fc50000 r--p 0008b000 08:01 166548                     /usr/lib/libQt5Help.so.5.5.0
7f807fc50000-7f807fc52000 rw-p 00090000 08:01 166548                     /usr/lib/libQt5Help.so.5.5.0
7f807fc52000-7f807fc94000 r-xp 00000000 08:01 164325                     /usr/lib/libQt5WebKitWidgets.so.5.5.0
7f807fc94000-7f807fe93000 ---p 00042000 08:01 164325                     /usr/lib/libQt5WebKitWidgets.so.5.5.0
7f807fe93000-7f807fe96000 r--p 00041000 08:01 164325                     /usr/lib/libQt5WebKitWidgets.so.5.5.0
7f807fe96000-7f807fe98000 rw-p 00044000 08:01 164325                     /usr/lib/libQt5WebKitWidgets.so.5.5.0
7f807fe98000-7f807feb0000 r-xp 00000000 08:01 133802                     /usr/lib/libpthread-2.22.so
7f807feb0000-7f80800af000 ---p 00018000 08:01 133802                     /usr/lib/libpthread-2.22.so
7f80800af000-7f80800b0000 r--p 00017000 08:01 133802                     /usr/lib/libpthread-2.22.so
7f80800b0000-7f80800b1000 rw-p 00018000 08:01 133802                     /usr/lib/libpthread-2.22.so
7f80800b1000-7f80800b5000 rw-p 00000000 00:00 0 
7f80800b5000-7f80800b8000 r-xp 00000000 08:01 133766                     /usr/lib/libdl-2.22.so
7f80800b8000-7f80802b7000 ---p 00003000 08:01 133766                     /usr/lib/libdl-2.22.so
7f80802b7000-7f80802b8000 r--p 00002000 08:01 133766                     /usr/lib/libdl-2.22.so
7f80802b8000-7f80802b9000 rw-p 00003000 08:01 133766                     /usr/lib/libdl-2.22.so
7f80802b9000-7f80802db000 r-xp 00000000 08:01 133763                     /usr/lib/ld-2.22.so
7f80802db000-7f80802de000 r--s 00024000 08:01 1998721                    /usr/share/fatrat/data/java/libs/commons-io.jar
7f80802de000-7f80802e0000 r--s 00010000 08:01 1998720                    /usr/share/fatrat/data/java/libs/commons-codec.jar
7f80802e0000-7f80802e2000 r--s 00007000 08:01 1330681                    /usr/share/fatrat/data/java/fatrat-jplugins.jar
7f80802e2000-7f80802ee000 rw-p 00000000 00:00 0 
7f80802ee000-7f80802ef000 rw-p 00000000 00:00 0 
7f80802ef000-7f80802f7000 rw-s 00000000 00:1f 71599                      /tmp/hsperfdata_mouse/11194
7f80802f7000-7f80802f8000 rw-p 00000000 00:00 0 
7f80802f8000-7f80802f9000 r--p 00000000 00:00 0 
7f80802f9000-7f8080309000 r--p 00000000 08:01 1330693                    /usr/share/fatrat/lang/fatrat_ru_RU.qm
7f8080309000-7f808030d000 r--p 00000000 08:01 158707                     /usr/share/locale/ru/LC_MESSAGES/sonnet5_qt.qm
7f808030d000-7f808030f000 r--p 00000000 08:01 157656                     /usr/share/locale/ru/LC_MESSAGES/kcoreaddons5_qt.qm
7f808030f000-7f8080310000 r--p 00000000 08:01 158265                     /usr/share/locale/ru/LC_MESSAGES/kauth5_qt.qm
7f8080310000-7f8080313000 r--p 00000000 08:01 164516                     /usr/share/locale/ru/LC_MESSAGES/kconfig5_qt.qm
7f8080313000-7f808031f000 r--p 00000000 08:01 157711                     /usr/share/locale/ru/LC_MESSAGES/kwidgetsaddons5_qt.qm
7f808031f000-7f8080336000 r--p 00000000 08:01 1189232                    /usr/share/qt/translations/qtxmlpatterns_ru.qm
7f8080336000-7f808033a000 r--p 00000000 08:01 1189050                    /usr/share/qt/translations/qtmultimedia_ru.qm
7f808033a000-7f8080344000 r--p 00000000 08:01 1189201                    /usr/share/qt/translations/qtquick1_ru.qm
7f8080344000-7f8080345000 r--p 00000000 08:01 163775                     /usr/share/locale/ru/LC_MESSAGES/knotifications5_qt.qm
7f8080345000-7f8080347000 r--p 00000000 08:01 157772                     /usr/share/locale/ru/LC_MESSAGES/kjobwidgets5_qt.qm
7f8080347000-7f8080349000 r--p 00000000 08:01 158867                     /usr/share/locale/ru/LC_MESSAGES/kbookmarks5_qt.qm
7f8080349000-7f808034f000 r--p 00000000 08:01 157537                     /usr/share/locale/ru/LC_MESSAGES/solid5_qt.qm
7f808034f000-7f8080350000 r--p 00000000 08:01 157888                     /usr/share/locale/ru/LC_MESSAGES/kwindowsystem5_qt.qm
7f8080350000-7f8080351000 r--p 00000000 08:01 170130                     /usr/share/locale/ru/LC_MESSAGES/kdbusaddons5_qt.qm
7f8080351000-7f8080352000 r--p 00000000 08:01 158503                     /usr/share/locale/ru/LC_MESSAGES/kitemviews5_qt.qm
7f8080352000-7f8080355000 r--p 00000000 08:01 158326                     /usr/share/locale/ru/LC_MESSAGES/kcodecs5_qt.qm
7f8080355000-7f808036c000 r--p 00000000 08:01 1189232                    /usr/share/qt/translations/qtxmlpatterns_ru.qm
7f808036c000-7f8080370000 r--p 00000000 08:01 1189050                    /usr/share/qt/translations/qtmultimedia_ru.qm
7f8080370000-7f808037a000 r--p 00000000 08:01 1189201                    /usr/share/qt/translations/qtquick1_ru.qm
7f808037a000-7f808037c000 r--p 00000000 08:01 1189220                    /usr/share/qt/translations/qtscript_ru.qm
7f808037c000-7f80803a3000 r--p 00000000 08:01 1180346                    /usr/share/qt/translations/qtbase_ru.qm
7f80803a3000-7f80803a4000 r--p 00000000 08:01 1180323                    /usr/share/qt/translations/qt_ru.qm
7f80803a4000-7f80803a5000 r--p 00000000 08:01 158112                     /usr/share/locale/ru/LC_MESSAGES/kcompletion5_qt.qm
7f80803a5000-7f80803b1000 r--p 00000000 08:01 157711                     /usr/share/locale/ru/LC_MESSAGES/kwidgetsaddons5_qt.qm
7f80803b1000-7f80803b4000 r--p 00000000 08:01 164516                     /usr/share/locale/ru/LC_MESSAGES/kconfig5_qt.qm
7f80803b4000-7f80803b5000 r--p 00000000 08:01 158057                     /usr/share/locale/ru/LC_MESSAGES/kglobalaccel5_qt.qm
7f80803b5000-7f80803b6000 r--p 00000000 08:01 158265                     /usr/share/locale/ru/LC_MESSAGES/kauth5_qt.qm
7f80803b6000-7f80803b8000 r--p 00000000 08:01 157656                     /usr/share/locale/ru/LC_MESSAGES/kcoreaddons5_qt.qm
7f80803b8000-7f80803bc000 r--p 00000000 08:01 158707                     /usr/share/locale/ru/LC_MESSAGES/sonnet5_qt.qm
7f80803bc000-7f80803da000 r-xp 00000000 08:01 170097                     /usr/lib/libudev.so.1.6.4
7f80803da000-7f80803db000 r--p 0001d000 08:01 170097                     /usr/lib/libudev.so.1.6.4
7f80803db000-7f80803dc000 rw-p 0001e000 08:01 170097                     /usr/lib/libudev.so.1.6.4
7f80803dc000-7f8080404000 rw-p 00000000 00:00 0 
7f8080404000-7f8080484000 r-xp 00000000 08:01 170096                     /usr/lib/libsystemd.so.0.10.1
7f8080484000-7f8080485000 ---p 00080000 08:01 170096                     /usr/lib/libsystemd.so.0.10.1
7f8080485000-7f8080488000 r--p 00080000 08:01 170096                     /usr/lib/libsystemd.so.0.10.1
7f8080488000-7f8080489000 rw-p 00083000 08:01 170096                     /usr/lib/libsystemd.so.0.10.1
7f8080489000-7f808049d000 rw-p 00000000 00:00 0 
7f808049d000-7f808049e000 r--p 00000000 08:01 158057                     /usr/share/locale/ru/LC_MESSAGES/kglobalaccel5_qt.qm
7f808049e000-7f808049f000 r--p 00000000 08:01 158112                     /usr/share/locale/ru/LC_MESSAGES/kcompletion5_qt.qm
7f808049f000-7f80804a1000 r--p 00000000 08:01 1189220                    /usr/share/qt/translations/qtscript_ru.qm
7f80804a1000-7f80804c8000 r--p 00000000 08:01 1180346                    /usr/share/qt/translations/qtbase_ru.qm
7f80804c8000-7f80804c9000 r--p 00000000 08:01 1180323                    /usr/share/qt/translations/qt_ru.qm
7f80804c9000-7f80804cc000 r--p 00000000 08:01 158326                     /usr/share/locale/ru/LC_MESSAGES/kcodecs5_qt.qm
7f80804cc000-7f80804cd000 r--p 00000000 08:01 158503                     /usr/share/locale/ru/LC_MESSAGES/kitemviews5_qt.qm
7f80804cd000-7f80804ce000 r--p 00000000 08:01 170130                     /usr/share/locale/ru/LC_MESSAGES/kdbusaddons5_qt.qm
7f80804ce000-7f80804cf000 r--p 00000000 08:01 157888                     /usr/share/locale/ru/LC_MESSAGES/kwindowsystem5_qt.qm
7f80804cf000-7f80804d5000 r--p 00000000 08:01 157537                     /usr/share/locale/ru/LC_MESSAGES/solid5_qt.qm
7f80804d5000-7f80804d7000 r--p 00000000 08:01 158867                     /usr/share/locale/ru/LC_MESSAGES/kbookmarks5_qt.qm
7f80804d7000-7f80804d9000 r--p 00000000 08:01 157772                     /usr/share/locale/ru/LC_MESSAGES/kjobwidgets5_qt.qm
7f80804d9000-7f80804da000 r--p 00000000 08:01 163775                     /usr/share/locale/ru/LC_MESSAGES/knotifications5_qt.qm
7f80804da000-7f80804db000 r--p 00021000 08:01 133763                     /usr/lib/ld-2.22.so
7f80804db000-7f80804dc000 rw-p 00022000 08:01 133763                     /usr/lib/ld-2.22.so
7f80804dc000-7f80804dd000 rw-p 00000000 00:00 0 
7ffc748fe000-7ffc74901000 ---p 00000000 00:00 0 
7ffc74902000-7ffc749fe000 rw-p 00000000 00:00 0                          [stack]
7ffc74a6c000-7ffc74a6e000 r--p 00000000 00:00 0                          [vvar]
7ffc74a6e000-7ffc74a70000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]

VM Arguments:
jvm_args: -Xmx24m -Djava.security.manager -Djava.security.policy=/usr/share/fatrat/data/java/extension.policy -XX:+UseParNewGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 
java_command: <unknown>
java_class_path (initial): :/usr/share/fatrat/data/java/fatrat-jplugins.jar:/usr/share/fatrat/data/java/libs/commons-codec.jar:/usr/share/fatrat/data/java/libs/commons-io.jar:/usr/share/fatrat/data/java/libs/commons-lang.jar:/usr/share/fatrat/data/java/libs/js-14.jar:/usr/share/fatrat/data/java/libs/json.jar:/usr/share/fatrat/data/java/libs/jsoup.jar
Launcher Type: generic

Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl
SHELL=/usr/bin/zsh
DISPLAY=:0

Signal Handlers:
SIGSEGV: [libjvm.so+0xaba070], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0xaba070], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x917630], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x917630], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x917630], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x917630], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x918c60], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: [libjvm.so+0x91a060], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGINT: [+0xa5e30], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_NODEFER
SIGTERM: [+0xa5e30], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_NODEFER
SIGQUIT: [libjvm.so+0x91a060], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO


---------------  S Y S T E M  ---------------

OS:NAME="Arch Linux"
ID=arch
PRETTY_NAME="Arch Linux"
ANSI_COLOR="0;36"
HOME_URL="https://www.archlinux.org/"
SUPPORT_URL="https://bbs.archlinux.org/"
BUG_REPORT_URL="https://bugs.archlinux.org/"


uname:Linux 4.1.5-1-ARCH #1 SMP PREEMPT Tue Aug 11 15:41:14 CEST 2015 x86_64
libc:glibc 2.22 NPTL 2.22 
rlimit: STACK 8192k, CORE 0k, NPROC 13333, NOFILE 4096, AS infinity
load average:1,45 1,86 2,11

/proc/meminfo:
MemTotal:        3418808 kB
MemFree:          721772 kB
MemAvailable:    1884800 kB
Buffers:          137724 kB
Cached:           974852 kB
SwapCached:          176 kB
Active:          1599928 kB
Inactive:         835848 kB
Active(anon):     967296 kB
Inactive(anon):   370944 kB
Active(file):     632632 kB
Inactive(file):   464904 kB
Unevictable:       15452 kB
Mlocked:           15452 kB
SwapTotal:       3145724 kB
SwapFree:        3141472 kB
Dirty:               604 kB
Writeback:             0 kB
AnonPages:       1338596 kB
Mapped:           309936 kB
Shmem:              9072 kB
Slab:             120712 kB
SReclaimable:      92756 kB
SUnreclaim:        27956 kB
KernelStack:        4672 kB
PageTables:        24484 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     4855128 kB
Committed_AS:    2850368 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      120184 kB
VmallocChunk:   34359537660 kB
HardwareCorrupted:     0 kB
AnonHugePages:    348160 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      214780 kB
DirectMap2M:     3403776 kB
DirectMap1G:           0 kB


CPU:total 4 (4 cores per cpu, 1 threads per core) family 22 model 0 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, mmxext, 3dnowpref, lzcnt, sse4a, tsc, tscinvbit, tscinv, bmi1

/proc/cpuinfo:
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 22
model       : 0
model name  : AMD A6-5200 APU with Radeon(TM) HD Graphics
stepping    : 1
microcode   : 0x700010f
cpu MHz     : 2000.000
cache size  : 2048 KB
physical id : 0
siblings    : 4
core id     : 0
cpu cores   : 4
apicid      : 0
initial apicid  : 0
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf eagerfpu pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt topoext perfctr_nb bpext perfctr_l2 arat hw_pstate proc_feedback npt lbrv svm_lock nrip_save tsc_scale flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1 xsaveopt
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 3994.01
TLB size    : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate [11]

processor   : 1
vendor_id   : AuthenticAMD
cpu family  : 22
model       : 0
model name  : AMD A6-5200 APU with Radeon(TM) HD Graphics    
stepping    : 1
microcode   : 0x700010f
cpu MHz     : 2000.000
cache size  : 2048 KB
physical id : 0
siblings    : 4
core id     : 1
cpu cores   : 4
apicid      : 1
initial apicid  : 1
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf eagerfpu pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt topoext perfctr_nb bpext perfctr_l2 arat hw_pstate proc_feedback npt lbrv svm_lock nrip_save tsc_scale flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1 xsaveopt
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 3994.01
TLB size    : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate [11]

processor   : 2
vendor_id   : AuthenticAMD
cpu family  : 22
model       : 0
model name  : AMD A6-5200 APU with Radeon(TM) HD Graphics    
stepping    : 1
microcode   : 0x700010f
cpu MHz     : 2000.000
cache size  : 2048 KB
physical id : 0
siblings    : 4
core id     : 2
cpu cores   : 4
apicid      : 2
initial apicid  : 2
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf eagerfpu pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt topoext perfctr_nb bpext perfctr_l2 arat hw_pstate proc_feedback npt lbrv svm_lock nrip_save tsc_scale flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1 xsaveopt
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 3994.01
TLB size    : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate [11]

processor   : 3
vendor_id   : AuthenticAMD
cpu family  : 22
model       : 0
model name  : AMD A6-5200 APU with Radeon(TM) HD Graphics    
stepping    : 1
microcode   : 0x700010f
cpu MHz     : 2000.000
cache size  : 2048 KB
physical id : 0
siblings    : 4
core id     : 3
cpu cores   : 4
apicid      : 3
initial apicid  : 3
fpu     : yes
fpu_exception   : yes
cpuid level : 13
wp      : yes
flags       : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc extd_apicid aperfmperf eagerfpu pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt topoext perfctr_nb bpext perfctr_l2 arat hw_pstate proc_feedback npt lbrv svm_lock nrip_save tsc_scale flushbyasid decodeassists pausefilter pfthreshold vmmcall bmi1 xsaveopt
bugs        : fxsave_leak sysret_ss_attrs
bogomips    : 3994.01
TLB size    : 1024 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management: ts ttp tm 100mhzsteps hwpstate [11]



Memory: 4k page, physical 3418808k(721772k free), swap 3145724k(3141472k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.60-b23) for linux-amd64 JRE (1.8.0_60-b27), built on Aug  4 2015 12:19:40 by "java_re" with gcc 4.3.0 20080428 (Red Hat 4.3.0-8)

time: Mon Aug 24 16:08:11 2015
elapsed time: 2 seconds (0d 0h 0m 2s)

Thanx!

http/https download get 401 error

  1. set up regex with "easynews" & user & password
  2. paste new url to download from easynews (http or https).
  3. start download.
  4. get 401

Log:
2015-02-14 23:29:33 - Changed state: Paused -> Waiting
2015-02-14 23:29:34 - Changed state: Waiting -> Active
2015-02-14 23:29:34 - 0x2a06990 - Hostname was NOT found in DNS cache
2015-02-14 23:29:34 - 0x2a06990 - Trying 69.16.169.99...
2015-02-14 23:29:35 - 0x2a06990 - Connected to members.easynews.com (69.16.169.99) port 80 (#2)
2015-02-14 23:29:35 - 0x2a06990 - GET /dl/auto/80/d71075b21599081b65389c32b3e933d5031ca121625ad.mkv/xyz.mkv HTTP/1.1

User-Agent: FatRat/1.2.0_beta2

Host: members.easynews.com

Accept: /
2015-02-14 23:29:35 - 0x2a06990 - The requested URL returned error: 401 Authorization Required
2015-02-14 23:29:35 - 0x2a06990 - Closing connection 2
2015-02-14 23:29:35 - Changed state: Active -> Failed

Could you let me know if I am doing something work or this is a known issue.

Suggestion for remote management on Android

Could an app be designed so that links can be shared to the download manager? I find that this idea would make it more intuitive on mobile devices instead of using a Web browser.

No Option for Web Url

There wasn't any option to add 'Web Url' in 'Web Seeds' Tab while creating a New Torrent file.
I'm using 'Kaos' Operating System, Up to Date(Updated).
Thank You.

Web Interface Enhancement - Adding Multiple Uploads | Watch Folder

Hello ,
The web interface needs one particular feature that GUI has , "multiple files selection/adding" . I can add multiple torrent files in GUI, but in web interface I have to add it one by one. For a few files, it is no problem , but for large amounts , it would be cool and easier to use.

Also , for handling multiple files, a "Watch Folder" feature could be added, where we upload torrent files and FatRat detects and adds them into the queue automatically.
For watch folder, uploading a .txt file with http/ftp links inside could be a cool feature to have also .

Kind regards.

Compile error with boost 1.66

Hello,
I have problem with compiling on actual version of Arch Linux :
Its look like problem with boost 1.66 :

[ 51%] Building CXX object CMakeFiles/fatrat.dir/src/SimpleEmail.cpp.o
In file included from /usr/include/pion/tcp/server.hpp:22:0,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/pion/tcp/connection.hpp: In constructor ‘pion::tcp::connection::connection(boost::asio::io_service&, bool)’:
/usr/include/pion/tcp/connection.hpp:120:36: error: no matching function for call to ‘boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)’
m_lifecycle(LIFECYCLE_CLOSE)
^
In file included from /usr/include/boost/asio/ssl/context.hpp:757:0,
from /usr/include/boost/asio/ssl.hpp:18,
from /usr/include/pion/tcp/connection.hpp:18,
from /usr/include/pion/tcp/server.hpp:22,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context&&)
context::context(context&& other)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)
context::context(context::method m)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate expects 1 argument, 2 provided
In file included from /usr/include/pion/tcp/server.hpp:22:0,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/pion/tcp/connection.hpp: In constructor ‘pion::tcp::connection::connection(boost::asio::io_service&, pion::tcp::connection::ssl_context_type&)’:
/usr/include/pion/tcp/connection.hpp:140:36: error: no matching function for call to ‘boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)’
m_lifecycle(LIFECYCLE_CLOSE)
^
In file included from /usr/include/boost/asio/ssl/context.hpp:757:0,
from /usr/include/boost/asio/ssl.hpp:18,
from /usr/include/pion/tcp/connection.hpp:18,
from /usr/include/pion/tcp/server.hpp:22,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context&&)
context::context(context&& other)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)
context::context(context::method m)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate expects 1 argument, 2 provided
In file included from /usr/include/pion/tcp/server.hpp:22:0,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/pion/tcp/connection.hpp: In constructor ‘pion::tcp::connection::connection(boost::asio::io_service&, pion::tcp::connection::ssl_context_type&, bool, pion::tcp::connection::connection_handler)’:
/usr/include/pion/tcp/connection.hpp:702:44: error: no matching function for call to ‘boost::asio::ssl::context::context(boost::asio::io_service&, boost::asio::ssl::context_base::method)’
m_finished_handler(finished_handler)
^
In file included from /usr/include/boost/asio/ssl/context.hpp:757:0,
from /usr/include/boost/asio/ssl.hpp:18,
from /usr/include/pion/tcp/connection.hpp:18,
from /usr/include/pion/tcp/server.hpp:22,
from /usr/include/pion/http/server.hpp:22,
from /usr/include/pion/http/plugin_server.hpp:20,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/remote/HttpService.h:42,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:71:
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context&&)
context::context(context&& other)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:326:1: note: candidate expects 1 argument, 2 provided
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate: boost::asio::ssl::context::context(boost::asio::ssl::context_base::method)
context::context(context::method m)
^~~~~~~
/usr/include/boost/asio/ssl/impl/context.ipp:63:1: note: candidate expects 1 argument, 2 provided
[ 52%] Building CXX object CMakeFiles/fatrat.dir/src/SpeedGraph.cpp.o
[ 52%] Building CXX object CMakeFiles/fatrat.dir/src/SpeedLimitWidget.cpp.o
[ 52%] Building CXX object CMakeFiles/fatrat.dir/src/StatsWidget.cpp.o
[ 53%] Building CXX object CMakeFiles/fatrat.dir/src/Transfer.cpp.o
[ 53%] Building CXX object CMakeFiles/fatrat.dir/src/TransfersModel.cpp.o
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp: At global scope:
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:107:13: warning: ‘void testJava()’ declared ‘static’ but never defined [-Wunused-function]
static void testJava();
^~~~~~~~
[ 53%] Building CXX object CMakeFiles/fatrat.dir/src/Logger.cpp.o
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/fatrat.cpp:671:6: warning: ‘void testNotif()’ defined but not used [-Wunused-function]
void testNotif()
^~~~~~~~~
make[2]: *** [CMakeFiles/fatrat.dir/build.make:1069: CMakeFiles/fatrat.dir/src/fatrat.cpp.o] Chyba 1
make[2]: *** Čeká se na nedokončené úlohy…
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/TransfersModel.cpp: In member function ‘virtual void ProgressDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’:
/tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/TransfersModel.cpp:381:29: warning: ‘QStyleOptionProgressBarV2’ is deprecated [-Wdeprecated-declarations]
QStyleOptionProgressBarV2 opts;
^~~~
In file included from /usr/include/qt/QtWidgets/qabstractitemdelegate.h:45:0,
from /usr/include/qt/QtWidgets/qabstractitemview.h:47,
from /usr/include/qt/QtWidgets/qtreeview.h:44,
from /usr/include/qt/QtWidgets/QTreeView:1,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/TransfersModel.h:32,
from /tmp/yaourt-tmp-max/aur-fatrat-git/src/fatrat/src/TransfersModel.cpp:33:
/usr/include/qt/QtWidgets/qstyleoption.h:349:51: note: declared here
typedef Q_DECL_DEPRECATED QStyleOptionProgressBar QStyleOptionProgressBarV2;
^~~~~~~~~~~~~~~~~~~~~~~~~
make[1]: *** [CMakeFiles/Makefile2:137: CMakeFiles/fatrat.dir/all] Chyba 2
make: *** [Makefile:130: all] Chyba 2

pion library, which Fatrat uses, have same problem :
splunk/pion#124

Maybe is problem only in pion library, but author of pion libs still did not patch for this, so Fatrat will not work too.

Max

how to report

where can I find a guide to know how to report? (I am not a programmer)

BitTorrent code still relying on QtWebKit

Parts of the BitTorrent code are still relying on QWebView of QtWebkit as building fails on systems lacking QtWebKit with

[ 72%] Building CXX object CMakeFiles/fatrat.dir/src/tools/TorrentSearch.cpp.o
In file included from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/tools/TorrentWebView.h:32:0,
from /usr/local/peter/Tests/FatRat/Projekt/fatrat/src/tools/TorrentSearch.cpp:35:
/usr/local/peter/Tests/FatRat/Projekt/build/ui_TorrentWebView.h:13:36: fatal error: QtWebKitWidgets/QWebView: No such file or directory
#include <QtWebKitWidgets/QWebView>
^
compilation terminated.
make[2]: *** [CMakeFiles/fatrat.dir/build.make:2865: CMakeFiles/fatrat.dir/src/tools/TorrentSearch.cpp.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[1]: *** [CMakeFiles/Makefile2:100: CMakeFiles/fatrat.dir/all] Error 2
make: *** [Makefile:128: all] Error 2

but succeeds after adding the QtWebKit development files.

Given that QtWebKit will probably be dropped one day QWebView should be replaced completely with QWebEngineView in the long run.

move transfers up and down using drag&drop

It'd be nice to be able to move transfers up & down using drag&drop (with support of moving multiple transfers at once).

Also, moving of transfers is currently very slow even when there's just a couple of them. This operation could seriously use some optimizing.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.