diff --git a/.gitmodules b/.gitmodules index 45f639e1de..b0fdd3144b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "breakpad"] path = breakpad url = https://github.com/NatronGitHub/breakpad -[submodule "jsoncpp"] - path = jsoncpp - url = https://github.com/open-source-parsers/jsoncpp.git diff --git a/.travis.yml b/.travis.yml index a6f9cf4954..e823ad2f9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,14 @@ compiler: - gcc install: - - sudo apt-get install -y libzip-dev libcurl4-openssl-dev + - sudo apt-get install -y libzip-dev libcurl4-openssl-dev libjsoncpp-dev script: - git submodule update -i --recursive - cd breakpad - - LIBS="-lzip -lz" ./configure + - ./configure - make -j2 - cd ../minidump-stackwalk - make + - cd ../tests + - sh run.sh diff --git a/README.md b/README.md index 450182db34..2981315423 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,51 @@ -Stackwalker [![Build Status](https://travis-ci.org/NatronGitHub/stackwalker.svg)](https://travis-ci.org/NatronGitHub/stackwalker) ------------ +# Stackwalker [![Build Status](https://travis-ci.org/NatronGitHub/stackwalker.svg)](https://travis-ci.org/NatronGitHub/stackwalker) -Parse crash reports from Natron. + +Stackwalker is used to process crash reports from MINGW, Linux and macOS. + +*This is a fork of Google Breakpad and Mozilla Socorro with additional features/changes maintained for Natron.* + +## Requirements + +* pkg-config +* libcurl +* libzip +* jsoncpp + +## Build (on Linux) + +``` +git submodule update -i --recursive +cd breakpad +./configure && make +cd .. +make -C minidump-stackwalk +``` + +The binary is located in the ``minidump-stackwalk`` folder. + +## Usage + +``dump_syms`` is used to create a symbol file for a given (not stripped) binary. Example: + +``` +dump_syms Natron-bin > Natron-bin.sym +``` + +``stackwalker`` is used to parse crash report dumps against symbols generated from ``dump_syms``. Example: + +``` +stackwalker CRASH.dmp > CRASH.json +``` + +## Symbols Storage + +Symbols are stored using the following directory structure: + +* Filename *(example: Natron-bin)* + * ID *(example: 69CDA01A0F236F7C71CD19E5A20A21AC0)* + * Filename.sym.zip *(example: Natron-bin.sym.zip)* + +Filename and ID must match line 1 in the symbol file. + +**Note that Stackwalker only supports zipped symbols (filename.sym.zip)** diff --git a/breakpad b/breakpad index f264b48eb0..051bbe4f5a 160000 --- a/breakpad +++ b/breakpad @@ -1 +1 @@ -Subproject commit f264b48eb0ed8f0893b08f4f9c7ae9685090ccb8 +Subproject commit 051bbe4f5aee6c06beda6a09ce4c25f899c81f3e diff --git a/jsoncpp b/jsoncpp deleted file mode 160000 index 3eda8a63ca..0000000000 --- a/jsoncpp +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 3eda8a63ca5ee562c894a4e36a6769a61c7318f5 diff --git a/minidump-stackwalk/Makefile b/minidump-stackwalk/Makefile index 370fe35d95..39c3e0f8a5 100644 --- a/minidump-stackwalk/Makefile +++ b/minidump-stackwalk/Makefile @@ -5,53 +5,36 @@ BREAKPAD_LIBS := \ $(BREAKPAD_SRCDIR)/third_party/libdisasm//libdisasm.a \ $(NULL) -JSON_DIR := ../jsoncpp -JSON_SRCDIR := $(JSON_DIR)/src/lib_json -JSON_INCLUDEDIR := $(JSON_DIR)/include - BINS := \ stackwalker \ -# dumplookup \ -# get-minidump-instructions \ -# jit-crash-categorize \ $(NULL) all: $(BINS) -stackwalker_OBJS := \ - json_reader.o \ - json_value.o \ - json_writer.o \ - $(NULL) - EXTRA_OBJS := \ http_symbol_supplier.o \ $(NULL) -VPATH += $(JSON_SRCDIR) - -OS := $(shell uname -s) -ifeq ($(OS),Linux) CURL_CFLAGS := $(shell pkg-config libcurl --cflags) CURL_LIBS := $(shell pkg-config libcurl --libs) +LIBZIP_CFLAGS := $(shell pkg-config libzip --cflags) LIBZIP_LIBS := $(shell pkg-config libzip --libs) +JSON_CFLAGS := $(shell pkg-config jsoncpp --cflags) +JSON_LIBS := $(shell pkg-config jsoncpp --libs) # Don't -Werror everywhere, some compilers are too picky. -WERROR := -Werror -else -CURL_LIBS := -lcurl -LIBZIP_LIBS := -lzip -lz -endif +#WERROR := -Werror CXXFLAGS += \ -I$(BREAKPAD_SRCDIR) \ - -I$(JSON_INCLUDEDIR) \ -D__STDC_FORMAT_MACROS=1 \ -std=gnu++0x \ -Wno-format \ $(WERROR) \ + $(JSON_CFLAGS) \ $(CURL_CFLAGS) \ + $(LIBZIP_CFLAGS) \ $(NULL) -LIBS := $(CURL_LIBS) $(LIBZIP_LIBS) +LIBS := $(JSON_LIBS) $(CURL_LIBS) $(LIBZIP_LIBS) .SECONDEXPANSION: $(BINS): %: %.cc $(BREAKPAD_LIBS) $(EXTRA_OBJS) $$($$*_OBJS) diff --git a/minidump-stackwalk/get-minidump-instructions.cc b/minidump-stackwalk/get-minidump-instructions.cc index 86a97e5c17..b1bc01db34 100644 --- a/minidump-stackwalk/get-minidump-instructions.cc +++ b/minidump-stackwalk/get-minidump-instructions.cc @@ -415,6 +415,7 @@ int main(int argc, char** argv) if (p && (p - line == 8 || p - line == 16) && !strstr(line, "<.data>:")) { frame.instruction = strtoull(line, nullptr, 16); symbolizer.FillSourceLineInfo(module_list, + NULL, // unloaded_modules &system_info, &frame); print_frame(frame, last_frame); diff --git a/minidump-stackwalk/http_symbol_supplier.cc b/minidump-stackwalk/http_symbol_supplier.cc index f4c964d5b5..1b36d02332 100644 --- a/minidump-stackwalk/http_symbol_supplier.cc +++ b/minidump-stackwalk/http_symbol_supplier.cc @@ -236,6 +236,20 @@ namespace { string JoinURL(CURL* curl, const string& url, const string& sub) { return url + "/" + URLEncode(curl, sub); } + + string GetCodeIDAndFileQueryString(CURL* curl, const CodeModule* module) { + string code_file = PathnameStripper::File(module->code_file()); + if (code_file.empty()) { + return ""; + } + + string code_id = PathnameStripper::File(module->code_identifier()); + if (code_id.empty()) { + return ""; + } + + return "?code_file=" + URLEncode(curl, code_file) + "&code_id=" + URLEncode(curl, code_id); + } } bool @@ -290,6 +304,8 @@ bool HTTPSymbolSupplier::FetchSymbolFile(const CodeModule* module, return false; } + string query = GetCodeIDAndFileQueryString(curl_, module); + string full_path = JoinPath(cache_path_, path); bool result = false; @@ -297,8 +313,12 @@ bool HTTPSymbolSupplier::FetchSymbolFile(const CodeModule* module, server_url < server_urls_.end(); ++server_url) { string full_url = *server_url + url; + string url_with_query = full_url; + if (!query.empty()) { + url_with_query += query; + } float fetch_time; - if (FetchURLToFile(curl_, full_url, full_path, &fetch_time)) { + if (FetchURLToFile(curl_, url_with_query, full_path, &fetch_time)) { StoreCacheMiss(module, fetch_time, full_url); result = true; break; diff --git a/minidump-stackwalk/stackwalker.cc b/minidump-stackwalk/stackwalker.cc index 35b19580f7..dc4f273d65 100644 --- a/minidump-stackwalk/stackwalker.cc +++ b/minidump-stackwalk/stackwalker.cc @@ -33,10 +33,12 @@ #include #include #include +#include #include #include #include #include +#include #include #include @@ -96,6 +98,7 @@ using google_breakpad::SymbolSupplier; using google_breakpad::SystemInfo; using breakpad_extra::HTTPSymbolSupplier; +using std::map; using std::string; using std::vector; using std::ifstream; @@ -133,10 +136,12 @@ class StackFrameSymbolizerForward : public StackFrameSymbolizer { : StackFrameSymbolizer(supplier, resolver) {} virtual SymbolizerResult FillSourceLineInfo(const CodeModules* modules, + const CodeModules* unloaded_modules, const SystemInfo* system_info, StackFrame* stack_frame) { SymbolizerResult res = StackFrameSymbolizer::FillSourceLineInfo(modules, + unloaded_modules, system_info, stack_frame); RecordResult(stack_frame->module, res); @@ -515,8 +520,9 @@ bool ConvertStackToJSON(const ProcessState& process_state, if (ContainsModule(modules_with_corrupt_symbols, frame->module)) { frame_data["corrupt_symbols"] = true; } - assert(!frame->module->code_file().empty()); - frame_data["module"] = PathnameStripper::File(frame->module->code_file()); + if (!frame->module->code_file().empty()) { + frame_data["module"] = PathnameStripper::File(frame->module->code_file()); + } if (!frame->function_name.empty()) { frame_data["function"] = frame->function_name; @@ -633,10 +639,13 @@ static string ExploitabilityString(ExploitabilityRating exploitability) { return str; } +static map GetThreadIdNameMap(const Json::Value& raw_root); + static void ConvertProcessStateToJSON(const ProcessState& process_state, const StackFrameSymbolizerForward& symbolizer, const HTTPSymbolSupplier* supplier, - Json::Value& root) { + Json::Value& root, + const Json::Value& raw_root) { // OS and CPU information. Json::Value system_info; system_info["os"] = process_state.system_info()->os; @@ -672,6 +681,8 @@ static void ConvertProcessStateToJSON(const ProcessState& process_state, root["main_module"] = main_module; root["modules"] = modules; + auto thread_id_name_map = std::move(GetThreadIdNameMap(raw_root)); + Json::Value threads(Json::arrayValue); int thread_count = process_state.threads()->size(); root["thread_count"] = thread_count; @@ -686,6 +697,10 @@ static void ConvertProcessStateToJSON(const ProcessState& process_state, } thread["frames"] = stack; thread["frame_count"] = stack.size(); + auto thread_name = thread_id_name_map[raw_stack->tid()]; + if (!thread_name.empty()) { + thread["thread_name"] = thread_name; + } threads.append(thread); } root["threads"] = threads; @@ -703,6 +718,10 @@ static void ConvertProcessStateToJSON(const ProcessState& process_state, crashing_thread["frames"] = stack; crashing_thread["total_frames"] = static_cast(crashing_stack->frames()->size()); + auto thread_name = thread_id_name_map[crashing_stack->tid()]; + if (!thread_name.empty()) { + crashing_thread["thread_name"] = thread_name; + } root["crashing_thread"] = crashing_thread; } @@ -796,6 +815,35 @@ static string stripquotes(const string& s) { return s; } +static string trim(const string& s) { + size_t first = s.find_first_not_of(" \t"); + if (first == string::npos) { + first = 0; + } + + size_t last = s.find_last_not_of(" \t"); + if (last == string::npos) { + last = s.length(); + } + + return s.substr(first, last); +} + +static void ConvertCPUInfoToJSON(const string& cpuinfo, + Json::Value& root) { + for (string& line : split(cpuinfo, '\n')) { + vector bits = split(line, ':'); + if (bits.size() != 2 || !startswith(bits[0], "microcode")) { + continue; + } + + try { + root["system_info"]["cpu_microcode_version"] = static_cast(std::stoul(trim(bits[1]), nullptr, 16)); + break; + } catch (const std::invalid_argument& e) {} + } +} + static void ConvertLSBReleaseToJSON(const string& lsb_release, Json::Value& root) { Json::Value lsb(Json::objectValue); @@ -842,6 +890,34 @@ static string ResultString(ProcessResult result) { return str; } +// Parse crash annotation "ThreadIdNameMapping" and return a map of +// thread id -> thread name. +static map GetThreadIdNameMap(const Json::Value& raw_root) +{ + map result {}; + + // Sample input: 23534:"Timer",23535:"Link Monitor", + string input = raw_root.get("ThreadIdNameMapping", "").asString(); + if (input.empty()) { + return result; + } + + for (string& map_item : split(input, ',')) { + // Sample map_item: 23534:"Timer" + vector id_and_name = split(map_item, ':'); + if (id_and_name.size() != 2) { + continue; + } + + uint32_t thread_id = strtoul(id_and_name[0].c_str(), NULL, 10); + const string thread_name = stripquotes(id_and_name[1]); + + result[thread_id] = thread_name; + } + + return result; +} + //*** This code copy-pasted from minidump_stackwalk.cc *** // Separator character for machine readable output. @@ -1159,7 +1235,7 @@ int main(int argc, char** argv) root["sensitive"] = Json::Value(Json::objectValue); if (result == google_breakpad::PROCESS_OK) { ConvertProcessStateToJSON(process_state, symbolizer, - http_symbol_supplier, root); + http_symbol_supplier, root, raw_root); } ConvertMemoryInfoToJSON(minidump, raw_root, root); @@ -1170,6 +1246,17 @@ int main(int argc, char** argv) root["pid"] = misc_info->misc_info()->process_id; } + // See if this is a Linux dump with /proc/cpuinfo in it + uint32_t cpuinfo_length = 0; + if (process_state.system_info()->os == "Linux" && + minidump.SeekToStreamType(MD_LINUX_CPU_INFO, &cpuinfo_length)) { + string contents; + contents.resize(cpuinfo_length); + if (minidump.ReadBytes(const_cast(contents.data()), cpuinfo_length)) { + ConvertCPUInfoToJSON(contents, root); + } + } + // See if this is a Linux dump with /etc/lsb-release in it uint32_t length = 0; if (process_state.system_info()->os == "Linux" && diff --git a/stackwalker.spec b/stackwalker.spec index e34cff05ae..e659e16734 100644 --- a/stackwalker.spec +++ b/stackwalker.spec @@ -1,21 +1,21 @@ -Summary: Parse crash reports +Summary: Parse crash reports from Natron Name: stackwalker -Version: 2016.12 +Version: 2019.07 Release: 1%{?dist} License: BSD Group: System Environment/Base -URL: https://github.com/olear/stackwalker +URL: https://github.com/NatronGitHub/stackwalker Source: %{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root -BuildRequires: libcurl-devel libzip-devel -Requires: libcurl libzip +BuildRequires: libcurl-devel libzip-devel jsoncpp-devel +Requires: libcurl libzip jsoncpp %description -Parse crash reports from clients using Breakpad. +Parse crash reports from Natron. %prep %setup diff --git a/tests/2f5d2700-d191-9876-430fd7b8-3825119e.dmp b/tests/2f5d2700-d191-9876-430fd7b8-3825119e.dmp new file mode 100644 index 0000000000..57b634aaec Binary files /dev/null and b/tests/2f5d2700-d191-9876-430fd7b8-3825119e.dmp differ diff --git a/tests/2f5d2700-d191-9876-430fd7b8-3825119e.json b/tests/2f5d2700-d191-9876-430fd7b8-3825119e.json new file mode 100644 index 0000000000..78574d78bf --- /dev/null +++ b/tests/2f5d2700-d191-9876-430fd7b8-3825119e.json @@ -0,0 +1,2101 @@ +{ + "crash_info" : { + "address" : "0x0", + "crashing_thread" : 0, + "type" : "SIGSEGV /0x00000000" + }, + "crashing_thread" : { + "frames" : [ + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Settings.cpp", + "frame" : 0, + "function" : "Natron::crash_application()", + "function_offset" : "0x3f", + "line" : 2228, + "module" : "Natron-bin", + "module_offset" : "0x1ddb0f2", + "offset" : "0x21db0f2", + "registers" : { + "r10" : "0x00007f505d8f0290", + "r11" : "0x0000000000000000", + "r12" : "0x0000000000000000", + "r13" : "0x0000000000000000", + "r14" : "0x0000000000000001", + "r15" : "0x000000000ca3f710", + "r8" : "0x00007f50590f3770", + "r9" : "0x00007f505d8ef980", + "rax" : "0x0000000000000000", + "rbp" : "0x00007fff2cf450b0", + "rbx" : "0x0000000004d19c80", + "rcx" : "0x00007f505d8ef7d0", + "rdi" : "0x00007f50590f2540", + "rdx" : "0x0000000000000000", + "rip" : "0x00000000021db0f2", + "rsi" : "0x00007f50590f3770", + "rsp" : "0x00007fff2cf450a0" + }, + "trust" : "context" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Settings.cpp", + "frame" : 1, + "function" : "Natron::Settings::onKnobValueChanged(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", + "function_offset" : "0x159d", + "line" : 2360, + "module" : "Natron-bin", + "module_offset" : "0x1dd26c1", + "offset" : "0x21d26c1", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 2, + "function" : "Natron::KnobHolder::onKnobValueChanged_public(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", + "function_offset" : "0xc6", + "line" : 5996, + "module" : "Natron-bin", + "module_offset" : "0x1ae042e", + "offset" : "0x1ee042e", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 3, + "function" : "Natron::KnobHolder::endChanges(bool)", + "function_offset" : "0x86a", + "line" : 5567, + "module" : "Natron-bin", + "module_offset" : "0x1ade546", + "offset" : "0x1ede546", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 4, + "function" : "Natron::KnobHelper::evaluateValueChangeInternal(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum, Natron::ValueChangedReasonEnum)", + "function_offset" : "0x2ca", + "line" : 1700, + "module" : "Natron-bin", + "module_offset" : "0x1aca3d2", + "offset" : "0x1eca3d2", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 5, + "function" : "Natron::KnobHelper::evaluateValueChange(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum)", + "function_offset" : "0x3f", + "line" : 1724, + "module" : "Natron-bin", + "module_offset" : "0x1aca5a3", + "offset" : "0x1eca5a3", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/KnobTypes.cpp", + "frame" : 6, + "function" : "Natron::KnobButton::trigger()", + "function_offset" : "0x5c", + "line" : 499, + "module" : "Natron-bin", + "module_offset" : "0x1b43ac6", + "offset" : "0x1f43ac6", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Gui/../../Natron/Gui/KnobGuiButton.cpp", + "frame" : 7, + "function" : "Natron::KnobGuiButton::emitValueChanged(bool)", + "function_offset" : "0x15d", + "line" : 188, + "module" : "Natron-bin", + "module_offset" : "0x15ce2b1", + "offset" : "0x19ce2b1", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Gui/./moc_KnobGuiButton.cpp", + "frame" : 8, + "function" : "Natron::KnobGuiButton::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)", + "function_offset" : "0x85", + "line" : 48, + "module" : "Natron-bin", + "module_offset" : "0x15ce6e9", + "offset" : "0x19ce6e9", + "trust" : "cfi" + }, + { + "frame" : 9, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x1a28f1", + "offset" : "0x7f505a1dc8f1", + "trust" : "cfi" + } + ], + "threads_index" : 0, + "total_frames" : 59 + }, + "main_module" : 0, + "modules" : [ + { + "base_addr" : "0x400000", + "code_id" : "1aa0cd69230f7c6f71cd19e5a20a21ac", + "debug_file" : "Natron-bin", + "debug_id" : "69CDA01A0F236F7C71CD19E5A20A21AC0", + "end_addr" : "0x3179000", + "filename" : "/home/olear/Development/build-Project-Qt4-Debug/App/Natron-bin", + "loaded_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f50459a0000", + "code_id" : "id", + "debug_file" : "SYSV00000000 (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5045f4d000", + "filename" : "/SYSV00000000 (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f5045f4d000", + "code_id" : "d4c22ec8732a6258453c0b934550eb1a", + "debug_file" : "im-scim.so", + "debug_id" : "C82EC2D42A735862453C0B934550EB1A0", + "end_addr" : "0x7f5045f69000", + "filename" : "/usr/lib64/qt/plugins/inputmethods/im-scim.so", + "version" : "" + }, + { + "base_addr" : "0x7f504616a000", + "code_id" : "4708a0a0b3816614892281320bdfd1d7", + "debug_file" : "libqimsw-multi.so", + "debug_id" : "A0A0084781B31466892281320BDFD1D70", + "end_addr" : "0x7f5046170000", + "filename" : "/usr/lib64/qt/plugins/inputmethods/libqimsw-multi.so", + "version" : "" + }, + { + "base_addr" : "0x7f5046371000", + "code_id" : "414c47e55ae5039d60e444559f498a29", + "debug_file" : "libnss_files-2.23.so", + "debug_id" : "E5474C41E55A9D0360E444559F498A290", + "end_addr" : "0x7f504637c000", + "filename" : "/lib64/libnss_files-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f5046583000", + "code_id" : "47c9b1c2062749925d4e2b53d0af37c3", + "debug_file" : "libnss_nis-2.23.so", + "debug_id" : "C2B1C947270692495D4E2B53D0AF37C30", + "end_addr" : "0x7f504658e000", + "filename" : "/lib64/libnss_nis-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f504678f000", + "code_id" : "38b4e8d91456985cf619d737ac232082", + "debug_file" : "libnsl-2.23.so", + "debug_id" : "D9E8B43856145C98F619D737AC2320820", + "end_addr" : "0x7f50467a5000", + "filename" : "/lib64/libnsl-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f50469a9000", + "code_id" : "3df960ec26d46b4265dafc7972094d98", + "debug_file" : "libnss_compat-2.23.so", + "debug_id" : "EC60F93DD426426B65DAFC7972094D980", + "end_addr" : "0x7f50469b1000", + "filename" : "/lib64/libnss_compat-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f5047510000", + "code_id" : "01c3b0df141dcb125bd0f192aed253bd", + "debug_file" : "liblzma.so.5.2.2", + "debug_id" : "DFB0C3011D1412CB5BD0F192AED253BD0", + "end_addr" : "0x7f5047534000", + "filename" : "/lib64/liblzma.so.5.2.2", + "version" : "" + }, + { + "base_addr" : "0x7f5047735000", + "code_id" : "98491e5a7ab74ca908714d25aa5acd3e", + "debug_file" : "libtiff.so.5.4.0", + "debug_id" : "5A1E4998B77AA94C08714D25AA5ACD3E0", + "end_addr" : "0x7f50477a8000", + "filename" : "/usr/lib64/libtiff.so.5.4.0", + "version" : "" + }, + { + "base_addr" : "0x7f50479ac000", + "code_id" : "58385239ab159a3ae372bf009ac8f5f8", + "debug_file" : "libqtiff.so", + "debug_id" : "3952385815AB3A9AE372BF009AC8F5F80", + "end_addr" : "0x7f50479b3000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqtiff.so", + "version" : "" + }, + { + "base_addr" : "0x7f5047bb4000", + "code_id" : "d076fe752564fb174e417871af6f3894", + "debug_file" : "libqtga.so", + "debug_id" : "75FE76D0642517FB4E417871AF6F38940", + "end_addr" : "0x7f5047bb9000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqtga.so", + "version" : "" + }, + { + "base_addr" : "0x7f5047dba000", + "code_id" : "7a9e995c66d36654d5b66a8ef5a821f3", + "debug_file" : "libQtXml.so.4.8.7", + "debug_id" : "5C999E7AD3665466D5B66A8EF5A821F30", + "end_addr" : "0x7f5047dfd000", + "filename" : "/usr/lib64/qt/lib/libQtXml.so.4.8.7", + "version" : "" + }, + { + "base_addr" : "0x7f504c06b000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "DejaVuSans.ttf", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f504c121000", + "filename" : "/usr/share/fonts/TTF/DejaVuSans.ttf", + "version" : "" + }, + { + "base_addr" : "0x7f504c121000", + "code_id" : "cfd88cde81f15a766f373b57ed94a30f", + "debug_file" : "libQtSvg.so.4.8.7", + "debug_id" : "DE8CD8CFF181765A6F373B57ED94A30F0", + "end_addr" : "0x7f504c178000", + "filename" : "/usr/lib64/qt/lib/libQtSvg.so.4.8.7", + "version" : "" + }, + { + "base_addr" : "0x7f504cdfb000", + "code_id" : "aaa15f8479aedb1a6b7ef2a4cd5d1be8", + "debug_file" : "QtGui.so", + "debug_id" : "845FA1AAAE791ADB6B7EF2A4CD5D1BE80", + "end_addr" : "0x7f504d6ec000", + "filename" : "/usr/lib64/python2.7/site-packages/PySide/QtGui.so", + "version" : "" + }, + { + "base_addr" : "0x7f504db6e000", + "code_id" : "d014969a0f626ab8dbf290a1755610df", + "debug_file" : "QtCore.so", + "debug_id" : "9A9614D0620FB86ADBF290A1755610DF0", + "end_addr" : "0x7f504dd84000", + "filename" : "/usr/lib64/python2.7/site-packages/PySide/QtCore.so", + "version" : "" + }, + { + "base_addr" : "0x7f504dffb000", + "code_id" : "5528c4668178b16a92f642d39c892ad3", + "debug_file" : "math.so", + "debug_id" : "66C4285578816AB192F642D39C892AD30", + "end_addr" : "0x7f504e005000", + "filename" : "/usr/lib64/python2.7/lib-dynload/math.so", + "version" : "" + }, + { + "base_addr" : "0x7f504e207000", + "code_id" : "fe9656df76b3cb10d5f64d20e9335ac6", + "debug_file" : "strop.so", + "debug_id" : "DF5696FEB37610CBD5F64D20E9335AC60", + "end_addr" : "0x7f504e20d000", + "filename" : "/usr/lib64/python2.7/lib-dynload/strop.so", + "version" : "" + }, + { + "base_addr" : "0x7f504e48f000", + "code_id" : "d09aca81849f68ab643d87b04cca2175", + "debug_file" : "_locale.so", + "debug_id" : "81CA9AD09F84AB68643D87B04CCA21750", + "end_addr" : "0x7f504e493000", + "filename" : "/usr/lib64/python2.7/lib-dynload/_locale.so", + "version" : "" + }, + { + "base_addr" : "0x7f504e794000", + "code_id" : "09c77f17215784fa550c7a9408636f38", + "debug_file" : "libXi.so.6.1.0", + "debug_id" : "177FC7095721FA84550C7A9408636F380", + "end_addr" : "0x7f504e7a3000", + "filename" : "/usr/lib64/libXi.so.6.1.0", + "version" : "" + }, + { + "base_addr" : "0x7f504e9a4000", + "code_id" : "af7bb235b9f4e3a29103068acaadddcc", + "debug_file" : "libXinerama.so.1.0.0", + "debug_id" : "35B27BAFF4B9A2E39103068ACAADDDCC0", + "end_addr" : "0x7f504e9a6000", + "filename" : "/usr/lib64/libXinerama.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f504eba6000", + "code_id" : "cb8fc6be6204ff1b6f01be7f1a63244e", + "debug_file" : "libXcursor.so.1.0.2", + "debug_id" : "BEC68FCB04621BFF6F01BE7F1A63244E0", + "end_addr" : "0x7f504ebaf000", + "filename" : "/usr/lib64/libXcursor.so.1.0.2", + "version" : "" + }, + { + "base_addr" : "0x7f504edb1000", + "code_id" : "3f491792c2674226bd06e23b27a292ee", + "debug_file" : "libXrandr.so.2.2.0", + "debug_id" : "9217493F67C22642BD06E23B27A292EE0", + "end_addr" : "0x7f504edbb000", + "filename" : "/usr/lib64/libXrandr.so.2.2.0", + "version" : "" + }, + { + "base_addr" : "0x7f504eff8000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "8839436aaf7443ce013847a8a3ef9ded-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f504f3d1000", + "filename" : "/home/olear/.cache/fontconfig/8839436aaf7443ce013847a8a3ef9ded-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f504f3d1000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "8d4af663993b81a124ee82e610bb31f9-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f504f3f4000", + "filename" : "/var/cache/fontconfig/8d4af663993b81a124ee82e610bb31f9-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f504f3f4000", + "code_id" : "d20c81bfa3e26947515d18efe883dad0", + "debug_file" : "ISO8859-1.so", + "debug_id" : "BF810CD2E2A34769515D18EFE883DAD00", + "end_addr" : "0x7f504f3f6000", + "filename" : "/usr/lib64/gconv/ISO8859-1.so", + "version" : "" + }, + { + "base_addr" : "0x7f504f5f7000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_CTYPE", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f504f63a000", + "filename" : "/usr/lib64/locale/en_US/LC_CTYPE", + "version" : "" + }, + { + "base_addr" : "0x7f504f6c1000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LiberationMono-Regular.ttf", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f504f6dc000", + "filename" : "/usr/share/fonts/TTF/LiberationMono-Regular.ttf", + "version" : "" + }, + { + "base_addr" : "0x7f504f6dc000", + "code_id" : "034c894ae8addb24ecbe2f149fb04138", + "debug_file" : "libqsvg.so", + "debug_id" : "4A894C03ADE824DBECBE2F149FB041380", + "end_addr" : "0x7f504f6e1000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqsvg.so", + "version" : "" + }, + { + "base_addr" : "0x7f504f8e2000", + "code_id" : "a6968377cdbd94ece1dd6a2942cd3eb4", + "debug_file" : "liblcms2.so.2.0.7", + "debug_id" : "778396A6BDCDEC94E1DD6A2942CD3EB40", + "end_addr" : "0x7f504f935000", + "filename" : "/usr/lib64/liblcms2.so.2.0.7", + "version" : "" + }, + { + "base_addr" : "0x7f504fb3a000", + "code_id" : "a8462e000a5c80252615745996679ec0", + "debug_file" : "libmng.so.2.0.2", + "debug_id" : "002E46A85C0A25802615745996679EC00", + "end_addr" : "0x7f504fba7000", + "filename" : "/usr/lib64/libmng.so.2.0.2", + "version" : "" + }, + { + "base_addr" : "0x7f504fdab000", + "code_id" : "230940e875899cd90bed86518edcefc9", + "debug_file" : "libqmng.so", + "debug_id" : "E84009238975D99C0BED86518EDCEFC90", + "end_addr" : "0x7f504fdb1000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqmng.so", + "version" : "" + }, + { + "base_addr" : "0x7f504ffb2000", + "code_id" : "fa52d6d53c960c51e0afbcc9dc28d8dc", + "debug_file" : "libjpeg.so.62.2.0", + "debug_id" : "D5D652FA963C510CE0AFBCC9DC28D8DC0", + "end_addr" : "0x7f505001a000", + "filename" : "/usr/lib64/libjpeg.so.62.2.0", + "version" : "" + }, + { + "base_addr" : "0x7f5050223000", + "code_id" : "id", + "debug_file" : "SYSV00000000 (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5050227000", + "filename" : "/SYSV00000000 (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f5050227000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "f6b893a7224233d96cb72fd88691c0b4-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5050258000", + "filename" : "/home/olear/.cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f5050258000", + "code_id" : "cc5cecf4222a84c4fa557fae9a1164e9", + "debug_file" : "libqjpeg.so", + "debug_id" : "F4EC5CCC2A22C484FA557FAE9A1164E90", + "end_addr" : "0x7f505025f000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqjpeg.so", + "version" : "" + }, + { + "base_addr" : "0x7f5050460000", + "code_id" : "228000798812ad9014d695b57ced1e2e", + "debug_file" : "libqico.so", + "debug_id" : "79008022128890AD14D695B57CED1E2E0", + "end_addr" : "0x7f5050467000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqico.so", + "version" : "" + }, + { + "base_addr" : "0x7f5050668000", + "code_id" : "58418df52830190e7525c42171c52552", + "debug_file" : "libqgif.so", + "debug_id" : "F58D415830280E197525C42171C525520", + "end_addr" : "0x7f505066f000", + "filename" : "/usr/lib64/qt/plugins/imageformats/libqgif.so", + "version" : "" + }, + { + "base_addr" : "0x7f5050870000", + "code_id" : "c94fb5fbae671fc42689860f8502a4d1", + "debug_file" : "libdrm_radeon.so.1.0.1", + "debug_id" : "FBB54FC967AEC41F2689860F8502A4D10", + "end_addr" : "0x7f505087b000", + "filename" : "/usr/lib64/libdrm_radeon.so.1.0.1", + "version" : "" + }, + { + "base_addr" : "0x7f5050a7c000", + "code_id" : "583f2b3eb4d04da7056fa98a74835fbd", + "debug_file" : "libdrm_nouveau.so.2.0.0", + "debug_id" : "3E2B3F58D0B4A74D056FA98A74835FBD0", + "end_addr" : "0x7f5050a83000", + "filename" : "/usr/lib64/libdrm_nouveau.so.2.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5050c84000", + "code_id" : "f62e025cf51d6039c77e7d9e55453bfb", + "debug_file" : "libpciaccess.so.0.11.1", + "debug_id" : "5C022EF61DF53960C77E7D9E55453BFB0", + "end_addr" : "0x7f5050c8c000", + "filename" : "/usr/lib64/libpciaccess.so.0.11.1", + "version" : "" + }, + { + "base_addr" : "0x7f5050e8c000", + "code_id" : "4882b20ecf0b88a52d45c955bb6d82fe", + "debug_file" : "libdrm_intel.so.1.0.0", + "debug_id" : "0EB282480BCFA5882D45C955BB6D82FE0", + "end_addr" : "0x7f5050eab000", + "filename" : "/usr/lib64/libdrm_intel.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50510ac000", + "code_id" : "efd1b49946e3a4f4d43293d3f32a6692", + "debug_file" : "libnettle.so.6.5", + "debug_id" : "99B4D1EFE346F4A4D43293D3F32A66920", + "end_addr" : "0x7f50510e1000", + "filename" : "/usr/lib64/libnettle.so.6.5", + "version" : "" + }, + { + "base_addr" : "0x7f50512e3000", + "code_id" : "e33842870bf067f70a9367045d2e25ad", + "debug_file" : "i965_dri.so", + "debug_id" : "874238E3F00BF7670A9367045D2E25AD0", + "end_addr" : "0x7f50518d6000", + "filename" : "/usr/lib64/xorg/modules/dri/i965_dri.so", + "version" : "" + }, + { + "base_addr" : "0x7f5051b1b000", + "code_id" : "cadb105efdf35723ace413f1593c328d", + "debug_file" : "libudev.so.1.6.3", + "debug_id" : "5E10DBCAF3FD2357ACE413F1593C328D0", + "end_addr" : "0x7f5051b3f000", + "filename" : "/lib64/libudev.so.1.6.3", + "version" : "" + }, + { + "base_addr" : "0x7f5051d40000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "libicudata.so.56.1", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5053723000", + "filename" : "/usr/lib64/libicudata.so.56.1", + "version" : "" + }, + { + "base_addr" : "0x7f5053723000", + "code_id" : "9ff5926e7f142987064573955079cd64", + "debug_file" : "libicuuc.so.56.1", + "debug_id" : "6E92F59F147F8729064573955079CD640", + "end_addr" : "0x7f50538a9000", + "filename" : "/usr/lib64/libicuuc.so.56.1", + "version" : "" + }, + { + "base_addr" : "0x7f5053abb000", + "code_id" : "f021414aca3b2b9b2cef2ffab838aeba", + "debug_file" : "libicui18n.so.56.1", + "debug_id" : "4A4121F03BCA9B2B2CEF2FFAB838AEBA0", + "end_addr" : "0x7f5053d3c000", + "filename" : "/usr/lib64/libicui18n.so.56.1", + "version" : "" + }, + { + "base_addr" : "0x7f5053f51000", + "code_id" : "id", + "debug_file" : "drm mm object (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5053f55000", + "filename" : "/drm mm object (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f5053f57000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "f6b893a7224233d96cb72fd88691c0b4-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f5053f88000", + "filename" : "/var/cache/fontconfig/f6b893a7224233d96cb72fd88691c0b4-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f5053f88000", + "code_id" : "4f6463fec99340a63cb945342fad16ff", + "debug_file" : "UTF-16.so", + "debug_id" : "FE63644F93C9A6403CB945342FAD16FF0", + "end_addr" : "0x7f5053f8b000", + "filename" : "/usr/lib64/gconv/UTF-16.so", + "version" : "" + }, + { + "base_addr" : "0x7f505418c000", + "code_id" : "a8ac7164322d4a5a818e1799fbe1085b", + "debug_file" : "libuuid.so.1.3.0", + "debug_id" : "6471ACA82D325A4A818E1799FBE1085B0", + "end_addr" : "0x7f505418f000", + "filename" : "/lib64/libuuid.so.1.3.0", + "version" : "" + }, + { + "base_addr" : "0x7f5054390000", + "code_id" : "4a09a67d9487688ec69e066c881f46f9", + "debug_file" : "libffi.so.6.0.4", + "debug_id" : "7DA6094A87948E68C69E066C881F46F90", + "end_addr" : "0x7f5054397000", + "filename" : "/usr/lib64/libffi.so.6.0.4", + "version" : "" + }, + { + "base_addr" : "0x7f5054598000", + "code_id" : "b861294af7f2fc1f78320fc09791b215", + "debug_file" : "libgbm.so.1.0.0", + "debug_id" : "4A2961B8F2F71FFC78320FC09791B2150", + "end_addr" : "0x7f50545a3000", + "filename" : "/usr/lib64/libgbm.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50547a4000", + "code_id" : "168aa4d251f0254775af0ef88498a912", + "debug_file" : "libdrm.so.2.4.0", + "debug_id" : "D2A48A16F051472575AF0EF88498A9120", + "end_addr" : "0x7f50547b1000", + "filename" : "/usr/lib64/libdrm.so.2.4.0", + "version" : "" + }, + { + "base_addr" : "0x7f50549b2000", + "code_id" : "a2daaf232a7fbf4ae0e3a3f29327f4f9", + "debug_file" : "libXdmcp.so.6.0.0", + "debug_id" : "23AFDAA27F2A4ABFE0E3A3F29327F4F90", + "end_addr" : "0x7f50549b7000", + "filename" : "/usr/lib64/libXdmcp.so.6.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5054bb7000", + "code_id" : "f0927d43d90872479c3d624d41cfd9bc", + "debug_file" : "libXau.so.6.0.0", + "debug_id" : "437D92F008D947729C3D624D41CFD9BC0", + "end_addr" : "0x7f5054bb9000", + "filename" : "/usr/lib64/libXau.so.6.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5054dba000", + "code_id" : "6cde2790cce14eefcede88e4b992aeef", + "debug_file" : "libXxf86vm.so.1.0.0", + "debug_id" : "9027DE6CE1CCEF4ECEDE88E4B992AEEF0", + "end_addr" : "0x7f5054dbf000", + "filename" : "/usr/lib64/libXxf86vm.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5054fbf000", + "code_id" : "148f9d204f0769d9470ba1e7cf3e9fe6", + "debug_file" : "libxcb-dri2.so.0.0.0", + "debug_id" : "209D8F14074FD969470BA1E7CF3E9FE60", + "end_addr" : "0x7f5054fc2000", + "filename" : "/usr/lib64/libxcb-dri2.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50551c3000", + "code_id" : "bfe676b7f8d995528447a3587ef834bf", + "debug_file" : "libxcb-glx.so.0.0.0", + "debug_id" : "B776E6BFD9F852958447A3587EF834BF0", + "end_addr" : "0x7f50551d7000", + "filename" : "/usr/lib64/libxcb-glx.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50553d9000", + "code_id" : "fc11c229cc9e5f4e37b2d90f2bf387d3", + "debug_file" : "libX11-xcb.so.1.0.0", + "debug_id" : "29C211FC9ECC4E5F37B2D90F2BF387D30", + "end_addr" : "0x7f50553da000", + "filename" : "/usr/lib64/libX11-xcb.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50555db000", + "code_id" : "3b5ff733e0b705bac78774532641c253", + "debug_file" : "libXfixes.so.3.1.0", + "debug_id" : "33F75F3BB7E0BA05C78774532641C2530", + "end_addr" : "0x7f50555e0000", + "filename" : "/usr/lib64/libXfixes.so.3.1.0", + "version" : "" + }, + { + "base_addr" : "0x7f50557e1000", + "code_id" : "5ad4f8c2208281737c99cd5002fcf666", + "debug_file" : "libXdamage.so.1.1.0", + "debug_id" : "C2F8D45A822073817C99CD5002FCF6660", + "end_addr" : "0x7f50557e3000", + "filename" : "/usr/lib64/libXdamage.so.1.1.0", + "version" : "" + }, + { + "base_addr" : "0x7f50559e3000", + "code_id" : "944228ed5e39b53655b72bf99cb1a004", + "debug_file" : "libglapi.so.0.0.0", + "debug_id" : "ED284294395E36B555B72BF99CB1A0040", + "end_addr" : "0x7f5055a0c000", + "filename" : "/usr/lib64/libglapi.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5055c11000", + "code_id" : "8300566c0674d112ca843978dae5101a", + "debug_file" : "libxshmfence.so.1.0.0", + "debug_id" : "6C560083740612D1CA843978DAE5101A0", + "end_addr" : "0x7f5055c12000", + "filename" : "/usr/lib64/libxshmfence.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5055e13000", + "code_id" : "1ed2a1e6224eff042e585d19a53a7606", + "debug_file" : "libxcb-sync.so.1.0.0", + "debug_id" : "E6A1D21E4E2204FF2E585D19A53A76060", + "end_addr" : "0x7f5055e18000", + "filename" : "/usr/lib64/libxcb-sync.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5056018000", + "code_id" : "b0abb656c14cd479a7468d6398c16dfa", + "debug_file" : "libxcb-shape.so.0.0.0", + "debug_id" : "56B6ABB04CC179D4A7468D6398C16DFA0", + "end_addr" : "0x7f505601a000", + "filename" : "/usr/lib64/libxcb-shape.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f505621b000", + "code_id" : "4c0bf578001d1afbef1b89abb050f94a", + "debug_file" : "libxcb-xfixes.so.0.0.0", + "debug_id" : "78F50B4C1D00FB1AEF1B89ABB050F94A0", + "end_addr" : "0x7f5056220000", + "filename" : "/usr/lib64/libxcb-xfixes.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5056421000", + "code_id" : "0d36621d49ac482194c823b5461df633", + "debug_file" : "libxcb-randr.so.0.1.0", + "debug_id" : "1D62360DAC49214894C823B5461DF6330", + "end_addr" : "0x7f505642c000", + "filename" : "/usr/lib64/libxcb-randr.so.0.1.0", + "version" : "" + }, + { + "base_addr" : "0x7f505662d000", + "code_id" : "5f4d97105348057a3c158a5429dd159b", + "debug_file" : "libxcb-present.so.0.0.0", + "debug_id" : "10974D5F48537A053C158A5429DD159B0", + "end_addr" : "0x7f505662f000", + "filename" : "/usr/lib64/libxcb-present.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f505682f000", + "code_id" : "5d33c5e8477518b5dd80336e31c8f580", + "debug_file" : "libxcb-dri3.so.0.0.0", + "debug_id" : "E8C5335D7547B518DD80336E31C8F5800", + "end_addr" : "0x7f5056831000", + "filename" : "/usr/lib64/libxcb-dri3.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5056a31000", + "code_id" : "2f0e2ee96ee3fc987d847e1061fbcd0e", + "debug_file" : "libICE.so.6.3.0", + "debug_id" : "E92E0E2FE36E98FC7D847E1061FBCD0E0", + "end_addr" : "0x7f5056a48000", + "filename" : "/usr/lib64/libICE.so.6.3.0", + "version" : "" + }, + { + "base_addr" : "0x7f5056c4c000", + "code_id" : "84f46b44a9929209e2853ebb02ea4757", + "debug_file" : "libSM.so.6.0.1", + "debug_id" : "446BF48492A90992E2853EBB02EA47570", + "end_addr" : "0x7f5056c53000", + "filename" : "/usr/lib64/libSM.so.6.0.1", + "version" : "" + }, + { + "base_addr" : "0x7f5056e53000", + "code_id" : "07b246583181dd7fc377cfc418f0fed0", + "debug_file" : "libgobject-2.0.so.0.4600.2", + "debug_id" : "5846B20781317FDDC377CFC418F0FED00", + "end_addr" : "0x7f5056ea3000", + "filename" : "/usr/lib64/libgobject-2.0.so.0.4600.2", + "version" : "" + }, + { + "base_addr" : "0x7f50570a4000", + "code_id" : "64189b4fe57c1d465bcedfde7bab9aff", + "debug_file" : "libgthread-2.0.so.0.4600.2", + "debug_id" : "4F9B18647CE5461D5BCEDFDE7BAB9AFF0", + "end_addr" : "0x7f50570a5000", + "filename" : "/usr/lib64/libgthread-2.0.so.0.4600.2", + "version" : "" + }, + { + "base_addr" : "0x7f50572a6000", + "code_id" : "e8cdf989e6b018e2b4d40b33cdb7fdc4", + "debug_file" : "libXext.so.6.4.0", + "debug_id" : "89F9CDE8B0E6E218B4D40B33CDB7FDC40", + "end_addr" : "0x7f50572b7000", + "filename" : "/usr/lib64/libXext.so.6.4.0", + "version" : "" + }, + { + "base_addr" : "0x7f50574b8000", + "code_id" : "bf1e901d488ea6babaa875a0aac201b8", + "debug_file" : "libXrender.so.1.3.0", + "debug_id" : "1D901EBF8E48BAA6BAA875A0AAC201B80", + "end_addr" : "0x7f50574c1000", + "filename" : "/usr/lib64/libXrender.so.1.3.0", + "version" : "" + }, + { + "base_addr" : "0x7f50576c2000", + "code_id" : "22d307b1b39c6f55aa82faa361821b4d", + "debug_file" : "libxcb-render.so.0.0.0", + "debug_id" : "B107D3229CB3556FAA82FAA361821B4D0", + "end_addr" : "0x7f50576ca000", + "filename" : "/usr/lib64/libxcb-render.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f50578cb000", + "code_id" : "cd6a05a657e77cf9d67f2d869650ed57", + "debug_file" : "libxcb-shm.so.0.0.0", + "debug_id" : "A6056ACDE757F97CD67F2D869650ED570", + "end_addr" : "0x7f50578cd000", + "filename" : "/usr/lib64/libxcb-shm.so.0.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5057acd000", + "code_id" : "3cc732037d6e62f80be7affe8eaeafb9", + "debug_file" : "libEGL.so.1.0.0", + "debug_id" : "0332C73C6E7DF8620BE7AFFE8EAEAFB90", + "end_addr" : "0x7f5057af6000", + "filename" : "/usr/lib64/libEGL.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5057cf8000", + "code_id" : "a568cb709b2aacc2db4e5af66909e838", + "debug_file" : "libz.so.1.2.11", + "debug_id" : "70CB68A52A9BC2ACDB4E5AF66909E8380", + "end_addr" : "0x7f5057d0e000", + "filename" : "/lib64/libz.so.1.2.11", + "version" : "" + }, + { + "base_addr" : "0x7f5057f0f000", + "code_id" : "2edbf09e40b7d63b2efef8319baea8f9", + "debug_file" : "libpng16.so.16.37.0", + "debug_id" : "9EF0DB2EB7403BD62EFEF8319BAEA8F90", + "end_addr" : "0x7f5057f41000", + "filename" : "/usr/lib64/libpng16.so.16.37.0", + "version" : "" + }, + { + "base_addr" : "0x7f5058142000", + "code_id" : "7cf034dbd0da4cf87ec5af8cfa88cc17", + "debug_file" : "libbz2.so.1.0.6", + "debug_id" : "DB34F07CDAD0F84C7EC5AF8CFA88CC170", + "end_addr" : "0x7f5058151000", + "filename" : "/lib64/libbz2.so.1.0.6", + "version" : "" + }, + { + "base_addr" : "0x7f5058352000", + "code_id" : "0e130006d519da71b084c4a8e3344b15", + "debug_file" : "libglib-2.0.so.0.4600.2", + "debug_id" : "0600130E19D571DAB084C4A8E3344B150", + "end_addr" : "0x7f5058487000", + "filename" : "/usr/lib64/libglib-2.0.so.0.4600.2", + "version" : "" + }, + { + "base_addr" : "0x7f5058689000", + "code_id" : "777777b76768fa2c1fcfdfb1285f0870", + "debug_file" : "libharfbuzz.so.0.10200.7", + "debug_id" : "B777777768672CFA1FCFDFB1285F08700", + "end_addr" : "0x7f5058705000", + "filename" : "/usr/lib64/libharfbuzz.so.0.10200.7", + "version" : "" + }, + { + "base_addr" : "0x7f5058907000", + "code_id" : "46c2122f019ffbc5cbc92e47304c092c", + "debug_file" : "librt-2.23.so", + "debug_id" : "2F12C2469F01C5FBCBC92E47304C092C0", + "end_addr" : "0x7f505890e000", + "filename" : "/lib64/librt-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f5058b0f000", + "code_id" : "0babf660c69ca1dd74aade6a533b17c3", + "debug_file" : "libxcb.so.1.1.0", + "debug_id" : "60F6AB0B9CC6DDA174AADE6A533B17C30", + "end_addr" : "0x7f5058b2d000", + "filename" : "/usr/lib64/libxcb.so.1.1.0", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f5058d2e000", + "code_id" : "b06d4746ebfc7a01421bd17a05c0331f", + "debug_file" : "libc-2.23.so", + "debug_id" : "46476DB0FCEB017A421BD17A05C0331F0", + "end_addr" : "0x7f5058eee000", + "filename" : "/lib64/libc-2.23.so", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f50590f7000", + "code_id" : "e7d2c2a9a6398bad806d46a25ed5444e", + "debug_file" : "libgcc_s.so.1", + "debug_id" : "A9C2D2E739A6AD8B806D46A25ED5444E0", + "end_addr" : "0x7f505910d000", + "filename" : "/usr/lib64/libgcc_s.so.1", + "version" : "" + }, + { + "base_addr" : "0x7f505930e000", + "code_id" : "caa7360a85927fb192e6b7dd95ab008c", + "debug_file" : "libgomp.so.1.0.0", + "debug_id" : "0A36A7CA9285B17F92E6B7DD95AB008C0", + "end_addr" : "0x7f505932e000", + "filename" : "/usr/lib64/libgomp.so.1.0.0", + "version" : "" + }, + { + "base_addr" : "0x7f5059530000", + "code_id" : "4f9c904cc96832f90ce46711b1a0e01f", + "debug_file" : "libm-2.23.so", + "debug_id" : "4C909C4F68C9F9320CE46711B1A0E01F0", + "end_addr" : "0x7f5059638000", + "filename" : "/lib64/libm-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f5059839000", + "code_id" : "c9dec257622670082a715385a45c5bb5", + "debug_file" : "libstdc++.so.6.0.21", + "debug_id" : "57C2DEC9266208702A715385A45C5BB50", + "end_addr" : "0x7f50599a5000", + "filename" : "/usr/lib64/libstdc++.so.6.0.21", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f5059bb5000", + "code_id" : "a2ca2e4c185e9b5acd01eadc6cbef32e", + "debug_file" : "libpthread-2.23.so", + "debug_id" : "4C2ECAA25E185A9BCD01EADC6CBEF32E0", + "end_addr" : "0x7f5059bcd000", + "filename" : "/lib64/libpthread-2.23.so", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f5059dd2000", + "code_id" : "7f07664faee82d765620c02f8ed2c519", + "debug_file" : "libGL.so.1.2.0", + "debug_id" : "4F66077FE8AE762D5620C02F8ED2C5190", + "end_addr" : "0x7f5059e36000", + "filename" : "/usr/lib64/libGL.so.1.2.0", + "version" : "" + }, + { + "base_addr" : "0x7f505a03a000", + "code_id" : "dae9552c120246daffe10f4ea635443b", + "debug_file" : "libQtCore.so.4.8.7", + "debug_id" : "2C55E9DA0212DA46FFE10F4EA635443B0", + "end_addr" : "0x7f505a324000", + "filename" : "/usr/lib64/qt/lib/libQtCore.so.4.8.7", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f505a534000", + "code_id" : "ba4aca452b62c258d7467885f551481c", + "debug_file" : "libQtNetwork.so.4.8.7", + "debug_id" : "45CA4ABA622B58C2D7467885F551481C0", + "end_addr" : "0x7f505a67d000", + "filename" : "/usr/lib64/qt/lib/libQtNetwork.so.4.8.7", + "version" : "" + }, + { + "base_addr" : "0x7f505a885000", + "code_id" : "9fcea1e6fa35d107276b4efa38c3f372", + "debug_file" : "libQtGui.so.4.8.7", + "debug_id" : "E6A1CE9F35FA07D1276B4EFA38C3F3720", + "end_addr" : "0x7f505b32a000", + "filename" : "/usr/lib64/qt/lib/libQtGui.so.4.8.7", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f505b57e000", + "code_id" : "8fe9d03b0fd4c27806eab906638b4830", + "debug_file" : "libQtOpenGL.so.4.8.7", + "debug_id" : "3BD0E98FD40F78C206EAB906638B48300", + "end_addr" : "0x7f505b676000", + "filename" : "/usr/lib64/qt/lib/libQtOpenGL.so.4.8.7", + "version" : "" + }, + { + "base_addr" : "0x7f505b87f000", + "code_id" : "2d3f6d896cb5ff384e8590000c42729a", + "debug_file" : "libcairo.so.2.11400.6", + "debug_id" : "896D3F2DB56C38FF4E8590000C42729A0", + "end_addr" : "0x7f505b99e000", + "filename" : "/usr/lib64/libcairo.so.2.11400.6", + "version" : "" + }, + { + "base_addr" : "0x7f505bba4000", + "code_id" : "fd7fc57e48ef7dc8104a665ef2c944d1", + "debug_file" : "libshiboken-python2.7.so.1.2.2", + "debug_id" : "7EC57FFDEF48C87D104A665EF2C944D10", + "end_addr" : "0x7f505bbc0000", + "filename" : "/usr/lib64/libshiboken-python2.7.so.1.2.2", + "version" : "" + }, + { + "base_addr" : "0x7f505bdc2000", + "code_id" : "925df287747fd75103058b843438373e", + "debug_file" : "libpyside-python2.7.so.1.2.2", + "debug_id" : "87F25D927F7451D703058B843438373E0", + "end_addr" : "0x7f505bde0000", + "filename" : "/usr/lib64/libpyside-python2.7.so.1.2.2", + "version" : "" + }, + { + "base_addr" : "0x7f505bfe3000", + "code_id" : "3e3ce36e75bb7ef492eefdf96d5d356d", + "debug_file" : "libfreetype.so.6.12.3", + "debug_id" : "6EE33C3EBB75F47E92EEFDF96D5D356D0", + "end_addr" : "0x7f505c079000", + "filename" : "/usr/lib64/libfreetype.so.6.12.3", + "version" : "" + }, + { + "base_addr" : "0x7f505c27f000", + "code_id" : "6cca75e15c077d64bb6ba32fbe604dac", + "debug_file" : "libfontconfig.so.1.8.0", + "debug_id" : "E175CA6C075C647DBB6BA32FBE604DAC0", + "end_addr" : "0x7f505c2ba000", + "filename" : "/usr/lib64/libfontconfig.so.1.8.0", + "version" : "" + }, + { + "base_addr" : "0x7f505c4bb000", + "code_id" : "6feb426dfaef36e23395a2686425fb4f", + "debug_file" : "libpixman-1.so.0.34.0", + "debug_id" : "6D42EB6FEFFAE2363395A2686425FB4F0", + "end_addr" : "0x7f505c558000", + "filename" : "/usr/lib64/libpixman-1.so.0.34.0", + "version" : "" + }, + { + "base_addr" : "0x7f505c760000", + "code_id" : "4da4e918c728c78fbfbeb4285d26cb13", + "debug_file" : "libexpat.so.1.6.4", + "debug_id" : "18E9A44D28C78FC7BFBEB4285D26CB130", + "end_addr" : "0x7f505c787000", + "filename" : "/usr/lib64/libexpat.so.1.6.4", + "version" : "" + }, + { + "base_addr" : "0x7f505c98a000", + "code_id" : "9e2869656ab22773e94a6202ee894b67", + "debug_file" : "libboost_serialization.so.1.59.0", + "debug_id" : "6569289EB26A7327E94A6202EE894B670", + "end_addr" : "0x7f505c9c2000", + "filename" : "/usr/lib64/libboost_serialization.so.1.59.0", + "version" : "" + }, + { + "base_addr" : "0x7f505cbc5000", + "code_id" : "0204249a76ce79c750490be92b6dc062", + "debug_file" : "libutil-2.23.so", + "debug_id" : "9A240402CE76C77950490BE92B6DC0620", + "end_addr" : "0x7f505cbc7000", + "filename" : "/lib64/libutil-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f505cdc8000", + "code_id" : "7e09b921fe8d0e126fc336de33f79e8d", + "debug_file" : "libdl-2.23.so", + "debug_id" : "21B9097E8DFE120E6FC336DE33F79E8D0", + "end_addr" : "0x7f505cdcb000", + "filename" : "/lib64/libdl-2.23.so", + "version" : "" + }, + { + "base_addr" : "0x7f505cfcc000", + "code_id" : "ac2868fc2e9ceb6d14e033149ccaea78", + "debug_file" : "libpython2.7.so.1.0", + "debug_id" : "FC6828AC9C2E6DEB14E033149CCAEA780", + "end_addr" : "0x7f505d186000", + "filename" : "/usr/lib64/libpython2.7.so.1.0", + "version" : "" + }, + { + "base_addr" : "0x7f505d3e7000", + "code_id" : "be0bc1515000a8594af82e5b6c3bfef2", + "debug_file" : "libX11.so.6.3.0", + "debug_id" : "51C10BBE005059A84AF82E5B6C3BFEF20", + "end_addr" : "0x7f505d51c000", + "filename" : "/usr/lib64/libX11.so.6.3.0", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f505d722000", + "code_id" : "afa987bbc2308e77dec1b4f3ab9ff26b", + "debug_file" : "ld-2.23.so", + "debug_id" : "BB87A9AF30C2778EDEC1B4F3AB9FF26B0", + "end_addr" : "0x7f505d747000", + "filename" : "/lib64/ld-2.23.so", + "missing_symbols" : true, + "version" : "" + }, + { + "base_addr" : "0x7f505d74a000", + "code_id" : "id", + "debug_file" : "drm mm object (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d74c000", + "filename" : "/drm mm object (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f505d74d000", + "code_id" : "id", + "debug_file" : "drm mm object (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d755000", + "filename" : "/drm mm object (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f505d755000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d767000", + "filename" : "/var/cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f505d767000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "f349e9996a5320f6dd491cedd2b1f964-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d770000", + "filename" : "/var/cache/fontconfig/f349e9996a5320f6dd491cedd2b1f964-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f505d770000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_COLLATE", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d8a0000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_COLLATE", + "version" : "" + }, + { + "base_addr" : "0x7f505d8a0000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_CTYPE", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d8ee000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_CTYPE", + "version" : "" + }, + { + "base_addr" : "0x7f505d90a000", + "code_id" : "id", + "debug_file" : "drm mm object (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d90b000", + "filename" : "/drm mm object (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f505d90b000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_NUMERIC", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d90c000", + "filename" : "/usr/lib64/locale/en_US/LC_NUMERIC", + "version" : "" + }, + { + "base_addr" : "0x7f505d90c000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_TIME", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d90d000", + "filename" : "/usr/lib64/locale/en_US/LC_TIME", + "version" : "" + }, + { + "base_addr" : "0x7f505d90d000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_MONETARY", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d90e000", + "filename" : "/usr/lib64/locale/en_US/LC_MONETARY", + "version" : "" + }, + { + "base_addr" : "0x7f505d90e000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "SYS_LC_MESSAGES", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d90f000", + "filename" : "/usr/lib64/locale/en_US/LC_MESSAGES/SYS_LC_MESSAGES", + "version" : "" + }, + { + "base_addr" : "0x7f505d90f000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_PAPER", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d910000", + "filename" : "/usr/lib64/locale/en_US/LC_PAPER", + "version" : "" + }, + { + "base_addr" : "0x7f505d910000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_NAME", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d911000", + "filename" : "/usr/lib64/locale/en_US/LC_NAME", + "version" : "" + }, + { + "base_addr" : "0x7f505d911000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_ADDRESS", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d912000", + "filename" : "/usr/lib64/locale/en_US/LC_ADDRESS", + "version" : "" + }, + { + "base_addr" : "0x7f505d912000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_TELEPHONE", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d913000", + "filename" : "/usr/lib64/locale/en_US/LC_TELEPHONE", + "version" : "" + }, + { + "base_addr" : "0x7f505d913000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_MEASUREMENT", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d914000", + "filename" : "/usr/lib64/locale/en_US/LC_MEASUREMENT", + "version" : "" + }, + { + "base_addr" : "0x7f505d914000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_IDENTIFICATION", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d915000", + "filename" : "/usr/lib64/locale/en_US/LC_IDENTIFICATION", + "version" : "" + }, + { + "base_addr" : "0x7f505d915000", + "code_id" : "id", + "debug_file" : "drm mm object (deleted)", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d91e000", + "filename" : "/drm mm object (deleted)", + "version" : "" + }, + { + "base_addr" : "0x7f505d91e000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d930000", + "filename" : "/home/olear/.cache/fontconfig/d62e99ef547d1d24cdb1bd22ec1a2976-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f505d930000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "7f984e21d59cc4c4a85b338460464565-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d933000", + "filename" : "/home/olear/.cache/fontconfig/7f984e21d59cc4c4a85b338460464565-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f505d933000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "f349e9996a5320f6dd491cedd2b1f964-le64.cache-4", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d93c000", + "filename" : "/home/olear/.cache/fontconfig/f349e9996a5320f6dd491cedd2b1f964-le64.cache-4", + "version" : "" + }, + { + "base_addr" : "0x7f505d93c000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_IDENTIFICATION", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d93d000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_IDENTIFICATION", + "version" : "" + }, + { + "base_addr" : "0x7f505d93d000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_MEASUREMENT", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d93e000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_MEASUREMENT", + "version" : "" + }, + { + "base_addr" : "0x7f505d93e000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_TELEPHONE", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d93f000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_TELEPHONE", + "version" : "" + }, + { + "base_addr" : "0x7f505d93f000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_ADDRESS", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d940000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_ADDRESS", + "version" : "" + }, + { + "base_addr" : "0x7f505d940000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_NAME", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d941000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_NAME", + "version" : "" + }, + { + "base_addr" : "0x7f505d941000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_PAPER", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d942000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_PAPER", + "version" : "" + }, + { + "base_addr" : "0x7f505d942000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "SYS_LC_MESSAGES", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d943000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_MESSAGES/SYS_LC_MESSAGES", + "version" : "" + }, + { + "base_addr" : "0x7f505d943000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_MONETARY", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d944000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_MONETARY", + "version" : "" + }, + { + "base_addr" : "0x7f505d944000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_TIME", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d945000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_TIME", + "version" : "" + }, + { + "base_addr" : "0x7f505d945000", + "code_id" : "00000000000000000000000000000000", + "debug_file" : "LC_NUMERIC", + "debug_id" : "000000000000000000000000000000000", + "end_addr" : "0x7f505d946000", + "filename" : "/usr/lib64/locale/en_US.utf8/LC_NUMERIC", + "version" : "" + }, + { + "base_addr" : "0x7fff2cfca000", + "code_id" : "7d560820f2b7ea15983c315b36f1bcf5c3c6d279", + "debug_file" : "linux-gate.so", + "debug_id" : "2008567DB7F215EA983C315B36F1BCF50", + "end_addr" : "0x7fff2cfcc000", + "filename" : "linux-gate.so", + "version" : "" + } + ], + "sensitive" : { + "exploitability" : "interesting" + }, + "status" : "OK", + "system_info" : { + "cpu_arch" : "amd64", + "cpu_count" : 4, + "cpu_info" : "family 6 model 37 stepping 5", + "cpu_microcode_version" : 2, + "os" : "Linux", + "os_ver" : "0.0.0 Linux 4.4.172 #2 SMP Wed Jan 30 17:11:07 CST 2019 x86_64" + }, + "thread_count" : 3, + "threads" : [ + { + "frame_count" : 59, + "frames" : [ + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Settings.cpp", + "frame" : 0, + "function" : "Natron::crash_application()", + "function_offset" : "0x3f", + "line" : 2228, + "module" : "Natron-bin", + "module_offset" : "0x1ddb0f2", + "offset" : "0x21db0f2", + "trust" : "context" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Settings.cpp", + "frame" : 1, + "function" : "Natron::Settings::onKnobValueChanged(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", + "function_offset" : "0x159d", + "line" : 2360, + "module" : "Natron-bin", + "module_offset" : "0x1dd26c1", + "offset" : "0x21d26c1", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 2, + "function" : "Natron::KnobHolder::onKnobValueChanged_public(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", + "function_offset" : "0xc6", + "line" : 5996, + "module" : "Natron-bin", + "module_offset" : "0x1ae042e", + "offset" : "0x1ee042e", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 3, + "function" : "Natron::KnobHolder::endChanges(bool)", + "function_offset" : "0x86a", + "line" : 5567, + "module" : "Natron-bin", + "module_offset" : "0x1ade546", + "offset" : "0x1ede546", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 4, + "function" : "Natron::KnobHelper::evaluateValueChangeInternal(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum, Natron::ValueChangedReasonEnum)", + "function_offset" : "0x2ca", + "line" : 1700, + "module" : "Natron-bin", + "module_offset" : "0x1aca3d2", + "offset" : "0x1eca3d2", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/Knob.cpp", + "frame" : 5, + "function" : "Natron::KnobHelper::evaluateValueChange(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum)", + "function_offset" : "0x3f", + "line" : 1724, + "module" : "Natron-bin", + "module_offset" : "0x1aca5a3", + "offset" : "0x1eca5a3", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/KnobTypes.cpp", + "frame" : 6, + "function" : "Natron::KnobButton::trigger()", + "function_offset" : "0x5c", + "line" : 499, + "module" : "Natron-bin", + "module_offset" : "0x1b43ac6", + "offset" : "0x1f43ac6", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Gui/../../Natron/Gui/KnobGuiButton.cpp", + "frame" : 7, + "function" : "Natron::KnobGuiButton::emitValueChanged(bool)", + "function_offset" : "0x15d", + "line" : 188, + "module" : "Natron-bin", + "module_offset" : "0x15ce2b1", + "offset" : "0x19ce2b1", + "trust" : "cfi" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Gui/./moc_KnobGuiButton.cpp", + "frame" : 8, + "function" : "Natron::KnobGuiButton::qt_static_metacall(QObject*, QMetaObject::Call, int, void**)", + "function_offset" : "0x85", + "line" : 48, + "module" : "Natron-bin", + "module_offset" : "0x15ce6e9", + "offset" : "0x19ce6e9", + "trust" : "cfi" + }, + { + "frame" : 9, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x1a28f1", + "offset" : "0x7f505a1dc8f1", + "trust" : "cfi" + }, + { + "frame" : 10, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x85d061", + "offset" : "0x7f505b0e2061", + "trust" : "scan" + }, + { + "frame" : 11, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x5b5b65", + "offset" : "0x7f505ae3ab65", + "trust" : "scan" + }, + { + "frame" : 12, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x5b6d99", + "offset" : "0x7f505ae3bd99", + "trust" : "scan" + }, + { + "frame" : 13, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x5b6e93", + "offset" : "0x7f505ae3be93", + "trust" : "scan" + }, + { + "frame" : 14, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x25230f", + "offset" : "0x7f505aad730f", + "trust" : "scan" + }, + { + "frame" : 15, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x83863", + "offset" : "0x7f5058db1863", + "trust" : "scan" + }, + { + "frame" : 16, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x2489b4", + "offset" : "0x7f505aacd9b4", + "trust" : "scan" + }, + { + "frame" : 17, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x214020", + "offset" : "0x7f505aa99020", + "trust" : "scan" + }, + { + "frame" : 18, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x1ff5bb", + "offset" : "0x7f505aa845bb", + "trust" : "scan" + }, + { + "frame" : 19, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x206192", + "offset" : "0x7f505aa8b192", + "trust" : "scan" + }, + { + "frame" : 20, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x28fb00", + "offset" : "0x7f505ab14b00", + "trust" : "scan" + }, + { + "frame" : 21, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x81d42", + "offset" : "0x7f505a0bbd42", + "trust" : "scan" + }, + { + "frame" : 22, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x18f79c", + "offset" : "0x7f505a1c979c", + "trust" : "scan" + }, + { + "frame" : 23, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x1a79fa", + "offset" : "0x7f505a1e19fa", + "trust" : "scan" + }, + { + "frame" : 24, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x205829", + "offset" : "0x7f505aa8a829", + "trust" : "scan" + }, + { + "frame" : 25, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x27c728", + "offset" : "0x7f505ab01728", + "trust" : "scan" + }, + { + "frame" : 26, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x27c63f", + "offset" : "0x7f505ab0163f", + "trust" : "scan" + }, + { + "frame" : 27, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x1ff5bb", + "offset" : "0x7f505aa845bb", + "trust" : "scan" + }, + { + "frame" : 28, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x20602b", + "offset" : "0x7f505aa8b02b", + "trust" : "scan" + }, + { + "frame" : 29, + "missing_symbols" : true, + "module" : "libxcb.so.1.1.0", + "module_offset" : "0xbf3c", + "offset" : "0x7f5058b1af3c", + "trust" : "scan" + }, + { + "frame" : 30, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x83863", + "offset" : "0x7f5058db1863", + "trust" : "scan" + }, + { + "frame" : 31, + "missing_symbols" : true, + "module" : "libpthread-2.23.so", + "module_offset" : "0x10978", + "offset" : "0x7f5059bc5978", + "trust" : "scan" + }, + { + "frame" : 32, + "missing_symbols" : true, + "module" : "libxcb.so.1.1.0", + "module_offset" : "0xc890", + "offset" : "0x7f5058b1b890", + "trust" : "scan" + }, + { + "frame" : 33, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x2699bf", + "offset" : "0x7f505aaee9bf", + "trust" : "scan" + }, + { + "frame" : 34, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x27aa24", + "offset" : "0x7f505aaffa24", + "trust" : "scan" + }, + { + "frame" : 35, + "function" : "_fini", + "function_offset" : "0x2907", + "module" : "Natron-bin", + "module_offset" : "0x23276ef", + "offset" : "0x27276ef", + "trust" : "scan" + }, + { + "frame" : 36, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x83c1b", + "offset" : "0x7f5058db1c1b", + "trust" : "scan" + }, + { + "frame" : 37, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x115385", + "offset" : "0x7f5058e43385", + "trust" : "scan" + }, + { + "frame" : 38, + "function" : "_fini", + "function_offset" : "0x2907", + "module" : "Natron-bin", + "module_offset" : "0x23276ef", + "offset" : "0x27276ef", + "trust" : "scan" + }, + { + "frame" : 39, + "missing_symbols" : true, + "module" : "libxcb.so.1.1.0", + "module_offset" : "0xc999", + "offset" : "0x7f5058b1b999", + "trust" : "scan" + }, + { + "frame" : 40, + "missing_symbols" : true, + "module" : "libX11.so.6.3.0", + "module_offset" : "0x40a78", + "offset" : "0x7f505d427a78", + "trust" : "scan" + }, + { + "frame" : 41, + "function" : "_fini", + "function_offset" : "0x2907", + "module" : "Natron-bin", + "module_offset" : "0x23276ef", + "offset" : "0x27276ef", + "trust" : "scan" + }, + { + "frame" : 42, + "missing_symbols" : true, + "module" : "libX11.so.6.3.0", + "module_offset" : "0x40bcd", + "offset" : "0x7f505d427bcd", + "trust" : "scan" + }, + { + "frame" : 43, + "missing_symbols" : true, + "module" : "libX11.so.6.3.0", + "module_offset" : "0x43580", + "offset" : "0x7f505d42a580", + "trust" : "scan" + }, + { + "frame" : 44, + "function" : "_fini", + "function_offset" : "0x2907", + "module" : "Natron-bin", + "module_offset" : "0x23276ef", + "offset" : "0x27276ef", + "trust" : "scan" + }, + { + "frame" : 45, + "missing_symbols" : true, + "module" : "libQtGui.so.4.8.7", + "module_offset" : "0x2a2bae", + "offset" : "0x7f505ab27bae", + "trust" : "scan" + }, + { + "frame" : 46, + "module" : "Natron-bin", + "module_offset" : "0x135db8d", + "offset" : "0x175db8d", + "trust" : "scan" + }, + { + "frame" : 47, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x1e197", + "offset" : "0x7f505a058197", + "trust" : "scan" + }, + { + "frame" : 48, + "missing_symbols" : true, + "module" : "ld-2.23.so", + "module_offset" : "0x17e2e", + "offset" : "0x7f505d739e2e", + "trust" : "scan" + }, + { + "frame" : 49, + "function" : "_fini", + "function_offset" : "0x2907", + "module" : "Natron-bin", + "module_offset" : "0x23276ef", + "offset" : "0x27276ef", + "trust" : "scan" + }, + { + "frame" : 50, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x18e1b3", + "offset" : "0x7f505a1c81b3", + "trust" : "scan" + }, + { + "frame" : 51, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x18e4cd", + "offset" : "0x7f505a1c84cd", + "trust" : "scan" + }, + { + "frame" : 52, + "module" : "Natron-bin", + "module_offset" : "0x135db8d", + "offset" : "0x175db8d", + "trust" : "scan" + }, + { + "frame" : 53, + "function" : "_fini", + "function_offset" : "0x2957", + "module" : "Natron-bin", + "module_offset" : "0x232773f", + "offset" : "0x272773f", + "trust" : "scan" + }, + { + "frame" : 54, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x193a4b", + "offset" : "0x7f505a1cda4b", + "trust" : "scan" + }, + { + "frame" : 55, + "module" : "Natron-bin", + "module_offset" : "0x135db8d", + "offset" : "0x175db8d", + "trust" : "scan" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/AppManager.cpp", + "frame" : 56, + "function" : "Natron::AppManager::exec()", + "function_offset" : "0x27", + "line" : 2716, + "module" : "Natron-bin", + "module_offset" : "0x18114e9", + "offset" : "0x1c114e9", + "trust" : "scan" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Gui/../../Natron/Gui/GuiApplicationManager.cpp", + "frame" : 57, + "function" : "Natron::GuiApplicationManager::initGui(Natron::CLArgs const&)", + "function_offset" : "0x111c", + "line" : 965, + "module" : "Natron-bin", + "module_offset" : "0x132f6a2", + "offset" : "0x172f6a2", + "trust" : "scan" + }, + { + "frame" : 58, + "missing_symbols" : true, + "module" : "libstdc++.so.6.0.21", + "module_offset" : "0xc400f", + "offset" : "0x7f50598fd00f", + "trust" : "scan" + } + ] + }, + { + "frame_count" : 7, + "frames" : [ + { + "frame" : 0, + "missing_symbols" : true, + "module" : "libpthread-2.23.so", + "module_offset" : "0xd718", + "offset" : "0x7f5059bc2718", + "trust" : "context" + }, + { + "frame" : 1, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x8a0c9", + "offset" : "0x7f505a0c40c9", + "trust" : "scan" + }, + { + "frame" : 2, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x8a9fc", + "offset" : "0x7f505a0c49fc", + "trust" : "scan" + }, + { + "file" : "/home/olear/Development/build-Project-Qt4-Debug/Engine/../../Natron/Engine/ExistenceCheckThread.cpp", + "frame" : 3, + "function" : "Natron::ExistenceCheckerThread::run()", + "function_offset" : "0x1fb", + "line" : 135, + "module" : "Natron-bin", + "module_offset" : "0x19249f9", + "offset" : "0x1d249f9", + "trust" : "scan" + }, + { + "frame" : 4, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x8b5db", + "offset" : "0x7f505a0c55db", + "trust" : "scan" + }, + { + "frame" : 5, + "missing_symbols" : true, + "module" : "libpthread-2.23.so", + "module_offset" : "0x7683", + "offset" : "0x7f5059bbc683", + "trust" : "scan" + }, + { + "frame" : 6, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x106eec", + "offset" : "0x7f5058e34eec", + "trust" : "scan" + } + ] + }, + { + "frame_count" : 7, + "frames" : [ + { + "frame" : 0, + "missing_symbols" : true, + "module" : "libpthread-2.23.so", + "module_offset" : "0xd36f", + "offset" : "0x7f5059bc236f", + "trust" : "context" + }, + { + "frame" : 1, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x8baf3", + "offset" : "0x7f505a0c5af3", + "trust" : "scan" + }, + { + "frame" : 2, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x803cc", + "offset" : "0x7f505a0ba3cc", + "trust" : "scan" + }, + { + "frame" : 3, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x7f1cb", + "offset" : "0x7f505a0b91cb", + "trust" : "scan" + }, + { + "frame" : 4, + "missing_symbols" : true, + "module" : "libQtCore.so.4.8.7", + "module_offset" : "0x8b5db", + "offset" : "0x7f505a0c55db", + "trust" : "scan" + }, + { + "frame" : 5, + "missing_symbols" : true, + "module" : "libpthread-2.23.so", + "module_offset" : "0x7683", + "offset" : "0x7f5059bbc683", + "trust" : "scan" + }, + { + "frame" : 6, + "missing_symbols" : true, + "module" : "libc-2.23.so", + "module_offset" : "0x106eec", + "offset" : "0x7f5058e34eec", + "trust" : "scan" + } + ] + } + ] +} + diff --git a/tests/39eb2108-ca98-7946-09d36d98-51c56b32.dmp b/tests/39eb2108-ca98-7946-09d36d98-51c56b32.dmp deleted file mode 100644 index d79cd86f4a..0000000000 Binary files a/tests/39eb2108-ca98-7946-09d36d98-51c56b32.dmp and /dev/null differ diff --git a/tests/39eb2108-ca98-7946-09d36d98-51c56b32.json b/tests/39eb2108-ca98-7946-09d36d98-51c56b32.json deleted file mode 100644 index 8074a6c2af..0000000000 --- a/tests/39eb2108-ca98-7946-09d36d98-51c56b32.json +++ /dev/null @@ -1,3783 +0,0 @@ -{ - "crash_info" : { - "address" : "0x0", - "crashing_thread" : 0, - "type" : "SIGSEGV" - }, - "crashing_thread" : { - "frames" : [ - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application", - "function_offset" : "0x52", - "line" : 2186, - "module" : "Natron-bin", - "module_offset" : "0xafa012", - "offset" : "0xefa012", - "registers" : { - "r10" : "0x00007fff1f0cc2f0", - "r11" : "0x0000000000000000", - "r12" : "0x00007fff1f0cc6c0", - "r13" : "0x00007fff1f0cc650", - "r14" : "0x00007fff1f0cc690", - "r15" : "0x00007fff1f0cc6b0", - "r8" : "0x00007f36426609c0", - "r9" : "0x00007f36426609c0", - "rax" : "0x00007f363e8bf5e0", - "rbp" : "0x00007f363e8c0960", - "rbx" : "0x00007f363e8bf5e0", - "rcx" : "0x0000000000000000", - "rdi" : "0x00007f363de851c0", - "rdx" : "0x0000000000000000", - "rip" : "0x0000000000efa012", - "rsi" : "0x00007f363de86a00", - "rsp" : "0x00007fff1f0cc5f0" - }, - "trust" : "context" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged", - "function_offset" : "0xfef", - "line" : 2314, - "module" : "Natron-bin", - "module_offset" : "0xaf04ef", - "offset" : "0xef04ef", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public", - "function_offset" : "0x66", - "line" : 5913, - "module" : "Natron-bin", - "module_offset" : "0x884236", - "offset" : "0xc84236", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges", - "function_offset" : "0x36c", - "line" : 5484, - "module" : "Natron-bin", - "module_offset" : "0x89efcc", - "offset" : "0xc9efcc", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal", - "function_offset" : "0x138", - "line" : 1695, - "module" : "Natron-bin", - "module_offset" : "0x8a05b8", - "offset" : "0xca05b8", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/KnobTypes.cpp", - "frame" : 5, - "function" : "Natron::KnobButton::trigger", - "function_offset" : "0x23", - "line" : 494, - "module" : "Natron-bin", - "module_offset" : "0x8da223", - "offset" : "0xcda223", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 6, - "function" : "Natron::KnobGuiButton::emitValueChanged", - "function_offset" : "0x335", - "line" : 188, - "module" : "Natron-bin", - "module_offset" : "0x404f95", - "offset" : "0x804f95", - "trust" : "cfi" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1a1389", - "offset" : "0x7f363efb9389", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "ld-2.17.so", - "module_offset" : "0x1525f", - "offset" : "0x7f364249625f", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x8277a1", - "offset" : "0x7f363fe7f7a1", - "trust" : "scan" - } - ], - "threads_index" : 0, - "total_frames" : 74 - }, - "main_module" : 0, - "modules" : [ - { - "base_addr" : "0x400000", - "code_id" : "8347faa51ffe24872d54d52f7e39de73", - "debug_file" : "Natron-bin", - "debug_id" : "A5FA4783FE1F87242D54D52F7E39DE730", - "end_addr" : "0x1628000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/Natron-bin", - "loaded_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x401de000", - "code_id" : "id", - "debug_file" : ".glzMnLef (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x401e0000", - "filename" : "/tmp/.glzMnLef (deleted)", - "version" : "" - }, - { - "base_addr" : "0x40f52000", - "code_id" : "id", - "debug_file" : ".glpmlBuM (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x40f54000", - "filename" : "/tmp/.glpmlBuM (deleted)", - "version" : "" - }, - { - "base_addr" : "0x410fd000", - "code_id" : "id", - "debug_file" : ".glUkZOAI (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x410ff000", - "filename" : "/tmp/.glUkZOAI (deleted)", - "version" : "" - }, - { - "base_addr" : "0x41383000", - "code_id" : "id", - "debug_file" : ".glOe6ER0 (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x41385000", - "filename" : "/tmp/.glOe6ER0 (deleted)", - "version" : "" - }, - { - "base_addr" : "0x414cb000", - "code_id" : "id", - "debug_file" : ".gle1mVBt (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x414cd000", - "filename" : "/tmp/.gle1mVBt (deleted)", - "version" : "" - }, - { - "base_addr" : "0x41666000", - "code_id" : "id", - "debug_file" : ".glVL5wYj (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x41668000", - "filename" : "/tmp/.glVL5wYj (deleted)", - "version" : "" - }, - { - "base_addr" : "0x4174d000", - "code_id" : "id", - "debug_file" : ".glnkXOYJ (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x4174f000", - "filename" : "/tmp/.glnkXOYJ (deleted)", - "version" : "" - }, - { - "base_addr" : "0x41a38000", - "code_id" : "id", - "debug_file" : ".gl46Gxey (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x41a3a000", - "filename" : "/tmp/.gl46Gxey (deleted)", - "version" : "" - }, - { - "base_addr" : "0x41c5e000", - "code_id" : "id", - "debug_file" : ".gl9JcOxr (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x41c60000", - "filename" : "/tmp/.gl9JcOxr (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f35ffd6b000", - "code_id" : "id", - "debug_file" : "SYSV00000000 (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f360054a000", - "filename" : "/SYSV00000000 (deleted)", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f360054a000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "AbyssinicaSIL-R.ttf", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36005d8000", - "filename" : "/usr/share/fonts/sil-abyssinica/AbyssinicaSIL-R.ttf", - "version" : "" - }, - { - "base_addr" : "0x7f36005d8000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "Lato-Medium.ttf", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f360066e000", - "filename" : "/usr/share/fonts/lato/Lato-Medium.ttf", - "version" : "" - }, - { - "base_addr" : "0x7f360066e000", - "code_id" : "baff1c019ac00ff719c84ba3e2cca376", - "debug_file" : "libqsvgicon.so", - "debug_id" : "011CFFBAC09AF70F19C84BA3E2CCA3760", - "end_addr" : "0x7f3600677000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/iconengines/libqsvgicon.so", - "version" : "" - }, - { - "base_addr" : "0x7f3600b77000", - "code_id" : "008c2ff94f2e561d892d5821bf0bb831f42b2852", - "debug_file" : "libopenjpeg.so.1.5.1", - "debug_id" : "F92F8C002E4F1D56892D5821BF0BB8310", - "end_addr" : "0x7f3600b9a000", - "filename" : "/usr/lib64/libopenjpeg.so.1.5.1", - "version" : "" - }, - { - "base_addr" : "0x7f3600d9b000", - "code_id" : "cfa8af3a112bdc6be0c4b2661632fc29a06da11b", - "debug_file" : "libgbm.so.1.0.0", - "debug_id" : "3AAFA8CF2B116BDCE0C4B2661632FC290", - "end_addr" : "0x7f3600da6000", - "filename" : "/usr/lib64/libgbm.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3600fa7000", - "code_id" : "69cc207bcf8c26389f2cbc3264d9a0fd1dbcfb85", - "debug_file" : "libpoppler.so.46.0.0", - "debug_id" : "7B20CC698CCF38269F2CBC3264D9A0FD0", - "end_addr" : "0x7f36011ee000", - "filename" : "/usr/lib64/libpoppler.so.46.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3601436000", - "code_id" : "030cf1760802e00d7b215864cee62fb70ee1361e", - "debug_file" : "libpoppler-glib.so.18.6.0", - "debug_id" : "76F10C0302080DE07B215864CEE62FB70", - "end_addr" : "0x7f360148b000", - "filename" : "/usr/lib64/libpoppler-glib.so.18.6.0", - "version" : "" - }, - { - "base_addr" : "0x7f3601691000", - "code_id" : "5a15cc29901beaa8480f229537a57d497e8e77be", - "debug_file" : "libzip.so.2.1.0", - "debug_id" : "29CC155A1B90A8EA480F229537A57D490", - "end_addr" : "0x7f360169d000", - "filename" : "/usr/lib64/libzip.so.2.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f360189f000", - "code_id" : "04813117a9fb30f2db02b8c546c4fc38bf4890a0", - "debug_file" : "libicudata.so.50.1.2", - "debug_id" : "17318104FBA9F230DB02B8C546C4FC380", - "end_addr" : "0x7f3602c72000", - "filename" : "/usr/lib64/libicudata.so.50.1.2", - "version" : "" - }, - { - "base_addr" : "0x7f3602e73000", - "code_id" : "e9ea46b17eee2ae15094650c00b891c094cb802d", - "debug_file" : "libicuuc.so.50.1.2", - "debug_id" : "B146EAE9EE7EE12A5094650C00B891C00", - "end_addr" : "0x7f3602fd7000", - "filename" : "/usr/lib64/libicuuc.so.50.1.2", - "version" : "" - }, - { - "base_addr" : "0x7f36031ec000", - "code_id" : "7caa9714b33aa18b16fafdc88fa43185238c6c86", - "debug_file" : "libicui18n.so.50.1.2", - "debug_id" : "1497AA7C3AB38BA116FAFDC88FA431850", - "end_addr" : "0x7f36033dc000", - "filename" : "/usr/lib64/libicui18n.so.50.1.2", - "version" : "" - }, - { - "base_addr" : "0x7f36035eb000", - "code_id" : "b4ad59ccede74240116bd6501d7e5e1430e78b71", - "debug_file" : "libxcb-shape.so.0.0.0", - "debug_id" : "CC59ADB4E7ED4042116BD6501D7E5E140", - "end_addr" : "0x7f36035ee000", - "filename" : "/usr/lib64/libxcb-shape.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f36037ef000", - "code_id" : "25798eec68e93e24348434ce573971e2fcd6f3ad", - "debug_file" : "libxcb-sync.so.1.0.0", - "debug_id" : "EC8E7925E968243E348434CE573971E20", - "end_addr" : "0x7f36037f4000", - "filename" : "/usr/lib64/libxcb-sync.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f36039f6000", - "code_id" : "8e37231808165ec57a80f8cd067fe2aa2a70784f", - "debug_file" : "libxcb-xfixes.so.0.0.0", - "debug_id" : "1823378E1608C55E7A80F8CD067FE2AA0", - "end_addr" : "0x7f36039fc000", - "filename" : "/usr/lib64/libxcb-xfixes.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3603bfe000", - "code_id" : "dca7ea5dec592e9018605dfe64d609e912adc3dd", - "debug_file" : "libxcb-randr.so.0.1.0", - "debug_id" : "5DEAA7DC59EC902E18605DFE64D609E90", - "end_addr" : "0x7f3603c0a000", - "filename" : "/usr/lib64/libxcb-randr.so.0.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f3603e0c000", - "code_id" : "3445ca084c7710688d5ea6e030134a4058357236", - "debug_file" : "libXxf86vm.so.1.0.0", - "debug_id" : "08CA4534774C68108D5EA6E030134A400", - "end_addr" : "0x7f3603e11000", - "filename" : "/usr/lib64/libXxf86vm.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604012000", - "code_id" : "9a2fdd396d455c8f6018e3f8ce9051f699be514f", - "debug_file" : "libxshmfence.so.1.0.0", - "debug_id" : "39DD2F9A456D8F5C6018E3F8CE9051F60", - "end_addr" : "0x7f3604013000", - "filename" : "/usr/lib64/libxshmfence.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604215000", - "code_id" : "0263e159b2231ecc4f65eac43b8d77d9c650bb0e", - "debug_file" : "libxcb-present.so.0.0.0", - "debug_id" : "59E1630223B2CC1E4F65EAC43B8D77D90", - "end_addr" : "0x7f3604217000", - "filename" : "/usr/lib64/libxcb-present.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604418000", - "code_id" : "ad25cbf8b0c29e96d5ea4e4fc2037dbc68b349b9", - "debug_file" : "libxcb-dri3.so.0.0.0", - "debug_id" : "F8CB25ADC2B0969ED5EA4E4FC2037DBC0", - "end_addr" : "0x7f360441a000", - "filename" : "/usr/lib64/libxcb-dri3.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360461b000", - "code_id" : "7a7d47324d10621a080606bd39d774f73806d6f3", - "debug_file" : "libxcb-dri2.so.0.0.0", - "debug_id" : "32477D7A104D1A62080606BD39D774F70", - "end_addr" : "0x7f360461f000", - "filename" : "/usr/lib64/libxcb-dri2.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604820000", - "code_id" : "9abc3e3f23f9bf66e822f983cdbf2df27a2c141b", - "debug_file" : "libxcb-glx.so.0.0.0", - "debug_id" : "3F3EBC9AF92366BFE822F983CDBF2DF20", - "end_addr" : "0x7f3604837000", - "filename" : "/usr/lib64/libxcb-glx.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604a3a000", - "code_id" : "af6f00e4c6715dbf821a8dc3421bf430bc1d76ea", - "debug_file" : "libX11-xcb.so.1.0.0", - "debug_id" : "E4006FAF71C6BF5D821A8DC3421BF4300", - "end_addr" : "0x7f3604a3b000", - "filename" : "/usr/lib64/libX11-xcb.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604c3c000", - "code_id" : "b150da31ecd5094eafcbde76f6d9ba5fa1af95b4", - "debug_file" : "libXdamage.so.1.1.0", - "debug_id" : "31DA50B1D5EC4E09AFCBDE76F6D9BA5F0", - "end_addr" : "0x7f3604c3e000", - "filename" : "/usr/lib64/libXdamage.so.1.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f3604e3f000", - "code_id" : "3ea183b70611110c53e5217b2b1d75c417c5bded", - "debug_file" : "libdrm.so.2.4.0", - "debug_id" : "B783A13E11060C1153E5217B2B1D75C40", - "end_addr" : "0x7f3604e4b000", - "filename" : "/usr/lib64/libdrm.so.2.4.0", - "version" : "" - }, - { - "base_addr" : "0x7f360504c000", - "code_id" : "ec95072890617df5dd8f2047e1747ad10275bf76", - "debug_file" : "libEGL.so.1.0.0", - "debug_id" : "280795EC6190F57DDD8F2047E1747AD10", - "end_addr" : "0x7f360506c000", - "filename" : "/usr/lib64/libEGL.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360526d000", - "code_id" : "5e48348ef1559652448eaf752582a88a7c53d3d1", - "debug_file" : "Extra.ofx", - "debug_id" : "8E34485E55F15296448EAF752582A88A0", - "end_addr" : "0x7f3605645000", - "filename" : "/usr/OFX/Plugins/Extra.ofx.bundle/Contents/Linux-x86-64/Extra.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f3605856000", - "code_id" : "d1856103f06f2ca86adc1784236cf05f9ddc4358", - "debug_file" : "fooplug.ofx", - "debug_id" : "036185D16FF0A82C6ADC1784236CF05F0", - "end_addr" : "0x7f36058af000", - "filename" : "/usr/OFX/Plugins/fooplug.ofx.bundle/Contents/Linux-x86-64/fooplug.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f3605ab2000", - "code_id" : "8d2b4cdfe3d5a8c7afda3ee924b85586c4b9a5fc", - "debug_file" : "libfreebl3.so", - "debug_id" : "DF4C2B8DD5E3C7A8AFDA3EE924B855860", - "end_addr" : "0x7f3605ab4000", - "filename" : "/usr/lib64/libfreebl3.so", - "version" : "" - }, - { - "base_addr" : "0x7f3605cb5000", - "code_id" : "30fa397b01197ecabc647cbd8e75fdd5b743d730", - "debug_file" : "libpcre.so.1.2.0", - "debug_id" : "7B39FA301901CA7EBC647CBD8E75FDD50", - "end_addr" : "0x7f3605d15000", - "filename" : "/usr/lib64/libpcre.so.1.2.0", - "version" : "" - }, - { - "base_addr" : "0x7f3605f16000", - "code_id" : "b9855fb18a135838e1fbf0d06e79ebce36a35625", - "debug_file" : "libcrypt-2.17.so", - "debug_id" : "B15F85B9138A3858E1FBF0D06E79EBCE0", - "end_addr" : "0x7f3605f1e000", - "filename" : "/usr/lib64/libcrypt-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f360614d000", - "code_id" : "82ff6b18e1e42825cc2d060f969479ad4af2f62c", - "debug_file" : "libselinux.so.1", - "debug_id" : "186BFF82E4E12528CC2D060F969479AD0", - "end_addr" : "0x7f360616e000", - "filename" : "/usr/lib64/libselinux.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f3606372000", - "code_id" : "7f93b495437eeabffc7fb12e87902c52d4930e69", - "debug_file" : "libsasl2.so.3.0.0", - "debug_id" : "95B4937F7E43BFEAFC7FB12E87902C520", - "end_addr" : "0x7f360638e000", - "filename" : "/usr/lib64/libsasl2.so.3.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360658f000", - "code_id" : "2e01d5ac08c1280d013aab96b292ac58bc30a263", - "debug_file" : "libkeyutils.so.1.5", - "debug_id" : "ACD5012EC1080D28013AAB96B292AC580", - "end_addr" : "0x7f3606592000", - "filename" : "/usr/lib64/libkeyutils.so.1.5", - "version" : "" - }, - { - "base_addr" : "0x7f3606793000", - "code_id" : "aef6c3d3c5152f339942041519a106fc055daf71", - "debug_file" : "libkrb5support.so.0.1", - "debug_id" : "D3C3F6AE15C5332F9942041519A106FC0", - "end_addr" : "0x7f36067a0000", - "filename" : "/usr/lib64/libkrb5support.so.0.1", - "version" : "" - }, - { - "base_addr" : "0x7f36069a2000", - "code_id" : "6a997dc6d2cfd6702b987bf1b4926abba91691b8", - "debug_file" : "libcrypto.so.1.0.1e", - "debug_id" : "C67D996ACFD270D62B987BF1B4926ABB0", - "end_addr" : "0x7f3606b60000", - "filename" : "/usr/lib64/libcrypto.so.1.0.1e", - "version" : "" - }, - { - "base_addr" : "0x7f3606d8a000", - "code_id" : "478d01a08b923a251d755bb421f3ebaf9f2982c1", - "debug_file" : "libssl.so.1.0.1e", - "debug_id" : "A0018D47928B253A1D755BB421F3EBAF0", - "end_addr" : "0x7f3606ded000", - "filename" : "/usr/lib64/libssl.so.1.0.1e", - "version" : "" - }, - { - "base_addr" : "0x7f3606ff7000", - "code_id" : "4428e375ba8d57aa9a2253eda96f1e39ebdcefc5", - "debug_file" : "libldap-2.4.so.2.10.3", - "debug_id" : "75E328448DBAAA579A2253EDA96F1E390", - "end_addr" : "0x7f3607047000", - "filename" : "/usr/lib64/libldap-2.4.so.2.10.3", - "version" : "" - }, - { - "base_addr" : "0x7f360724a000", - "code_id" : "ad3d6bb35e458273e772ced5e00eee3e612c0afc", - "debug_file" : "liblber-2.4.so.2.10.3", - "debug_id" : "B36B3DAD455E7382E772CED5E00EEE3E0", - "end_addr" : "0x7f3607258000", - "filename" : "/usr/lib64/liblber-2.4.so.2.10.3", - "version" : "" - }, - { - "base_addr" : "0x7f3607459000", - "code_id" : "3a1166709f88740c49e060731832e3fad2dfb66b", - "debug_file" : "libcom_err.so.2.1", - "debug_id" : "7066113A889F0C7449E060731832E3FA0", - "end_addr" : "0x7f360745c000", - "filename" : "/usr/lib64/libcom_err.so.2.1", - "version" : "" - }, - { - "base_addr" : "0x7f360765d000", - "code_id" : "aa97a848dd7c9e57b06ec913e10d420aebbce027", - "debug_file" : "libk5crypto.so.3.1", - "debug_id" : "48A897AA7CDD579EB06EC913E10D420A0", - "end_addr" : "0x7f360768c000", - "filename" : "/usr/lib64/libk5crypto.so.3.1", - "version" : "" - }, - { - "base_addr" : "0x7f360788f000", - "code_id" : "6d6136a0e795420b05854def13a10c226fe9ccb2", - "debug_file" : "libkrb5.so.3.3", - "debug_id" : "A036616D95E70B4205854DEF13A10C220", - "end_addr" : "0x7f3607964000", - "filename" : "/usr/lib64/libkrb5.so.3.3", - "version" : "" - }, - { - "base_addr" : "0x7f3607b74000", - "code_id" : "d46a230fff4a7b808b3cfc213d31fcac542fb504", - "debug_file" : "libgssapi_krb5.so.2.2", - "debug_id" : "0F236AD44AFF807B8B3CFC213D31FCAC0", - "end_addr" : "0x7f3607bbd000", - "filename" : "/usr/lib64/libgssapi_krb5.so.2.2", - "version" : "" - }, - { - "base_addr" : "0x7f3607dc0000", - "code_id" : "01549d4f6848210c94911cc5d8c8d7cb202f36bd", - "debug_file" : "libnspr4.so", - "debug_id" : "4F9D540148680C2194911CC5D8C8D7CB0", - "end_addr" : "0x7f3607df9000", - "filename" : "/usr/lib64/libnspr4.so", - "version" : "" - }, - { - "base_addr" : "0x7f3607ffe000", - "code_id" : "840afcefaf1712511834e13a1333112c352f18cf", - "debug_file" : "libplc4.so", - "debug_id" : "EFFC0A8417AF51121834E13A1333112C0", - "end_addr" : "0x7f3608002000", - "filename" : "/usr/lib64/libplc4.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608203000", - "code_id" : "e36f8ae510139a4bd3f17d795db3fcd3b8216b10", - "debug_file" : "libplds4.so", - "debug_id" : "E58A6FE313104B9AD3F17D795DB3FCD30", - "end_addr" : "0x7f3608206000", - "filename" : "/usr/lib64/libplds4.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608407000", - "code_id" : "70760dd248d68339d2c198e3ee0cbab5a463397f", - "debug_file" : "libnssutil3.so", - "debug_id" : "D20D7670D6483983D2C198E3EE0CBAB50", - "end_addr" : "0x7f360842d000", - "filename" : "/usr/lib64/libnssutil3.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608633000", - "code_id" : "0b5588d08070ca96d86849b5a399fc6f0266fc7b", - "debug_file" : "libnss3.so", - "debug_id" : "D088550B708096CAD86849B5A399FC6F0", - "end_addr" : "0x7f3608751000", - "filename" : "/usr/lib64/libnss3.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608959000", - "code_id" : "960c8b618e15e6004f1df871d284ca3a7087ff33", - "debug_file" : "libsmime3.so", - "debug_id" : "618B0C96158E00E64F1DF871D284CA3A0", - "end_addr" : "0x7f360897d000", - "filename" : "/usr/lib64/libsmime3.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608b80000", - "code_id" : "6c1fbe722003bac8f19347d837dd39d5dd708d18", - "debug_file" : "libssl3.so", - "debug_id" : "72BE1F6C0320C8BAF19347D837DD39D50", - "end_addr" : "0x7f3608bbd000", - "filename" : "/usr/lib64/libssl3.so", - "version" : "" - }, - { - "base_addr" : "0x7f3608dc2000", - "code_id" : "c4edf92922b4fe091f9a855c50343288aad3243d", - "debug_file" : "libssh2.so.1.0.1", - "debug_id" : "29F9EDC4B42209FE1F9A855C503432880", - "end_addr" : "0x7f3608dea000", - "filename" : "/usr/lib64/libssh2.so.1.0.1", - "version" : "" - }, - { - "base_addr" : "0x7f3608fec000", - "code_id" : "2b77bbefff65e94f3e0b71a4e89beb68c4b476c5", - "debug_file" : "libidn.so.11.6.11", - "debug_id" : "EFBB772B65FF4FE93E0B71A4E89BEB680", - "end_addr" : "0x7f360901e000", - "filename" : "/usr/lib64/libidn.so.11.6.11", - "version" : "" - }, - { - "base_addr" : "0x7f360921f000", - "code_id" : "180154adee1cc1f0393b1953442cf70efc22697c", - "debug_file" : "libpng15.so.15.13.0", - "debug_id" : "AD5401181CEEF0C1393B1953442CF70E0", - "end_addr" : "0x7f3609248000", - "filename" : "/usr/lib64/libpng15.so.15.13.0", - "version" : "" - }, - { - "base_addr" : "0x7f360944a000", - "code_id" : "1ae383f43705edee66f45e6c9e275eee79d458ec", - "debug_file" : "Community.ofx", - "debug_id" : "F483E31A0537EEED66F45E6C9E275EEE0", - "end_addr" : "0x7f3609c38000", - "filename" : "/usr/OFX/Plugins/Community.ofx.bundle/Contents/Linux-x86-64/Community.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f3609f26000", - "code_id" : "e91852eb7fa80f2850497cbdd57046c333459ee0", - "debug_file" : "FFmpeg.ofx", - "debug_id" : "EB5218E9A87F280F50497CBDD57046C30", - "end_addr" : "0x7f360a080000", - "filename" : "/usr/OFX/Plugins/FFmpeg.ofx.bundle/Contents/Linux-x86-64/FFmpeg.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f360a28c000", - "code_id" : "7018745e7451798858c12008329d6111", - "debug_file" : "libIlmThread-2_2.so.12.0.0", - "debug_id" : "5E7418705174887958C12008329D61110", - "end_addr" : "0x7f360a292000", - "filename" : "/opt/Natron-CY2015/lib/libIlmThread-2_2.so.12.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360a493000", - "code_id" : "d924c6db93039cddad8ded81d0a4fada", - "debug_file" : "libIexMath-2_2.so.12.0.0", - "debug_id" : "DBC624D90393DD9CAD8DED81D0A4FADA0", - "end_addr" : "0x7f360a496000", - "filename" : "/opt/Natron-CY2015/lib/libIexMath-2_2.so.12.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360a698000", - "code_id" : "8ef4fbd1305fe5273b5e557722df6248", - "debug_file" : "libIex-2_2.so.12.0.0", - "debug_id" : "D1FBF48E5F3027E53B5E557722DF62480", - "end_addr" : "0x7f360a6b3000", - "filename" : "/opt/Natron-CY2015/lib/libIex-2_2.so.12.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360a8b8000", - "code_id" : "540682793ce96e89b8dede3d50c3fef1", - "debug_file" : "libHalf.so.12.0.0", - "debug_id" : "79820654E93C896EB8DEDE3D50C3FEF10", - "end_addr" : "0x7f360a8fa000", - "filename" : "/opt/Natron-CY2015/lib/libHalf.so.12.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360aafb000", - "code_id" : "971262d1e76d4a23bb99af63f8d25eeb", - "debug_file" : "libImath-2_2.so.12.0.0", - "debug_id" : "D16212976DE7234ABB99AF63F8D25EEB0", - "end_addr" : "0x7f360ab0c000", - "filename" : "/opt/Natron-CY2015/lib/libImath-2_2.so.12.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360ad0d000", - "code_id" : "b9178d5173f55675e2edd8cbf30ec4b7", - "debug_file" : "libIlmImf-2_2.so.22.0.0", - "debug_id" : "518D17B9F5737556E2EDD8CBF30EC4B70", - "end_addr" : "0x7f360aeda000", - "filename" : "/opt/Natron-CY2015/lib/libIlmImf-2_2.so.22.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360b1e0000", - "code_id" : "ae5a8585d8174251faee5720f0c2a8f9a1598dca", - "debug_file" : "OIIO.ofx", - "debug_id" : "85855AAE17D85142FAEE5720F0C2A8F90", - "end_addr" : "0x7f360b371000", - "filename" : "/usr/OFX/Plugins/OIIO.ofx.bundle/Contents/Linux-x86-64/OIIO.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f360b580000", - "code_id" : "462d9bffdcc8485b0e3d7d4302e89d1da0558e76", - "debug_file" : "Glow.ofx", - "debug_id" : "FF9B2D46C8DC5B480E3D7D4302E89D1D0", - "end_addr" : "0x7f360b5fd000", - "filename" : "/usr/OFX/Plugins/Glow.ofx.bundle/Contents/Linux-x86-64/Glow.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f360b800000", - "code_id" : "daf96379c3096922683c5516e7d4173c", - "debug_file" : "libOpenCL.so.1.0.0", - "debug_id" : "7963F9DA09C32269683C5516E7D4173C0", - "end_addr" : "0x7f360b805000", - "filename" : "/usr/lib64/nvidia/libOpenCL.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f360ba06000", - "code_id" : "2e73134c13cfb91df2e550278b5462ca00236d95", - "debug_file" : "Bulge.ofx", - "debug_id" : "4C13732ECF131DB9F2E550278B5462CA0", - "end_addr" : "0x7f360bd3c000", - "filename" : "/usr/OFX/Plugins/Bulge.ofx.bundle/Contents/Linux-x86-64/Bulge.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f360bf49000", - "code_id" : "b9be91b87f72abe38cc21762f63b3f00", - "debug_file" : "liborc-0.4.so.0", - "debug_id" : "B891BEB9727FE3AB8CC21762F63B3F000", - "end_addr" : "0x7f360bfc4000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/liborc-0.4.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f360c1cc000", - "code_id" : "a89561fa751bf2f34a9603b894068511", - "debug_file" : "libraw_r.so.10", - "debug_id" : "FA6195A81B75F3F24A9603B8940685110", - "end_addr" : "0x7f360c22c000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libraw_r.so.10", - "version" : "" - }, - { - "base_addr" : "0x7f360c473000", - "code_id" : "6dc8e448db9fa0869726330fcdc3d818", - "debug_file" : "libgif.so.7", - "debug_id" : "48E4C86D9FDB86A09726330FCDC3D8180", - "end_addr" : "0x7f360c47b000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libgif.so.7", - "version" : "" - }, - { - "base_addr" : "0x7f360c67d000", - "code_id" : "465664cf1f7ec67c9fcf3566e51bd57b", - "debug_file" : "libboost_thread.so.1.55.0", - "debug_id" : "CF6456467E1F7CC69FCF3566E51BD57B0", - "end_addr" : "0x7f360c692000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libboost_thread.so.1.55.0", - "version" : "" - }, - { - "base_addr" : "0x7f360c89a000", - "code_id" : "191f5ba04b9c1fc1d016db517151f366", - "debug_file" : "libboost_system.so.1.55.0", - "debug_id" : "A05B1F199C4BC11FD016DB517151F3660", - "end_addr" : "0x7f360c89d000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libboost_system.so.1.55.0", - "version" : "" - }, - { - "base_addr" : "0x7f360ca9e000", - "code_id" : "abdf196236a36f7eaa007805be2e8803", - "debug_file" : "libboost_regex.so.1.55.0", - "debug_id" : "6219DFABA3367E6FAA007805BE2E88030", - "end_addr" : "0x7f360cb7f000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libboost_regex.so.1.55.0", - "version" : "" - }, - { - "base_addr" : "0x7f360cdaa000", - "code_id" : "eff6fa6ee9fb773c0b4b4e674382f1be", - "debug_file" : "libboost_filesystem.so.1.55.0", - "debug_id" : "6EFAF6EFFBE93C770B4B4E674382F1BE0", - "end_addr" : "0x7f360cdc0000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libboost_filesystem.so.1.55.0", - "version" : "" - }, - { - "base_addr" : "0x7f360cfc4000", - "code_id" : "e38c3b28c5ee73dac4208035978c1342", - "debug_file" : "libmp3lame.so.0", - "debug_id" : "283B8CE3EEC5DA73C4208035978C13420", - "end_addr" : "0x7f360d00b000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libmp3lame.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f360d23d000", - "code_id" : "7f0b7f30338af24c0d79cdbbd894d956", - "debug_file" : "libopus.so.0", - "debug_id" : "307F0B7F8A334CF20D79CDBBD894D9560", - "end_addr" : "0x7f360d287000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libopus.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f360d488000", - "code_id" : "7e146c1cdf0800a673c0f5fbe88a3656", - "debug_file" : "libschroedinger-1.0.so.0", - "debug_id" : "1C6C147E08DFA60073C0F5FBE88A36560", - "end_addr" : "0x7f360d54b000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libschroedinger-1.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f360d74e000", - "code_id" : "ef32192e8ad80dc1e818d2400aa8906e", - "debug_file" : "libtheoradec.so.1", - "debug_id" : "2E1932EFD88AC10DE818D2400AA8906E0", - "end_addr" : "0x7f360d766000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libtheoradec.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f360d967000", - "code_id" : "eabf48916c5fdbed9f543f0c3d2f3ce8", - "debug_file" : "libtheoraenc.so.1", - "debug_id" : "9148BFEA5F6CEDDB9F543F0C3D2F3CE80", - "end_addr" : "0x7f360d9a6000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libtheoraenc.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f360dba7000", - "code_id" : "0e3ab3fa6b9fb0dbfacc8d2702bfc375", - "debug_file" : "libogg.so.0", - "debug_id" : "FAB33A0E9F6BDBB0FACC8D2702BFC3750", - "end_addr" : "0x7f360dbad000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libogg.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f360ddae000", - "code_id" : "5f2d41326ebf27d24377a1dacfaba9c0", - "debug_file" : "libvpx.so.2", - "debug_id" : "32412D5FBF6ED2274377A1DACFABA9C00", - "end_addr" : "0x7f360df7a000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libvpx.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f360e180000", - "code_id" : "acdf6ff351a1d2c877f0a38176f71cd9", - "debug_file" : "libx264.so.146", - "debug_id" : "F36FDFACA151C8D277F0A38176F71CD90", - "end_addr" : "0x7f360e27c000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libx264.so.146", - "version" : "" - }, - { - "base_addr" : "0x7f360e50a000", - "code_id" : "33e9935f13b983f44bf4443a2840150a", - "debug_file" : "libxvidcore.so.4", - "debug_id" : "5F93E933B913F4834BF4443A2840150A0", - "end_addr" : "0x7f360e5ac000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libxvidcore.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f360e821000", - "code_id" : "7c914f6f3f6b3dee1a26dc1a2a22460f", - "debug_file" : "libswresample.so.2", - "debug_id" : "6F4F917C6B3FEE3D1A26DC1A2A22460F0", - "end_addr" : "0x7f360e83a000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libswresample.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f360ea3d000", - "code_id" : "d1bfd392c27005791fab5fa5e6f53b70", - "debug_file" : "libmodplug.so.1", - "debug_id" : "92D3BFD170C279051FAB5FA5E6F53B700", - "end_addr" : "0x7f360ea88000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libmodplug.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f360edc8000", - "code_id" : "78cef58ea0966949cbafc1d6921decfe", - "debug_file" : "libSeExpr.so", - "debug_id" : "8EF5CE7896A04969CBAFC1D6921DECFE0", - "end_addr" : "0x7f360ee0d000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libSeExpr.so", - "version" : "" - }, - { - "base_addr" : "0x7f360f014000", - "code_id" : "4cbb002b1e8a7cda068c0610911c3e6e", - "debug_file" : "libOpenImageIO.so.1.6", - "debug_id" : "2B00BB4C8A1EDA7C068C0610911C3E6E0", - "end_addr" : "0x7f360fb16000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libOpenImageIO.so.1.6", - "version" : "" - }, - { - "base_addr" : "0x7f360fe36000", - "code_id" : "9c821a900d0f87dad03bad0c654657b3", - "debug_file" : "libavutil.so.55", - "debug_id" : "901A829C0F0DDA87D03BAD0C654657B30", - "end_addr" : "0x7f360fe89000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libavutil.so.55", - "version" : "" - }, - { - "base_addr" : "0x7f36100b0000", - "code_id" : "f1720390151dc2cda6a301451c7989ab", - "debug_file" : "libswscale.so.4", - "debug_id" : "900372F11D15CDC2A6A301451C7989AB0", - "end_addr" : "0x7f361012e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libswscale.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f3610339000", - "code_id" : "26d95742b1305a355de0f441ea356f55", - "debug_file" : "libavcodec.so.57", - "debug_id" : "4257D92630B1355A5DE0F441EA356F550", - "end_addr" : "0x7f3610f2e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libavcodec.so.57", - "version" : "" - }, - { - "base_addr" : "0x7f36118ed000", - "code_id" : "bceb8f10255fd12ce1ecdccee7dda2d0", - "debug_file" : "libavformat.so.57", - "debug_id" : "108FEBBC5F252CD1E1ECDCCEE7DDA2D00", - "end_addr" : "0x7f3611ad4000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Libraries/libavformat.so.57", - "version" : "" - }, - { - "base_addr" : "0x7f3611d04000", - "code_id" : "f65ef9cd5b15894fd2cb0c1a35ab1d25", - "debug_file" : "IO.ofx", - "debug_id" : "CDF95EF6155B4F89D2CB0C1A35AB1D250", - "end_addr" : "0x7f36120cf000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/IO.ofx.bundle/Contents/Linux-x86-64/IO.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f36123ea000", - "code_id" : "35ee114cde62534240e9fd3d3e09d39c", - "debug_file" : "Misc.ofx", - "debug_id" : "4C11EE3562DE425340E9FD3D3E09D39C0", - "end_addr" : "0x7f361307a000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Misc.ofx.bundle/Contents/Linux-x86-64/Misc.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f36132df000", - "code_id" : "7348204306d4ef76ff2570f6dd48362c", - "debug_file" : "libcroco-0.6.so.3", - "debug_id" : "43204873D40676EFFF2570F6DD48362C0", - "end_addr" : "0x7f3613317000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libcroco-0.6.so.3", - "version" : "" - }, - { - "base_addr" : "0x7f3613519000", - "code_id" : "db1152277860969439e45bc3daddf299", - "debug_file" : "libpoppler.so.60", - "debug_id" : "275211DB6078949639E45BC3DADDF2990", - "end_addr" : "0x7f3613786000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libpoppler.so.60", - "version" : "" - }, - { - "base_addr" : "0x7f36139ce000", - "code_id" : "3ed1b430fdbc7a4adb084abd18b1ebbf", - "debug_file" : "libpoppler-glib.so.8", - "debug_id" : "30B4D13EBCFD4A7ADB084ABD18B1EBBF0", - "end_addr" : "0x7f3613a23000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libpoppler-glib.so.8", - "version" : "" - }, - { - "base_addr" : "0x7f3613c28000", - "code_id" : "f03bbef77be500cfe0a240416c964022", - "debug_file" : "libcurl.so.4", - "debug_id" : "F7BE3BF0E57BCF00E0A240416C9640220", - "end_addr" : "0x7f3613c8a000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libcurl.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f3613e8f000", - "code_id" : "a1f5c95adab0ca620e265d70e3cec299", - "debug_file" : "libMagickCore-6.Q32HDRI.so.2", - "debug_id" : "5AC9F5A1B0DA62CA0E265D70E3CEC2990", - "end_addr" : "0x7f36141c1000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libMagickCore-6.Q32HDRI.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f3614469000", - "code_id" : "31ebe3d2f340b09ab04523b0606ec6a7", - "debug_file" : "libMagickWand-6.Q32HDRI.so.2", - "debug_id" : "D2E3EB3140F39AB0B04523B0606EC6A70", - "end_addr" : "0x7f3614557000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libMagickWand-6.Q32HDRI.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f361475b000", - "code_id" : "541eaaf5fa2399fb230687e81f265378", - "debug_file" : "libMagick++-6.Q32HDRI.so.6", - "debug_id" : "F5AA1E5423FAFB99230687E81F2653780", - "end_addr" : "0x7f36147db000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libMagick++-6.Q32HDRI.so.6", - "version" : "" - }, - { - "base_addr" : "0x7f36149e1000", - "code_id" : "3d9aa009c3a0e5e8dfd9826a5407938a", - "debug_file" : "libzip.so.4", - "debug_id" : "09A09A3DA0C3E8E5DFD9826A5407938A0", - "end_addr" : "0x7f36149f3000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libzip.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f3614bf5000", - "code_id" : "cbf41025aef3de2435cf61660f4c0489", - "debug_file" : "librevenge-stream-0.0.so.0", - "debug_id" : "2510F4CBF3AE24DE35CF61660F4C04890", - "end_addr" : "0x7f3614c14000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/librevenge-stream-0.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3614e14000", - "code_id" : "86cb754f9776d6f00156bf775e9a32af", - "debug_file" : "librevenge-generators-0.0.so.0", - "debug_id" : "4F75CB867697F0D60156BF775E9A32AF0", - "end_addr" : "0x7f3614e85000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/librevenge-generators-0.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3615088000", - "code_id" : "16cae01a9d834a4b50796e51190b8f79", - "debug_file" : "librevenge-0.0.so.0", - "debug_id" : "1AE0CA16839D4B4A50796E51190B8F790", - "end_addr" : "0x7f36150af000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/librevenge-0.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f36152b1000", - "code_id" : "a0d874560270619f5e0b74202a1f032d", - "debug_file" : "libcdr-0.1.so.1", - "debug_id" : "5674D8A070029F615E0B74202A1F032D0", - "end_addr" : "0x7f3615350000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libcdr-0.1.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f3615553000", - "code_id" : "9619946298e4ce75c4b42f50776a4876", - "debug_file" : "libgmodule-2.0.so.0", - "debug_id" : "62941996E49875CEC4B42F50776A48760", - "end_addr" : "0x7f3615556000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libgmodule-2.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3615756000", - "code_id" : "bb57a2d3c6c954b1289aec04be23d57f", - "debug_file" : "libgdk_pixbuf-2.0.so.0", - "debug_id" : "D3A257BBC9C6B154289AEC04BE23D57F0", - "end_addr" : "0x7f3615777000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libgdk_pixbuf-2.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3615978000", - "code_id" : "495d0ca0f14edb8d4eda54f0a992a09d", - "debug_file" : "libgio-2.0.so.0", - "debug_id" : "A00C5D494EF18DDB4EDA54F0A992A09D0", - "end_addr" : "0x7f3615ae4000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libgio-2.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3615ceb000", - "code_id" : "bd7c0785ca56e00160698e4b98d4e773", - "debug_file" : "librsvg-2.so.2", - "debug_id" : "85077CBD56CA01E060698E4B98D4E7730", - "end_addr" : "0x7f3615d1f000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/librsvg-2.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f3615f20000", - "code_id" : "9430a02f9ee50abe48a5b30eec159b4a12d78e4d", - "debug_file" : "libxcb-render.so.0.0.0", - "debug_id" : "2FA03094E59EBE0A48A5B30EEC159B4A0", - "end_addr" : "0x7f3615f29000", - "filename" : "/usr/lib64/libxcb-render.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f361612a000", - "code_id" : "d81fed81b8c3f0673968812b6d4773027ac81074", - "debug_file" : "libxcb-shm.so.0.0.0", - "debug_id" : "81ED1FD8C3B867F03968812B6D4773020", - "end_addr" : "0x7f361612c000", - "filename" : "/usr/lib64/libxcb-shm.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f361632e000", - "code_id" : "a4c6f3f14ffadf44178b8d5abd9f6f82", - "debug_file" : "libffi.so.6", - "debug_id" : "F1F3C6A4FA4F44DF178B8D5ABD9F6F820", - "end_addr" : "0x7f3616335000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libffi.so.6", - "version" : "" - }, - { - "base_addr" : "0x7f3616537000", - "code_id" : "cb6a19c2542007686cf5540651a34618", - "debug_file" : "libgobject-2.0.so.0", - "debug_id" : "C2196ACB205468076CF5540651A346180", - "end_addr" : "0x7f3616585000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libgobject-2.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3616787000", - "code_id" : "cbec1d2ac731aeb7cc71b863446912a6", - "debug_file" : "libpango-1.0.so.0", - "debug_id" : "2A1DECCB31C7B7AECC71B863446912A60", - "end_addr" : "0x7f36167cf000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libpango-1.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f36169d1000", - "code_id" : "2004921f74980bdda6d6373a5001af48", - "debug_file" : "libharfbuzz.so.0", - "debug_id" : "1F9204209874DD0BA6D6373A5001AF480", - "end_addr" : "0x7f3616a28000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libharfbuzz.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3616c29000", - "code_id" : "9a47155e8514929ca2634f61e3fb3505", - "debug_file" : "libcairo.so.2", - "debug_id" : "5E15479A14859C92A2634F61E3FB35050", - "end_addr" : "0x7f3616d2e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libcairo.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f3616f32000", - "code_id" : "7c201acace6e5727401f59751f9b077b", - "debug_file" : "libpangoft2-1.0.so.0", - "debug_id" : "CA1A207C6ECE2757401F59751F9B077B0", - "end_addr" : "0x7f3616f47000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libpangoft2-1.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3617147000", - "code_id" : "a6532d3231ceaebc2c302fea5bbc1cf2", - "debug_file" : "libpangocairo-1.0.so.0", - "debug_id" : "322D53A6CE31BCAE2C302FEA5BBC1CF20", - "end_addr" : "0x7f3617153000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Libraries/libpangocairo-1.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3617354000", - "code_id" : "b52e66778a2352c1a410061d5b838c30", - "debug_file" : "libOpenColorIO.so.1", - "debug_id" : "77662EB5238AC152A410061D5B838C300", - "end_addr" : "0x7f36174ad000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libOpenColorIO.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f36176c3000", - "code_id" : "3fd8475cc8b1244f113f789e68628361", - "debug_file" : "Arena.ofx", - "debug_id" : "5C47D83FB1C84F24113F789E686283610", - "end_addr" : "0x7f36179d2000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Arena.ofx.bundle/Contents/Linux-x86-64/Arena.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f3617be9000", - "code_id" : "f24c030c89efee3a16a17ca47e4a59ea", - "debug_file" : "CImg.ofx", - "debug_id" : "0C034CF2EF893AEE16A17CA47E4A59EA0", - "end_addr" : "0x7f3617df7000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/CImg.ofx.bundle/Contents/Linux-x86-64/CImg.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f361c10a000", - "code_id" : "58b45bdf43d49caa91850290bcbdd3ba", - "debug_file" : "liblcms2.so.2", - "debug_id" : "DF5BB458D443AA9C91850290BCBDD3BA0", - "end_addr" : "0x7f361c15d000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/liblcms2.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f361c365000", - "code_id" : "fb95970a8a70e3b43021d3b9f61fbe43", - "debug_file" : "Shadertoy.ofx", - "debug_id" : "0A9795FB708AB4E33021D3B9F61FBE430", - "end_addr" : "0x7f361d9d2000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/OFX/Natron/Shadertoy.ofx.bundle/Contents/Linux-x86-64/Shadertoy.ofx", - "version" : "" - }, - { - "base_addr" : "0x7f361e5ab000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "icon-cache.kcache", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f361efbb000", - "filename" : "/var/tmp/kdecache-olear/icon-cache.kcache", - "version" : "" - }, - { - "base_addr" : "0x7f361efbb000", - "code_id" : "5f6e9b05ade0c27b694addff937b3c30bdc6008d", - "debug_file" : "kimg_xview.so", - "debug_id" : "059B6E5FE0AD7BC2694ADDFF937B3C300", - "end_addr" : "0x7f361efbf000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_xview.so", - "version" : "" - }, - { - "base_addr" : "0x7f361f1c0000", - "code_id" : "9518807ebe4adf1d12c546bf5a3463e72a9d84de", - "debug_file" : "kimg_xcf.so", - "debug_id" : "7E8018954ABE1DDF12C546BF5A3463E70", - "end_addr" : "0x7f361f1cf000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_xcf.so", - "version" : "" - }, - { - "base_addr" : "0x7f361f3d4000", - "code_id" : "fb23d02b465cd589c12d971635377535bcf5841b", - "debug_file" : "kimg_tga.so", - "debug_id" : "2BD023FB5C4689D5C12D9716353775350", - "end_addr" : "0x7f361f3d9000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_tga.so", - "version" : "" - }, - { - "base_addr" : "0x7f361f5da000", - "code_id" : "1aff129dadf9b64ddc596c64cff04feef2f3a72a", - "debug_file" : "kimg_rgb.so", - "debug_id" : "9D12FF1AF9AD4DB6DC596C64CFF04FEE0", - "end_addr" : "0x7f361f5e3000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_rgb.so", - "version" : "" - }, - { - "base_addr" : "0x7f361f7e4000", - "code_id" : "a495152fc2e91656d8c9e2ccb00036013d9b387b", - "debug_file" : "kimg_ras.so", - "debug_id" : "2F1595A4E9C25616D8C9E2CCB00036010", - "end_addr" : "0x7f361f7e9000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_ras.so", - "version" : "" - }, - { - "base_addr" : "0x7f361f9eb000", - "code_id" : "285f92d979d8edbcb025b3334214212285ed7a59", - "debug_file" : "kimg_psd.so", - "debug_id" : "D9925F28D879BCEDB025B333421421220", - "end_addr" : "0x7f361f9f0000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_psd.so", - "version" : "" - }, - { - "base_addr" : "0x7f361fbf1000", - "code_id" : "bdcbfe61922c34c46170c3889b89393c3518dbc6", - "debug_file" : "kimg_pic.so", - "debug_id" : "61FECBBD2C92C4346170C3889B89393C0", - "end_addr" : "0x7f361fbf6000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_pic.so", - "version" : "" - }, - { - "base_addr" : "0x7f361fdf7000", - "code_id" : "5cc710db3bf5f04b80359cd5e891c337ce524a3c", - "debug_file" : "kimg_pcx.so", - "debug_id" : "DB10C75CF53B4BF080359CD5E891C3370", - "end_addr" : "0x7f361fdfe000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_pcx.so", - "version" : "" - }, - { - "base_addr" : "0x7f3624004000", - "code_id" : "id", - "debug_file" : ".glVL5wYj (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3624006000", - "filename" : "/tmp/.glVL5wYj (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f36240e3000", - "code_id" : "id", - "debug_file" : "SYSV00000000 (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36240f3000", - "filename" : "/SYSV00000000 (deleted)", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f362418b000", - "code_id" : "00c03788f61b33e22fc6a79fcdc40f5e7f93051f", - "debug_file" : "kimg_ora.so", - "debug_id" : "8837C0001BF6E2332FC6A79FCDC40F5E0", - "end_addr" : "0x7f362418f000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_ora.so", - "version" : "" - }, - { - "base_addr" : "0x7f3624390000", - "code_id" : "a183bf903c778b4d2c56da94b75afbb809d42777", - "debug_file" : "kimg_kra.so", - "debug_id" : "90BF83A1773C4D8B2C56DA94B75AFBB80", - "end_addr" : "0x7f3624394000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_kra.so", - "version" : "" - }, - { - "base_addr" : "0x7f3624595000", - "code_id" : "ccb2a3b40c4242b63c3169c582fef734d4cf87a3", - "debug_file" : "libjpeg.so.62.1.0", - "debug_id" : "B4A3B2CC420CB6423C3169C582FEF7340", - "end_addr" : "0x7f36245d8000", - "filename" : "/usr/lib64/libjpeg.so.62.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f36247ea000", - "code_id" : "efd141e9de1f6d9bdb3acbee02c08826", - "debug_file" : "libjasper.so.1", - "debug_id" : "E941D1EF1FDE9B6DDB3ACBEE02C088260", - "end_addr" : "0x7f3624838000", - "filename" : "/opt/Natron-CY2015/lib/libjasper.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f3624a42000", - "code_id" : "9a3ce6dd9a14d4d3d39b975edcd34dc9c523ecca", - "debug_file" : "kimg_jp2.so", - "debug_id" : "DDE63C9A149AD3D4D39B975EDCD34DC90", - "end_addr" : "0x7f3624a47000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_jp2.so", - "version" : "" - }, - { - "base_addr" : "0x7f3624c48000", - "code_id" : "33056b4dc416479c6f233ac9f973b0d47f591547", - "debug_file" : "libIexMath.so.6.0.0", - "debug_id" : "4D6B053316C49C476F233AC9F973B0D40", - "end_addr" : "0x7f3624c4b000", - "filename" : "/usr/lib64/libIexMath.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3624e4d000", - "code_id" : "45e8c9fc69b0487d330c658c52e79c04c903ff4c", - "debug_file" : "libIlmThread.so.6.0.0", - "debug_id" : "FCC9E845B0697D48330C658C52E79C040", - "end_addr" : "0x7f3624e53000", - "filename" : "/usr/lib64/libIlmThread.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3625054000", - "code_id" : "a2e2405758a60a7dcb2defaf446f613288f8c9d0", - "debug_file" : "libHalf.so.6.0.0", - "debug_id" : "5740E2A2A6587D0ACB2DEFAF446F61320", - "end_addr" : "0x7f3625096000", - "filename" : "/usr/lib64/libHalf.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3625297000", - "code_id" : "55e177d996ef9396076920f63f62dae77d0e3ea1", - "debug_file" : "libIex.so.6.0.0", - "debug_id" : "D977E155EF969693076920F63F62DAE70", - "end_addr" : "0x7f36252b2000", - "filename" : "/usr/lib64/libIex.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f36254b6000", - "code_id" : "221deac001144160cb3e94528327e179205cedad", - "debug_file" : "libIlmImf.so.7.0.0", - "debug_id" : "C0EA1D2214016041CB3E94528327E1790", - "end_addr" : "0x7f362557a000", - "filename" : "/usr/lib64/libIlmImf.so.7.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f362577e000", - "code_id" : "17c0b9078f30c7a7d4545f6c9946e3f425a550d7", - "debug_file" : "libImath.so.6.0.0", - "debug_id" : "07B9C017308FA7C7D4545F6C9946E3F40", - "end_addr" : "0x7f362578f000", - "filename" : "/usr/lib64/libImath.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3625990000", - "code_id" : "c32b968bffaed9446c8dafac0e9cf1f3ffb66a82", - "debug_file" : "kimg_exr.so", - "debug_id" : "8B962BC3AEFF44D96C8DAFAC0E9CF1F30", - "end_addr" : "0x7f3625995000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_exr.so", - "version" : "" - }, - { - "base_addr" : "0x7f3625b97000", - "code_id" : "152b0daa5affbf2ee59ac4a206540da61c40edba", - "debug_file" : "kimg_eps.so", - "debug_id" : "AA0D2B15FF5A2EBFE59AC4A206540DA60", - "end_addr" : "0x7f3625b9f000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_eps.so", - "version" : "" - }, - { - "base_addr" : "0x7f3625da0000", - "code_id" : "3c1149ed0b7ae17318cc084b2d1b79d9b464528d", - "debug_file" : "kimg_dds.so", - "debug_id" : "ED49113C7A0B73E118CC084B2D1B79D90", - "end_addr" : "0x7f3625da7000", - "filename" : "/usr/lib64/kde4/plugins/imageformats/kimg_dds.so", - "version" : "" - }, - { - "base_addr" : "0x7f3625fa8000", - "code_id" : "f23fad731f080743f009d6c88d4e1db4", - "debug_file" : "libqtiff.so", - "debug_id" : "73AD3FF2081F4307F009D6C88D4E1DB40", - "end_addr" : "0x7f3625faf000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqtiff.so", - "version" : "" - }, - { - "base_addr" : "0x7f36261af000", - "code_id" : "bd521d33f4a1638931711f188a5e0771", - "debug_file" : "libqtga.so", - "debug_id" : "331D52BDA1F4896331711F188A5E07710", - "end_addr" : "0x7f36261b4000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqtga.so", - "version" : "" - }, - { - "base_addr" : "0x7f36263b4000", - "code_id" : "b3606bb79f5fc43139eeb4bfe1631593", - "debug_file" : "libqsvg.so", - "debug_id" : "B76B60B35F9F31C439EEB4BFE16315930", - "end_addr" : "0x7f36263b9000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqsvg.so", - "version" : "" - }, - { - "base_addr" : "0x7f36265ba000", - "code_id" : "f813ab227fe38892e70f0b0faace5502", - "debug_file" : "libqjpeg.so", - "debug_id" : "22AB13F8E37F9288E70F0B0FAACE55020", - "end_addr" : "0x7f36265c1000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqjpeg.so", - "version" : "" - }, - { - "base_addr" : "0x7f36267c2000", - "code_id" : "418476f0097b874a04866a4d13f622d6", - "debug_file" : "libqico.so", - "debug_id" : "F07684417B094A8704866A4D13F622D60", - "end_addr" : "0x7f36267c9000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqico.so", - "version" : "" - }, - { - "base_addr" : "0x7f36269c9000", - "code_id" : "85a9be2b1268bce3e3dc77a952a17af8", - "debug_file" : "libqgif.so", - "debug_id" : "2BBEA9856812E3BCE3DC77A952A17AF80", - "end_addr" : "0x7f36269d0000", - "filename" : "/opt/Natron-CY2015/plugins/imageformats/libqgif.so", - "version" : "" - }, - { - "base_addr" : "0x7f3626bd0000", - "code_id" : "38dddc48fb40dab2e022b1e578338efc", - "debug_file" : "libtiff.so.5", - "debug_id" : "48DCDD3840FBB2DAE022B1E578338EFC0", - "end_addr" : "0x7f3626c3e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libtiff.so.5", - "version" : "" - }, - { - "base_addr" : "0x7f3626e42000", - "code_id" : "f23fad731f080743f009d6c88d4e1db4", - "debug_file" : "libqtiff.so", - "debug_id" : "73AD3FF2081F4307F009D6C88D4E1DB40", - "end_addr" : "0x7f3626e49000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqtiff.so", - "version" : "" - }, - { - "base_addr" : "0x7f3627049000", - "code_id" : "bd521d33f4a1638931711f188a5e0771", - "debug_file" : "libqtga.so", - "debug_id" : "331D52BDA1F4896331711F188A5E07710", - "end_addr" : "0x7f362704e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqtga.so", - "version" : "" - }, - { - "base_addr" : "0x7f362724e000", - "code_id" : "b3606bb79f5fc43139eeb4bfe1631593", - "debug_file" : "libqsvg.so", - "debug_id" : "B76B60B35F9F31C439EEB4BFE16315930", - "end_addr" : "0x7f3627253000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqsvg.so", - "version" : "" - }, - { - "base_addr" : "0x7f3627454000", - "code_id" : "608c20847cbf300ba8fef70047018796", - "debug_file" : "libjpeg.so.8", - "debug_id" : "84208C60BF7C0B30A8FEF700470187960", - "end_addr" : "0x7f36274bc000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libjpeg.so.8", - "version" : "" - }, - { - "base_addr" : "0x7f36276be000", - "code_id" : "f813ab227fe38892e70f0b0faace5502", - "debug_file" : "libqjpeg.so", - "debug_id" : "22AB13F8E37F9288E70F0B0FAACE55020", - "end_addr" : "0x7f36276c5000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqjpeg.so", - "version" : "" - }, - { - "base_addr" : "0x7f36278c6000", - "code_id" : "418476f0097b874a04866a4d13f622d6", - "debug_file" : "libqico.so", - "debug_id" : "F07684417B094A8704866A4D13F622D60", - "end_addr" : "0x7f36278cd000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqico.so", - "version" : "" - }, - { - "base_addr" : "0x7f3627acd000", - "code_id" : "85a9be2b1268bce3e3dc77a952a17af8", - "debug_file" : "libqgif.so", - "debug_id" : "2BBEA9856812E3BCE3DC77A952A17AF80", - "end_addr" : "0x7f3627ad4000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/imageformats/libqgif.so", - "version" : "" - }, - { - "base_addr" : "0x7f3628755000", - "code_id" : "2ca4698dc03767db38a2485c4e488516", - "debug_file" : "QtGui.so", - "debug_id" : "8D69A42C37C0DB6738A2485C4E4885160", - "end_addr" : "0x7f36291fe000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/PySide/QtGui.so", - "version" : "" - }, - { - "base_addr" : "0x7f3629650000", - "code_id" : "cf17aa3f8f2db1d5696d69c0947927ca", - "debug_file" : "QtCore.so", - "debug_id" : "3FAA17CF2D8FD5B1696D69C0947927CA0", - "end_addr" : "0x7f36298ca000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/Plugins/PySide/QtCore.so", - "version" : "" - }, - { - "base_addr" : "0x7f3629b15000", - "code_id" : "4f8ea06d8937ea5bb97334d64019cd76", - "debug_file" : "math.so", - "debug_id" : "6DA08E4F37895BEAB97334D64019CD760", - "end_addr" : "0x7f3629b21000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/python2.7/lib-dynload/math.so", - "version" : "" - }, - { - "base_addr" : "0x7f3629d63000", - "code_id" : "7056839d460e589b2773c44c4f6f7a1f", - "debug_file" : "_locale.so", - "debug_id" : "9D8356700E469B582773C44C4F6F7A1F0", - "end_addr" : "0x7f3629d67000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/python2.7/lib-dynload/_locale.so", - "version" : "" - }, - { - "base_addr" : "0x7f362a069000", - "code_id" : "c73d705d56df3133554baf2b78e05022", - "debug_file" : "zlib.so", - "debug_id" : "5D703DC7DF563331554BAF2B78E050220", - "end_addr" : "0x7f362a06e000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/python2.7/lib-dynload/zlib.so", - "version" : "" - }, - { - "base_addr" : "0x7f362a330000", - "code_id" : "d27a60ac6a1d99ef34c20bf852debe4c5af04efb", - "debug_file" : "libdbus-1.so.3.7.4", - "debug_id" : "AC607AD21D6AEF9934C20BF852DEBE4C0", - "end_addr" : "0x7f362a376000", - "filename" : "/usr/lib64/libdbus-1.so.3.7.4", - "version" : "" - }, - { - "base_addr" : "0x7f362a578000", - "code_id" : "6a586e13896289e45c4a4259629ad3fca35e3cc7", - "debug_file" : "libXdmcp.so.6.0.0", - "debug_id" : "136E586A6289E4895C4A4259629AD3FC0", - "end_addr" : "0x7f362a57d000", - "filename" : "/usr/lib64/libXdmcp.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f362a77e000", - "code_id" : "2a035f70bb51e43bef1a4834b1a42cdcc2979edc", - "debug_file" : "liboxygenstyle.so.4.14.8", - "debug_id" : "705F032A51BB3BE4EF1A4834B1A42CDC0", - "end_addr" : "0x7f362a799000", - "filename" : "/usr/lib64/liboxygenstyle.so.4.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362a99b000", - "code_id" : "c2c79709fa19cd568abb55c612e9f6dfe6c7849c", - "debug_file" : "oxygen.so", - "debug_id" : "0997C7C219FA56CD8ABB55C612E9F6DF0", - "end_addr" : "0x7f362aa4e000", - "filename" : "/usr/lib64/kde4/plugins/styles/oxygen.so", - "version" : "" - }, - { - "base_addr" : "0x7f362ac57000", - "code_id" : "ff951259c585d08dc6dd96195892a0a2", - "debug_file" : "libqimsw-multi.so", - "debug_id" : "591295FF85C58DD0C6DD96195892A0A20", - "end_addr" : "0x7f362ac5d000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/bin/inputmethods/libqimsw-multi.so", - "version" : "" - }, - { - "base_addr" : "0x7f362ae5d000", - "code_id" : "175276db8890151125ebe61ed34a2f785a329119", - "debug_file" : "libnss_files-2.17.so", - "debug_id" : "DB7652179088111525EBE61ED34A2F780", - "end_addr" : "0x7f362ae69000", - "filename" : "/usr/lib64/libnss_files-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f362b071000", - "code_id" : "id", - "debug_file" : ".gle1mVBt (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f362b073000", - "filename" : "/tmp/.gle1mVBt (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f362b09b000", - "code_id" : "6ba5cc90624d8c9fafbe650831952a6dcb8eb760", - "debug_file" : "libelf-0.163.so", - "debug_id" : "90CCA56B4D629F8CAFBE650831952A6D0", - "end_addr" : "0x7f362b0b0000", - "filename" : "/usr/lib64/libelf-0.163.so", - "version" : "" - }, - { - "base_addr" : "0x7f362b2b1000", - "code_id" : "786d18769375b1328bec7b0452bc43c0178c859c", - "debug_file" : "libdw-0.163.so", - "debug_id" : "76186D78759332B18BEC7B0452BC43C00", - "end_addr" : "0x7f362b2f6000", - "filename" : "/usr/lib64/libdw-0.163.so", - "version" : "" - }, - { - "base_addr" : "0x7f362b4f8000", - "code_id" : "fe9b658f7a998c7f09b070fa55aa3e4a3e79eb87", - "debug_file" : "libcap.so.2.22", - "debug_id" : "8F659BFE997A7F8C09B070FA55AA3E4A0", - "end_addr" : "0x7f362b4fc000", - "filename" : "/usr/lib64/libcap.so.2.22", - "version" : "" - }, - { - "base_addr" : "0x7f362b6fd000", - "code_id" : "6877e2fd456bfcba181a6923016218346d0f7856", - "debug_file" : "libudev.so.1.6.2", - "debug_id" : "FDE277686B45BAFC181A6923016218340", - "end_addr" : "0x7f362b70f000", - "filename" : "/usr/lib64/libudev.so.1.6.2", - "version" : "" - }, - { - "base_addr" : "0x7f362b712000", - "code_id" : "8561ad409bd5576d84689d89e8f9190d", - "debug_file" : "libxml2.so.2", - "debug_id" : "40AD6185D59B6D5784689D89E8F9190D0", - "end_addr" : "0x7f362b86c000", - "filename" : "/opt/Natron-CY2015/lib/libxml2.so.2", - "version" : "" - }, - { - "base_addr" : "0x7f362ba77000", - "code_id" : "e6d457e12a62fd81bc49a6e5be4a79140ca4da20", - "debug_file" : "libsopranoclient.so.1.2.0", - "debug_id" : "E157D4E6622A81FDBC49A6E5BE4A79140", - "end_addr" : "0x7f362bac0000", - "filename" : "/usr/lib64/libsopranoclient.so.1.2.0", - "version" : "" - }, - { - "base_addr" : "0x7f362bcc3000", - "code_id" : "9fc3b4692e96a36f834404822fd572bf07f9d33a", - "debug_file" : "libfam.so.0.0.0", - "debug_id" : "69B4C39F962E6FA3834404822FD572BF0", - "end_addr" : "0x7f362bcca000", - "filename" : "/usr/lib64/libfam.so.0.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f362becb000", - "code_id" : "6e8e8c2f494b0cb0b37b082679a701417597e5f2", - "debug_file" : "libresolv-2.17.so", - "debug_id" : "2F8C8E6E4B49B00CB37B082679A701410", - "end_addr" : "0x7f362bee1000", - "filename" : "/usr/lib64/libresolv-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f362c0e5000", - "code_id" : "98131c9354279abd39fd80d4be5b3ec5678bd9e0", - "debug_file" : "liblzma.so.5.0.99", - "debug_id" : "931C13982754BD9A39FD80D4BE5B3EC50", - "end_addr" : "0x7f362c109000", - "filename" : "/usr/lib64/liblzma.so.5.0.99", - "version" : "" - }, - { - "base_addr" : "0x7f362c30a000", - "code_id" : "e059a115f1b5cc00f76045038bf2269a", - "debug_file" : "libbz2.so.1", - "debug_id" : "15A159E0B5F100CCF76045038BF2269A0", - "end_addr" : "0x7f362c319000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libbz2.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f362c51b000", - "code_id" : "858f30e968db6bc3e30e48ebd78cc8f7cec90142", - "debug_file" : "libXtst.so.6.1.0", - "debug_id" : "E9308F85DB68C36BE30E48EBD78CC8F70", - "end_addr" : "0x7f362c520000", - "filename" : "/usr/lib64/libXtst.so.6.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f362c721000", - "code_id" : "2f3cd9b872e1d9f73f6bedba520a4857b35226c4", - "debug_file" : "libdbusmenu-qt.so.2.6.0", - "debug_id" : "B8D93C2FE172F7D93F6BEDBA520A48570", - "end_addr" : "0x7f362c751000", - "filename" : "/usr/lib64/libdbusmenu-qt.so.2.6.0", - "version" : "" - }, - { - "base_addr" : "0x7f362c952000", - "code_id" : "24208133c8e10361cd05aeafdd589f86f3524dc7", - "debug_file" : "libattica.so.0.4.2", - "debug_id" : "33812024E1C86103CD05AEAFDD589F860", - "end_addr" : "0x7f362ca46000", - "filename" : "/usr/lib64/libattica.so.0.4.2", - "version" : "" - }, - { - "base_addr" : "0x7f362cc4c000", - "code_id" : "f7758c4aaace72122a9d0024a86d725fedaec098", - "debug_file" : "libqca.so.2.0.3", - "debug_id" : "4A8C75F7CEAA12722A9D0024A86D725F0", - "end_addr" : "0x7f362cd59000", - "filename" : "/usr/lib64/libqca.so.2.0.3", - "version" : "" - }, - { - "base_addr" : "0x7f362cf64000", - "code_id" : "481663188856d2912080a7a977991d24242be2a4", - "debug_file" : "libsoprano.so.4.3.0", - "debug_id" : "18631648568891D22080A7A977991D240", - "end_addr" : "0x7f362d04a000", - "filename" : "/usr/lib64/libsoprano.so.4.3.0", - "version" : "" - }, - { - "base_addr" : "0x7f362d251000", - "code_id" : "cb2c18d9be5b700fcb32c65d49e4af9fea9997ca", - "debug_file" : "libattr.so.1.1.0", - "debug_id" : "D9182CCB5BBE0F70CB32C65D49E4AF9F0", - "end_addr" : "0x7f362d255000", - "filename" : "/usr/lib64/libattr.so.1.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f362d456000", - "code_id" : "3a9d578515ef0ed3f59518748a0878f46b9a9c05", - "debug_file" : "libacl.so.1.1.0", - "debug_id" : "85579D3AEF15D30EF59518748A0878F40", - "end_addr" : "0x7f362d45d000", - "filename" : "/usr/lib64/libacl.so.1.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f362d65f000", - "code_id" : "3697c4f72f67888d5a13f18d04b6f1a95ea2e1f4", - "debug_file" : "libsolid.so.4.14.8", - "debug_id" : "F7C49736672F8D885A13F18D04B6F1A90", - "end_addr" : "0x7f362d750000", - "filename" : "/usr/lib64/libsolid.so.4.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362d965000", - "code_id" : "c026d3d0081110bd67a20d3436b10f8c95c91fa3", - "debug_file" : "libstreams.so.0.7.7", - "debug_id" : "D0D326C01108BD1067A20D3436B10F8C0", - "end_addr" : "0x7f362d99c000", - "filename" : "/usr/lib64/libstreams.so.0.7.7", - "version" : "" - }, - { - "base_addr" : "0x7f362db9e000", - "code_id" : "51607909fccbe2b898254226e9316c46c4c8b2ac", - "debug_file" : "libstreamanalyzer.so.0.7.7", - "debug_id" : "09796051CBFCB8E298254226E9316C460", - "end_addr" : "0x7f362dc1d000", - "filename" : "/usr/lib64/libstreamanalyzer.so.0.7.7", - "version" : "" - }, - { - "base_addr" : "0x7f362de21000", - "code_id" : "230ead25cb3f1fb1ed43723deee45dd93476bf86", - "debug_file" : "libXpm.so.4.11.0", - "debug_id" : "25AD0E233FCBB11FED43723DEEE45DD90", - "end_addr" : "0x7f362de32000", - "filename" : "/usr/lib64/libXpm.so.4.11.0", - "version" : "" - }, - { - "base_addr" : "0x7f362e033000", - "code_id" : "67193153676c0365efe00c85a3aec5469562625c", - "debug_file" : "libXft.so.2.3.2", - "debug_id" : "533119676C676503EFE00C85A3AEC5460", - "end_addr" : "0x7f362e048000", - "filename" : "/usr/lib64/libXft.so.2.3.2", - "version" : "" - }, - { - "base_addr" : "0x7f362e249000", - "code_id" : "4947aff442ad90064647ea016e1aa1f8dc83dc13", - "debug_file" : "libnepomukutils.so.4.14.8", - "debug_id" : "F4AF4749AD4206904647EA016E1AA1F80", - "end_addr" : "0x7f362e282000", - "filename" : "/usr/lib64/libnepomukutils.so.4.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362e486000", - "code_id" : "7a1674aa981751de93dcce85d667658d8ce1fb01", - "debug_file" : "libnepomukquery.so.4.14.8", - "debug_id" : "AA74167A1798DE5193DCCE85D667658D0", - "end_addr" : "0x7f362e4cd000", - "filename" : "/usr/lib64/libnepomukquery.so.4.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362e6d0000", - "code_id" : "8d2ae0e99443efde874e53eec76d31dc575aeefd", - "debug_file" : "libnepomuk.so.4.14.8", - "debug_id" : "E9E02A8D4394DEEF874E53EEC76D31DC0", - "end_addr" : "0x7f362e79f000", - "filename" : "/usr/lib64/libnepomuk.so.4.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362e9a3000", - "code_id" : "84ad2ff07e023e036369f209e4a01add", - "debug_file" : "libQtDBus.so.4", - "debug_id" : "F02FAD84027E033E6369F209E4A01ADD0", - "end_addr" : "0x7f362ea22000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtDBus.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f362ec24000", - "code_id" : "602872a1946d15b30dfc3a2d847a0baebe6d2529", - "debug_file" : "libkdecore.so.5.14.8", - "debug_id" : "A17228606D94B3150DFC3A2D847A0BAE0", - "end_addr" : "0x7f362eeee000", - "filename" : "/usr/lib64/libkdecore.so.5.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362f108000", - "code_id" : "45c7d67a2163f086f1280015e09d4323", - "debug_file" : "libQtSvg.so.4", - "debug_id" : "7AD6C745632186F0F1280015E09D43230", - "end_addr" : "0x7f362f15d000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtSvg.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f362f360000", - "code_id" : "834807e117a67cb708020a71b1845f6c8d94ed4b", - "debug_file" : "libkdeui.so.5.14.8", - "debug_id" : "E1074883A617B77C08020A71B1845F6C0", - "end_addr" : "0x7f362f7b1000", - "filename" : "/usr/lib64/libkdeui.so.5.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f362f9e7000", - "code_id" : "3dab24e4f08fba18e49775d0e2b1d6b0", - "debug_file" : "libQtXml.so.4", - "debug_id" : "E424AB3D8FF018BAE49775D0E2B1D6B00", - "end_addr" : "0x7f362fa2a000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtXml.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f362fc2c000", - "code_id" : "ad8b53ab6de75c490ec92641b83136cb561adfae", - "debug_file" : "libkio.so.5.14.8", - "debug_id" : "AB538BADE76D495C0EC92641B83136CB0", - "end_addr" : "0x7f362fedd000", - "filename" : "/usr/lib64/libkio.so.5.14.8", - "version" : "" - }, - { - "base_addr" : "0x7f36300f6000", - "code_id" : "id", - "debug_file" : ".gl9JcOxr (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36300f8000", - "filename" : "/tmp/.gl9JcOxr (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f36300f8000", - "code_id" : "id", - "debug_file" : ".glpmlBuM (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36300fa000", - "filename" : "/tmp/.glpmlBuM (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f36300fa000", - "code_id" : "id", - "debug_file" : ".glOe6ER0 (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36300fc000", - "filename" : "/tmp/.glOe6ER0 (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f36300fc000", - "code_id" : "id", - "debug_file" : ".glzMnLef (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36300fe000", - "filename" : "/tmp/.glzMnLef (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f3630121000", - "code_id" : "e9e58bbf045b16f981e9c3243348c6058895c093", - "debug_file" : "libkde.so", - "debug_id" : "BF8BE5E95B04F91681E9C3243348C6050", - "end_addr" : "0x7f363012b000", - "filename" : "/usr/lib64/kde4/plugins/gui_platform/libkde.so", - "version" : "" - }, - { - "base_addr" : "0x7f363032d000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "87f5e051180a7a75f16eb6fe7dbd3749-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363032e000", - "filename" : "/home/olear/.cache/fontconfig/87f5e051180a7a75f16eb6fe7dbd3749-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363032e000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "b79f3aaa7d385a141ab53ec885cc22a8-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630337000", - "filename" : "/home/olear/.cache/fontconfig/b79f3aaa7d385a141ab53ec885cc22a8-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630337000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "0b1bcc92b4d25cc154d77dafe3bceaa0-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363033a000", - "filename" : "/home/olear/.cache/fontconfig/0b1bcc92b4d25cc154d77dafe3bceaa0-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363033a000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "711dae798b6bff4224ea2776edcb5c93-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363033c000", - "filename" : "/home/olear/.cache/fontconfig/711dae798b6bff4224ea2776edcb5c93-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363033c000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "2e1514a9fdd499050989183bb65136db-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363033e000", - "filename" : "/home/olear/.cache/fontconfig/2e1514a9fdd499050989183bb65136db-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363033e000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "75726aeed9fe8691fd29315754d820cc-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630347000", - "filename" : "/home/olear/.cache/fontconfig/75726aeed9fe8691fd29315754d820cc-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630347000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "3f821257dd33660ba7bbb45c32deb84c-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630349000", - "filename" : "/home/olear/.cache/fontconfig/3f821257dd33660ba7bbb45c32deb84c-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630349000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "830f035fa84a65ce80e050178dbb630d-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363034b000", - "filename" : "/home/olear/.cache/fontconfig/830f035fa84a65ce80e050178dbb630d-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363034b000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "81a173283b451552b599cfaafd6236bd-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363034c000", - "filename" : "/home/olear/.cache/fontconfig/81a173283b451552b599cfaafd6236bd-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363034c000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "ac68f755438cc3dc5a526084839fc7ca-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363034d000", - "filename" : "/home/olear/.cache/fontconfig/ac68f755438cc3dc5a526084839fc7ca-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363034d000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "f951a6bc01c50d58ac4af16a0108457e-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363034e000", - "filename" : "/home/olear/.cache/fontconfig/f951a6bc01c50d58ac4af16a0108457e-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363034e000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "12513961c6e7090f8648812f9eaf65d6-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363034f000", - "filename" : "/home/olear/.cache/fontconfig/12513961c6e7090f8648812f9eaf65d6-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363034f000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "e26bf336397aae6fcef4d3803472adec-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630351000", - "filename" : "/home/olear/.cache/fontconfig/e26bf336397aae6fcef4d3803472adec-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630351000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "f132fa2327207a6ac3298c0518879731-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630352000", - "filename" : "/home/olear/.cache/fontconfig/f132fa2327207a6ac3298c0518879731-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630352000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "0fef740e1edd47736fa2cccff935ab7c-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630353000", - "filename" : "/home/olear/.cache/fontconfig/0fef740e1edd47736fa2cccff935ab7c-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630353000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "6fcb01a03a016cc71057b587cdea6709-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630354000", - "filename" : "/home/olear/.cache/fontconfig/6fcb01a03a016cc71057b587cdea6709-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630354000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "29c8f5b6bf15d25ebb2e963855ab41be-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630358000", - "filename" : "/home/olear/.cache/fontconfig/29c8f5b6bf15d25ebb2e963855ab41be-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630358000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "e0636055caa850f70f1a6db008fc4729-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363035b000", - "filename" : "/home/olear/.cache/fontconfig/e0636055caa850f70f1a6db008fc4729-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363035b000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "46d51d90fe9d963f6f4186edb936a931-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363035c000", - "filename" : "/home/olear/.cache/fontconfig/46d51d90fe9d963f6f4186edb936a931-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363035c000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "cfde08ab28ad1d91784abb10973575e3-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630360000", - "filename" : "/home/olear/.cache/fontconfig/cfde08ab28ad1d91784abb10973575e3-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630360000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "b887eea8f1b96e1d899b44ed6681fc27-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630361000", - "filename" : "/home/olear/.cache/fontconfig/b887eea8f1b96e1d899b44ed6681fc27-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630361000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "860639f272b8b4b3094f9e399e41bccd-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630362000", - "filename" : "/home/olear/.cache/fontconfig/860639f272b8b4b3094f9e399e41bccd-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630362000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "211368abcb0ff835c229ff05c9ec01dc-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630363000", - "filename" : "/home/olear/.cache/fontconfig/211368abcb0ff835c229ff05c9ec01dc-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630363000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "c46020d7221988a13df853d2b46304fc-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630364000", - "filename" : "/home/olear/.cache/fontconfig/c46020d7221988a13df853d2b46304fc-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630364000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "d759ee9cd048e494517a1be23d25a662-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630365000", - "filename" : "/home/olear/.cache/fontconfig/d759ee9cd048e494517a1be23d25a662-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630365000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "d290456e58f67f52b0f8f224126f9ea8-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630366000", - "filename" : "/home/olear/.cache/fontconfig/d290456e58f67f52b0f8f224126f9ea8-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630366000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "fa2b533b7056bdadb961f088bc0a978b-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630367000", - "filename" : "/home/olear/.cache/fontconfig/fa2b533b7056bdadb961f088bc0a978b-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630367000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "df893b4576ad6107f9397134092c4059-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630368000", - "filename" : "/home/olear/.cache/fontconfig/df893b4576ad6107f9397134092c4059-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630368000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "900402270e15d763a6e008bb2d4c7686-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630369000", - "filename" : "/home/olear/.cache/fontconfig/900402270e15d763a6e008bb2d4c7686-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630369000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "47f48679023f44a4d1e44699a69464f6-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363036a000", - "filename" : "/home/olear/.cache/fontconfig/47f48679023f44a4d1e44699a69464f6-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363036a000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "2881ed3fd21ca306ddad6f9b0dd3189f-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363036b000", - "filename" : "/home/olear/.cache/fontconfig/2881ed3fd21ca306ddad6f9b0dd3189f-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363036b000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "3c3fb04d32a5211b073874b125d29701-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363036c000", - "filename" : "/home/olear/.cache/fontconfig/3c3fb04d32a5211b073874b125d29701-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363036c000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "e61abf8156cc476151baa07d67337cae-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363036d000", - "filename" : "/home/olear/.cache/fontconfig/e61abf8156cc476151baa07d67337cae-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363036d000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "b67b32625a2bb51b023d3814a918f351-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630371000", - "filename" : "/home/olear/.cache/fontconfig/b67b32625a2bb51b023d3814a918f351-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630371000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "fc3b2af7b38f296247b7fcc731836117-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630377000", - "filename" : "/home/olear/.cache/fontconfig/fc3b2af7b38f296247b7fcc731836117-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630377000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "d3379abda271c4acd2ad0c01f565d0b0-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630379000", - "filename" : "/home/olear/.cache/fontconfig/d3379abda271c4acd2ad0c01f565d0b0-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630379000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "b4d0b56f766d89640448751fcd18ec1e-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363037a000", - "filename" : "/home/olear/.cache/fontconfig/b4d0b56f766d89640448751fcd18ec1e-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363037a000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "99a1ce9f8b6a0434aadb01d3779b0780-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363037c000", - "filename" : "/home/olear/.cache/fontconfig/99a1ce9f8b6a0434aadb01d3779b0780-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363037c000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "f9d379b867d7c69c85310a4f24e5228f-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363037e000", - "filename" : "/home/olear/.cache/fontconfig/f9d379b867d7c69c85310a4f24e5228f-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363037e000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "614d1caaa4d7914789410f6367de37ca-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363038f000", - "filename" : "/home/olear/.cache/fontconfig/614d1caaa4d7914789410f6367de37ca-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363038f000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "12b26b760a24f8b4feb03ad48a333a72-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3630398000", - "filename" : "/home/olear/.cache/fontconfig/12b26b760a24f8b4feb03ad48a333a72-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f3630398000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "928306c3ad40271d946e41014a49fc28-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f363039f000", - "filename" : "/home/olear/.cache/fontconfig/928306c3ad40271d946e41014a49fc28-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f363039f000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "8839436aaf7443ce013847a8a3ef9ded-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36303a1000", - "filename" : "/home/olear/.cache/fontconfig/8839436aaf7443ce013847a8a3ef9ded-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f36303a1000", - "code_id" : "id", - "debug_file" : ".glnkXOYJ (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36303a3000", - "filename" : "/tmp/.glnkXOYJ (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f3630703000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "libicudata.so.55", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36321ba000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libicudata.so.55", - "version" : "" - }, - { - "base_addr" : "0x7f36321ba000", - "code_id" : "75e77a14b0d9826fa670f898dede46c6", - "debug_file" : "libicuuc.so.55", - "debug_id" : "147AE775D9B06F82A670F898DEDE46C60", - "end_addr" : "0x7f3632334000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libicuuc.so.55", - "version" : "" - }, - { - "base_addr" : "0x7f3632568000", - "code_id" : "23470a12c48186ee92b581184c57451c", - "debug_file" : "libicui18n.so.55", - "debug_id" : "120A472381C4EE8692B581184C57451C0", - "end_addr" : "0x7f36327b1000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libicui18n.so.55", - "version" : "" - }, - { - "base_addr" : "0x7f3632a1c000", - "code_id" : "f570d00ea4fb6d3901676f7ad0057d8672874259", - "debug_file" : "UTF-16.so", - "debug_id" : "0ED070F5FBA4396D01676F7AD0057D860", - "end_addr" : "0x7f3632a1e000", - "filename" : "/usr/lib64/gconv/UTF-16.so", - "version" : "" - }, - { - "base_addr" : "0x7f3632c20000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "locale-archive", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3639147000", - "filename" : "/usr/lib/locale/locale-archive", - "version" : "" - }, - { - "base_addr" : "0x7f3639147000", - "code_id" : "2edfe6f0223a3cdc2927617f1fbbad421a83d923", - "debug_file" : "libuuid.so.1.3.0", - "debug_id" : "F0E6DF2E3A22DC3C2927617F1FBBAD420", - "end_addr" : "0x7f363914b000", - "filename" : "/usr/lib64/libuuid.so.1.3.0", - "version" : "" - }, - { - "base_addr" : "0x7f363934c000", - "code_id" : "31af390be616b7cb3e805b5fb014bd097ee08dfd", - "debug_file" : "libXau.so.6.0.0", - "debug_id" : "0B39AF3116E6CBB73E805B5FB014BD090", - "end_addr" : "0x7f363934e000", - "filename" : "/usr/lib64/libXau.so.6.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f3639550000", - "code_id" : "b0d1fa2b5f6980e1b78dd22640dafd3b", - "debug_file" : "libnvidia-glcore.so.361.28", - "debug_id" : "2BFAD1B0695FE180B78DD22640DAFD3B0", - "end_addr" : "0x7f363abfe000", - "filename" : "/usr/lib64/nvidia/libnvidia-glcore.so.361.28", - "version" : "" - }, - { - "base_addr" : "0x7f363b1de000", - "code_id" : "a74807d354d0165da01c9e083db83444", - "debug_file" : "libnvidia-tls.so.361.28", - "debug_id" : "D30748A7D0545D16A01C9E083DB834440", - "end_addr" : "0x7f363b1e1000", - "filename" : "/usr/lib64/nvidia/tls/libnvidia-tls.so.361.28", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363b3e2000", - "code_id" : "9441adef27fefd25769dd2032e36b796", - "debug_file" : "libcrypto.so.1.0.0", - "debug_id" : "EFAD4194FE2725FD769DD2032E36B7960", - "end_addr" : "0x7f363b5f5000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libcrypto.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f363b834000", - "code_id" : "13cd29a2c440157cece27671658a342a", - "debug_file" : "libssl.so.1.0.0", - "debug_id" : "A229CD1340C47C15ECE27671658A342A0", - "end_addr" : "0x7f363b89b000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libssl.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f363baaa000", - "code_id" : "84b3ee85d80d3cdf78dc0495796a33983c675a99", - "debug_file" : "libICE.so.6.3.0", - "debug_id" : "85EEB3840DD8DF3C78DC0495796A33980", - "end_addr" : "0x7f363bac1000", - "filename" : "/usr/lib64/libICE.so.6.3.0", - "version" : "" - }, - { - "base_addr" : "0x7f363bcc6000", - "code_id" : "c532b8abb850e65efbb74c83acd64c4a9f3690a6", - "debug_file" : "libSM.so.6.0.1", - "debug_id" : "ABB832C550B85EE6FBB74C83ACD64C4A0", - "end_addr" : "0x7f363bccd000", - "filename" : "/usr/lib64/libSM.so.6.0.1", - "version" : "" - }, - { - "base_addr" : "0x7f363bece000", - "code_id" : "d1d031636d4bd146613abc30434aaeb8", - "debug_file" : "libpng16.so.16", - "debug_id" : "6331D0D14B6D46D1613ABC30434AAEB80", - "end_addr" : "0x7f363beff000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libpng16.so.16", - "version" : "" - }, - { - "base_addr" : "0x7f363c101000", - "code_id" : "32c530c2baff7ab7c6eef814af1bddb7", - "debug_file" : "libglib-2.0.so.0", - "debug_id" : "C230C532FFBAB77AC6EEF814AF1BDDB70", - "end_addr" : "0x7f363c234000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libglib-2.0.so.0", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363c43f000", - "code_id" : "adb1fc99c576b174c2c607af38e600cd", - "debug_file" : "libgthread-2.0.so.0", - "debug_id" : "99FCB1AD76C574B1C2C607AF38E600CD0", - "end_addr" : "0x7f363c440000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libgthread-2.0.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f363c640000", - "code_id" : "0ca4d3548b8ce8e8de86040b1380e47e807f6dd0", - "debug_file" : "libXext.so.6.4.0", - "debug_id" : "54D3A40C8C8BE8E8DE86040B1380E47E0", - "end_addr" : "0x7f363c651000", - "filename" : "/usr/lib64/libXext.so.6.4.0", - "version" : "" - }, - { - "base_addr" : "0x7f363c852000", - "code_id" : "fc9dd6e0aea0339e6c7295caeefd49ffc137e2df", - "debug_file" : "libXinerama.so.1.0.0", - "debug_id" : "E0D69DFCA0AE9E336C7295CAEEFD49FF0", - "end_addr" : "0x7f363c854000", - "filename" : "/usr/lib64/libXinerama.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f363ca55000", - "code_id" : "003daa99a31dab50ce01e6eff10505879e513821", - "debug_file" : "libXcursor.so.1.0.2", - "debug_id" : "99AA3D001DA350ABCE01E6EFF10505870", - "end_addr" : "0x7f363ca5f000", - "filename" : "/usr/lib64/libXcursor.so.1.0.2", - "version" : "" - }, - { - "base_addr" : "0x7f363cc60000", - "code_id" : "97a4e18ff880f542605a454df63b521bda21ddbf", - "debug_file" : "libXfixes.so.3.1.0", - "debug_id" : "8FE1A49780F842F5605A454DF63B521B0", - "end_addr" : "0x7f363cc65000", - "filename" : "/usr/lib64/libXfixes.so.3.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f363ce66000", - "code_id" : "1787e030bb7c3878dfda2f910a4ccc56c9deef18", - "debug_file" : "libXrandr.so.2.2.0", - "debug_id" : "30E087177CBB7838DFDA2F910A4CCC560", - "end_addr" : "0x7f363ce6f000", - "filename" : "/usr/lib64/libXrandr.so.2.2.0", - "version" : "" - }, - { - "base_addr" : "0x7f363d070000", - "code_id" : "95af1dddefd4909e6eaafdcde31e0cbc4bb68f36", - "debug_file" : "libXrender.so.1.3.0", - "debug_id" : "DD1DAF95D4EF9E906EAAFDCDE31E0CBC0", - "end_addr" : "0x7f363d079000", - "filename" : "/usr/lib64/libXrender.so.1.3.0", - "version" : "" - }, - { - "base_addr" : "0x7f363d27a000", - "code_id" : "882f05ed78007c4cccb7d411cb8dace0a94e0f31", - "debug_file" : "libXi.so.6.1.0", - "debug_id" : "ED052F8800784C7CCCB7D411CB8DACE00", - "end_addr" : "0x7f363d289000", - "filename" : "/usr/lib64/libXi.so.6.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f363d48a000", - "code_id" : "4dee2f25530b8a41632c055ed6f0973c", - "debug_file" : "libz.so.1", - "debug_id" : "252FEE4D0B53418A632C055ED6F0973C0", - "end_addr" : "0x7f363d49f000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libz.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f363d6a0000", - "code_id" : "cb0d2c9f29dbd13c47e7d2eefb94b35835698cca", - "debug_file" : "librt-2.17.so", - "debug_id" : "9F2C0DCBDB293CD147E7D2EEFB94B3580", - "end_addr" : "0x7f363d6a7000", - "filename" : "/usr/lib64/librt-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f363d8a8000", - "code_id" : "5322dd95487cc5862a91ea8942c4189404d4ae8c", - "debug_file" : "libxcb.so.1.1.0", - "debug_id" : "95DD22537C4886C52A91EA8942C418940", - "end_addr" : "0x7f363d8c9000", - "filename" : "/usr/lib64/libxcb.so.1.1.0", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363daca000", - "code_id" : "e36c6455b21c1cb68020709a8d5466dcfd2d47f2", - "debug_file" : "libc-2.17.so", - "debug_id" : "55646CE31CB2B61C8020709A8D5466DC0", - "end_addr" : "0x7f363dc80000", - "filename" : "/usr/lib64/libc-2.17.so", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363de8b000", - "code_id" : "6aa1dcc4de7f1836344949857fc2017278631ffd", - "debug_file" : "libgcc_s-4.8.5-20150702.so.1", - "debug_id" : "C4DCA16A7FDE3618344949857FC201720", - "end_addr" : "0x7f363dea0000", - "filename" : "/usr/lib64/libgcc_s-4.8.5-20150702.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f363e0a1000", - "code_id" : "bb796d1097c6882a5a188c67f95bc1888b37e0a6", - "debug_file" : "libgomp.so.1.0.0", - "debug_id" : "106D79BBC6972A885A188C67F95BC1880", - "end_addr" : "0x7f363e0b7000", - "filename" : "/usr/lib64/libgomp.so.1.0.0", - "version" : "" - }, - { - "base_addr" : "0x7f363e2b8000", - "code_id" : "f9df294fb70243549dcb643f1322bb20e70e9fe8", - "debug_file" : "libm-2.17.so", - "debug_id" : "4F29DFF902B754439DCB643F1322BB200", - "end_addr" : "0x7f363e3b9000", - "filename" : "/usr/lib64/libm-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f363e5ba000", - "code_id" : "8941888bf8ee9ced585599be5397a385fc1c73ce", - "debug_file" : "libstdc++.so.6.0.19", - "debug_id" : "8B884189EEF8ED9C585599BE5397A3850", - "end_addr" : "0x7f363e6a3000", - "filename" : "/usr/lib64/libstdc++.so.6.0.19", - "version" : "" - }, - { - "base_addr" : "0x7f363e8c2000", - "code_id" : "723f0ac75ef88e778940ae8a8bc30141d85b116a", - "debug_file" : "libpthread-2.17.so", - "debug_id" : "C70A3F72F85E778E8940AE8A8BC301410", - "end_addr" : "0x7f363e8d8000", - "filename" : "/usr/lib64/libpthread-2.17.so", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363eade000", - "code_id" : "8f979dd78da5e9feaf6e12e9e7a05a0c", - "debug_file" : "libGL.so.361.28", - "debug_id" : "D79D978FA58DFEE9AF6E12E9E7A05A0C0", - "end_addr" : "0x7f363ebea000", - "filename" : "/usr/lib64/nvidia/libGL.so.361.28", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363ee18000", - "code_id" : "9fbc003dfab857f1bfda33a29ccb634a", - "debug_file" : "libQtCore.so.4", - "debug_id" : "3D00BC9FB8FAF157BFDA33A29CCB634A0", - "end_addr" : "0x7f363f100000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtCore.so.4", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f363f310000", - "code_id" : "9d2bef25668c00299c6f2bdd6fafc4e6", - "debug_file" : "libQtNetwork.so.4", - "debug_id" : "25EF2B9D8C6629009C6F2BDD6FAFC4E60", - "end_addr" : "0x7f363f44f000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtNetwork.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f363f658000", - "code_id" : "3fb8e41c888d51ed0f9bf5cc5111a960", - "debug_file" : "libQtGui.so.4", - "debug_id" : "1CE4B83F8D88ED510F9BF5CC5111A9600", - "end_addr" : "0x7f36400c4000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtGui.so.4", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f364031b000", - "code_id" : "22bf58d6ba28d0e3360601afe9a80073", - "debug_file" : "libQtOpenGL.so.4", - "debug_id" : "D658BF2228BAE3D0360601AFE9A800730", - "end_addr" : "0x7f3640412000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libQtOpenGL.so.4", - "version" : "" - }, - { - "base_addr" : "0x7f364061b000", - "code_id" : "9494706bd4dcd737cdf4bd3b8f43feca", - "debug_file" : "libfontconfig.so.1", - "debug_id" : "6B709494DCD437D7CDF4BD3B8F43FECA0", - "end_addr" : "0x7f3640652000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libfontconfig.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f3640854000", - "code_id" : "c564430ebb935f36699ef0dada659b73", - "debug_file" : "libfreetype.so.6", - "debug_id" : "0E4364C593BB365F699EF0DADA659B730", - "end_addr" : "0x7f36408dc000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libfreetype.so.6", - "version" : "" - }, - { - "base_addr" : "0x7f3640ae3000", - "code_id" : "765e1f5357bdfdc507fc479087f4fbca", - "debug_file" : "libpixman-1.so.0", - "debug_id" : "531F5E76BD57C5FD07FC479087F4FBCA0", - "end_addr" : "0x7f3640b81000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libpixman-1.so.0", - "version" : "" - }, - { - "base_addr" : "0x7f3640d8b000", - "code_id" : "dbda5d6e1b652c64b1fdfcbf15242347ac140b86", - "debug_file" : "libGLU.so.1.3.1", - "debug_id" : "6E5DDADB651B642CB1FDFCBF152423470", - "end_addr" : "0x7f3640e09000", - "filename" : "/usr/lib64/libGLU.so.1.3.1", - "version" : "" - }, - { - "base_addr" : "0x7f364100b000", - "code_id" : "69adfaedffc2247b88441056d706bef9", - "debug_file" : "libshiboken-python2.7.so.1.2", - "debug_id" : "EDFAAD69C2FF7B2488441056D706BEF90", - "end_addr" : "0x7f3641037000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libshiboken-python2.7.so.1.2", - "version" : "" - }, - { - "base_addr" : "0x7f364123d000", - "code_id" : "7232136c2a492a9bfc9eed399b3d3687", - "debug_file" : "libpyside-python2.7.so.1.2", - "debug_id" : "6C133272492A9B2AFC9EED399B3D36870", - "end_addr" : "0x7f3641265000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libpyside-python2.7.so.1.2", - "version" : "" - }, - { - "base_addr" : "0x7f364146b000", - "code_id" : "24dee2b55b79031f695e8bc8469ef47b", - "debug_file" : "libexpat.so.1", - "debug_id" : "B5E2DE24795B1F03695E8BC8469EF47B0", - "end_addr" : "0x7f3641492000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libexpat.so.1", - "version" : "" - }, - { - "base_addr" : "0x7f3641695000", - "code_id" : "8460ab40fa01d27e8454e0252d8830f5", - "debug_file" : "libboost_serialization.so.1.55.0", - "debug_id" : "40AB608401FA7ED28454E0252D8830F50", - "end_addr" : "0x7f36416fc000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libboost_serialization.so.1.55.0", - "version" : "" - }, - { - "base_addr" : "0x7f3641928000", - "code_id" : "5c29b7defd0187e0232d4d60728f970387eae67b", - "debug_file" : "libutil-2.17.so", - "debug_id" : "DEB7295C01FDE087232D4D60728F97030", - "end_addr" : "0x7f364192a000", - "filename" : "/usr/lib64/libutil-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f3641b2b000", - "code_id" : "091060a163e7eda25572f3b1baf2e8f80209c00e", - "debug_file" : "libdl-2.17.so", - "debug_id" : "A1601009E763A2ED5572F3B1BAF2E8F80", - "end_addr" : "0x7f3641b2e000", - "filename" : "/usr/lib64/libdl-2.17.so", - "version" : "" - }, - { - "base_addr" : "0x7f3641d2f000", - "code_id" : "d1e7ae42fa2fcca37da7788b79e7ec86", - "debug_file" : "libpython2.7.so.1.0", - "debug_id" : "42AEE7D12FFAA3CC7DA7788B79E7EC860", - "end_addr" : "0x7f3641eed000", - "filename" : "/home/olear/Work/stackwalker/tests/Natron-2.1.7-Linux-x86_64bit/lib/libpython2.7.so.1.0", - "version" : "" - }, - { - "base_addr" : "0x7f3642143000", - "code_id" : "d0e3071a4769eaadeae092ffe41d8cf708d303a3", - "debug_file" : "libX11.so.6.3.0", - "debug_id" : "1A07E3D06947ADEAEAE092FFE41D8CF70", - "end_addr" : "0x7f364227b000", - "filename" : "/usr/lib64/libX11.so.6.3.0", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f3642481000", - "code_id" : "09e1bb4d034c7263810a41100647068858a7ecb6", - "debug_file" : "ld-2.17.so", - "debug_id" : "4DBBE1094C036372810A4110064706880", - "end_addr" : "0x7f36424a2000", - "filename" : "/usr/lib64/ld-2.17.so", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x7f36424a2000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "019629eead7fd8624feacc17e1c76e56-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36424a3000", - "filename" : "/home/olear/.cache/fontconfig/019629eead7fd8624feacc17e1c76e56-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f36424a3000", - "code_id" : "id", - "debug_file" : ".glUkZOAI (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36424a5000", - "filename" : "/tmp/.glUkZOAI (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f36424a5000", - "code_id" : "id", - "debug_file" : ".gl46Gxey (deleted)", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f36424a7000", - "filename" : "/tmp/.gl46Gxey (deleted)", - "version" : "" - }, - { - "base_addr" : "0x7f3642676000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "3640555adad8a8f6978400293cfce7ab-le64.cache-3", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3642677000", - "filename" : "/home/olear/.cache/fontconfig/3640555adad8a8f6978400293cfce7ab-le64.cache-3", - "version" : "" - }, - { - "base_addr" : "0x7f364268a000", - "code_id" : "00000000000000000000000000000000", - "debug_file" : "gconv-modules.cache", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7f3642691000", - "filename" : "/usr/lib64/gconv/gconv-modules.cache", - "version" : "" - }, - { - "base_addr" : "0x7fff1f1ba000", - "code_id" : "6db702e2d96b8184bd42bbaa34961324dbd06770", - "debug_file" : "linux-gate.so", - "debug_id" : "E202B76D6BD98481BD42BBAA349613240", - "end_addr" : "0x7fff1f1bc000", - "filename" : "linux-gate.so", - "version" : "" - } - ], - "sensitive" : { - "exploitability" : "interesting" - }, - "status" : "OK", - "system_info" : { - "cpu_arch" : "amd64", - "cpu_count" : 8, - "cpu_info" : "family 6 model 26 stepping 5", - "os" : "Linux", - "os_ver" : "0.0.0 Linux 3.10.0-327.10.1.el7.x86_64 #1 SMP Tue Feb 16 17:03:50 UTC 2016 x86_64" - }, - "thread_count" : 3, - "threads" : [ - { - "frame_count" : 74, - "frames" : [ - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application", - "function_offset" : "0x52", - "line" : 2186, - "module" : "Natron-bin", - "module_offset" : "0xafa012", - "offset" : "0xefa012", - "trust" : "context" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged", - "function_offset" : "0xfef", - "line" : 2314, - "module" : "Natron-bin", - "module_offset" : "0xaf04ef", - "offset" : "0xef04ef", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public", - "function_offset" : "0x66", - "line" : 5913, - "module" : "Natron-bin", - "module_offset" : "0x884236", - "offset" : "0xc84236", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges", - "function_offset" : "0x36c", - "line" : 5484, - "module" : "Natron-bin", - "module_offset" : "0x89efcc", - "offset" : "0xc9efcc", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal", - "function_offset" : "0x138", - "line" : 1695, - "module" : "Natron-bin", - "module_offset" : "0x8a05b8", - "offset" : "0xca05b8", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/KnobTypes.cpp", - "frame" : 5, - "function" : "Natron::KnobButton::trigger", - "function_offset" : "0x23", - "line" : 494, - "module" : "Natron-bin", - "module_offset" : "0x8da223", - "offset" : "0xcda223", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 6, - "function" : "Natron::KnobGuiButton::emitValueChanged", - "function_offset" : "0x335", - "line" : 188, - "module" : "Natron-bin", - "module_offset" : "0x404f95", - "offset" : "0x804f95", - "trust" : "cfi" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1a1389", - "offset" : "0x7f363efb9389", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "ld-2.17.so", - "module_offset" : "0x1525f", - "offset" : "0x7f364249625f", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x8277a1", - "offset" : "0x7f363fe7f7a1", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x58eb02", - "offset" : "0x7f363fbe6b02", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "libX11.so.6.3.0", - "module_offset" : "0x42a40", - "offset" : "0x7f3642185a40", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x58fc72", - "offset" : "0x7f363fbe7c72", - "trust" : "scan" - }, - { - "frame" : 13, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x58e6f4", - "offset" : "0x7f363fbe66f4", - "trust" : "scan" - }, - { - "frame" : 14, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x58fd5b", - "offset" : "0x7f363fbe7d5b", - "trust" : "scan" - }, - { - "frame" : 15, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x254459", - "offset" : "0x7f363f8ac459", - "trust" : "scan" - }, - { - "frame" : 16, - "missing_symbols" : true, - "module" : "libnvidia-tls.so.361.28", - "module_offset" : "0x253b", - "offset" : "0x7f363b1e053b", - "trust" : "scan" - }, - { - "frame" : 17, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x24a634", - "offset" : "0x7f363f8a2634", - "trust" : "scan" - }, - { - "frame" : 18, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0xa73b8", - "offset" : "0x7f363eebf3b8", - "trust" : "scan" - }, - { - "frame" : 19, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x216260", - "offset" : "0x7f363f86e260", - "trust" : "scan" - }, - { - "frame" : 20, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x201dfb", - "offset" : "0x7f363f859dfb", - "trust" : "scan" - }, - { - "frame" : 21, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x208479", - "offset" : "0x7f363f860479", - "trust" : "scan" - }, - { - "frame" : 22, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x28f541", - "offset" : "0x7f363f8e7541", - "trust" : "scan" - }, - { - "frame" : 23, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x28f4c8", - "offset" : "0x7f363f8e74c8", - "trust" : "scan" - }, - { - "frame" : 24, - "missing_symbols" : true, - "module" : "libGL.so.361.28", - "module_offset" : "0xb7d73", - "offset" : "0x7f363eb95d73", - "trust" : "scan" - }, - { - "frame" : 25, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x82d94", - "offset" : "0x7f363ee9ad94", - "trust" : "scan" - }, - { - "frame" : 26, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x18d70c", - "offset" : "0x7f363efa570c", - "trust" : "scan" - }, - { - "frame" : 27, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1a486d", - "offset" : "0x7f363efbc86d", - "trust" : "scan" - }, - { - "frame" : 28, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x207c72", - "offset" : "0x7f363f85fc72", - "trust" : "scan" - }, - { - "frame" : 29, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x216260", - "offset" : "0x7f363f86e260", - "trust" : "scan" - }, - { - "frame" : 30, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x21643c", - "offset" : "0x7f363f86e43c", - "trust" : "scan" - }, - { - "frame" : 31, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x27c73f", - "offset" : "0x7f363f8d473f", - "trust" : "scan" - }, - { - "frame" : 32, - "module" : "Natron-bin", - "module_offset" : "0x44ffbf", - "offset" : "0x84ffbf", - "trust" : "scan" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Gui/./moc_NodeGraph.cpp", - "frame" : 33, - "function" : "Natron::NodeGraph::qt_static_metacall", - "function_offset" : "0x284", - "line" : 116, - "module" : "Natron-bin", - "module_offset" : "0x44ff64", - "offset" : "0x84ff64", - "trust" : "scan" - }, - { - "frame" : 34, - "offset" : "0x0", - "trust" : "cfi" - }, - { - "frame" : 35, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x7b29d8", - "offset" : "0x7f363fe0a9d8", - "trust" : "scan" - }, - { - "frame" : 36, - "missing_symbols" : true, - "module" : "libGL.so.361.28", - "module_offset" : "0xb6228", - "offset" : "0x7f363eb94228", - "trust" : "scan" - }, - { - "frame" : 37, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1a56ed", - "offset" : "0x7f363efbd6ed", - "trust" : "scan" - }, - { - "frame" : 38, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x26cccb", - "offset" : "0x7f363f8c4ccb", - "trust" : "scan" - }, - { - "frame" : 39, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x27aadb", - "offset" : "0x7f363f8d2adb", - "trust" : "scan" - }, - { - "frame" : 40, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x7bfe4a", - "offset" : "0x7f363fe17e4a", - "trust" : "scan" - }, - { - "frame" : 41, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x5e6b12", - "offset" : "0x7f363fc3eb12", - "trust" : "scan" - }, - { - "frame" : 42, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x20833c", - "offset" : "0x7f363f86033c", - "trust" : "scan" - }, - { - "frame" : 43, - "missing_symbols" : true, - "module" : "libGL.so.361.28", - "module_offset" : "0xb7d73", - "offset" : "0x7f363eb95d73", - "trust" : "scan" - }, - { - "frame" : 44, - "missing_symbols" : true, - "module" : "libnvidia-tls.so.361.28", - "module_offset" : "0x253b", - "offset" : "0x7f363b1e053b", - "trust" : "scan" - }, - { - "frame" : 45, - "missing_symbols" : true, - "module" : "libX11.so.6.3.0", - "module_offset" : "0x450c0", - "offset" : "0x7f36421880c0", - "trust" : "scan" - }, - { - "frame" : 46, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x2a0fbf", - "offset" : "0x7f363f8f8fbf", - "trust" : "scan" - }, - { - "frame" : 47, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x2a1191", - "offset" : "0x7f363f8f9191", - "trust" : "scan" - }, - { - "frame" : 48, - "missing_symbols" : true, - "module" : "SYSV00000000 (deleted)", - "module_offset" : "0x295004", - "offset" : "0x7f3600000004", - "trust" : "scan" - }, - { - "frame" : 49, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x2a0caf", - "offset" : "0x7f363f8f8caf", - "trust" : "scan" - }, - { - "frame" : 50, - "missing_symbols" : true, - "module" : "libxcb.so.1.1.0", - "module_offset" : "0xcacb", - "offset" : "0x7f363d8b4acb", - "trust" : "scan" - }, - { - "frame" : 51, - "missing_symbols" : true, - "module" : "libX11.so.6.3.0", - "module_offset" : "0x425c8", - "offset" : "0x7f36421855c8", - "trust" : "scan" - }, - { - "frame" : 52, - "missing_symbols" : true, - "module" : "libX11.so.6.3.0", - "module_offset" : "0x42745", - "offset" : "0x7f3642185745", - "trust" : "scan" - }, - { - "frame" : 53, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x2a0fbf", - "offset" : "0x7f363f8f8fbf", - "trust" : "scan" - }, - { - "frame" : 54, - "missing_symbols" : true, - "module" : "libglib-2.0.so.0", - "module_offset" : "0x48273", - "offset" : "0x7f363c149273", - "trust" : "scan" - }, - { - "frame" : 55, - "missing_symbols" : true, - "module" : "libglib-2.0.so.0", - "module_offset" : "0x56eef", - "offset" : "0x7f363c157eef", - "trust" : "scan" - }, - { - "frame" : 56, - "missing_symbols" : true, - "module" : "libglib-2.0.so.0", - "module_offset" : "0x484b7", - "offset" : "0x7f363c1494b7", - "trust" : "scan" - }, - { - "frame" : 57, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1d52f", - "offset" : "0x7f363ee3552f", - "trust" : "scan" - }, - { - "frame" : 58, - "missing_symbols" : true, - "module" : "libglib-2.0.so.0", - "module_offset" : "0x4855b", - "offset" : "0x7f363c14955b", - "trust" : "scan" - }, - { - "frame" : 59, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x1ba295", - "offset" : "0x7f363efd2295", - "trust" : "scan" - }, - { - "frame" : 60, - "missing_symbols" : true, - "module" : "libQtGui.so.4", - "module_offset" : "0x2a1225", - "offset" : "0x7f363f8f9225", - "trust" : "scan" - }, - { - "frame" : 61, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x18c2ce", - "offset" : "0x7f363efa42ce", - "trust" : "scan" - }, - { - "frame" : 62, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x18c5c4", - "offset" : "0x7f363efa45c4", - "trust" : "scan" - }, - { - "frame" : 63, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x191848", - "offset" : "0x7f363efa9848", - "trust" : "scan" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Gui/../../Gui/GuiApplicationManager.cpp", - "frame" : 64, - "function" : "Natron::GuiApplicationManager::initGui", - "function_offset" : "0xb6a", - "line" : 955, - "module" : "Natron-bin", - "module_offset" : "0x3d2f6a", - "offset" : "0x7d2f6a", - "trust" : "scan" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/AppManager.cpp", - "frame" : 65, - "function" : "Natron::AppManager::loadInternal", - "function_offset" : "0x242", - "line" : 811, - "module" : "Natron-bin", - "module_offset" : "0x716fa2", - "offset" : "0xb16fa2", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/AppManager.cpp", - "frame" : 66, - "function" : "Natron::AppManager::loadFromArgs", - "function_offset" : "0x2de", - "line" : 468, - "module" : "Natron-bin", - "module_offset" : "0x722d8e", - "offset" : "0xb22d8e", - "trust" : "cfi" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/App/../../App/NatronApp_main.cpp", - "frame" : 67, - "function" : "main", - "function_offset" : "0xa7", - "line" : 115, - "module" : "Natron-bin", - "module_offset" : "0x3ce6d7", - "offset" : "0x7ce6d7", - "trust" : "cfi" - }, - { - "frame" : 68, - "missing_symbols" : true, - "module" : "libc-2.17.so", - "module_offset" : "0x21b14", - "offset" : "0x7f363daebb14", - "trust" : "cfi" - }, - { - "frame" : 69, - "module" : "Natron-bin", - "module_offset" : "0x3ce62f", - "offset" : "0x7ce62f", - "trust" : "scan" - }, - { - "frame" : 70, - "function" : "_pqueue_grow", - "function_offset" : "0x72", - "module" : "Natron-bin", - "module_offset" : "0x3ce4a3", - "offset" : "0x7ce4a3", - "trust" : "scan" - }, - { - "frame" : 71, - "function" : "__libc_csu_fini", - "function_offset" : "0xf", - "module" : "Natron-bin", - "module_offset" : "0xe2564f", - "offset" : "0x122564f", - "trust" : "scan" - }, - { - "frame" : 72, - "function" : "_pqueue_grow", - "function_offset" : "0x72", - "module" : "Natron-bin", - "module_offset" : "0x3ce4a3", - "offset" : "0x7ce4a3", - "trust" : "scan" - }, - { - "frame" : 73, - "function" : "_start", - "function_offset" : "0x28", - "module" : "Natron-bin", - "module_offset" : "0x3ce4cc", - "offset" : "0x7ce4cc", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 8, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libpthread-2.17.so", - "module_offset" : "0xba82", - "offset" : "0x7f363e8cda82", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x8aea9", - "offset" : "0x7f363eea2ea9", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libGL.so.361.28", - "module_offset" : "0xb6228", - "offset" : "0x7f363eb94228", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x8b7ac", - "offset" : "0x7f363eea37ac", - "trust" : "scan" - }, - { - "file" : "/root/natron-support/buildmaster/tmp/Natron/build/Engine/../../Engine/ExistenceCheckThread.cpp", - "frame" : 4, - "function" : "Natron::ExistenceCheckerThread::run", - "function_offset" : "0x1ae", - "line" : 127, - "module" : "Natron-bin", - "module_offset" : "0x7c364e", - "offset" : "0xbc364e", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x8c32e", - "offset" : "0x7f363eea432e", - "trust" : "cfi" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "libpthread-2.17.so", - "module_offset" : "0x7dc4", - "offset" : "0x7f363e8c9dc4", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "libc-2.17.so", - "module_offset" : "0xf628c", - "offset" : "0x7f363dbc028c", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 6, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libpthread-2.17.so", - "module_offset" : "0xb6d5", - "offset" : "0x7f363e8cd6d5", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x8c835", - "offset" : "0x7f363eea4835", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x80259", - "offset" : "0x7f363ee98259", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "libQtCore.so.4", - "module_offset" : "0x8c32e", - "offset" : "0x7f363eea432e", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "libpthread-2.17.so", - "module_offset" : "0x7dc4", - "offset" : "0x7f363e8c9dc4", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libc-2.17.so", - "module_offset" : "0xf628c", - "offset" : "0x7f363dbc028c", - "trust" : "scan" - } - ] - } - ] -} - diff --git a/tests/6537E627-678E-44B3-9116-36323C0BA4CC.dmp b/tests/6537E627-678E-44B3-9116-36323C0BA4CC.dmp deleted file mode 100644 index ce880db075..0000000000 Binary files a/tests/6537E627-678E-44B3-9116-36323C0BA4CC.dmp and /dev/null differ diff --git a/tests/6537E627-678E-44B3-9116-36323C0BA4CC.json b/tests/6537E627-678E-44B3-9116-36323C0BA4CC.json deleted file mode 100644 index 74565254c8..0000000000 --- a/tests/6537E627-678E-44B3-9116-36323C0BA4CC.json +++ /dev/null @@ -1,4074 +0,0 @@ -{ - "crash_info" : { - "address" : "0x0", - "crashing_thread" : 0, - "type" : "EXC_BAD_ACCESS / KERN_INVALID_ADDRESS" - }, - "crashing_thread" : { - "frames" : [ - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application()", - "function_offset" : "0x4f", - "line" : 2186, - "module" : "Natron-bin", - "module_offset" : "0x8742df", - "offset" : "0x1008742df", - "registers" : { - "r10" : "0xffffffffffffffff", - "r11" : "0x0000000000000201", - "r12" : "0x00007fff5fbfe230", - "r13" : "0x000000010302ef60", - "r14" : "0x00007fff5fbfe200", - "r15" : "0x00007fff5fbfe1c0", - "r8" : "0x0000000000000040", - "r9" : "0x00007fff7ba931e0", - "rax" : "0x000000010302ec00", - "rbp" : "0x000000010302c440", - "rbx" : "0x000000010302ec00", - "rcx" : "0x00000d0000000e03", - "rdi" : "0x00007fff7ba931e8", - "rdx" : "0x00000e0000000e00", - "rip" : "0x00000001008742df", - "rsi" : "0x0000000000012068", - "rsp" : "0x00007fff5fbfe160" - }, - "trust" : "context" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", - "function_offset" : "0xb08", - "line" : 2314, - "module" : "Natron-bin", - "module_offset" : "0x863b78", - "offset" : "0x100863b78", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", - "function_offset" : "0x66", - "line" : 5913, - "module" : "Natron-bin", - "module_offset" : "0x5680c6", - "offset" : "0x1005680c6", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges(bool)", - "function_offset" : "0x454", - "line" : 5484, - "module" : "Natron-bin", - "module_offset" : "0x592374", - "offset" : "0x100592374", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum, Natron::ValueChangedReasonEnum)", - "function_offset" : "0x1cc", - "line" : 1695, - "module" : "Natron-bin", - "module_offset" : "0x59474c", - "offset" : "0x10059474c", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/KnobTypes.cpp", - "frame" : 5, - "function" : "Natron::KnobButton::trigger()", - "function_offset" : "0x23", - "line" : 494, - "module" : "Natron-bin", - "module_offset" : "0x5ce3b3", - "offset" : "0x1005ce3b3", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 6, - "function" : "Natron::KnobGuiButton::emitValueChanged(bool)", - "function_offset" : "0x35f", - "line" : 188, - "module" : "Natron-bin", - "module_offset" : "0x183dff", - "offset" : "0x100183dff", - "trust" : "cfi" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x15b0dd", - "offset" : "0x102b840dd", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x6f7030", - "offset" : "0x102459030", - "trust" : "frame_pointer" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x419adf", - "offset" : "0x10217badf", - "trust" : "frame_pointer" - } - ], - "threads_index" : 0, - "total_frames" : 36 - }, - "main_module" : 0, - "modules" : [ - { - "base_addr" : "0x100000000", - "code_id" : "id", - "debug_file" : "Natron-bin", - "debug_id" : "AB4FE68C90FD3653BEE2AE398A7908090", - "end_addr" : "0x100fb4000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/MacOS/Natron-bin", - "loaded_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x1017a7000", - "code_id" : "id", - "debug_file" : "Python", - "debug_id" : "4DAC085CE3F832B1BC9723B9E79874380", - "end_addr" : "0x10191a000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/Python.framework/Versions/2.7/Python", - "version" : "0.2.7.0" - }, - { - "base_addr" : "0x1019fe000", - "code_id" : "id", - "debug_file" : "libpyside-python2.7.1.2.dylib", - "debug_id" : "1BA7743041263782938F2885DB747D430", - "end_addr" : "0x101a1c000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpyside-python2.7.1.2.dylib", - "version" : "0.1.2.2" - }, - { - "base_addr" : "0x101a2f000", - "code_id" : "id", - "debug_file" : "libshiboken-python2.7.1.2.dylib", - "debug_id" : "9868C059DEBF3D299B0D6848CB8DC6B40", - "end_addr" : "0x101a4f000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libshiboken-python2.7.1.2.dylib", - "version" : "0.1.2.2" - }, - { - "base_addr" : "0x101a75000", - "code_id" : "id", - "debug_file" : "libboost_serialization-mt.dylib", - "debug_id" : "72FA11988391FA378D0589DEBD14A2B90", - "end_addr" : "0x101aac000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_serialization-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x101b0e000", - "code_id" : "id", - "debug_file" : "libexpat.1.dylib", - "debug_id" : "41E9B0F851CB3B44B766B1C8ACB541060", - "end_addr" : "0x101b32000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libexpat.1.dylib", - "version" : "0.8.2.0" - }, - { - "base_addr" : "0x101b38000", - "code_id" : "id", - "debug_file" : "libcairo.2.dylib", - "debug_id" : "4D2363B71DE13853B47BD8ADD4E48A290", - "end_addr" : "0x101c09000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libcairo.2.dylib", - "version" : "0.11403.6.0" - }, - { - "base_addr" : "0x101c35000", - "code_id" : "id", - "debug_file" : "QtOpenGL", - "debug_id" : "291F09EFAB0E3EB6A598F3E499F3C0550", - "end_addr" : "0x101d17000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/QtOpenGL.framework/Versions/4/QtOpenGL", - "version" : "0.4.8.7" - }, - { - "base_addr" : "0x101d62000", - "code_id" : "id", - "debug_file" : "QtGui", - "debug_id" : "381A387837933E3EA25F7852217A1B0C0", - "end_addr" : "0x102761000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/QtGui.framework/Versions/4/QtGui", - "missing_symbols" : true, - "version" : "0.4.8.7" - }, - { - "base_addr" : "0x102a29000", - "code_id" : "id", - "debug_file" : "QtCore", - "debug_id" : "3C9D56D5DA5A3919B63E574E759C82950", - "end_addr" : "0x102d03000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore", - "missing_symbols" : true, - "version" : "0.4.8.7" - }, - { - "base_addr" : "0x102dad000", - "code_id" : "id", - "debug_file" : "QtNetwork", - "debug_id" : "BDABBF9994DF303F99B330B9F5DFC7AD0", - "end_addr" : "0x102ee7000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/QtNetwork.framework/Versions/4/QtNetwork", - "version" : "0.4.8.7" - }, - { - "base_addr" : "0x102f4f000", - "code_id" : "id", - "debug_file" : "AGL", - "debug_id" : "4DBEAB05DDCD3CD48046C29852B56EB50", - "end_addr" : "0x102f54000", - "filename" : "/System/Library/Frameworks/AGL.framework/Versions/A/AGL", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x102f5b000", - "code_id" : "id", - "debug_file" : "libstdc++.6.dylib", - "debug_id" : "9F8991425E5D36BCAAE7DD6029D1D40D0", - "end_addr" : "0x103017000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libstdc++.6.dylib", - "version" : "0.7.22.0" - }, - { - "base_addr" : "0x1030b2000", - "code_id" : "id", - "debug_file" : "libgomp.1.dylib", - "debug_id" : "655FC9DE71BB3A3BA6A5FC12D66AE15F0", - "end_addr" : "0x1030d0000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgomp.1.dylib", - "version" : "0.2.0.0" - }, - { - "base_addr" : "0x1030d7000", - "code_id" : "id", - "debug_file" : "libgcc_s.1.dylib", - "debug_id" : "357AC3D36F323FDE98BB8C5996DB98760", - "end_addr" : "0x1030e8000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgcc_s.1.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x1030ec000", - "code_id" : "id", - "debug_file" : "QtCore", - "debug_id" : "3C9D56D5DA5A3919B63E574E759C82950", - "end_addr" : "0x1033c6000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/QtCore", - "missing_symbols" : true, - "version" : "0.4.8.7" - }, - { - "base_addr" : "0x103470000", - "code_id" : "id", - "debug_file" : "libz.1.dylib", - "debug_id" : "A07EE7AEFDB1F5E88B1206B7B616DA940", - "end_addr" : "0x103483000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libz.1.dylib", - "version" : "0.1.2.8" - }, - { - "base_addr" : "0x103486000", - "code_id" : "id", - "debug_file" : "libpixman-1.0.dylib", - "debug_id" : "23F594EC4E2539C4A927E7629813B8BF0", - "end_addr" : "0x1034fa000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpixman-1.0.dylib", - "version" : "0.35.0.0" - }, - { - "base_addr" : "0x10350d000", - "code_id" : "id", - "debug_file" : "libfontconfig.1.dylib", - "debug_id" : "65490D5BFCDB179796417EB8A2D597450", - "end_addr" : "0x103543000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libfontconfig.1.dylib", - "version" : "0.11.2.0" - }, - { - "base_addr" : "0x103552000", - "code_id" : "id", - "debug_file" : "libfreetype.6.dylib", - "debug_id" : "A68D7BF6C5F9321E88B63EA4A8CEAABC0", - "end_addr" : "0x1035df000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libfreetype.6.dylib", - "version" : "0.19.6.0" - }, - { - "base_addr" : "0x1035f5000", - "code_id" : "id", - "debug_file" : "libpng16.16.dylib", - "debug_id" : "863EAB78A82A3DA59ECDBC7784E1BEEF0", - "end_addr" : "0x10361e000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpng16.16.dylib", - "version" : "0.43.0.0" - }, - { - "base_addr" : "0x103626000", - "code_id" : "id", - "debug_file" : "libbz2.1.0.dylib", - "debug_id" : "D6053F91B09BA0BD60749B49D54F54EB0", - "end_addr" : "0x103635000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libbz2.1.0.dylib", - "version" : "0.1.0.6" - }, - { - "base_addr" : "0x103639000", - "code_id" : "id", - "debug_file" : "libssl.1.0.0.dylib", - "debug_id" : "E3B10E19581CB3E9D6E690DA9065FBA20", - "end_addr" : "0x103691000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libssl.1.0.0.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x1036ac000", - "code_id" : "id", - "debug_file" : "libcrypto.1.0.0.dylib", - "debug_id" : "8B20200CFA8183B091EAC5E24FBBCEEE0", - "end_addr" : "0x10385e000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libcrypto.1.0.0.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x1039b1000", - "code_id" : "id", - "debug_file" : "csparser", - "debug_id" : "A8B6334E24A6301FBE583435B6F6A24A0", - "end_addr" : "0x1039cd000", - "filename" : "/System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x1039ef000", - "code_id" : "id", - "debug_file" : "zlib.so", - "debug_id" : "6318E63EE74230C198FB5D116DB2A4CB0", - "end_addr" : "0x1039f3000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/zlib.so", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x108300000", - "code_id" : "id", - "debug_file" : "AppleIntelHD3000GraphicsGLDriver", - "debug_id" : "4C2B034BD3C93197AEEAFC3291C5F8B10", - "end_addr" : "0x10868b000", - "filename" : "/System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD3000GraphicsGLDriver", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x1087df000", - "code_id" : "id", - "debug_file" : "math.so", - "debug_id" : "247F619C90823A5DAC7EEC137C5BE6530", - "end_addr" : "0x1087e5000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/math.so", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10a9b6000", - "code_id" : "id", - "debug_file" : "", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x10a9b7000", - "filename" : "cl_kernels", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10ab20000", - "code_id" : "id", - "debug_file" : "libgmodule-2.0.0.dylib", - "debug_id" : "A55388542274394F9E0976F8E76E441A0", - "end_addr" : "0x10ab24000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgmodule-2.0.0.dylib", - "version" : "0.5001.1.0" - }, - { - "base_addr" : "0x10ae1f000", - "code_id" : "id", - "debug_file" : "QtCore.so", - "debug_id" : "CDD153E619E537168979424EC3CD632C0", - "end_addr" : "0x10b04d000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/PySide/QtCore.so", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10b3e0000", - "code_id" : "id", - "debug_file" : "libTraditionalChineseConverter.dylib", - "debug_id" : "1BD8CD9EE1163EC791621BDD65230D5F0", - "end_addr" : "0x10b3f3000", - "filename" : "/System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib", - "version" : "0.68.0.0" - }, - { - "base_addr" : "0x10b4f5000", - "code_id" : "id", - "debug_file" : "libffi.6.dylib", - "debug_id" : "DD598F23C71AD211401C9631685FFD010", - "end_addr" : "0x10b4fb000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libffi.6.dylib", - "version" : "0.7.4.0" - }, - { - "base_addr" : "0x10b700000", - "code_id" : "id", - "debug_file" : "QtGui.so", - "debug_id" : "53DF483BBD2632098BADADDAF84EC51E0", - "end_addr" : "0x10c095000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/PySide/QtGui.so", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10c4fa000", - "code_id" : "id", - "debug_file" : "libgthread-2.0.0.dylib", - "debug_id" : "1EBF11A91DAA3FB7A0D9B78494D71EFA0", - "end_addr" : "0x10c4fd000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgthread-2.0.0.dylib", - "version" : "0.5001.1.0" - }, - { - "base_addr" : "0x10c682000", - "code_id" : "id", - "debug_file" : "libintl.8.dylib", - "debug_id" : "879207D9D564397986B82DFD267F0EF00", - "end_addr" : "0x10c68c000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libintl.8.dylib", - "version" : "0.10.5.0" - }, - { - "base_addr" : "0x10c6a4000", - "code_id" : "id", - "debug_file" : "libIexMath-2_2.12.dylib", - "debug_id" : "562DE6E0227639B5BD38264E0E1118770", - "end_addr" : "0x10c6a7000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libIexMath-2_2.12.dylib", - "version" : "0.13.0.0" - }, - { - "base_addr" : "0x10c6aa000", - "code_id" : "id", - "debug_file" : "libIlmThread-2_2.12.dylib", - "debug_id" : "613CAED4A75437B0B2B77F0C855502E70", - "end_addr" : "0x10c6af000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libIlmThread-2_2.12.dylib", - "version" : "0.13.0.0" - }, - { - "base_addr" : "0x10ca84000", - "code_id" : "id", - "debug_file" : "libpangocairo-1.0.0.dylib", - "debug_id" : "5E9D9DDB8B74312ABF604A62F94E715E0", - "end_addr" : "0x10ca95000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpangocairo-1.0.0.dylib", - "version" : "0.4001.3.0" - }, - { - "base_addr" : "0x10caa0000", - "code_id" : "id", - "debug_file" : "VideoDecodeAcceleration", - "debug_id" : "54388EB1C9DB31CABE8F5FD150B2EDBA0", - "end_addr" : "0x10caa2000", - "filename" : "/System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/VideoDecodeAcceleration", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x10caa7000", - "code_id" : "id", - "debug_file" : "libboost_atomic-mt.dylib", - "debug_id" : "B583E9BAC02EC95979AACB42C04172F80", - "end_addr" : "0x10caa9000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_atomic-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10caed000", - "code_id" : "id", - "debug_file" : "libImath-2_2.12.dylib", - "debug_id" : "A3E05933584C354C9BBB99D8593C3A520", - "end_addr" : "0x10cafa000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libImath-2_2.12.dylib", - "version" : "0.13.0.0" - }, - { - "base_addr" : "0x10cc00000", - "code_id" : "id", - "debug_file" : "libpangoft2-1.0.0.dylib", - "debug_id" : "53C6A70F81AD35AA8349F2C6444AD9340", - "end_addr" : "0x10cc10000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpangoft2-1.0.0.dylib", - "version" : "0.4001.3.0" - }, - { - "base_addr" : "0x10cc1a000", - "code_id" : "id", - "debug_file" : "libogg.0.dylib", - "debug_id" : "6CD955C86C42B65B92A0D046BB45C3040", - "end_addr" : "0x10cc1f000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libogg.0.dylib", - "version" : "0.9.2.0" - }, - { - "base_addr" : "0x10cc22000", - "code_id" : "id", - "debug_file" : "libboost_system-mt.dylib", - "debug_id" : "D066A93A98E1FEF1D60C1984EFB7D3FC0", - "end_addr" : "0x10cc26000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_system-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10cc30000", - "code_id" : "id", - "debug_file" : "libgdk_pixbuf-2.0.0.dylib", - "debug_id" : "2459998340C63D6A82192C972F22F45D0", - "end_addr" : "0x10cc4b000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgdk_pixbuf-2.0.0.dylib", - "version" : "0.3601.0.0" - }, - { - "base_addr" : "0x10cc54000", - "code_id" : "id", - "debug_file" : "libgif.4.dylib", - "debug_id" : "CC75001E690A90D3AA934CB24E2FDBF00", - "end_addr" : "0x10cc5a000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgif.4.dylib", - "version" : "0.6.7.0" - }, - { - "base_addr" : "0x10cc74000", - "code_id" : "id", - "debug_file" : "libboost_chrono-mt.dylib", - "debug_id" : "1798150003F2344C3924933A74FFB8A60", - "end_addr" : "0x10cc7a000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_chrono-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10d52c000", - "code_id" : "id", - "debug_file" : "libharfbuzz.0.dylib", - "debug_id" : "470CA57EDD8231FCA3CE3898B56385FA0", - "end_addr" : "0x10d582000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libharfbuzz.0.dylib", - "version" : "0.10303.0.0" - }, - { - "base_addr" : "0x10d5a6000", - "code_id" : "id", - "debug_file" : "libgraphite2.3.dylib", - "debug_id" : "52E9BFF54B1137EAB02AA8F27B26ACF80", - "end_addr" : "0x10d5cb000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgraphite2.3.dylib", - "version" : "0.3.0.1" - }, - { - "base_addr" : "0x10d5d5000", - "code_id" : "id", - "debug_file" : "librevenge-stream-0.0.0.dylib", - "debug_id" : "E9BC629BD7DB3139B1223E74456E029D0", - "end_addr" : "0x10d5ef000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/librevenge-stream-0.0.0.dylib", - "version" : "0.1.4.0" - }, - { - "base_addr" : "0x10dadf000", - "code_id" : "id", - "debug_file" : "Arena.ofx", - "debug_id" : "17FA4B4D9450356988CF5E151E75DAD00", - "end_addr" : "0x10e0b7000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Plugins/OFX/Natron/Arena.ofx.bundle/Contents/MacOS/Arena.ofx", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x10e1b4000", - "code_id" : "id", - "debug_file" : "libOpenColorIO.1.dylib", - "debug_id" : "68C58D2464F93AFD94B58F6ECDB5FB430", - "end_addr" : "0x10e27f000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libOpenColorIO.1.dylib", - "version" : "0.1.0.9" - }, - { - "base_addr" : "0x10e2ec000", - "code_id" : "id", - "debug_file" : "libpango-1.0.0.dylib", - "debug_id" : "C4235C8691D638009DDB1C8C3CA61F870", - "end_addr" : "0x10e326000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpango-1.0.0.dylib", - "version" : "0.4001.3.0" - }, - { - "base_addr" : "0x10e338000", - "code_id" : "id", - "debug_file" : "libgobject-2.0.0.dylib", - "debug_id" : "ADEADBDADFF23236ADA127AAE7943DDA0", - "end_addr" : "0x10e378000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgobject-2.0.0.dylib", - "version" : "0.5001.1.0" - }, - { - "base_addr" : "0x10e38c000", - "code_id" : "id", - "debug_file" : "libglib-2.0.0.dylib", - "debug_id" : "CDD08F9D8FF13578A76F3A9A7C0E36390", - "end_addr" : "0x10e470000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libglib-2.0.0.dylib", - "version" : "0.5001.1.0" - }, - { - "base_addr" : "0x10e49d000", - "code_id" : "id", - "debug_file" : "libpcre.1.dylib", - "debug_id" : "85F0886AEAE43EC98BAF5641CA0FFE630", - "end_addr" : "0x10e503000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpcre.1.dylib", - "version" : "0.4.7.0" - }, - { - "base_addr" : "0x10e507000", - "code_id" : "id", - "debug_file" : "librsvg-2.2.dylib", - "debug_id" : "8C35414AD652376F82D83494C22EDD750", - "end_addr" : "0x10e536000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/librsvg-2.2.dylib", - "version" : "0.43.16.0" - }, - { - "base_addr" : "0x10e543000", - "code_id" : "id", - "debug_file" : "liblcms2.2.dylib", - "debug_id" : "590D959E007D3C1EA9E3AD82D7756B630", - "end_addr" : "0x10e588000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/liblcms2.2.dylib", - "version" : "0.3.8.0" - }, - { - "base_addr" : "0x10e59a000", - "code_id" : "id", - "debug_file" : "libzip.4.dylib", - "debug_id" : "94A48E4C64E43AB18CD1C79B270DB3120", - "end_addr" : "0x10e5aa000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libzip.4.dylib", - "version" : "0.5.0.0" - }, - { - "base_addr" : "0x111535000", - "code_id" : "id", - "debug_file" : "libiconv.2.dylib", - "debug_id" : "065A36D75F157B4CC3F4D9B23DFC36A30", - "end_addr" : "0x111634000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libiconv.2.dylib", - "version" : "0.8.1.0" - }, - { - "base_addr" : "0x111641000", - "code_id" : "id", - "debug_file" : "libgio-2.0.0.dylib", - "debug_id" : "E89DFE0FE90430DE8667CB8BE459A24A0", - "end_addr" : "0x111782000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libgio-2.0.0.dylib", - "version" : "0.5001.1.0" - }, - { - "base_addr" : "0x1117fa000", - "code_id" : "id", - "debug_file" : "libcdr-0.1.1.dylib", - "debug_id" : "1126051E714332DB980B9B008E2F0BD80", - "end_addr" : "0x111897000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libcdr-0.1.1.dylib", - "version" : "0.2.3.0" - }, - { - "base_addr" : "0x1118c7000", - "code_id" : "id", - "debug_file" : "libicui18n.55.dylib", - "debug_id" : "C16A41EEC273EF8D28C4EE09D3E499640", - "end_addr" : "0x111a6a000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libicui18n.55.dylib", - "version" : "0.55.1.0" - }, - { - "base_addr" : "0x111b35000", - "code_id" : "id", - "debug_file" : "libicuuc.55.dylib", - "debug_id" : "9F4D0B6D89C5359D2DB1F69F0CB719A00", - "end_addr" : "0x111c56000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libicuuc.55.dylib", - "version" : "0.55.1.0" - }, - { - "base_addr" : "0x111cb8000", - "code_id" : "id", - "debug_file" : "libicudata.55.dylib", - "debug_id" : "F1C2507AD95A817EB3D2B224A79E57D70", - "end_addr" : "0x11356e000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libicudata.55.dylib", - "version" : "0.55.1.0" - }, - { - "base_addr" : "0x11356f000", - "code_id" : "id", - "debug_file" : "librevenge-0.0.0.dylib", - "debug_id" : "0CC3FA2EDBF833C8A5B2381DACA38D960", - "end_addr" : "0x113592000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/librevenge-0.0.0.dylib", - "version" : "0.1.4.0" - }, - { - "base_addr" : "0x1135a9000", - "code_id" : "id", - "debug_file" : "librevenge-generators-0.0.0.dylib", - "debug_id" : "026A2108964A32488FF05B9625E82DD20", - "end_addr" : "0x1135e6000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/librevenge-generators-0.0.0.dylib", - "version" : "0.1.4.0" - }, - { - "base_addr" : "0x113612000", - "code_id" : "id", - "debug_file" : "libxml2.2.dylib", - "debug_id" : "46124B0697A2360A99A4BB95372C05270", - "end_addr" : "0x113736000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libxml2.2.dylib", - "version" : "0.12.4.0" - }, - { - "base_addr" : "0x113767000", - "code_id" : "id", - "debug_file" : "liblzma.5.dylib", - "debug_id" : "901F67BF3E89C04F2E3849E7D57D522A0", - "end_addr" : "0x113787000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/liblzma.5.dylib", - "version" : "0.8.2.0" - }, - { - "base_addr" : "0x11378c000", - "code_id" : "id", - "debug_file" : "libcurl.4.dylib", - "debug_id" : "7F931EF2D3CD3F949D7A9ECC1F3EB86B0", - "end_addr" : "0x1137de000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libcurl.4.dylib", - "version" : "0.9.0.0" - }, - { - "base_addr" : "0x1137ed000", - "code_id" : "id", - "debug_file" : "libpoppler-glib.8.dylib", - "debug_id" : "50C2EAFDE1B43F9D80A1455E2E140F330", - "end_addr" : "0x113826000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpoppler-glib.8.dylib", - "version" : "0.17.0.0" - }, - { - "base_addr" : "0x113852000", - "code_id" : "id", - "debug_file" : "libpoppler.64.dylib", - "debug_id" : "35096E8F1A5B348F9017C6D9A4E72F5C0", - "end_addr" : "0x1139b2000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libpoppler.64.dylib", - "version" : "0.65.0.0" - }, - { - "base_addr" : "0x113a6f000", - "code_id" : "id", - "debug_file" : "libtinyxml.dylib", - "debug_id" : "52510C8A21373CCD886207348866C0330", - "end_addr" : "0x113a7d000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libtinyxml.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x113a86000", - "code_id" : "id", - "debug_file" : "libcroco-0.6.3.dylib", - "debug_id" : "F39513F72C4AA399F0ACD9CA3316EEED0", - "end_addr" : "0x113ab1000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libcroco-0.6.3.dylib", - "version" : "0.4.1.0" - }, - { - "base_addr" : "0x113ac1000", - "code_id" : "id", - "debug_file" : "libtiff.5.dylib", - "debug_id" : "6E5E66FC04013171B6CBDAF7E2014B8A0", - "end_addr" : "0x113b22000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libtiff.5.dylib", - "version" : "0.8.4.0" - }, - { - "base_addr" : "0x113b31000", - "code_id" : "id", - "debug_file" : "libjpeg.8.dylib", - "debug_id" : "FE7D54B688C731A5AC0C2D7C7C7F36760", - "end_addr" : "0x113b93000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libjpeg.8.dylib", - "version" : "0.10.2.0" - }, - { - "base_addr" : "0x113ba1000", - "code_id" : "id", - "debug_file" : "libopenjpeg.1.dylib", - "debug_id" : "C61069B0EED6F6CEFBF311DCE496DFB60", - "end_addr" : "0x113bc2000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libopenjpeg.1.dylib", - "version" : "0.7.2.0" - }, - { - "base_addr" : "0x113bc6000", - "code_id" : "id", - "debug_file" : "CImg.ofx", - "debug_id" : "7F77EE79F9CA3A629FFDBE0F16B7F88F0", - "end_addr" : "0x113da4000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Plugins/OFX/Natron/CImg.ofx.bundle/Contents/MacOS/CImg.ofx", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x113dd0000", - "code_id" : "id", - "debug_file" : "IO.ofx", - "debug_id" : "BA623AE1F86D355B922811D2636A059B0", - "end_addr" : "0x113fda000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Plugins/OFX/Natron/IO.ofx.bundle/Contents/MacOS/IO.ofx", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x11402a000", - "code_id" : "id", - "debug_file" : "libIlmImf-2_2.22.dylib", - "debug_id" : "123CABE7C05E3D40B1375A318906E8250", - "end_addr" : "0x1141c1000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libIlmImf-2_2.22.dylib", - "version" : "0.23.0.0" - }, - { - "base_addr" : "0x114334000", - "code_id" : "id", - "debug_file" : "libHalf.12.dylib", - "debug_id" : "C3C66C4C89363E6CB8953D9ABECBA27B0", - "end_addr" : "0x114376000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libHalf.12.dylib", - "version" : "0.13.0.0" - }, - { - "base_addr" : "0x114378000", - "code_id" : "id", - "debug_file" : "libIex-2_2.12.dylib", - "debug_id" : "9C6DFB19EFA93290A4EAB3799D3C7C750", - "end_addr" : "0x114383000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libIex-2_2.12.dylib", - "version" : "0.13.0.0" - }, - { - "base_addr" : "0x114396000", - "code_id" : "id", - "debug_file" : "libavformat.57.dylib", - "debug_id" : "3B0709726B6C318BA7651C2C3FBEEF9E0", - "end_addr" : "0x11452b000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libavformat.57.dylib", - "version" : "0.57.41.100" - }, - { - "base_addr" : "0x11456e000", - "code_id" : "id", - "debug_file" : "libavcodec.57.dylib", - "debug_id" : "9459BBA311A830B3B2C1D86E459D1E480", - "end_addr" : "0x11526e000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libavcodec.57.dylib", - "version" : "0.57.48.101" - }, - { - "base_addr" : "0x115b06000", - "code_id" : "id", - "debug_file" : "libswscale.4.dylib", - "debug_id" : "A9C918170804385CB1B47DB070ED928A0", - "end_addr" : "0x115b95000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libswscale.4.dylib", - "version" : "0.4.1.100" - }, - { - "base_addr" : "0x115ba5000", - "code_id" : "id", - "debug_file" : "libavutil.55.dylib", - "debug_id" : "A143A3457A713D03B20A5D353DCCFFF10", - "end_addr" : "0x115bee000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libavutil.55.dylib", - "version" : "0.55.28.100" - }, - { - "base_addr" : "0x115c1b000", - "code_id" : "id", - "debug_file" : "libOpenImageIO.1.6.dylib", - "debug_id" : "33F550700CF53F3F8A966A9FF8F0425F0", - "end_addr" : "0x116108000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libOpenImageIO.1.6.dylib", - "version" : "0.1.6.17" - }, - { - "base_addr" : "0x116317000", - "code_id" : "id", - "debug_file" : "libSeExpr.dylib", - "debug_id" : "7D74DD66AAB331CC8A9394238306C91B0", - "end_addr" : "0x116361000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libSeExpr.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x1163ab000", - "code_id" : "id", - "debug_file" : "libswresample.2.dylib", - "debug_id" : "E55C8F4658153F609088744E76331E470", - "end_addr" : "0x1163ca000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libswresample.2.dylib", - "version" : "0.2.1.100" - }, - { - "base_addr" : "0x1163d0000", - "code_id" : "id", - "debug_file" : "libx264.148.dylib", - "debug_id" : "5CE5FCC50C6FF8CD4CF8EED629D043530", - "end_addr" : "0x1164e1000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libx264.148.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x116579000", - "code_id" : "id", - "debug_file" : "libvorbisenc.2.dylib", - "debug_id" : "5142C105DB0713DC39ECDAB8928F7FA50", - "end_addr" : "0x1165f4000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libvorbisenc.2.dylib", - "version" : "0.3.11.0" - }, - { - "base_addr" : "0x116641000", - "code_id" : "id", - "debug_file" : "libvorbis.0.dylib", - "debug_id" : "3C4C6597F3496249B162FF57EEF672110", - "end_addr" : "0x116667000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libvorbis.0.dylib", - "version" : "0.5.8.0" - }, - { - "base_addr" : "0x116670000", - "code_id" : "id", - "debug_file" : "libtheoraenc.1.dylib", - "debug_id" : "CF36CECAAACAB7F093879202F22806AE0", - "end_addr" : "0x1166a2000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libtheoraenc.1.dylib", - "version" : "0.3.2.0" - }, - { - "base_addr" : "0x1166a6000", - "code_id" : "id", - "debug_file" : "libtheoradec.1.dylib", - "debug_id" : "97B25C54162ABFD03FE8A804E5D245240", - "end_addr" : "0x1166b9000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libtheoradec.1.dylib", - "version" : "0.3.4.0" - }, - { - "base_addr" : "0x1166bc000", - "code_id" : "id", - "debug_file" : "libspeex.1.dylib", - "debug_id" : "26F15CCB03A6BFC0ADB83294618E874E0", - "end_addr" : "0x1166d2000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libspeex.1.dylib", - "version" : "0.7.0.0" - }, - { - "base_addr" : "0x1166d6000", - "code_id" : "id", - "debug_file" : "libsoxr.0.dylib", - "debug_id" : "9DEA76541CF1FD0332650162AD4183A90", - "end_addr" : "0x1166fe000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libsoxr.0.dylib", - "version" : "0.0.1.1" - }, - { - "base_addr" : "0x116739000", - "code_id" : "id", - "debug_file" : "libschroedinger-1.0.0.dylib", - "debug_id" : "957666F17B1238FC8E568038B51E21A50", - "end_addr" : "0x1167cc000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libschroedinger-1.0.0.dylib", - "version" : "0.12.0.0" - }, - { - "base_addr" : "0x1167e3000", - "code_id" : "id", - "debug_file" : "libopus.0.dylib", - "debug_id" : "9737A0A04C743DB982360D706824801A0", - "end_addr" : "0x116828000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libopus.0.dylib", - "version" : "0.6.3.0" - }, - { - "base_addr" : "0x11682f000", - "code_id" : "id", - "debug_file" : "libopenjp2.7.dylib", - "debug_id" : "AE5AA9571EC6F670087FA185528904020", - "end_addr" : "0x116857000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libopenjp2.7.dylib", - "version" : "0.2.1.0" - }, - { - "base_addr" : "0x11685d000", - "code_id" : "id", - "debug_file" : "libmp3lame.0.dylib", - "debug_id" : "F2BEE1234229A505B32E9B6531AC66570", - "end_addr" : "0x116899000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libmp3lame.0.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x1168d1000", - "code_id" : "id", - "debug_file" : "libmodplug.1.dylib", - "debug_id" : "0CA0768BB3E0FE4EE81B2A7F26E64D940", - "end_addr" : "0x116912000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libmodplug.1.dylib", - "version" : "0.2.0.0" - }, - { - "base_addr" : "0x1169cc000", - "code_id" : "id", - "debug_file" : "liborc-0.4.0.dylib", - "debug_id" : "B7CE46C4E6543B1E95CB33AF5734A75E0", - "end_addr" : "0x116a3f000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/liborc-0.4.0.dylib", - "version" : "0.26.0.0" - }, - { - "base_addr" : "0x116a59000", - "code_id" : "id", - "debug_file" : "libboost_filesystem-mt.dylib", - "debug_id" : "FB015D1B73DCB15F11748239A443DAA50", - "end_addr" : "0x116a6c000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_filesystem-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x116a7c000", - "code_id" : "id", - "debug_file" : "libboost_regex-mt.dylib", - "debug_id" : "32652DC03E530BB3D653BAE3FDCEC1B80", - "end_addr" : "0x116b65000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_regex-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x116c10000", - "code_id" : "id", - "debug_file" : "libboost_thread-mt.dylib", - "debug_id" : "66283C1112D38425628D839BE7233F190", - "end_addr" : "0x116c20000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_thread-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x116c3b000", - "code_id" : "id", - "debug_file" : "libboost_date_time-mt.dylib", - "debug_id" : "2FC66D122D671D21B21B8098CE4F4FAA0", - "end_addr" : "0x116c45000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libboost_date_time-mt.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x116c5c000", - "code_id" : "id", - "debug_file" : "libwebp.6.dylib", - "debug_id" : "6E47C66F29A939929E81E903A137FE110", - "end_addr" : "0x116cb4000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libwebp.6.dylib", - "version" : "0.7.1.0" - }, - { - "base_addr" : "0x116cbf000", - "code_id" : "id", - "debug_file" : "libraw_r.15.dylib", - "debug_id" : "F6D80F1AB01639F3A99CCC8B589F872C0", - "end_addr" : "0x116d35000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libraw_r.15.dylib", - "version" : "0.16.0.0" - }, - { - "base_addr" : "0x116d90000", - "code_id" : "id", - "debug_file" : "libjasper.1.dylib", - "debug_id" : "0A9F136D52CE3436913D868AC1863FB90", - "end_addr" : "0x116dcb000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Frameworks/libjasper.1.dylib", - "version" : "0.2.0.0" - }, - { - "base_addr" : "0x11795e000", - "code_id" : "id", - "debug_file" : "Misc.ofx", - "debug_id" : "686B81CB1CBC3BEEBB2FDE96D41418250", - "end_addr" : "0x1185cf000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Plugins/OFX/Natron/Misc.ofx.bundle/Contents/MacOS/Misc.ofx", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x1186b2000", - "code_id" : "id", - "debug_file" : "Shadertoy.ofx", - "debug_id" : "CADD3F0590833D678C3BB321C32DB3CF0", - "end_addr" : "0x119710000", - "filename" : "/Users/olear/Desktop/Natron.app/Contents/Plugins/OFX/Natron/Shadertoy.ofx.bundle/Contents/MacOS/Shadertoy.ofx", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x7fff8a62f000", - "code_id" : "id", - "debug_file" : "libz.1.dylib", - "debug_id" : "43317BEAACA234C2AF37902AA926C83A0", - "end_addr" : "0x7fff8a641000", - "filename" : "/usr/lib/libz.1.dylib", - "version" : "0.1.2.5" - }, - { - "base_addr" : "0x7fff8a64b000", - "code_id" : "id", - "debug_file" : "Backup", - "debug_id" : "551ABBE3211D3D7DB811B2F863DD17CB0", - "end_addr" : "0x7fff8a6fc000", - "filename" : "/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup", - "version" : "0.960.0.2" - }, - { - "base_addr" : "0x7fff8a6fc000", - "code_id" : "id", - "debug_file" : "NetAuth", - "debug_id" : "ABBBE55226E036828BFDC59EC702F3470", - "end_addr" : "0x7fff8a707000", - "filename" : "/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8a88c000", - "code_id" : "id", - "debug_file" : "HIToolbox", - "debug_id" : "510697D02F923256B587AD11DF9884300", - "end_addr" : "0x7fff8ab82000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox", - "version" : "0.806.0.0" - }, - { - "base_addr" : "0x7fff8ab82000", - "code_id" : "id", - "debug_file" : "UIFoundation", - "debug_id" : "237F281F7F153309B749F8DA37822F9F0", - "end_addr" : "0x7fff8ad01000", - "filename" : "/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation", - "version" : "0.435.0.0" - }, - { - "base_addr" : "0x7fff8ae40000", - "code_id" : "id", - "debug_file" : "libsystem_network.dylib", - "debug_id" : "14ECA259D4713E47A843FF09905778930", - "end_addr" : "0x7fff8ae9f000", - "filename" : "/usr/lib/system/libsystem_network.dylib", - "version" : "0.582.1.4" - }, - { - "base_addr" : "0x7fff8ae9f000", - "code_id" : "id", - "debug_file" : "libxpc.dylib", - "debug_id" : "3E09C275A33B357AB0ABA2DDF88EC9D50", - "end_addr" : "0x7fff8aec9000", - "filename" : "/usr/lib/system/libxpc.dylib", - "version" : "0.755.1.19" - }, - { - "base_addr" : "0x7fff8b5f6000", - "code_id" : "id", - "debug_file" : "libvDSP.dylib", - "debug_id" : "1CF0ABF8ADD33DEA8E12AA4C97ACCB950", - "end_addr" : "0x7fff8b709000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib", - "version" : "0.563.3.0" - }, - { - "base_addr" : "0x7fff8b709000", - "code_id" : "id", - "debug_file" : "libunc.dylib", - "debug_id" : "D9B0C7B186483AAC931CE7CD362FAA8A0", - "end_addr" : "0x7fff8b70a000", - "filename" : "/usr/lib/system/libunc.dylib", - "version" : "0.29.0.0" - }, - { - "base_addr" : "0x7fff8b70a000", - "code_id" : "id", - "debug_file" : "Security", - "debug_id" : "E44CA10FE1E23DC5BCF3EF76649A09180", - "end_addr" : "0x7fff8b988000", - "filename" : "/System/Library/Frameworks/Security.framework/Versions/A/Security", - "version" : "0.57336.1.9" - }, - { - "base_addr" : "0x7fff8b988000", - "code_id" : "id", - "debug_file" : "libc++.1.dylib", - "debug_id" : "54190E1BEE493D6DAC292813D7380BA50", - "end_addr" : "0x7fff8b9dc000", - "filename" : "/usr/lib/libc++.1.dylib", - "version" : "0.120.1.0" - }, - { - "base_addr" : "0x7fff8bae4000", - "code_id" : "id", - "debug_file" : "CoreMedia", - "debug_id" : "30C4C79B38E7331FA3D18D0777D23FD40", - "end_addr" : "0x7fff8bbbd000", - "filename" : "/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8c2d0000", - "code_id" : "id", - "debug_file" : "AppleVA", - "debug_id" : "F0CFD860FA5E3BD580FA12C0B4CF620D0", - "end_addr" : "0x7fff8c323000", - "filename" : "/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8c32b000", - "code_id" : "id", - "debug_file" : "libGLImage.dylib", - "debug_id" : "057F9F59B58A3C8DA965F4929A2124060", - "end_addr" : "0x7fff8c36a000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8c36a000", - "code_id" : "id", - "debug_file" : "AppSandbox", - "debug_id" : "39C1D57B457A39BDBB0A9B8C5D8C986E0", - "end_addr" : "0x7fff8c376000", - "filename" : "/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8c376000", - "code_id" : "id", - "debug_file" : "CommerceCore", - "debug_id" : "2E605FE7DEB6354EA6E1E9D24D8E7B690", - "end_addr" : "0x7fff8c382000", - "filename" : "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore", - "version" : "0.379.0.0" - }, - { - "base_addr" : "0x7fff8cd5e000", - "code_id" : "id", - "debug_file" : "libutil.dylib", - "debug_id" : "E37832CF5EE6345AB0ECFFC8D2B673750", - "end_addr" : "0x7fff8cd61000", - "filename" : "/usr/lib/libutil.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8cdff000", - "code_id" : "id", - "debug_file" : "AVFoundation", - "debug_id" : "BFA3AB94F05C3827BD204BE3DC6F3AAC0", - "end_addr" : "0x7fff8cfa7000", - "filename" : "/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation", - "version" : "0.2.0.0" - }, - { - "base_addr" : "0x7fff8cfa7000", - "code_id" : "id", - "debug_file" : "GSS", - "debug_id" : "D50CDB4472E93520996593901621F7810", - "end_addr" : "0x7fff8cfd9000", - "filename" : "/System/Library/Frameworks/GSS.framework/Versions/A/GSS", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8cfd9000", - "code_id" : "id", - "debug_file" : "EFILogin", - "debug_id" : "1FF633310B4A385DAC447AE6659475530", - "end_addr" : "0x7fff8cfdc000", - "filename" : "/System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8cff8000", - "code_id" : "id", - "debug_file" : "libTIFF.dylib", - "debug_id" : "38655E86672631D1A4DF0C8BBE504B0B0", - "end_addr" : "0x7fff8d054000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8d0a9000", - "code_id" : "id", - "debug_file" : "GenerationalStorage", - "debug_id" : "05652CADE7F53225929DE13F241FBA410", - "end_addr" : "0x7fff8d0c6000", - "filename" : "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage", - "version" : "0.239.0.0" - }, - { - "base_addr" : "0x7fff8d0c6000", - "code_id" : "id", - "debug_file" : "libsystem_notify.dylib", - "debug_id" : "56ABC155CB9930A8A8B1C204B56150920", - "end_addr" : "0x7fff8d0d0000", - "filename" : "/usr/lib/system/libsystem_notify.dylib", - "version" : "0.149.0.0" - }, - { - "base_addr" : "0x7fff8d2ce000", - "code_id" : "id", - "debug_file" : "SecurityFoundation", - "debug_id" : "C2DFA11318143701B185D82E11A26E860", - "end_addr" : "0x7fff8d343000", - "filename" : "/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation", - "version" : "0.55126.0.0" - }, - { - "base_addr" : "0x7fff8d6f8000", - "code_id" : "id", - "debug_file" : "Cocoa", - "debug_id" : "A033F3421FEC3DFD830AE8EE284DF4920", - "end_addr" : "0x7fff8d6f9000", - "filename" : "/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa", - "version" : "0.22.0.0" - }, - { - "base_addr" : "0x7fff8d705000", - "code_id" : "id", - "debug_file" : "libChineseTokenizer.dylib", - "debug_id" : "1794A8809C3D37B28F3E6CAFFB3960890", - "end_addr" : "0x7fff8d711000", - "filename" : "/usr/lib/libChineseTokenizer.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8d765000", - "code_id" : "id", - "debug_file" : "AppKit", - "debug_id" : "AE68D5C702153027A54B437B1B392CA20", - "end_addr" : "0x7fff8e388000", - "filename" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit", - "missing_symbols" : true, - "version" : "0.1404.11.0" - }, - { - "base_addr" : "0x7fff8e388000", - "code_id" : "id", - "debug_file" : "libsystem_sandbox.dylib", - "debug_id" : "2F36D536482C39ECBAFD72297728F0A40", - "end_addr" : "0x7fff8e38c000", - "filename" : "/usr/lib/system/libsystem_sandbox.dylib", - "version" : "0.459.1.8" - }, - { - "base_addr" : "0x7fff8e38c000", - "code_id" : "id", - "debug_file" : "OpenCL", - "debug_id" : "68A639313F6F3DE29C8D624006908B830", - "end_addr" : "0x7fff8e3dc000", - "filename" : "/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8e8fe000", - "code_id" : "id", - "debug_file" : "Print", - "debug_id" : "F13A0609793A3A43A961AAFC81AC8FDA0", - "end_addr" : "0x7fff8e900000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print", - "version" : "0.266.0.0" - }, - { - "base_addr" : "0x7fff8eec0000", - "code_id" : "id", - "debug_file" : "libFontParser.dylib", - "debug_id" : "3CD078A82E203B0FB312A2E641C768730", - "end_addr" : "0x7fff8efbc000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff8efbc000", - "code_id" : "id", - "debug_file" : "AE", - "debug_id" : "87FDCC5A82AC36A2BFE9D0B2A3D870F10", - "end_addr" : "0x7fff8f012000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE", - "version" : "0.701.0.0" - }, - { - "base_addr" : "0x7fff8f012000", - "code_id" : "id", - "debug_file" : "CFNetwork", - "debug_id" : "66C3378C430D3803802566120AFDCD160", - "end_addr" : "0x7fff8f29a000", - "filename" : "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork", - "version" : "0.760.0.5" - }, - { - "base_addr" : "0x7fff8f2d7000", - "code_id" : "id", - "debug_file" : "SystemConfiguration", - "debug_id" : "FED4C250DDEB3CC3B88DFFA56E21425E0", - "end_addr" : "0x7fff8f336000", - "filename" : "/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration", - "version" : "0.801.1.1" - }, - { - "base_addr" : "0x7fff90419000", - "code_id" : "id", - "debug_file" : "Foundation", - "debug_id" : "2D13ED37BFFE3B7FA65AD6ED43B05EE90", - "end_addr" : "0x7fff9076e000", - "filename" : "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", - "version" : "0.1252.0.0" - }, - { - "base_addr" : "0x7fff90788000", - "code_id" : "id", - "debug_file" : "VideoToolbox", - "debug_id" : "72715A24C3BC35D88240BBBD56E370900", - "end_addr" : "0x7fff90b04000", - "filename" : "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff90b04000", - "code_id" : "id", - "debug_file" : "SpeechSynthesis", - "debug_id" : "8D8F331E21D23B7EB9773EB1D9E44D5B0", - "end_addr" : "0x7fff90b11000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff90b11000", - "code_id" : "id", - "debug_file" : "SearchKit", - "debug_id" : "45A716CDD9E73F1F9EC8BB37CA9E8C040", - "end_addr" : "0x7fff90b81000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit", - "version" : "0.200.1.0" - }, - { - "base_addr" : "0x7fff90b81000", - "code_id" : "id", - "debug_file" : "Help", - "debug_id" : "AA185754DEEB309193017B23C4D368180", - "end_addr" : "0x7fff90b85000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff90b99000", - "code_id" : "id", - "debug_file" : "libcompression.dylib", - "debug_id" : "803C89B91E7D3658A2CF2B8371C546380", - "end_addr" : "0x7fff90bb2000", - "filename" : "/usr/lib/libcompression.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff90d99000", - "code_id" : "id", - "debug_file" : "libsystem_coreservices.dylib", - "debug_id" : "692631A0192332CA9BD5044B1382FFDE0", - "end_addr" : "0x7fff90d9c000", - "filename" : "/usr/lib/system/libsystem_coreservices.dylib", - "version" : "0.19.0.0" - }, - { - "base_addr" : "0x7fff90d9f000", - "code_id" : "id", - "debug_file" : "SpeechRecognitionCore", - "debug_id" : "121178238A9E3C88A01C3B25D68535CE0", - "end_addr" : "0x7fff90dac000", - "filename" : "/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff90e98000", - "code_id" : "id", - "debug_file" : "libsystem_info.dylib", - "debug_id" : "65D0643AC8AE3E8D9F6EE4AD823F16B20", - "end_addr" : "0x7fff90ec2000", - "filename" : "/usr/lib/system/libsystem_info.dylib", - "version" : "0.476.0.0" - }, - { - "base_addr" : "0x7fff90ecb000", - "code_id" : "id", - "debug_file" : "PrintCore", - "debug_id" : "34EA102AD48237FF9C9BE4FE4275913B0", - "end_addr" : "0x7fff90f17000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore", - "version" : "0.472.0.0" - }, - { - "base_addr" : "0x7fff90f1a000", - "code_id" : "id", - "debug_file" : "AudioUnit", - "debug_id" : "017C6053C32E34EEAAAE6702E74F14EF0", - "end_addr" : "0x7fff90f1b000", - "filename" : "/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9106c000", - "code_id" : "id", - "debug_file" : "libsystem_networkextension.dylib", - "debug_id" : "4736FCC59DBA31F4AAC8CD0A177CF5020", - "end_addr" : "0x7fff91075000", - "filename" : "/usr/lib/system/libsystem_networkextension.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff91075000", - "code_id" : "id", - "debug_file" : "Mangrove", - "debug_id" : "7CA6F485F7A5301C9F144C667EF8B2F30", - "end_addr" : "0x7fff91079000", - "filename" : "/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff91079000", - "code_id" : "id", - "debug_file" : "XPCService", - "debug_id" : "E50F12068B6B3CDBBC66E5B70B4B41C70", - "end_addr" : "0x7fff91080000", - "filename" : "/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff910dd000", - "code_id" : "id", - "debug_file" : "vImage", - "debug_id" : "7CBF4A5AFA053577BFB4133E0BDF5EDA0", - "end_addr" : "0x7fff9159c000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage", - "version" : "0.317.2.0" - }, - { - "base_addr" : "0x7fff9159c000", - "code_id" : "id", - "debug_file" : "CoreAVCHD", - "debug_id" : "56AA41E62F6031D8B5062D4A5C341C770", - "end_addr" : "0x7fff915cd000", - "filename" : "/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD", - "version" : "0.5800.0.0" - }, - { - "base_addr" : "0x7fff915cd000", - "code_id" : "id", - "debug_file" : "DebugSymbols", - "debug_id" : "6F5853A15DA83C428E022B972F34BCE00", - "end_addr" : "0x7fff91608000", - "filename" : "/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols", - "version" : "0.132.0.0" - }, - { - "base_addr" : "0x7fff91608000", - "code_id" : "id", - "debug_file" : "TCC", - "debug_id" : "8D7468B6D5A33BF9BD98E8087AF0B61B0", - "end_addr" : "0x7fff9160e000", - "filename" : "/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9165a000", - "code_id" : "id", - "debug_file" : "CoreServices", - "debug_id" : "208E32DAE7D93B4FA545EE2BFB53696D0", - "end_addr" : "0x7fff9165b000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices", - "version" : "0.728.4.0" - }, - { - "base_addr" : "0x7fff916d8000", - "code_id" : "id", - "debug_file" : "libiconv.2.dylib", - "debug_id" : "82529E3B0485344C807583C7725D6A6F0", - "end_addr" : "0x7fff917cb000", - "filename" : "/usr/lib/libiconv.2.dylib", - "version" : "0.7.0.0" - }, - { - "base_addr" : "0x7fff917cb000", - "code_id" : "id", - "debug_file" : "libLAPACK.dylib", - "debug_id" : "BDADCDAE1FD83190B9DDDB671495EEE20", - "end_addr" : "0x7fff91bce000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff91bfc000", - "code_id" : "id", - "debug_file" : "DataDetectorsCore", - "debug_id" : "65672990505F3B1D87FB42BE532A4D070", - "end_addr" : "0x7fff91c6c000", - "filename" : "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore", - "version" : "0.460.0.0" - }, - { - "base_addr" : "0x7fff91db8000", - "code_id" : "id", - "debug_file" : "QD", - "debug_id" : "46969760B02A3ED5B8BCD6144939B16E0", - "end_addr" : "0x7fff91df3000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD", - "version" : "0.302.0.0" - }, - { - "base_addr" : "0x7fff92384000", - "code_id" : "id", - "debug_file" : "libkxld.dylib", - "debug_id" : "D38002C3A391361BACD35FF2EDA51EDC0", - "end_addr" : "0x7fff92390000", - "filename" : "/usr/lib/system/libkxld.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff923d4000", - "code_id" : "id", - "debug_file" : "libicucore.A.dylib", - "debug_id" : "DEB70F32DA94323BB6D103D09C8FB10C0", - "end_addr" : "0x7fff925e2000", - "filename" : "/usr/lib/libicucore.A.dylib", - "version" : "0.55.1.0" - }, - { - "base_addr" : "0x7fff925e2000", - "code_id" : "id", - "debug_file" : "ChunkingLibrary", - "debug_id" : "C22F50387354330F8F3836F187E6A4B10", - "end_addr" : "0x7fff9260a000", - "filename" : "/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary", - "version" : "0.167.0.0" - }, - { - "base_addr" : "0x7fff9260a000", - "code_id" : "id", - "debug_file" : "IOAccelerator", - "debug_id" : "68212F3D7660339189CA99363ED9AB4D0", - "end_addr" : "0x7fff92611000", - "filename" : "/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff92614000", - "code_id" : "id", - "debug_file" : "MultitouchSupport", - "debug_id" : "650FA404DC2C365E8373218F1D765D350", - "end_addr" : "0x7fff92639000", - "filename" : "/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport", - "version" : "0.304.9.0" - }, - { - "base_addr" : "0x7fff92639000", - "code_id" : "id", - "debug_file" : "liblangid.dylib", - "debug_id" : "EAC09BF05E883060AA51EC71B4D26F3C0", - "end_addr" : "0x7fff9263b000", - "filename" : "/usr/lib/liblangid.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9263b000", - "code_id" : "id", - "debug_file" : "LangAnalysis", - "debug_id" : "E7D610A114453CA3B9A1EE15D54B75AB0", - "end_addr" : "0x7fff9264b000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9264b000", - "code_id" : "id", - "debug_file" : "LDAP", - "debug_id" : "207E4A14E3CC3658ABAFB5CAEC9ED1EB0", - "end_addr" : "0x7fff92683000", - "filename" : "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", - "version" : "0.2.4.0" - }, - { - "base_addr" : "0x7fff92683000", - "code_id" : "id", - "debug_file" : "FindMyDevice", - "debug_id" : "28CE764F4C4C3A75B7AEEDBC7A189E820", - "end_addr" : "0x7fff9268d000", - "filename" : "/System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff926d8000", - "code_id" : "id", - "debug_file" : "FaceCore", - "debug_id" : "D02FBB0342A53E7583C1F563B1E3258F0", - "end_addr" : "0x7fff92b07000", - "filename" : "/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore", - "version" : "0.3.3.1" - }, - { - "base_addr" : "0x7fff92b16000", - "code_id" : "id", - "debug_file" : "libFontRegistry.dylib", - "debug_id" : "BC1B3AD549273AB794FFCD93BF895D980", - "end_addr" : "0x7fff92b5c000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff92bca000", - "code_id" : "id", - "debug_file" : "libsystem_c.dylib", - "debug_id" : "A60CE86D1FF332ADA672C7597F8845290", - "end_addr" : "0x7fff92c58000", - "filename" : "/usr/lib/system/libsystem_c.dylib", - "version" : "0.1081.1.3" - }, - { - "base_addr" : "0x7fff92c58000", - "code_id" : "id", - "debug_file" : "HIServices", - "debug_id" : "19389B63C37331AE91803A11093EAE580", - "end_addr" : "0x7fff92ca5000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices", - "version" : "0.548.0.0" - }, - { - "base_addr" : "0x7fff92cde000", - "code_id" : "id", - "debug_file" : "libMatch.1.dylib", - "debug_id" : "D8024E9A795B30FCBCE7DB1E20889AB90", - "end_addr" : "0x7fff92ce7000", - "filename" : "/usr/lib/libMatch.1.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff92d26000", - "code_id" : "id", - "debug_file" : "libOpenScriptingUtil.dylib", - "debug_id" : "5C4A51D409A932098E5715F112725CC40", - "end_addr" : "0x7fff92d27000", - "filename" : "/usr/lib/libOpenScriptingUtil.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff92d27000", - "code_id" : "id", - "debug_file" : "CoreWLAN", - "debug_id" : "3CA2F32A4FBF39ED83ECF2E3C43D37750", - "end_addr" : "0x7fff92d92000", - "filename" : "/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff92d92000", - "code_id" : "id", - "debug_file" : "CoreSymbolication", - "debug_id" : "CC7CAE84DEC63184B841559DBE97D0250", - "end_addr" : "0x7fff92e1b000", - "filename" : "/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication", - "version" : "0.58048.1.0" - }, - { - "base_addr" : "0x7fff92e22000", - "code_id" : "id", - "debug_file" : "libsqlite3.dylib", - "debug_id" : "6ED840B7716E3CA9BBA07BE4B6E85A4F0", - "end_addr" : "0x7fff92f40000", - "filename" : "/usr/lib/libsqlite3.dylib", - "version" : "0.216.0.0" - }, - { - "base_addr" : "0x7fff92f4c000", - "code_id" : "id", - "debug_file" : "libobjc.A.dylib", - "debug_id" : "CE3C3C78A7BB3147837555424032FF5E0", - "end_addr" : "0x7fff932b7000", - "filename" : "/usr/lib/libobjc.A.dylib", - "version" : "0.228.0.0" - }, - { - "base_addr" : "0x7fff932b7000", - "code_id" : "id", - "debug_file" : "libpam.2.dylib", - "debug_id" : "7F986CE8EF743BC3BB7E5267E24EAFFE0", - "end_addr" : "0x7fff932bc000", - "filename" : "/usr/lib/libpam.2.dylib", - "version" : "0.3.0.0" - }, - { - "base_addr" : "0x7fff932bc000", - "code_id" : "id", - "debug_file" : "CoreMediaIO", - "debug_id" : "999CED97277737EF8425F25B1B1F5A040", - "end_addr" : "0x7fff93308000", - "filename" : "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff93340000", - "code_id" : "id", - "debug_file" : "CoreMediaAuthoring", - "debug_id" : "82B6246361253B03AA578724E13C7F410", - "end_addr" : "0x7fff93357000", - "filename" : "/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff933e9000", - "code_id" : "id", - "debug_file" : "TrustEvaluationAgent", - "debug_id" : "BC19A1D1805B3FC5BF0B1EF6FB36FE740", - "end_addr" : "0x7fff933eb000", - "filename" : "/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent", - "version" : "0.25.0.0" - }, - { - "base_addr" : "0x7fff9353e000", - "code_id" : "id", - "debug_file" : "libsystem_configuration.dylib", - "debug_id" : "EB55C3D8048D350EBF240CBD4479D51C0", - "end_addr" : "0x7fff93541000", - "filename" : "/usr/lib/system/libsystem_configuration.dylib", - "version" : "0.801.1.1" - }, - { - "base_addr" : "0x7fff9356c000", - "code_id" : "id", - "debug_file" : "libJP2.dylib", - "debug_id" : "FB66F0981365378D88E80008BA72CA6F0", - "end_addr" : "0x7fff9365f000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9365f000", - "code_id" : "id", - "debug_file" : "libSparseBLAS.dylib", - "debug_id" : "C10D35D23D3D3EB08215527BD1F1F3E00", - "end_addr" : "0x7fff93670000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff93670000", - "code_id" : "id", - "debug_file" : "libsystem_malloc.dylib", - "debug_id" : "1B57A6143D603F87876F7DB4AF38120F0", - "end_addr" : "0x7fff9368d000", - "filename" : "/usr/lib/system/libsystem_malloc.dylib", - "version" : "0.67.0.0" - }, - { - "base_addr" : "0x7fff9368d000", - "code_id" : "id", - "debug_file" : "AppleVPA", - "debug_id" : "2847B765B0A93D74BDEF556795270AE10", - "end_addr" : "0x7fff936ab000", - "filename" : "/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff936d1000", - "code_id" : "id", - "debug_file" : "CoreWiFi", - "debug_id" : "537EFC2F3A2336D793208834D51EB2430", - "end_addr" : "0x7fff93739000", - "filename" : "/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff93fc0000", - "code_id" : "id", - "debug_file" : "ImageIO", - "debug_id" : "1C0E4F9F375D305BA8E5DE8D4C4B8A800", - "end_addr" : "0x7fff9418a000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94192000", - "code_id" : "id", - "debug_file" : "CoreDaemon", - "debug_id" : "B0028247B33336F580988EC95E6C2B230", - "end_addr" : "0x7fff9419b000", - "filename" : "/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon", - "version" : "0.3.0.0" - }, - { - "base_addr" : "0x7fff9419b000", - "code_id" : "id", - "debug_file" : "OpenDirectory", - "debug_id" : "E0F63D6023C83FB7BA785BD8613543520", - "end_addr" : "0x7fff941a8000", - "filename" : "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94488000", - "code_id" : "id", - "debug_file" : "libsystem_dnssd.dylib", - "debug_id" : "DB6AB2064AD8369DBF571D246AD605820", - "end_addr" : "0x7fff94491000", - "filename" : "/usr/lib/system/libsystem_dnssd.dylib", - "version" : "0.624.1.2" - }, - { - "base_addr" : "0x7fff94491000", - "code_id" : "id", - "debug_file" : "DiskArbitration", - "debug_id" : "B391A88512863718A3418C84560DDE580", - "end_addr" : "0x7fff94497000", - "filename" : "/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff944a4000", - "code_id" : "id", - "debug_file" : "libkeymgr.dylib", - "debug_id" : "470802808B573D758A209E100864DE270", - "end_addr" : "0x7fff944a5000", - "filename" : "/usr/lib/system/libkeymgr.dylib", - "version" : "0.28.0.0" - }, - { - "base_addr" : "0x7fff944a5000", - "code_id" : "id", - "debug_file" : "libcommonCrypto.dylib", - "debug_id" : "BD1DCF1983533F6AAFFAEBBA29A302A80", - "end_addr" : "0x7fff944b1000", - "filename" : "/usr/lib/system/libcommonCrypto.dylib", - "version" : "0.60074.0.0" - }, - { - "base_addr" : "0x7fff944e5000", - "code_id" : "id", - "debug_file" : "libmecabra.dylib", - "debug_id" : "55386F90726038ECBA418978659449080", - "end_addr" : "0x7fff94779000", - "filename" : "/usr/lib/libmecabra.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9479f000", - "code_id" : "id", - "debug_file" : "LaunchServices", - "debug_id" : "78774CB9B206360FBC9F2ACA698118140", - "end_addr" : "0x7fff948c5000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices", - "version" : "0.728.4.0" - }, - { - "base_addr" : "0x7fff948c5000", - "code_id" : "id", - "debug_file" : "libcldcpuengine.dylib", - "debug_id" : "C33F593F44DB38D38D70380FC401E7620", - "end_addr" : "0x7fff948ce000", - "filename" : "/System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib", - "version" : "0.2.6.4" - }, - { - "base_addr" : "0x7fff94946000", - "code_id" : "id", - "debug_file" : "Heimdal", - "debug_id" : "2D358FB461BB3BB69EF7D9868A0B02750", - "end_addr" : "0x7fff949ba000", - "filename" : "/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff949d5000", - "code_id" : "id", - "debug_file" : "libodfde.dylib", - "debug_id" : "B2194A773D293CE29D96F8986A1989800", - "end_addr" : "0x7fff949d7000", - "filename" : "/usr/lib/libodfde.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94a40000", - "code_id" : "id", - "debug_file" : "libJPEG.dylib", - "debug_id" : "3A9FA6E4C315357E984AB00565F8FD820", - "end_addr" : "0x7fff94a65000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94a65000", - "code_id" : "id", - "debug_file" : "GLRendererFloat", - "debug_id" : "E6788BC587DA3A03A1D2810851D07AA40", - "end_addr" : "0x7fff94a90000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat", - "version" : "0.65535.0.0" - }, - { - "base_addr" : "0x7fff94b89000", - "code_id" : "id", - "debug_file" : "libdyld.dylib", - "debug_id" : "F9D64D8C4C333D06B7F8697F132928940", - "end_addr" : "0x7fff94b8d000", - "filename" : "/usr/lib/system/libdyld.dylib", - "version" : "0.360.14.0" - }, - { - "base_addr" : "0x7fff94b8d000", - "code_id" : "id", - "debug_file" : "libxslt.1.dylib", - "debug_id" : "412A09C97C02351EA4162453361EACA90", - "end_addr" : "0x7fff94bb7000", - "filename" : "/usr/lib/libxslt.1.dylib", - "version" : "0.3.26.0" - }, - { - "base_addr" : "0x7fff94dcb000", - "code_id" : "id", - "debug_file" : "libGLU.dylib", - "debug_id" : "4F500E4033FD3EFF8513E553E3B4D5600", - "end_addr" : "0x7fff94e0d000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94ec4000", - "code_id" : "id", - "debug_file" : "libspindump.dylib", - "debug_id" : "D55A6D6B7B7D3D15AC6C73DE9954C6710", - "end_addr" : "0x7fff94ec8000", - "filename" : "/usr/lib/libspindump.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff94ed7000", - "code_id" : "id", - "debug_file" : "Kerberos", - "debug_id" : "D2F0BF9486563FBF81AC43D417B661F10", - "end_addr" : "0x7fff94ef2000", - "filename" : "/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos", - "version" : "0.6.0.0" - }, - { - "base_addr" : "0x7fff94ef2000", - "code_id" : "id", - "debug_file" : "IconServices", - "debug_id" : "9F8B91848DA83B7A970B3086DDD1CC6F0", - "end_addr" : "0x7fff94f15000", - "filename" : "/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices", - "version" : "0.68.0.0" - }, - { - "base_addr" : "0x7fff94f15000", - "code_id" : "id", - "debug_file" : "libRIP.A.dylib", - "debug_id" : "DB727879E42B33C5B1FFCC34CDFBF0170", - "end_addr" : "0x7fff94f3f000", - "filename" : "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib", - "version" : "0.600.0.0" - }, - { - "base_addr" : "0x7fff94f65000", - "code_id" : "id", - "debug_file" : "libcompiler_rt.dylib", - "debug_id" : "253B36E5572D377DAE99A02CE32590E50", - "end_addr" : "0x7fff94f6d000", - "filename" : "/usr/lib/system/libcompiler_rt.dylib", - "version" : "0.62.0.0" - }, - { - "base_addr" : "0x7fff94fda000", - "code_id" : "id", - "debug_file" : "CoreAUC", - "debug_id" : "36675355FEF43DC09734AE6F125883C20", - "end_addr" : "0x7fff953b3000", - "filename" : "/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff953b6000", - "code_id" : "id", - "debug_file" : "AppContainer", - "debug_id" : "6F31BB330D513A4DA7DD42446BF43DA00", - "end_addr" : "0x7fff953cc000", - "filename" : "/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff953ee000", - "code_id" : "id", - "debug_file" : "CoreUI", - "debug_id" : "1F30C00690583B399DC3594FDB1081740", - "end_addr" : "0x7fff95536000", - "filename" : "/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI", - "version" : "0.362.0.0" - }, - { - "base_addr" : "0x7fff95583000", - "code_id" : "id", - "debug_file" : "CoreImage", - "debug_id" : "8FEAE2371EBA3058B4B3BB36F6640F440", - "end_addr" : "0x7fff95790000", - "filename" : "/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage", - "version" : "0.2.0.0" - }, - { - "base_addr" : "0x7fff95827000", - "code_id" : "id", - "debug_file" : "liblzma.5.dylib", - "debug_id" : "8CD1828649EA31E48A731BF8DECED6C60", - "end_addr" : "0x7fff95842000", - "filename" : "/usr/lib/liblzma.5.dylib", - "version" : "0.6.3.0" - }, - { - "base_addr" : "0x7fff95842000", - "code_id" : "id", - "debug_file" : "Shortcut", - "debug_id" : "F6E559D940BE3CC9BB16E71300C77F8A0", - "end_addr" : "0x7fff9586a000", - "filename" : "/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut", - "version" : "0.93.0.0" - }, - { - "base_addr" : "0x7fff9586a000", - "code_id" : "id", - "debug_file" : "libxml2.2.dylib", - "debug_id" : "0702E13CD7263DAFB0D177F7B9EF6A370", - "end_addr" : "0x7fff9595a000", - "filename" : "/usr/lib/libxml2.2.dylib", - "version" : "0.10.9.0" - }, - { - "base_addr" : "0x7fff95962000", - "code_id" : "id", - "debug_file" : "CoreServicesInternal", - "debug_id" : "EAD7A7B3D7753E4C98B836D0477959930", - "end_addr" : "0x7fff95991000", - "filename" : "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal", - "version" : "0.248.0.0" - }, - { - "base_addr" : "0x7fff95991000", - "code_id" : "id", - "debug_file" : "libGIF.dylib", - "debug_id" : "5A5C6F14D41E3C909AEEE94DA9124E8D0", - "end_addr" : "0x7fff95996000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff95996000", - "code_id" : "id", - "debug_file" : "vecLib", - "debug_id" : "715465E1283F3A84B52273E32D4F07550", - "end_addr" : "0x7fff95997000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib", - "version" : "0.563.3.0" - }, - { - "base_addr" : "0x7fff95997000", - "code_id" : "id", - "debug_file" : "LoginUICore", - "debug_id" : "6DCEED7A529B3AFD8F8397A40B56E4D90", - "end_addr" : "0x7fff9599c000", - "filename" : "/System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff959b1000", - "code_id" : "id", - "debug_file" : "libCoreVMClient.dylib", - "debug_id" : "3B709F2E35BA3D969324E56AF5F68E500", - "end_addr" : "0x7fff959b5000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff95c02000", - "code_id" : "id", - "debug_file" : "Metadata", - "debug_id" : "83FB4CDD29DE3DAD8FEBFD9E9474576F0", - "end_addr" : "0x7fff95ca3000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata", - "version" : "0.972.9.0" - }, - { - "base_addr" : "0x7fff95ca3000", - "code_id" : "id", - "debug_file" : "MediaKit", - "debug_id" : "6F40D74C7F2C3693AF8063365A6F76800", - "end_addr" : "0x7fff95cd7000", - "filename" : "/System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit", - "version" : "0.807.0.0" - }, - { - "base_addr" : "0x7fff95eaf000", - "code_id" : "id", - "debug_file" : "CoreAudio", - "debug_id" : "E9B6EFBAF6EA3F208C9153EC7D4647730", - "end_addr" : "0x7fff95f01000", - "filename" : "/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff95f45000", - "code_id" : "id", - "debug_file" : "libresolv.9.dylib", - "debug_id" : "B192EC2784EC3D8A9CBF0374B5C9B31A0", - "end_addr" : "0x7fff95f62000", - "filename" : "/usr/lib/libresolv.9.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff95f62000", - "code_id" : "id", - "debug_file" : "PerformanceAnalysis", - "debug_id" : "E7C53B84558F39EA949C82F4163F6F140", - "end_addr" : "0x7fff95fec000", - "filename" : "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff95ff2000", - "code_id" : "id", - "debug_file" : "OpenGL", - "debug_id" : "7D63C884AF3D3167ABCEF7EEBDF9762B0", - "end_addr" : "0x7fff96001000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96039000", - "code_id" : "id", - "debug_file" : "QuartzCore", - "debug_id" : "3DDB2E3A690232168DC456ED16B7C6980", - "end_addr" : "0x7fff96208000", - "filename" : "/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore", - "version" : "0.1.11.0" - }, - { - "base_addr" : "0x7fff96208000", - "code_id" : "id", - "debug_file" : "loginsupport", - "debug_id" : "07F03548C89E3082B1706D03D839B5510", - "end_addr" : "0x7fff9620b000", - "filename" : "/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96741000", - "code_id" : "id", - "debug_file" : "NetFS", - "debug_id" : "5602F3EB64F63495BEF0988F929742340", - "end_addr" : "0x7fff9674a000", - "filename" : "/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96779000", - "code_id" : "id", - "debug_file" : "DesktopServicesPriv", - "debug_id" : "76AA21FE0F96366A9B436188FBC29ABE0", - "end_addr" : "0x7fff96888000", - "filename" : "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv", - "version" : "0.808.0.0" - }, - { - "base_addr" : "0x7fff96888000", - "code_id" : "id", - "debug_file" : "libcmph.dylib", - "debug_id" : "438802509C2D395C90C7CCCE109FF1B20", - "end_addr" : "0x7fff9689a000", - "filename" : "/usr/lib/libcmph.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9689a000", - "code_id" : "id", - "debug_file" : "libsystem_trace.dylib", - "debug_id" : "E26A91EAAD673FA2A3B679A93DCC716E0", - "end_addr" : "0x7fff968ac000", - "filename" : "/usr/lib/system/libsystem_trace.dylib", - "version" : "0.200.0.0" - }, - { - "base_addr" : "0x7fff968c7000", - "code_id" : "id", - "debug_file" : "libenergytrace.dylib", - "debug_id" : "64F779D4219237EC8DB5EC55BAE500580", - "end_addr" : "0x7fff968c8000", - "filename" : "/usr/lib/libenergytrace.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff968c8000", - "code_id" : "id", - "debug_file" : "Sharing", - "debug_id" : "10C4A9FA47C937D9A60AC27CC57A25390", - "end_addr" : "0x7fff968ea000", - "filename" : "/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing", - "version" : "0.438.0.1" - }, - { - "base_addr" : "0x7fff968ea000", - "code_id" : "id", - "debug_file" : "libcups.2.dylib", - "debug_id" : "FA565876F9B230218E896D665ED01B3D0", - "end_addr" : "0x7fff9693b000", - "filename" : "/usr/lib/libcups.2.dylib", - "version" : "0.2.11.0" - }, - { - "base_addr" : "0x7fff9693b000", - "code_id" : "id", - "debug_file" : "libDiagnosticMessagesClient.dylib", - "debug_id" : "F2D8CFCCA00A36759C01EF0C663F24450", - "end_addr" : "0x7fff9693d000", - "filename" : "/usr/lib/libDiagnosticMessagesClient.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96956000", - "code_id" : "id", - "debug_file" : "IOKit", - "debug_id" : "B30239A0B11E36E9AB492C53942A64470", - "end_addr" : "0x7fff969ca000", - "filename" : "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", - "version" : "0.275.0.0" - }, - { - "base_addr" : "0x7fff969e8000", - "code_id" : "id", - "debug_file" : "DiskImages", - "debug_id" : "AF08B107F65D36DD9B94A0C868C300BC0", - "end_addr" : "0x7fff96abf000", - "filename" : "/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages", - "version" : "0.414.0.0" - }, - { - "base_addr" : "0x7fff96adc000", - "code_id" : "id", - "debug_file" : "CrashReporterSupport", - "debug_id" : "D0D22E004DA03AEF85220814F90706660", - "end_addr" : "0x7fff96ae8000", - "filename" : "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport", - "version" : "0.715.0.0" - }, - { - "base_addr" : "0x7fff96b3d000", - "code_id" : "id", - "debug_file" : "DirectoryService", - "debug_id" : "AE493A5FE11239C4AD7A3E740A21AB420", - "end_addr" : "0x7fff96b49000", - "filename" : "/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96bb4000", - "code_id" : "id", - "debug_file" : "libsystem_platform.dylib", - "debug_id" : "3F4D2390E3DE3C24A51595DFAC8671C40", - "end_addr" : "0x7fff96bbd000", - "filename" : "/usr/lib/system/libsystem_platform.dylib", - "version" : "0.73.1.1" - }, - { - "base_addr" : "0x7fff96bbd000", - "code_id" : "id", - "debug_file" : "SecCodeWrapper", - "debug_id" : "2CAEF3174FB13A88BF83975469C7F2720", - "end_addr" : "0x7fff96bc0000", - "filename" : "/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96bc0000", - "code_id" : "id", - "debug_file" : "AppleSRP", - "debug_id" : "8DBB11A2150A3E708B83DDEDAB15E2C30", - "end_addr" : "0x7fff96bc9000", - "filename" : "/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96c07000", - "code_id" : "id", - "debug_file" : "libRadiance.dylib", - "debug_id" : "C3F42E9028EC3DB3B9078D403D3B505A0", - "end_addr" : "0x7fff96c0a000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96c0a000", - "code_id" : "id", - "debug_file" : "libLinearAlgebra.dylib", - "debug_id" : "01BD9187521F3F96B47724511318AECD0", - "end_addr" : "0x7fff96c21000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff96c31000", - "code_id" : "id", - "debug_file" : "libxar.1.dylib", - "debug_id" : "898402AF0DF3341D83EA4A1B1770E7180", - "end_addr" : "0x7fff96c40000", - "filename" : "/usr/lib/libxar.1.dylib", - "version" : "0.1.3.0" - }, - { - "base_addr" : "0x7fff9704c000", - "code_id" : "id", - "debug_file" : "CoreVideo", - "debug_id" : "FA99D150EFCE3F32ACDF5E91AD97F1760", - "end_addr" : "0x7fff97081000", - "filename" : "/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo", - "version" : "0.1.5.0" - }, - { - "base_addr" : "0x7fff97081000", - "code_id" : "id", - "debug_file" : "libextension.dylib", - "debug_id" : "3A674BC18D7E3A6280EFF950B02CB0FF0", - "end_addr" : "0x7fff9709e000", - "filename" : "/usr/lib/libextension.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff970d2000", - "code_id" : "id", - "debug_file" : "IOSurface", - "debug_id" : "43D70E5A64F5384AA95E64253538C24F0", - "end_addr" : "0x7fff970d6000", - "filename" : "/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff971ed000", - "code_id" : "id", - "debug_file" : "libCRFSuite.dylib", - "debug_id" : "65E4DC91A9943921B5B0696123CE0C1E0", - "end_addr" : "0x7fff97209000", - "filename" : "/usr/lib/libCRFSuite.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff97209000", - "code_id" : "id", - "debug_file" : "ServiceManagement", - "debug_id" : "0EA1807B4F41317DA6C2E6A23F2012520", - "end_addr" : "0x7fff9720c000", - "filename" : "/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement", - "version" : "0.755.1.19" - }, - { - "base_addr" : "0x7fff9720c000", - "code_id" : "id", - "debug_file" : "SystemAdministration", - "debug_id" : "F17C889A632F394687F3B797C5F1ED750", - "end_addr" : "0x7fff97239000", - "filename" : "/System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff972e1000", - "code_id" : "id", - "debug_file" : "libGL.dylib", - "debug_id" : "C7196A5D3BC1301A9695A9122BC773B30", - "end_addr" : "0x7fff972ed000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9736f000", - "code_id" : "id", - "debug_file" : "OSServices", - "debug_id" : "FF34E0E4655931028833E93DF21C9A4F0", - "end_addr" : "0x7fff973cd000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices", - "version" : "0.728.4.0" - }, - { - "base_addr" : "0x7fff973cd000", - "code_id" : "id", - "debug_file" : "libGPUSupport.dylib", - "debug_id" : "9F87A5DFC79F3EB7866F0B6ABB814A090", - "end_addr" : "0x7fff973d9000", - "filename" : "/System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff973d9000", - "code_id" : "id", - "debug_file" : "ATS", - "debug_id" : "BCFC24A86ACA3B908896019F38A649F60", - "end_addr" : "0x7fff9744b000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS", - "version" : "0.236.0.0" - }, - { - "base_addr" : "0x7fff9744b000", - "code_id" : "id", - "debug_file" : "libncurses.5.4.dylib", - "debug_id" : "766F2188F5233FAAAC1F49447F09E1330", - "end_addr" : "0x7fff9747d000", - "filename" : "/usr/lib/libncurses.5.4.dylib", - "version" : "0.5.4.0" - }, - { - "base_addr" : "0x7fff9747d000", - "code_id" : "id", - "debug_file" : "libsystem_coretls.dylib", - "debug_id" : "21EDACF1D9B33086982160EB75E7F9650", - "end_addr" : "0x7fff97492000", - "filename" : "/usr/lib/system/libsystem_coretls.dylib", - "version" : "0.82.0.0" - }, - { - "base_addr" : "0x7fff97492000", - "code_id" : "id", - "debug_file" : "libSystem.B.dylib", - "debug_id" : "E48AAE3F370E34AEAECA4CA28F2114790", - "end_addr" : "0x7fff97494000", - "filename" : "/usr/lib/libSystem.B.dylib", - "version" : "0.1225.1.1" - }, - { - "base_addr" : "0x7fff97494000", - "code_id" : "id", - "debug_file" : "libCGXType.A.dylib", - "debug_id" : "F52AC9F6BC6738859864CDC00D9DD0AB0", - "end_addr" : "0x7fff97497000", - "filename" : "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib", - "version" : "0.600.0.0" - }, - { - "base_addr" : "0x7fff97497000", - "code_id" : "id", - "debug_file" : "libCVMSPluginSupport.dylib", - "debug_id" : "362384906F3535CAB0B84032ABA7C5370", - "end_addr" : "0x7fff9749a000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff977a7000", - "code_id" : "id", - "debug_file" : "HelpData", - "debug_id" : "1729564071FE3D5A887A751D110E06300", - "end_addr" : "0x7fff977b4000", - "filename" : "/System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9797e000", - "code_id" : "id", - "debug_file" : "libheimdal-asn1.dylib", - "debug_id" : "6E9119731E1A3F80B955FA78CF20FBFD0", - "end_addr" : "0x7fff97984000", - "filename" : "/usr/lib/libheimdal-asn1.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff979fe000", - "code_id" : "id", - "debug_file" : "libquarantine.dylib", - "debug_id" : "1693C5FEEA0A312285EB7950ECC7435A0", - "end_addr" : "0x7fff97a01000", - "filename" : "/usr/lib/system/libquarantine.dylib", - "version" : "0.80.0.0" - }, - { - "base_addr" : "0x7fff97a68000", - "code_id" : "id", - "debug_file" : "libGLProgrammability.dylib", - "debug_id" : "262333CB088F3375882755FFFF893E790", - "end_addr" : "0x7fff97bf5000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff97d42000", - "code_id" : "id", - "debug_file" : "libcopyfile.dylib", - "debug_id" : "CA2602ABE8B73CD8A0C5D86E35FDA09F0", - "end_addr" : "0x7fff97d4b000", - "filename" : "/usr/lib/system/libcopyfile.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff980a3000", - "code_id" : "id", - "debug_file" : "libcurl.4.dylib", - "debug_id" : "00662A4CB89A3A1793FF950C6DE47F990", - "end_addr" : "0x7fff980f2000", - "filename" : "/usr/lib/libcurl.4.dylib", - "version" : "0.8.0.0" - }, - { - "base_addr" : "0x7fff980fc000", - "code_id" : "id", - "debug_file" : "CoreData", - "debug_id" : "7934FDB8526E32F4BE2055388DB8CCBF0", - "end_addr" : "0x7fff983a3000", - "filename" : "/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData", - "version" : "0.640.0.0" - }, - { - "base_addr" : "0x7fff983a3000", - "code_id" : "id", - "debug_file" : "libsystem_secinit.dylib", - "debug_id" : "932ED582E80F39DAB0FAF1BC5F1AD2F80", - "end_addr" : "0x7fff983a5000", - "filename" : "/usr/lib/system/libsystem_secinit.dylib", - "version" : "0.20.0.0" - }, - { - "base_addr" : "0x7fff98477000", - "code_id" : "id", - "debug_file" : "libremovefile.dylib", - "debug_id" : "C7CFF5F2AFFB3C8DBDB4D66D50E657C00", - "end_addr" : "0x7fff98479000", - "filename" : "/usr/lib/system/libremovefile.dylib", - "version" : "0.41.0.0" - }, - { - "base_addr" : "0x7fff9848e000", - "code_id" : "id", - "debug_file" : "libBLAS.dylib", - "debug_id" : "4A01C32E452C314CB878E301D4998C680", - "end_addr" : "0x7fff9864f000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9864f000", - "code_id" : "id", - "debug_file" : "libmetal_timestamp.dylib", - "debug_id" : "C8548755D695380D991EA94484084B6E0", - "end_addr" : "0x7fff98650000", - "filename" : "/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x7fff9865d000", - "code_id" : "id", - "debug_file" : "libsystem_asl.dylib", - "debug_id" : "97D794DA8CE53676AC5E364F6D172BDA0", - "end_addr" : "0x7fff98675000", - "filename" : "/usr/lib/system/libsystem_asl.dylib", - "version" : "0.322.0.0" - }, - { - "base_addr" : "0x7fff986b8000", - "code_id" : "id", - "debug_file" : "Carbon", - "debug_id" : "DF95E7EB1CFC3C83B11460FFEEAE166E0", - "end_addr" : "0x7fff986b9000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon", - "version" : "0.157.0.0" - }, - { - "base_addr" : "0x7fff986c3000", - "code_id" : "id", - "debug_file" : "libmacho.dylib", - "debug_id" : "A9EC23EC11A03B4FA8ACB990C8267A6E0", - "end_addr" : "0x7fff986c9000", - "filename" : "/usr/lib/system/libmacho.dylib", - "version" : "0.875.1.0" - }, - { - "base_addr" : "0x7fff9870c000", - "code_id" : "id", - "debug_file" : "libCoreStorage.dylib", - "debug_id" : "753BB57862C636F8B36672EF7742D42B0", - "end_addr" : "0x7fff98799000", - "filename" : "/usr/lib/libCoreStorage.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98799000", - "code_id" : "id", - "debug_file" : "Apple80211", - "debug_id" : "7A0350BD18E038F380F2EABD1643BA2D0", - "end_addr" : "0x7fff987b9000", - "filename" : "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9880f000", - "code_id" : "id", - "debug_file" : "AppleJPEG", - "debug_id" : "6230F3A0C89D3A35A896A17B3513E8DB0", - "end_addr" : "0x7fff9889d000", - "filename" : "/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98903000", - "code_id" : "id", - "debug_file" : "CarbonCore", - "debug_id" : "9DE930A363C03E21965A132D97D618920", - "end_addr" : "0x7fff98be9000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore", - "version" : "0.1136.0.0" - }, - { - "base_addr" : "0x7fff98be9000", - "code_id" : "id", - "debug_file" : "unorm8_bgra.dylib", - "debug_id" : "28F838EA19E5372499FFB61132555D090", - "end_addr" : "0x7fff98cd0000", - "filename" : "/System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98cea000", - "code_id" : "id", - "debug_file" : "FamilyControls", - "debug_id" : "941D3CE9826F38C9A5536F44435ADFF60", - "end_addr" : "0x7fff98d0d000", - "filename" : "/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98d0d000", - "code_id" : "id", - "debug_file" : "ApplicationServices", - "debug_id" : "B5326BD2AF173880A8C53C990AE4A1C80", - "end_addr" : "0x7fff98d0e000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices", - "version" : "0.48.0.0" - }, - { - "base_addr" : "0x7fff98d0e000", - "code_id" : "id", - "debug_file" : "libScreenReader.dylib", - "debug_id" : "1DCA43B7C1BA3A17B69D6F0491F648C00", - "end_addr" : "0x7fff98d12000", - "filename" : "/usr/lib/libScreenReader.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98d12000", - "code_id" : "id", - "debug_file" : "ColorSync", - "debug_id" : "AA8AD09817923803926B6A9DAC9CCF9A0", - "end_addr" : "0x7fff98da9000", - "filename" : "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync", - "version" : "0.4.7.0" - }, - { - "base_addr" : "0x7fff98da9000", - "code_id" : "id", - "debug_file" : "libcsfde.dylib", - "debug_id" : "833409800FC233DCB98B562C4842568E0", - "end_addr" : "0x7fff98db5000", - "filename" : "/usr/lib/libcsfde.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff98db5000", - "code_id" : "id", - "debug_file" : "libauto.dylib", - "debug_id" : "460B0167C89B37EC823C52F684B31C260", - "end_addr" : "0x7fff98dfc000", - "filename" : "/usr/lib/libauto.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff99085000", - "code_id" : "id", - "debug_file" : "SpeechRecognition", - "debug_id" : "433F8745874A39B3A7C62EDA8C2C6B4A0", - "end_addr" : "0x7fff9908c000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff990be000", - "code_id" : "id", - "debug_file" : "DiscRecording", - "debug_id" : "9E68D2AF72053764B0518F112AFA82080", - "end_addr" : "0x7fff99179000", - "filename" : "/System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff99179000", - "code_id" : "id", - "debug_file" : "libGFXShared.dylib", - "debug_id" : "011CCF063F8D3695A60FE67F72FF15830", - "end_addr" : "0x7fff99182000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff99182000", - "code_id" : "id", - "debug_file" : "GLEngine", - "debug_id" : "371C7E4408C731E5AD27E48281C2755E0", - "end_addr" : "0x7fff9932e000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine", - "version" : "0.65535.0.0" - }, - { - "base_addr" : "0x7fff993a8000", - "code_id" : "id", - "debug_file" : "libsystem_m.dylib", - "debug_id" : "07D5037230ED3B039FA00662BF8F00980", - "end_addr" : "0x7fff993d8000", - "filename" : "/usr/lib/system/libsystem_m.dylib", - "version" : "0.3105.0.0" - }, - { - "base_addr" : "0x7fff993d8000", - "code_id" : "id", - "debug_file" : "CoreFoundation", - "debug_id" : "A8A44D66A3B23B5DB75BEC2DC968F4BD0", - "end_addr" : "0x7fff9984d000", - "filename" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", - "missing_symbols" : true, - "version" : "0.1253.0.0" - }, - { - "base_addr" : "0x7fff998e1000", - "code_id" : "id", - "debug_file" : "Symbolication", - "debug_id" : "BC1259C8C6713014A9C485BC767EA9620", - "end_addr" : "0x7fff99932000", - "filename" : "/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication", - "version" : "0.58044.0.0" - }, - { - "base_addr" : "0x7fff99932000", - "code_id" : "id", - "debug_file" : "QTKit", - "debug_id" : "C04A69AB93F93BB4BF561CD408183CE70", - "end_addr" : "0x7fff99a77000", - "filename" : "/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff99a7c000", - "code_id" : "id", - "debug_file" : "liblaunch.dylib", - "debug_id" : "7EC0F29743CC3D11B46B7E72E372648A0", - "end_addr" : "0x7fff99a7d000", - "filename" : "/usr/lib/system/liblaunch.dylib", - "version" : "0.755.1.19" - }, - { - "base_addr" : "0x7fff99a7d000", - "code_id" : "id", - "debug_file" : "Metal", - "debug_id" : "9000AE526638309E90A5CB18C83A0A0E0", - "end_addr" : "0x7fff99ac0000", - "filename" : "/System/Library/Frameworks/Metal.framework/Versions/A/Metal", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff99ac0000", - "code_id" : "id", - "debug_file" : "ImageCapture", - "debug_id" : "E53CC0B89D363636B6028AB4CEB4C3130", - "end_addr" : "0x7fff99ac6000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture", - "version" : "0.5.0.0" - }, - { - "base_addr" : "0x7fff99bfa000", - "code_id" : "id", - "debug_file" : "Ink", - "debug_id" : "F1B3B6C9FF8D3E6893EB8CDCEB65171A0", - "end_addr" : "0x7fff99c90000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink", - "version" : "0.214.0.0" - }, - { - "base_addr" : "0x7fff99c90000", - "code_id" : "id", - "debug_file" : "CoreGraphics", - "debug_id" : "58D776C41455305AA3EC645D418541CC0", - "end_addr" : "0x7fff9aef5000", - "filename" : "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics", - "missing_symbols" : true, - "version" : "0.600.0.0" - }, - { - "base_addr" : "0x7fff9aef5000", - "code_id" : "id", - "debug_file" : "libsasl2.2.dylib", - "debug_id" : "D48CE2C5D0C539BDA7DDC999E81CF8850", - "end_addr" : "0x7fff9af08000", - "filename" : "/usr/lib/libsasl2.2.dylib", - "version" : "0.3.15.0" - }, - { - "base_addr" : "0x7fff9af08000", - "code_id" : "id", - "debug_file" : "CFOpenDirectory", - "debug_id" : "64C5260319473350819E3A45F90360360", - "end_addr" : "0x7fff9af22000", - "filename" : "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9af49000", - "code_id" : "id", - "debug_file" : "libsystem_blocks.dylib", - "debug_id" : "1B4F1F10823E378181626884D14DF0D60", - "end_addr" : "0x7fff9af4b000", - "filename" : "/usr/lib/system/libsystem_blocks.dylib", - "version" : "0.65.0.0" - }, - { - "base_addr" : "0x7fff9bc54000", - "code_id" : "id", - "debug_file" : "libtidy.A.dylib", - "debug_id" : "917B771650603755A1BA435DAC06E7780", - "end_addr" : "0x7fff9bc86000", - "filename" : "/usr/lib/libtidy.A.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9bce9000", - "code_id" : "id", - "debug_file" : "libvMisc.dylib", - "debug_id" : "6FA62C6F47223A64811675A2B902989B0", - "end_addr" : "0x7fff9bda3000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib", - "version" : "0.563.3.0" - }, - { - "base_addr" : "0x7fff9beeb000", - "code_id" : "id", - "debug_file" : "LanguageModeling", - "debug_id" : "C405E993F0DF39E49B74FE310E63DD8E0", - "end_addr" : "0x7fff9bf93000", - "filename" : "/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9bfff000", - "code_id" : "id", - "debug_file" : "FSEvents", - "debug_id" : "79DF16A7E16938A5BF5E2D45F86DE1540", - "end_addr" : "0x7fff9c008000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents", - "version" : "0.1222.1.1" - }, - { - "base_addr" : "0x7fff9c008000", - "code_id" : "id", - "debug_file" : "RemoteViewServices", - "debug_id" : "8BD12AE2BE9137CF955B62E08551FF830", - "end_addr" : "0x7fff9c041000", - "filename" : "/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9c041000", - "code_id" : "id", - "debug_file" : "libcorecrypto.dylib", - "debug_id" : "4E1B969F84493B21988051AD58E25AA60", - "end_addr" : "0x7fff9c0b9000", - "filename" : "/usr/lib/system/libcorecrypto.dylib", - "version" : "0.334.0.0" - }, - { - "base_addr" : "0x7fff9c0b9000", - "code_id" : "id", - "debug_file" : "SecurityHI", - "debug_id" : "A46A58CBE0AA3EBDAABFA3B219A18ACF0", - "end_addr" : "0x7fff9c0bc000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI", - "version" : "0.55006.0.0" - }, - { - "base_addr" : "0x7fff9c0bc000", - "code_id" : "id", - "debug_file" : "libcache.dylib", - "debug_id" : "4948E2C8867F3E9DAAE72F30F0B345C60", - "end_addr" : "0x7fff9c0c1000", - "filename" : "/usr/lib/system/libcache.dylib", - "version" : "0.75.0.0" - }, - { - "base_addr" : "0x7fff9c0c1000", - "code_id" : "id", - "debug_file" : "libarchive.2.dylib", - "debug_id" : "731529D211783742AFE06CA8568FBB190", - "end_addr" : "0x7fff9c0ed000", - "filename" : "/usr/lib/libarchive.2.dylib", - "version" : "0.9.2.0" - }, - { - "base_addr" : "0x7fff9c0ed000", - "code_id" : "id", - "debug_file" : "libunwind.dylib", - "debug_id" : "FDA18078A7753BAFA5A68A7B75D6AA990", - "end_addr" : "0x7fff9c0f3000", - "filename" : "/usr/lib/system/libunwind.dylib", - "version" : "0.35.3.0" - }, - { - "base_addr" : "0x7fff9c0f3000", - "code_id" : "id", - "debug_file" : "libdispatch.dylib", - "debug_id" : "6B38497E944834339D6B6223F2A994310", - "end_addr" : "0x7fff9c121000", - "filename" : "/usr/lib/system/libdispatch.dylib", - "missing_symbols" : true, - "version" : "0.500.1.5" - }, - { - "base_addr" : "0x7fff9c121000", - "code_id" : "id", - "debug_file" : "SharedFileList", - "debug_id" : "072123062DBC303BB0424C02E70F073C0", - "end_addr" : "0x7fff9c167000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList", - "version" : "0.24.2.0" - }, - { - "base_addr" : "0x7fff9c1dc000", - "code_id" : "id", - "debug_file" : "CoreBluetooth", - "debug_id" : "A63B8FB0F8B3368DB482733FF03736100", - "end_addr" : "0x7fff9c1f0000", - "filename" : "/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9c1f0000", - "code_id" : "id", - "debug_file" : "libAVFAudio.dylib", - "debug_id" : "1E0384CEFF8D36EE8A2850CD673D31090", - "end_addr" : "0x7fff9c254000", - "filename" : "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9c254000", - "code_id" : "id", - "debug_file" : "Accelerate", - "debug_id" : "C1EABB1D444B3AA5AC39B854E049CB710", - "end_addr" : "0x7fff9c255000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate", - "version" : "0.4.0.0" - }, - { - "base_addr" : "0x7fff9c255000", - "code_id" : "id", - "debug_file" : "MediaToolbox", - "debug_id" : "BA54842F70173E0798A594E59C4629290", - "end_addr" : "0x7fff9c7ac000", - "filename" : "/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9c7de000", - "code_id" : "id", - "debug_file" : "libbz2.1.0.dylib", - "debug_id" : "99C5121D81473B518D7966245C8633380", - "end_addr" : "0x7fff9c7ed000", - "filename" : "/usr/lib/libbz2.1.0.dylib", - "version" : "0.1.0.5" - }, - { - "base_addr" : "0x7fff9c7ed000", - "code_id" : "id", - "debug_file" : "libFosl_dynamic.dylib", - "debug_id" : "7B19F360858C3C499E6DA95CF3BE21860", - "end_addr" : "0x7fff9c9f9000", - "filename" : "/usr/lib/libFosl_dynamic.dylib", - "version" : "0.0.0.0" - }, - { - "base_addr" : "0x7fff9c9f9000", - "code_id" : "id", - "debug_file" : "DictionaryServices", - "debug_id" : "94678AC841FF3D2EA35ED83AD18D7A780", - "end_addr" : "0x7fff9ca28000", - "filename" : "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9cc10000", - "code_id" : "id", - "debug_file" : "libcrypto.0.9.8.dylib", - "debug_id" : "7C4E5457B66C39CABC0E15CA6C051FC00", - "end_addr" : "0x7fff9ccf8000", - "filename" : "/usr/lib/libcrypto.0.9.8.dylib", - "version" : "0.0.9.8" - }, - { - "base_addr" : "0x7fff9ce9d000", - "code_id" : "id", - "debug_file" : "libCGInterfaces.dylib", - "debug_id" : "3D568317AAF73571A22ED23286BF3A690", - "end_addr" : "0x7fff9ceb3000", - "filename" : "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib", - "version" : "0.317.2.0" - }, - { - "base_addr" : "0x7fff9d580000", - "code_id" : "id", - "debug_file" : "AudioToolbox", - "debug_id" : "7380C7DA7CE834DFBB3DDAFE9406674F0", - "end_addr" : "0x7fff9d726000", - "filename" : "/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox", - "version" : "0.492.0.0" - }, - { - "base_addr" : "0x7fff9d726000", - "code_id" : "id", - "debug_file" : "libsystem_pthread.dylib", - "debug_id" : "1373D0F1C6CA364EA6BA8BDBD0D346700", - "end_addr" : "0x7fff9d730000", - "filename" : "/usr/lib/system/libsystem_pthread.dylib", - "missing_symbols" : true, - "version" : "0.137.1.1" - }, - { - "base_addr" : "0x7fff9d737000", - "code_id" : "id", - "debug_file" : "CoreText", - "debug_id" : "2A5DCA97300D36FB9E943041CFF6D6150", - "end_addr" : "0x7fff9d864000", - "filename" : "/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9d97c000", - "code_id" : "id", - "debug_file" : "libPng.dylib", - "debug_id" : "62A7834219B93CEA98325DB7F24B8CF90", - "end_addr" : "0x7fff9d9a2000", - "filename" : "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9d9a2000", - "code_id" : "id", - "debug_file" : "ProtectedCloudStorage", - "debug_id" : "EA83603A7C4D37F1A416064CD1B9D34B0", - "end_addr" : "0x7fff9d9ca000", - "filename" : "/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9d9ca000", - "code_id" : "id", - "debug_file" : "libmarisa.dylib", - "debug_id" : "4D3AE55BCE77364FB8DEC95CAA48B2910", - "end_addr" : "0x7fff9d9e2000", - "filename" : "/usr/lib/libmarisa.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9d9e2000", - "code_id" : "id", - "debug_file" : "OpenScripting", - "debug_id" : "6AA25650890033C6AD49D0543DB27C160", - "end_addr" : "0x7fff9d9fc000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9da16000", - "code_id" : "id", - "debug_file" : "libc++abi.dylib", - "debug_id" : "F5027B461801344DBD512E6D188C89000", - "end_addr" : "0x7fff9da40000", - "filename" : "/usr/lib/libc++abi.dylib", - "version" : "0.125.0.0" - }, - { - "base_addr" : "0x7fff9e14a000", - "code_id" : "id", - "debug_file" : "libbsm.0.dylib", - "debug_id" : "F1E419355C5D3704AE9DAEA1F2BCF8B10", - "end_addr" : "0x7fff9e15b000", - "filename" : "/usr/lib/libbsm.0.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e15b000", - "code_id" : "id", - "debug_file" : "libCoreFSCache.dylib", - "debug_id" : "9BFF447FD5713EE6860E29886F1F913F0", - "end_addr" : "0x7fff9e15f000", - "filename" : "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e184000", - "code_id" : "id", - "debug_file" : "IOBluetooth", - "debug_id" : "DA1727B103EE32BE922E43F06C498AFF0", - "end_addr" : "0x7fff9e228000", - "filename" : "/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e228000", - "code_id" : "id", - "debug_file" : "unorm8_rgba.dylib", - "debug_id" : "49FF2837D97B3CFFB139E57D40700F320", - "end_addr" : "0x7fff9e309000", - "filename" : "/System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e380000", - "code_id" : "id", - "debug_file" : "CommonPanels", - "debug_id" : "1D76DDD3D45A36798B725EECE6C1ACAC0", - "end_addr" : "0x7fff9e385000", - "filename" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels", - "version" : "0.96.0.0" - }, - { - "base_addr" : "0x7fff9e3bd000", - "code_id" : "id", - "debug_file" : "libsandbox.1.dylib", - "debug_id" : "46104D7B2B763C3CA5519DED100A2D8B0", - "end_addr" : "0x7fff9e3ee000", - "filename" : "/usr/lib/libsandbox.1.dylib", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e450000", - "code_id" : "id", - "debug_file" : "MediaAccessibility", - "debug_id" : "309526B01A183C2DB425A2BB61EED0050", - "end_addr" : "0x7fff9e456000", - "filename" : "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility", - "version" : "0.62.0.0" - }, - { - "base_addr" : "0x7fff9e466000", - "code_id" : "id", - "debug_file" : "CommonAuth", - "debug_id" : "6EF43A6EC07136A38B94694AC6BEF6D30", - "end_addr" : "0x7fff9e470000", - "filename" : "/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth", - "version" : "0.1.0.0" - }, - { - "base_addr" : "0x7fff9e8ec000", - "code_id" : "id", - "debug_file" : "libsystem_kernel.dylib", - "debug_id" : "7DD242A1E2BF39D18787B174046E4F150", - "end_addr" : "0x7fff9e90b000", - "filename" : "/usr/lib/system/libsystem_kernel.dylib", - "missing_symbols" : true, - "version" : "0.3247.1.106" - } - ], - "sensitive" : { - "exploitability" : "ERROR: unable to analyze dump" - }, - "status" : "OK", - "system_info" : { - "cpu_arch" : "amd64", - "cpu_count" : 4, - "cpu_info" : "family 6 model 42 stepping 7", - "os" : "Mac OS X", - "os_ver" : "10.11.0 15A284" - }, - "thread_count" : 10, - "threads" : [ - { - "frame_count" : 36, - "frames" : [ - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application()", - "function_offset" : "0x4f", - "line" : 2186, - "module" : "Natron-bin", - "module_offset" : "0x8742df", - "offset" : "0x1008742df", - "trust" : "context" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", - "function_offset" : "0xb08", - "line" : 2314, - "module" : "Natron-bin", - "module_offset" : "0x863b78", - "offset" : "0x100863b78", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public(Natron::KnobI*, Natron::ValueChangedReasonEnum, double, Natron::ViewSpec, bool)", - "function_offset" : "0x66", - "line" : 5913, - "module" : "Natron-bin", - "module_offset" : "0x5680c6", - "offset" : "0x1005680c6", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges(bool)", - "function_offset" : "0x454", - "line" : 5484, - "module" : "Natron-bin", - "module_offset" : "0x592374", - "offset" : "0x100592374", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal(int, double, Natron::ViewSpec, Natron::ValueChangedReasonEnum, Natron::ValueChangedReasonEnum)", - "function_offset" : "0x1cc", - "line" : 1695, - "module" : "Natron-bin", - "module_offset" : "0x59474c", - "offset" : "0x10059474c", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/KnobTypes.cpp", - "frame" : 5, - "function" : "Natron::KnobButton::trigger()", - "function_offset" : "0x23", - "line" : 494, - "module" : "Natron-bin", - "module_offset" : "0x5ce3b3", - "offset" : "0x1005ce3b3", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 6, - "function" : "Natron::KnobGuiButton::emitValueChanged(bool)", - "function_offset" : "0x35f", - "line" : 188, - "module" : "Natron-bin", - "module_offset" : "0x183dff", - "offset" : "0x100183dff", - "trust" : "cfi" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x15b0dd", - "offset" : "0x102b840dd", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x6f7030", - "offset" : "0x102459030", - "trust" : "frame_pointer" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x419adf", - "offset" : "0x10217badf", - "trust" : "frame_pointer" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x41aca9", - "offset" : "0x10217cca9", - "trust" : "frame_pointer" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x41af00", - "offset" : "0x10217cf00", - "trust" : "frame_pointer" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0xe9f56", - "offset" : "0x101e4bf56", - "trust" : "frame_pointer" - }, - { - "frame" : 13, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x419da7", - "offset" : "0x10217bda7", - "trust" : "frame_pointer" - }, - { - "frame" : 14, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x4b5ee4", - "offset" : "0x102217ee4", - "trust" : "frame_pointer" - }, - { - "frame" : 15, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x8a98c", - "offset" : "0x101dec98c", - "trust" : "frame_pointer" - }, - { - "frame" : 16, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x934df", - "offset" : "0x101df54df", - "trust" : "frame_pointer" - }, - { - "frame" : 17, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x142a1b", - "offset" : "0x102b6ba1b", - "trust" : "frame_pointer" - }, - { - "frame" : 18, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x8f1ec", - "offset" : "0x101df11ec", - "trust" : "frame_pointer" - }, - { - "frame" : 19, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x3ceba", - "offset" : "0x101d9eeba", - "trust" : "frame_pointer" - }, - { - "frame" : 20, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x8108be", - "offset" : "0x7fff8df758be", - "trust" : "frame_pointer" - }, - { - "frame" : 21, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x811558", - "offset" : "0x7fff8df76558", - "trust" : "frame_pointer" - }, - { - "frame" : 22, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x256d30", - "offset" : "0x7fff8d9bbd30", - "trust" : "frame_pointer" - }, - { - "frame" : 23, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x31d54", - "offset" : "0x101d93d54", - "trust" : "frame_pointer" - }, - { - "frame" : 24, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x1d6cca", - "offset" : "0x7fff8d93bcca", - "trust" : "frame_pointer" - }, - { - "frame" : 25, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x3705b", - "offset" : "0x101d9905b", - "trust" : "frame_pointer" - }, - { - "frame" : 26, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x3df3d", - "offset" : "0x7fff8d7a2f3d", - "trust" : "frame_pointer" - }, - { - "frame" : 27, - "missing_symbols" : true, - "module" : "QtGui", - "module_offset" : "0x427f2", - "offset" : "0x101da47f2", - "trust" : "frame_pointer" - }, - { - "frame" : 28, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x141933", - "offset" : "0x102b6a933", - "trust" : "frame_pointer" - }, - { - "frame" : 29, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x141ce3", - "offset" : "0x102b6ace3", - "trust" : "frame_pointer" - }, - { - "frame" : 30, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x14455b", - "offset" : "0x102b6d55b", - "trust" : "frame_pointer" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Gui/../../Gui/GuiApplicationManager.cpp", - "frame" : 31, - "function" : "Natron::GuiApplicationManager::initGui(Natron::CLArgs const&)", - "function_offset" : "0xd10", - "line" : 955, - "module" : "Natron-bin", - "module_offset" : "0x109d30", - "offset" : "0x100109d30", - "trust" : "frame_pointer" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/AppManager.cpp", - "frame" : 32, - "function" : "Natron::AppManager::loadInternal(Natron::CLArgs const&)", - "function_offset" : "0x311", - "line" : 811, - "module" : "Natron-bin", - "module_offset" : "0x3f2471", - "offset" : "0x1003f2471", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/Engine/../../Engine/AppManager.cpp", - "frame" : 33, - "function" : "Natron::AppManager::loadFromArgs(Natron::CLArgs const&)", - "function_offset" : "0x2e3", - "line" : 468, - "module" : "Natron-bin", - "module_offset" : "0x3f2813", - "offset" : "0x1003f2813", - "trust" : "cfi" - }, - { - "file" : "/Users/user/Natron/buildmaster/tmp/Natron/build/App/../../App/NatronApp_main.cpp", - "frame" : 34, - "function" : "main", - "function_offset" : "0xca", - "line" : 115, - "module" : "Natron-bin", - "module_offset" : "0xb700fa", - "offset" : "0x100b700fa", - "trust" : "cfi" - }, - { - "frame" : 35, - "function" : "start", - "function_offset" : "0x33", - "module" : "Natron-bin", - "module_offset" : "0x65b3", - "offset" : "0x1000065b3", - "trust" : "cfi" - } - ] - }, - { - "frame_count" : 3, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x1778a", - "offset" : "0x7fff9e90378a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1374", - "offset" : "0x7fff9d727374", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x5aec", - "offset" : "0x7fff9c0f8aec", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 2, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x180a2", - "offset" : "0x7fff9e9040a2", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x7e14", - "offset" : "0x7fff9c0fae14", - "trust" : "frame_pointer" - } - ] - }, - { - "frame_count" : 13, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x11c96", - "offset" : "0x7fff9e8fdc96", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "CoreGraphics", - "module_offset" : "0x6188f", - "offset" : "0x7fff99cf188f", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "CoreGraphics", - "module_offset" : "0x61570", - "offset" : "0x7fff99cf1570", - "trust" : "frame_pointer" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0xd8fe", - "offset" : "0x7fff9c1008fe", - "trust" : "frame_pointer" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x2452", - "offset" : "0x7fff9c0f5452", - "trust" : "frame_pointer" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x7082", - "offset" : "0x7fff9c0fa082", - "trust" : "frame_pointer" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0xd6c8", - "offset" : "0x7fff9c1006c8", - "trust" : "frame_pointer" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x2452", - "offset" : "0x7fff9c0f5452", - "trust" : "frame_pointer" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x62e2", - "offset" : "0x7fff9c0f92e2", - "trust" : "frame_pointer" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x5b47", - "offset" : "0x7fff9c0f8b47", - "trust" : "frame_pointer" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x34f1", - "offset" : "0x7fff9d7294f1", - "trust" : "frame_pointer" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1374", - "offset" : "0x7fff9d727374", - "trust" : "frame_pointer" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x5aec", - "offset" : "0x7fff9c0f8aec", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 3, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x1778a", - "offset" : "0x7fff9e90378a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1374", - "offset" : "0x7fff9d727374", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x5aec", - "offset" : "0x7fff9c0f8aec", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 9, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x11c96", - "offset" : "0x7fff9e8fdc96", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "CoreFoundation", - "module_offset" : "0x8a023", - "offset" : "0x7fff99462023", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "CoreFoundation", - "module_offset" : "0x894eb", - "offset" : "0x7fff994614eb", - "trust" : "frame_pointer" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "CoreFoundation", - "module_offset" : "0x88d37", - "offset" : "0x7fff99460d37", - "trust" : "frame_pointer" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x19feec", - "offset" : "0x7fff8d904eec", - "trust" : "frame_pointer" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x39b0", - "offset" : "0x7fff9d7299b0", - "trust" : "frame_pointer" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x392d", - "offset" : "0x7fff9d72992d", - "trust" : "frame_pointer" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1384", - "offset" : "0x7fff9d727384", - "trust" : "frame_pointer" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "AppKit", - "module_offset" : "0x19fe57", - "offset" : "0x7fff8d904e57", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 8, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x16f5e", - "offset" : "0x7fff9e902f5e", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x2916f", - "offset" : "0x102a5216f", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x1a5c7", - "offset" : "0x102a435c7", - "trust" : "frame_pointer" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x28263", - "offset" : "0x102a51263", - "trust" : "frame_pointer" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x39b0", - "offset" : "0x7fff9d7299b0", - "trust" : "frame_pointer" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x392d", - "offset" : "0x7fff9d72992d", - "trust" : "frame_pointer" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1384", - "offset" : "0x7fff9d727384", - "trust" : "frame_pointer" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "QtCore", - "module_offset" : "0x280ff", - "offset" : "0x102a510ff", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 5, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x17222", - "offset" : "0x7fff9e903222", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x39b0", - "offset" : "0x7fff9d7299b0", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x392d", - "offset" : "0x7fff9d72992d", - "trust" : "frame_pointer" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1384", - "offset" : "0x7fff9d727384", - "trust" : "frame_pointer" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "CoreFoundation", - "module_offset" : "0xc6f9f", - "offset" : "0x7fff9949ef9f", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 3, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "libsystem_kernel.dylib", - "module_offset" : "0x1778a", - "offset" : "0x7fff9e90378a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "libsystem_pthread.dylib", - "module_offset" : "0x1374", - "offset" : "0x7fff9d727374", - "trust" : "frame_pointer" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "libdispatch.dylib", - "module_offset" : "0x5aec", - "offset" : "0x7fff9c0f8aec", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 1, - "frames" : [ - { - "frame" : 0, - "offset" : "0x0", - "trust" : "context" - } - ] - } - ] -} - diff --git a/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.dmp b/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.dmp deleted file mode 100644 index cc2126e7d2..0000000000 Binary files a/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.dmp and /dev/null differ diff --git a/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.json b/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.json deleted file mode 100644 index 36bbfdbfba..0000000000 --- a/tests/f97fd058-fb43-4098-b770-7fce7a3fb757.json +++ /dev/null @@ -1,3089 +0,0 @@ -{ - "crash_info" : { - "address" : "0x0", - "crashing_thread" : 0, - "type" : "EXCEPTION_ACCESS_VIOLATION_WRITE" - }, - "crashing_thread" : { - "frames" : [ - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application", - "function_offset" : "0x57", - "line" : 2186, - "module" : "Natron-bin.exe", - "module_offset" : "0x8ee1e7", - "offset" : "0xcee1e7", - "registers" : { - "r10" : "0x0000000000000000", - "r11" : "0x0000000000000246", - "r12" : "0x0000000000004000", - "r13" : "0x000000000022b160", - "r14" : "0x000000000022b170", - "r15" : "0x000000000022b2f0", - "r8" : "0x000000000022a898", - "r9" : "0x00000000065f2e41", - "rax" : "0x000000006fd0a120", - "rbp" : "0x000000000022b190", - "rbx" : "0x000000006fd08700", - "rcx" : "0x000007fefdb91638", - "rdi" : "0x000000000022b1a0", - "rdx" : "0x0000000000000002", - "rip" : "0x0000000000cee1e7", - "rsi" : "0x0000000003969f90", - "rsp" : "0x000000000022b0c0" - }, - "trust" : "context" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged", - "function_offset" : "0x7c0", - "line" : 2314, - "module" : "Natron-bin.exe", - "module_offset" : "0x383920", - "offset" : "0x783920", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public", - "function_offset" : "0x6a", - "line" : 5913, - "module" : "Natron-bin.exe", - "module_offset" : "0x4f646a", - "offset" : "0x8f646a", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges", - "function_offset" : "0x4f9", - "line" : 5484, - "module" : "Natron-bin.exe", - "module_offset" : "0x516af9", - "offset" : "0x916af9", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal", - "function_offset" : "0x143", - "line" : 1695, - "module" : "Natron-bin.exe", - "module_offset" : "0x5185b3", - "offset" : "0x9185b3", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 5, - "function" : "Natron::KnobHelper::evaluateValueChange", - "function_offset" : "0x14", - "line" : 1719, - "module" : "Natron-bin.exe", - "module_offset" : "0x518824", - "offset" : "0x918824", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/KnobTypes.cpp", - "frame" : 6, - "function" : "Natron::KnobButton::trigger", - "function_offset" : "0x2e", - "line" : 494, - "module" : "Natron-bin.exe", - "module_offset" : "0x4e4b6e", - "offset" : "0x8e4b6e", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 7, - "function" : "Natron::KnobGuiButton::emitValueChanged", - "function_offset" : "0xb4", - "line" : 188, - "module" : "Natron-bin.exe", - "module_offset" : "0x2bfab4", - "offset" : "0x6bfab4", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1222cc", - "offset" : "0x6e1e22cc", - "trust" : "cfi" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x4abdf", - "offset" : "0x6e10abdf", - "trust" : "scan" - } - ], - "threads_index" : 0, - "total_frames" : 82 - }, - "main_module" : 1, - "modules" : [ - { - "base_addr" : "0x2b0000", - "code_id" : "A740A73010000", - "debug_file" : "zlib.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x2c0000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\lib\\python2.7\\lib-dynload\\zlib.pyd", - "version" : "" - }, - { - "base_addr" : "0x400000", - "code_id" : "0002B000f0c000", - "debug_file" : "Natron-bin.exe", - "debug_id" : "D24F709D48BDE7C18085E505F49157C51", - "end_addr" : "0x130c000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\Natron-bin.exe", - "loaded_symbols" : true, - "version" : "2.1.7.0" - }, - { - "base_addr" : "0x3b60000", - "code_id" : "000000004a000", - "debug_file" : "libgdk_pixbuf-2.0-0.dll", - "debug_id" : "232107838362d36340000000000000000", - "end_addr" : "0x3baa000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libgdk_pixbuf-2.0-0.dll", - "version" : "2.32.1.0" - }, - { - "base_addr" : "0x3bb0000", - "code_id" : "0000420428000", - "debug_file" : "libintl-8.dll", - "debug_id" : "019607838362d36340000000000000000", - "end_addr" : "0x3bd8000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libintl-8.dll", - "version" : "0.19.6.0" - }, - { - "base_addr" : "0x3be0000", - "code_id" : "A030A0181f000", - "debug_file" : "libpangowin32-1.0-0.dll", - "debug_id" : "138107838362d36340000000000000000", - "end_addr" : "0x3bff000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpangowin32-1.0-0.dll", - "version" : "1.38.1.0" - }, - { - "base_addr" : "0x51c0000", - "code_id" : "000440009a6000", - "debug_file" : "QtGui.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x5b66000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\PySide\\QtGui.pyd", - "version" : "" - }, - { - "base_addr" : "0x7ac0000", - "code_id" : "0010FFB07b5000", - "debug_file" : "Arena.ofx", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x8275000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\Arena.ofx", - "version" : "" - }, - { - "base_addr" : "0x8280000", - "code_id" : "00000000222000", - "debug_file" : "libicuin56.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x84a2000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libicuin56.dll", - "version" : "" - }, - { - "base_addr" : "0x84b0000", - "code_id" : "00000000167000", - "debug_file" : "libicuuc56.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x8617000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libicuuc56.dll", - "version" : "" - }, - { - "base_addr" : "0x8620000", - "code_id" : "0200000217f0000", - "debug_file" : "libicudt56.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x9e10000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libicudt56.dll", - "version" : "" - }, - { - "base_addr" : "0x9e10000", - "code_id" : "A078A07014b000", - "debug_file" : "libOpenColorIO.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x9f5b000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libOpenColorIO.dll", - "version" : "" - }, - { - "base_addr" : "0x9f60000", - "code_id" : "A640A6303d000", - "debug_file" : "librsvg-2-2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x9f9d000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\librsvg-2-2.dll", - "version" : "" - }, - { - "base_addr" : "0x9fa0000", - "code_id" : "A078A0706b000", - "debug_file" : "libwebp-6.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xa00b000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libwebp-6.dll", - "version" : "" - }, - { - "base_addr" : "0xa1a0000", - "code_id" : "000000001ee000", - "debug_file" : "IO.ofx", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xa38e000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\IO.ofx.bundle\\Contents\\Win64\\IO.ofx", - "version" : "" - }, - { - "base_addr" : "0xa390000", - "code_id" : "A078A070328000", - "debug_file" : "libIlmImf-2_2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xa6b8000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libIlmImf-2_2.dll", - "version" : "" - }, - { - "base_addr" : "0xa6c0000", - "code_id" : "A078A070967000", - "debug_file" : "libOpenImageIO.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xb027000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libOpenImageIO.dll", - "version" : "" - }, - { - "base_addr" : "0xc000000", - "code_id" : "00000000bab000", - "debug_file" : "Misc.ofx", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xcbab000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Misc.ofx.bundle\\Contents\\Win64\\Misc.ofx", - "version" : "" - }, - { - "base_addr" : "0xcbb0000", - "code_id" : "A078A07018ab000", - "debug_file" : "osmesa.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0xe45b000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\osmesa.dll", - "version" : "" - }, - { - "base_addr" : "0x61440000", - "code_id" : "000000001c000", - "debug_file" : "libgcc_s_seh-1.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6145c000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libgcc_s_seh-1.dll", - "version" : "" - }, - { - "base_addr" : "0x61480000", - "code_id" : "00000000e8000", - "debug_file" : "libboost_regex-mt.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x61568000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libboost_regex-mt.dll", - "version" : "" - }, - { - "base_addr" : "0x61600000", - "code_id" : "000000006a000", - "debug_file" : "libharfbuzz-0.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6166a000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libharfbuzz-0.dll", - "version" : "" - }, - { - "base_addr" : "0x617c0000", - "code_id" : "A078A07063000", - "debug_file" : "libjasper-1.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x61823000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libjasper-1.dll", - "version" : "" - }, - { - "base_addr" : "0x61cc0000", - "code_id" : "A078A07028000", - "debug_file" : "libintl-8.dll", - "debug_id" : "019607838362d36340000000000000000", - "end_addr" : "0x61ce8000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libintl-8.dll", - "version" : "0.19.6.0" - }, - { - "base_addr" : "0x62000000", - "code_id" : "000000001ec000", - "debug_file" : "CImg.ofx", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x621ec000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\CImg.ofx.bundle\\Contents\\Win64\\CImg.ofx", - "version" : "" - }, - { - "base_addr" : "0x626c0000", - "code_id" : "A038A0301a000", - "debug_file" : "LIBBZ2-1.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x626da000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\LIBBZ2-1.DLL", - "version" : "" - }, - { - "base_addr" : "0x62a00000", - "code_id" : "013B015812000", - "debug_file" : "qgif4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x62a12000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qgif4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x62e80000", - "code_id" : "A078A0701d000", - "debug_file" : "ZLIB1.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x62e9d000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\ZLIB1.DLL", - "version" : "" - }, - { - "base_addr" : "0x63600000", - "code_id" : "003C015824000", - "debug_file" : "libgomp-1.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x63624000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libgomp-1.dll", - "version" : "" - }, - { - "base_addr" : "0x63900000", - "code_id" : "0000000013000", - "debug_file" : "libIex-2_2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x63913000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libIex-2_2.dll", - "version" : "" - }, - { - "base_addr" : "0x63a00000", - "code_id" : "013B015812000", - "debug_file" : "qjpeg4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x63a12000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qjpeg4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x63a40000", - "code_id" : "0000500052000", - "debug_file" : "libgobject-2.0-0.dll", - "debug_id" : "246207838362d36340000000000000000", - "end_addr" : "0x63a92000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libgobject-2.0-0.dll", - "version" : "2.46.2.0" - }, - { - "base_addr" : "0x63cc0000", - "code_id" : "A078A0702c000", - "debug_file" : "liblzma-5.dll", - "debug_id" : "52107838362d363400000000000000000", - "end_addr" : "0x63cec000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\liblzma-5.dll", - "version" : "5.2.1.0" - }, - { - "base_addr" : "0x63ec0000", - "code_id" : "0000000025d000", - "debug_file" : "QtCore.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6411d000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\PySide\\QtCore.pyd", - "version" : "" - }, - { - "base_addr" : "0x64880000", - "code_id" : "0000A500e000", - "debug_file" : "libboost_system-mt.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6488e000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libboost_system-mt.dll", - "version" : "" - }, - { - "base_addr" : "0x64940000", - "code_id" : "A078A07015000", - "debug_file" : "libwinpthread-1.dll", - "debug_id" : "10007838362d363400000000000000000", - "end_addr" : "0x64955000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libwinpthread-1.dll", - "version" : "1.0.0.0" - }, - { - "base_addr" : "0x64e40000", - "code_id" : "A078A07078000", - "debug_file" : "LIBMNG-2.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x64eb8000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\LIBMNG-2.DLL", - "version" : "" - }, - { - "base_addr" : "0x64f80000", - "code_id" : "A038A03053000", - "debug_file" : "libfontconfig-1.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x64fd3000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libfontconfig-1.dll", - "version" : "" - }, - { - "base_addr" : "0x65300000", - "code_id" : "A078A070af000", - "debug_file" : "libpixman-1-0.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x653af000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libpixman-1-0.dll", - "version" : "" - }, - { - "base_addr" : "0x65580000", - "code_id" : "0000000042000", - "debug_file" : "libpango-1.0-0.dll", - "debug_id" : "138107838362d36340000000000000000", - "end_addr" : "0x655c2000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpango-1.0-0.dll", - "version" : "1.38.1.0" - }, - { - "base_addr" : "0x65880000", - "code_id" : "0000000013000", - "debug_file" : "LIBGIF-7.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x65893000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\LIBGIF-7.DLL", - "version" : "" - }, - { - "base_addr" : "0x65b40000", - "code_id" : "A078A07058000", - "debug_file" : "QtSvg4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x65b98000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QtSvg4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x65c80000", - "code_id" : "A078A07014f000", - "debug_file" : "QtNetwork4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x65dcf000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QtNetwork4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x66000000", - "code_id" : "00000000109000", - "debug_file" : "libiconv-2.dll", - "debug_id" : "114007838362d36340000000000000000", - "end_addr" : "0x66109000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libiconv-2.dll", - "version" : "1.14.0.0" - }, - { - "base_addr" : "0x66440000", - "code_id" : "0069005742000", - "debug_file" : "libcroco-0.6-3.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x66482000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libcroco-0.6-3.dll", - "version" : "" - }, - { - "base_addr" : "0x66800000", - "code_id" : "0000000024000", - "debug_file" : "librevenge-stream-0.0.dll", - "debug_id" : "00407838362d363400000000000000000", - "end_addr" : "0x66824000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\librevenge-stream-0.0.dll", - "version" : "0.0.4.0" - }, - { - "base_addr" : "0x674c0000", - "code_id" : "A078A07036000", - "debug_file" : "libopenjpeg-5.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x674f6000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libopenjpeg-5.dll", - "version" : "" - }, - { - "base_addr" : "0x67700000", - "code_id" : "A078A070941000", - "debug_file" : "QTGUI4.DLL", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x68041000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QTGUI4.DLL", - "missing_symbols" : true, - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x68080000", - "code_id" : "000000004f000", - "debug_file" : "libHalf-2_2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x680cf000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libHalf-2_2.dll", - "version" : "" - }, - { - "base_addr" : "0x683c0000", - "code_id" : "0023015881000", - "debug_file" : "Shadertoy.ofx", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68441000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Shadertoy.ofx.bundle\\Contents\\Win64\\Shadertoy.ofx", - "version" : "" - }, - { - "base_addr" : "0x685c0000", - "code_id" : "0000000013c000", - "debug_file" : "libglib-2.0-0.dll", - "debug_id" : "246207838362d36340000000000000000", - "end_addr" : "0x686fc000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libglib-2.0-0.dll", - "version" : "2.46.2.0" - }, - { - "base_addr" : "0x68a80000", - "code_id" : "A078A07039000", - "debug_file" : "libshiboken-python2.7.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68ab9000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libshiboken-python2.7.dll", - "version" : "" - }, - { - "base_addr" : "0x68b40000", - "code_id" : "A078A0703f000", - "debug_file" : "libpng16-16.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68b7f000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libpng16-16.dll", - "version" : "" - }, - { - "base_addr" : "0x68dc0000", - "code_id" : "A038A030f1000", - "debug_file" : "libcairo-2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68eb1000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libcairo-2.dll", - "version" : "" - }, - { - "base_addr" : "0x68ec0000", - "code_id" : "A078A07079000", - "debug_file" : "libtiff-5.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68f39000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libtiff-5.dll", - "version" : "" - }, - { - "base_addr" : "0x68f40000", - "code_id" : "A038A0302d000", - "debug_file" : "libexpat-1.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x68f6d000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libexpat-1.dll", - "version" : "" - }, - { - "base_addr" : "0x693c0000", - "code_id" : "00000000a4000", - "debug_file" : "libfreetype-6.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x69464000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libfreetype-6.dll", - "version" : "" - }, - { - "base_addr" : "0x6a000000", - "code_id" : "AFD8AFD012000", - "debug_file" : "_struct.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6a012000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\lib\\python2.7\\lib-dynload\\_struct.pyd", - "version" : "" - }, - { - "base_addr" : "0x6a500000", - "code_id" : "A2F8A2E815000", - "debug_file" : "math.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6a515000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\lib\\python2.7\\lib-dynload\\math.pyd", - "version" : "" - }, - { - "base_addr" : "0x6a7c0000", - "code_id" : "00000000219000", - "debug_file" : "libpoppler-60.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6a9d9000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpoppler-60.dll", - "version" : "" - }, - { - "base_addr" : "0x6b240000", - "code_id" : "A078A07061000", - "debug_file" : "liblcms2-2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6b2a1000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\liblcms2-2.dll", - "version" : "" - }, - { - "base_addr" : "0x6b540000", - "code_id" : "0010FFB020000", - "debug_file" : "LIBZIP-4.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6b560000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\LIBZIP-4.DLL", - "version" : "" - }, - { - "base_addr" : "0x6b740000", - "code_id" : "A038A03010000", - "debug_file" : "LIBFFI-6.DLL", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6b750000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\LIBFFI-6.DLL", - "version" : "" - }, - { - "base_addr" : "0x6b800000", - "code_id" : "A078A07069000", - "debug_file" : "libjpeg-8.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6b869000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libjpeg-8.dll", - "version" : "" - }, - { - "base_addr" : "0x6ba00000", - "code_id" : "000BC00078000", - "debug_file" : "libboost_serialization-mt.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6ba78000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libboost_serialization-mt.dll", - "version" : "" - }, - { - "base_addr" : "0x6be40000", - "code_id" : "0E00000E91000", - "debug_file" : "libcdr-0.1.dll", - "debug_id" : "01207838362d363400000000000000000", - "end_addr" : "0x6bed1000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libcdr-0.1.dll", - "version" : "0.1.2.0" - }, - { - "base_addr" : "0x6c740000", - "code_id" : "A078A07030000", - "debug_file" : "libpyside-python2.7.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6c770000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libpyside-python2.7.dll", - "version" : "" - }, - { - "base_addr" : "0x6ca00000", - "code_id" : "0000000056000", - "debug_file" : "libpoppler-glib-8.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6ca56000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpoppler-glib-8.dll", - "version" : "" - }, - { - "base_addr" : "0x6cac0000", - "code_id" : "013B015811000", - "debug_file" : "qmng4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6cad1000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qmng4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6ce40000", - "code_id" : "A078A070196000", - "debug_file" : "libpython2.7.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6cfd6000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libpython2.7.dll", - "version" : "" - }, - { - "base_addr" : "0x6d2c0000", - "code_id" : "013B015811000", - "debug_file" : "qtga4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6d2d1000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qtga4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6d4c0000", - "code_id" : "6E6F432F16000", - "debug_file" : "libpangocairo-1.0-0.dll", - "debug_id" : "138107838362d36340000000000000000", - "end_addr" : "0x6d4d6000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpangocairo-1.0-0.dll", - "version" : "1.38.1.0" - }, - { - "base_addr" : "0x6d580000", - "code_id" : "00000000155000", - "debug_file" : "libgio-2.0-0.dll", - "debug_id" : "246207838362d36340000000000000000", - "end_addr" : "0x6d6d5000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libgio-2.0-0.dll", - "version" : "2.46.2.0" - }, - { - "base_addr" : "0x6d700000", - "code_id" : "6E6F432F1a000", - "debug_file" : "libpangoft2-1.0-0.dll", - "debug_id" : "138107838362d36340000000000000000", - "end_addr" : "0x6d71a000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libpangoft2-1.0-0.dll", - "version" : "1.38.1.0" - }, - { - "base_addr" : "0x6d880000", - "code_id" : "013B015814000", - "debug_file" : "qsvgicon4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6d894000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\iconengines\\qsvgicon4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6dd00000", - "code_id" : "6C6C642Ef000", - "debug_file" : "libgmodule-2.0-0.dll", - "debug_id" : "246207838362d36340000000000000000", - "end_addr" : "0x6dd0f000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libgmodule-2.0-0.dll", - "version" : "2.46.2.0" - }, - { - "base_addr" : "0x6e0c0000", - "code_id" : "A078A0702c1000", - "debug_file" : "QTCORE4.DLL", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6e381000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QTCORE4.DLL", - "missing_symbols" : true, - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6e480000", - "code_id" : "013B015811000", - "debug_file" : "qsvg4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6e491000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qsvg4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6ef80000", - "code_id" : "A078A070ed000", - "debug_file" : "QtOpenGL4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6f06d000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QtOpenGL4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6f080000", - "code_id" : "206E692023000", - "debug_file" : "libboost_filesystem-mt.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6f0a3000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libboost_filesystem-mt.dll", - "version" : "" - }, - { - "base_addr" : "0x6f3c0000", - "code_id" : "001C5C8012000", - "debug_file" : "qtiff4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6f3d2000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qtiff4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6f400000", - "code_id" : "0000000036000", - "debug_file" : "librevenge-0.0.dll", - "debug_id" : "00407838362d363400000000000000000", - "end_addr" : "0x6f436000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\librevenge-0.0.dll", - "version" : "0.0.4.0" - }, - { - "base_addr" : "0x6f780000", - "code_id" : "A078A070d5000", - "debug_file" : "libraw_r-15.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6f855000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libraw_r-15.dll", - "version" : "" - }, - { - "base_addr" : "0x6f880000", - "code_id" : "250000252b000", - "debug_file" : "_ctypes.pyd", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6f8ab000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\lib\\python2.7\\lib-dynload\\_ctypes.pyd", - "version" : "" - }, - { - "base_addr" : "0x6fac0000", - "code_id" : "A078A0705f000", - "debug_file" : "QtXml4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x6fb1f000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\QtXml4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x6fc40000", - "code_id" : "A078A070162000", - "debug_file" : "libstdc++-6.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x6fda2000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libstdc++-6.dll", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x70280000", - "code_id" : "A078A0701e000", - "debug_file" : "libImath-2_2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x7029e000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libImath-2_2.dll", - "version" : "" - }, - { - "base_addr" : "0x70a00000", - "code_id" : "A598A59012000", - "debug_file" : "qico4.dll", - "debug_id" : "48707838362d363400000000000000000", - "end_addr" : "0x70a12000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\imageformats\\qico4.dll", - "version" : "4.8.7.0" - }, - { - "base_addr" : "0x70b40000", - "code_id" : "A078A070f000", - "debug_file" : "libIlmThread-2_2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x70b4f000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libIlmThread-2_2.dll", - "version" : "" - }, - { - "base_addr" : "0x70f00000", - "code_id" : "0000000026000", - "debug_file" : "libboost_thread-mt.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x70f26000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libboost_thread-mt.dll", - "version" : "" - }, - { - "base_addr" : "0x70f40000", - "code_id" : "02ECDC2D147000", - "debug_file" : "libxml2-2.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x71087000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\Plugins\\OFX\\Natron\\Arena.ofx.bundle\\Contents\\Win64\\libxml2-2.dll", - "version" : "" - }, - { - "base_addr" : "0x71280000", - "code_id" : "A078A07054000", - "debug_file" : "libSeExpr.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x712d4000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\libSeExpr.dll", - "version" : "" - }, - { - "base_addr" : "0x721f0000", - "code_id" : "0000000019df000", - "debug_file" : "opengl32.dll", - "debug_id" : "000000000000000000000000000000000", - "end_addr" : "0x73bcf000", - "filename" : "C:\\Windows\\System32\\opengl32.dll", - "missing_symbols" : true, - "version" : "" - }, - { - "base_addr" : "0x77010000", - "code_id" : "4CE7C9F1fa000", - "debug_file" : "user32.pdb", - "debug_id" : "953B04792B8A48B2883930E36FD22A6A2", - "end_addr" : "0x7710a000", - "filename" : "C:\\Windows\\System32\\user32.dll", - "missing_symbols" : true, - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x77110000", - "code_id" : "50B8479A11f000", - "debug_file" : "kernel32.pdb", - "debug_id" : "C4312728BA1F4691955E99B2E026FAFC2", - "end_addr" : "0x7722f000", - "filename" : "C:\\Windows\\System32\\kernel32.dll", - "missing_symbols" : true, - "version" : "6.1.7601.18015" - }, - { - "base_addr" : "0x77230000", - "code_id" : "521EAF241a9000", - "debug_file" : "ntdll.pdb", - "debug_id" : "9D04EB0AA387494FBD81ED062072B99C2", - "end_addr" : "0x773d9000", - "filename" : "C:\\Windows\\System32\\ntdll.dll", - "missing_symbols" : true, - "version" : "6.1.7601.18247" - }, - { - "base_addr" : "0x773f0000", - "code_id" : "4A5BC29D7000", - "debug_file" : "psapi.pdb", - "debug_id" : "0CABCB9659614C45A750FC85662A63D62", - "end_addr" : "0x773f7000", - "filename" : "C:\\Windows\\System32\\psapi.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fee8e50000", - "code_id" : "A078A07093000", - "debug_file" : "swscale-4.dll", - "debug_id" : "4110007838362d3634000000000000000", - "end_addr" : "0x7fee8ee3000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\swscale-4.dll", - "version" : "4.1.100.0" - }, - { - "base_addr" : "0x7fee8ef0000", - "code_id" : "003C015821b000", - "debug_file" : "avformat-57.dll", - "debug_id" : "574110007838362d36340000000000000", - "end_addr" : "0x7fee910b000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\avformat-57.dll", - "version" : "57.41.100.0" - }, - { - "base_addr" : "0x7fee9110000", - "code_id" : "A808A8001a50000", - "debug_file" : "avcodec-57.dll", - "debug_id" : "574810107838362d36340000000000000", - "end_addr" : "0x7feeab60000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\avcodec-57.dll", - "version" : "57.48.101.0" - }, - { - "base_addr" : "0x7feeb760000", - "code_id" : "0000000093000", - "debug_file" : "avutil-55.dll", - "debug_id" : "552810007838362d36340000000000000", - "end_addr" : "0x7feeb7f3000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\avutil-55.dll", - "version" : "55.28.100.0" - }, - { - "base_addr" : "0x7feec060000", - "code_id" : "A078A07027000", - "debug_file" : "swresample-2.dll", - "debug_id" : "2110007838362d3634000000000000000", - "end_addr" : "0x7feec087000", - "filename" : "C:\\Users\\olear\\Desktop\\Natron-2.1.7-Windows-x86_64bit-no-installer\\bin\\swresample-2.dll", - "version" : "2.1.100.0" - }, - { - "base_addr" : "0x7feedd20000", - "code_id" : "4CE7C634a0000", - "debug_file" : "comctl32v582.pdb", - "debug_id" : "0A19E50C177348078550FC706C26BFDF1", - "end_addr" : "0x7feeddc0000", - "filename" : "C:\\Windows\\winsxs\\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.17514_none_a4d6a923711520a9\\comctl32.dll", - "version" : "5.82.7601.17514" - }, - { - "base_addr" : "0x7feefb90000", - "code_id" : "4A5BE0557000", - "debug_file" : "shfolder.pdb", - "debug_id" : "D94D04F6BAAB4FE1999212BCA66AD7072", - "end_addr" : "0x7feefb97000", - "filename" : "C:\\Windows\\System32\\shfolder.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef47b0000", - "code_id" : "4CE7C5AC125000", - "debug_file" : "dbghelp.pdb", - "debug_id" : "094E015761DA454EB641C2328520CD6F2", - "end_addr" : "0x7fef48d5000", - "filename" : "C:\\Windows\\System32\\dbghelp.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fef4c30000", - "code_id" : "4A5BDFE67000", - "debug_file" : "msimg32.pdb", - "debug_id" : "412FBF9A65E64A2DBC04B7F2416B439E2", - "end_addr" : "0x7fef4c37000", - "filename" : "C:\\Windows\\System32\\msimg32.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef8660000", - "code_id" : "4CE7CA3871000", - "debug_file" : "winspool.pdb", - "debug_id" : "E75038C36E27430E98384DD6F936BDAA1", - "end_addr" : "0x7fef86d1000", - "filename" : "C:\\Windows\\System32\\winspool.drv", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fef88b0000", - "code_id" : "4A5BDF7418000", - "debug_file" : "mpr.pdb", - "debug_id" : "4F9E18E000674B84B77CEE0E9C6353F22", - "end_addr" : "0x7fef88c8000", - "filename" : "C:\\Windows\\System32\\mpr.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef8a40000", - "code_id" : "4A5BE0C19000", - "debug_file" : "wsock32.pdb", - "debug_id" : "FF4403423D314B78AC3A5EB71E5DD9C62", - "end_addr" : "0x7fef8a49000", - "filename" : "C:\\Windows\\System32\\wsock32.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef8b00000", - "code_id" : "4A5BE0B3b000", - "debug_file" : "winrnr.pdb", - "debug_id" : "092077177DFC4B37BD49E938377C81392", - "end_addr" : "0x7fef8b0b000", - "filename" : "C:\\Windows\\System32\\winrnr.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef8b10000", - "code_id" : "4A5BE04E19000", - "debug_file" : "pnrpnsp.pdb", - "debug_id" : "7346E3B8316541FEB959B0787F85CC9A2", - "end_addr" : "0x7fef8b29000", - "filename" : "C:\\Windows\\System32\\pnrpnsp.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fef8b30000", - "code_id" : "4A5BDFC615000", - "debug_file" : "NapiNSP.pdb", - "debug_id" : "D77ABF6D8C4643D6A4A721AA53347ECB2", - "end_addr" : "0x7fef8b45000", - "filename" : "C:\\Windows\\System32\\NapiNSP.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefac10000", - "code_id" : "4A5BDF2718000", - "debug_file" : "dwmapi.pdb", - "debug_id" : "8683ED0C3DBE4053883EC22FD9B4F2102", - "end_addr" : "0x7fefac28000", - "filename" : "C:\\Windows\\System32\\dwmapi.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefac30000", - "code_id" : "4A5BE0B03b000", - "debug_file" : "winmm.pdb", - "debug_id" : "DF6E9D2411CE4DDFB398C369D05BC96B2", - "end_addr" : "0x7fefac6b000", - "filename" : "C:\\Windows\\System32\\winmm.dll", - "missing_symbols" : true, - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefaf50000", - "code_id" : "4CE7C457215000", - "debug_file" : "MicrosoftWindowsGdiPlus-1.1.7601.17514-gdiplus.pdb", - "debug_id" : "E92C00158AFD47278CCBBB30011E7D381", - "end_addr" : "0x7fefb165000", - "filename" : "C:\\Windows\\winsxs\\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17514_none_2b24536c71ed437a\\GdiPlus.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefb200000", - "code_id" : "4A5BE09356000", - "debug_file" : "UxTheme.pdb", - "debug_id" : "B0692F27B52C454FACA7380C075DE8632", - "end_addr" : "0x7fefb256000", - "filename" : "C:\\Windows\\System32\\uxtheme.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefb970000", - "code_id" : "4CE7C89715000", - "debug_file" : "nlaapi.pdb", - "debug_id" : "E4265F2570334A42B6BDCE531B463CC22", - "end_addr" : "0x7fefb985000", - "filename" : "C:\\Windows\\System32\\nlaapi.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefc330000", - "code_id" : "4A5BE0B77000", - "debug_file" : "wshtcpip.pdb", - "debug_id" : "CDA0B508B8854B9A929B4B8B06A1B3852", - "end_addr" : "0x7fefc337000", - "filename" : "C:\\Windows\\System32\\WSHTCPIP.DLL", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefc420000", - "code_id" : "4A5BE0B1b000", - "debug_file" : "winnsi.pdb", - "debug_id" : "20D0E4C982CA45AFA5260FA6E6C256182", - "end_addr" : "0x7fefc42b000", - "filename" : "C:\\Windows\\System32\\winnsi.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefc430000", - "code_id" : "4CE7C6DA27000", - "debug_file" : "iphlpapi.pdb", - "debug_id" : "8B5A2D4E17EF425EB27B7705D3BC92C72", - "end_addr" : "0x7fefc457000", - "filename" : "C:\\Windows\\System32\\IPHLPAPI.DLL", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefc4d0000", - "code_id" : "4CE7C9F41e000", - "debug_file" : "userenv.pdb", - "debug_id" : "9279A3188C0745E88BB89DFBD6B071062", - "end_addr" : "0x7fefc4ee000", - "filename" : "C:\\Windows\\System32\\userenv.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefc710000", - "code_id" : "4A5BE03947000", - "debug_file" : "rsaenh.pdb", - "debug_id" : "2BFA66BBF64F4B12B0B3E7A78AE54C2D2", - "end_addr" : "0x7fefc757000", - "filename" : "C:\\Windows\\System32\\rsaenh.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefc830000", - "code_id" : "4CE7C5F25b000", - "debug_file" : "dnsapi.pdb", - "debug_id" : "70BE754EAC24444F93D3381A96404BBE2", - "end_addr" : "0x7fefc88b000", - "filename" : "C:\\Windows\\System32\\dnsapi.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefc9b0000", - "code_id" : "4CE7C83D55000", - "debug_file" : "mswsock.pdb", - "debug_id" : "47409B8D0E6A4DBF8930D24404E9DC1B2", - "end_addr" : "0x7fefca05000", - "filename" : "C:\\Windows\\System32\\mswsock.dll", - "missing_symbols" : true, - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefca10000", - "code_id" : "4A5BDF9617000", - "debug_file" : "cryptsp.pdb", - "debug_id" : "66E52B1E32514B16ACB0A2B5DFB173FF1", - "end_addr" : "0x7fefca27000", - "filename" : "C:\\Windows\\System32\\cryptsp.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefcf80000", - "code_id" : "4CE7C9A0b000", - "debug_file" : "secur32.pdb", - "debug_id" : "7E4963AA96744A86B2E4660766D9C0592", - "end_addr" : "0x7fefcf8b000", - "filename" : "C:\\Windows\\System32\\secur32.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefcfe0000", - "code_id" : "4CE7C9EF25000", - "debug_file" : "sspicli.pdb", - "debug_id" : "99543E69502E45D38FA68B1D32A612A02", - "end_addr" : "0x7fefd005000", - "filename" : "C:\\Windows\\System32\\sspicli.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefd070000", - "code_id" : "4A5BDF91f000", - "debug_file" : "cryptbase.pdb", - "debug_id" : "F03E074BB9E74C9F9BBFB0E42EF3A0AB2", - "end_addr" : "0x7fefd07f000", - "filename" : "C:\\Windows\\System32\\CRYPTBASE.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefd160000", - "code_id" : "4CE7C96F14000", - "debug_file" : "RpcRtRemote.pdb", - "debug_id" : "EB6745394D5B4FCB88A0ADBE1EA17B1C2", - "end_addr" : "0x7fefd174000", - "filename" : "C:\\Windows\\System32\\RpcRtRemote.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefd180000", - "code_id" : "4A5BE01Ff000", - "debug_file" : "profapi.pdb", - "debug_id" : "DC86D275BBB0437F94B2CD4B06D4B9342", - "end_addr" : "0x7fefd18f000", - "filename" : "C:\\Windows\\System32\\profapi.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefd4e0000", - "code_id" : "50B8479B6b000", - "debug_file" : "kernelbase.pdb", - "debug_id" : "91C72371DD43448192B7B46F5ED10AA02", - "end_addr" : "0x7fefd54b000", - "filename" : "C:\\Windows\\System32\\KERNELBASE.dll", - "missing_symbols" : true, - "version" : "6.1.7601.18015" - }, - { - "base_addr" : "0x7fefd550000", - "code_id" : "4A5BDF5Fe000", - "debug_file" : "lpk.pdb", - "debug_id" : "B653B2B751414F90BE8A8BBE222F17782", - "end_addr" : "0x7fefd55e000", - "filename" : "C:\\Windows\\System32\\lpk.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefd5e0000", - "code_id" : "4CE7C92C203000", - "debug_file" : "ole32.pdb", - "debug_id" : "EE489189724F4D47AECCFDB5534824352", - "end_addr" : "0x7fefd7e3000", - "filename" : "C:\\Windows\\System32\\ole32.dll", - "missing_symbols" : true, - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefd9d0000", - "code_id" : "4A5BDFAA109000", - "debug_file" : "msctf.pdb", - "debug_id" : "6A5BABB8E88644C696530BFE3C90F32F2", - "end_addr" : "0x7fefdad9000", - "filename" : "C:\\Windows\\System32\\msctf.dll", - "missing_symbols" : true, - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefdae0000", - "code_id" : "4A5BE05E1f000", - "debug_file" : "sechost.pdb", - "debug_id" : "ED0034906F9A408C92C4F32ACFC57B291", - "end_addr" : "0x7fefdaff000", - "filename" : "C:\\Windows\\System32\\sechost.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7fefdb00000", - "code_id" : "4A5BDFBE9f000", - "debug_file" : "msvcrt.pdb", - "debug_id" : "047EACB4C8FA442BBAEF06CE45CC1A782", - "end_addr" : "0x7fefdb9f000", - "filename" : "C:\\Windows\\System32\\msvcrt.dll", - "missing_symbols" : true, - "version" : "7.0.7600.16385" - }, - { - "base_addr" : "0x7fefdcd0000", - "code_id" : "4CE7C96E12d000", - "debug_file" : "rpcrt4.pdb", - "debug_id" : "7D748DA6D7454C9EA38C8CEF1C9E75F22", - "end_addr" : "0x7fefddfd000", - "filename" : "C:\\Windows\\System32\\rpcrt4.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefde00000", - "code_id" : "4CE7C9A6d88000", - "debug_file" : "shell32.pdb", - "debug_id" : "1E9FDDC20B504C30921B1185EBB2ED962", - "end_addr" : "0x7fefeb88000", - "filename" : "C:\\Windows\\System32\\shell32.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefeb90000", - "code_id" : "4CE7CA254d000", - "debug_file" : "ws2_32.pdb", - "debug_id" : "348BE7D22346495B841B7FA203996BD02", - "end_addr" : "0x7fefebdd000", - "filename" : "C:\\Windows\\System32\\ws2_32.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefee40000", - "code_id" : "4CE7C65167000", - "debug_file" : "gdi32.pdb", - "debug_id" : "FB9403C3B1304DA192C4D0E3485E25ED2", - "end_addr" : "0x7fefeea7000", - "filename" : "C:\\Windows\\System32\\gdi32.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefeed0000", - "code_id" : "4CE7C9AB71000", - "debug_file" : "shlwapi.pdb", - "debug_id" : "0820A0750C1A4E2597E17DEA57D049542", - "end_addr" : "0x7fefef41000", - "filename" : "C:\\Windows\\System32\\shlwapi.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7fefeff0000", - "code_id" : "4CE7C63597000", - "debug_file" : "comdlg32.pdb", - "debug_id" : "631B57376F8549FDB2E7A8AB3D2D1FDF2", - "end_addr" : "0x7feff087000", - "filename" : "C:\\Windows\\System32\\comdlg32.dll", - "version" : "6.1.7601.17514" - }, - { - "base_addr" : "0x7feff090000", - "code_id" : "4A5BE0298000", - "debug_file" : "nsi.pdb", - "debug_id" : "DDDD6B3D710D49D5A01AF692A91FCD262", - "end_addr" : "0x7feff098000", - "filename" : "C:\\Windows\\System32\\nsi.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7feff0a0000", - "code_id" : "4A5BDF402e000", - "debug_file" : "imm32.pdb", - "debug_id" : "98F27BA5AEE541ECBEE00CD03AD50FEE2", - "end_addr" : "0x7feff0ce000", - "filename" : "C:\\Windows\\System32\\imm32.dll", - "version" : "6.1.7600.16385" - }, - { - "base_addr" : "0x7feff0d0000", - "code_id" : "521EAE52db000", - "debug_file" : "advapi32.pdb", - "debug_id" : "699F5B1DC86D40EA9280C58CB9AA46172", - "end_addr" : "0x7feff1ab000", - "filename" : "C:\\Windows\\System32\\advapi32.dll", - "version" : "6.1.7601.18247" - }, - { - "base_addr" : "0x7feff1b0000", - "code_id" : "4CE7C9F5c9000", - "debug_file" : "usp10.pdb", - "debug_id" : "DB4EC1196F91457FBB0A462D9D0AFEC31", - "end_addr" : "0x7feff279000", - "filename" : "C:\\Windows\\System32\\usp10.dll", - "version" : "1.626.7601.17514" - }, - { - "base_addr" : "0x7feff460000", - "code_id" : "4CE7C930d7000", - "debug_file" : "oleaut32.pdb", - "debug_id" : "FDC23B056B754023BC1E0146C2A4390F2", - "end_addr" : "0x7feff537000", - "filename" : "C:\\Windows\\System32\\oleaut32.dll", - "version" : "6.1.7601.17514" - } - ], - "sensitive" : { - "exploitability" : "none" - }, - "status" : "OK", - "system_info" : { - "cpu_arch" : "amd64", - "cpu_count" : 2, - "cpu_info" : "family 6 model 26 stepping 5", - "os" : "Windows NT", - "os_ver" : "6.1.7601 Service Pack 1" - }, - "thread_count" : 12, - "threads" : [ - { - "frame_count" : 82, - "frames" : [ - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Settings.cpp", - "frame" : 0, - "function" : "Natron::crash_application", - "function_offset" : "0x57", - "line" : 2186, - "module" : "Natron-bin.exe", - "module_offset" : "0x8ee1e7", - "offset" : "0xcee1e7", - "trust" : "context" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Settings.cpp", - "frame" : 1, - "function" : "Natron::Settings::onKnobValueChanged", - "function_offset" : "0x7c0", - "line" : 2314, - "module" : "Natron-bin.exe", - "module_offset" : "0x383920", - "offset" : "0x783920", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 2, - "function" : "Natron::KnobHolder::onKnobValueChanged_public", - "function_offset" : "0x6a", - "line" : 5913, - "module" : "Natron-bin.exe", - "module_offset" : "0x4f646a", - "offset" : "0x8f646a", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 3, - "function" : "Natron::KnobHolder::endChanges", - "function_offset" : "0x4f9", - "line" : 5484, - "module" : "Natron-bin.exe", - "module_offset" : "0x516af9", - "offset" : "0x916af9", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 4, - "function" : "Natron::KnobHelper::evaluateValueChangeInternal", - "function_offset" : "0x143", - "line" : 1695, - "module" : "Natron-bin.exe", - "module_offset" : "0x5185b3", - "offset" : "0x9185b3", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/Knob.cpp", - "frame" : 5, - "function" : "Natron::KnobHelper::evaluateValueChange", - "function_offset" : "0x14", - "line" : 1719, - "module" : "Natron-bin.exe", - "module_offset" : "0x518824", - "offset" : "0x918824", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/KnobTypes.cpp", - "frame" : 6, - "function" : "Natron::KnobButton::trigger", - "function_offset" : "0x2e", - "line" : 494, - "module" : "Natron-bin.exe", - "module_offset" : "0x4e4b6e", - "offset" : "0x8e4b6e", - "trust" : "cfi" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Gui/../../Gui/KnobGuiButton.cpp", - "frame" : 7, - "function" : "Natron::KnobGuiButton::emitValueChanged", - "function_offset" : "0xb4", - "line" : 188, - "module" : "Natron-bin.exe", - "module_offset" : "0x2bfab4", - "offset" : "0x6bfab4", - "trust" : "cfi" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1222cc", - "offset" : "0x6e1e22cc", - "trust" : "cfi" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x4abdf", - "offset" : "0x6e10abdf", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x2857ff", - "offset" : "0x6e3457ff", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x37ca8", - "offset" : "0x6e0f7ca8", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x5c8582", - "offset" : "0x67cc8582", - "trust" : "scan" - }, - { - "frame" : 13, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x34c8c4", - "offset" : "0x67a4c8c4", - "trust" : "scan" - }, - { - "frame" : 14, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x51aff", - "offset" : "0x67751aff", - "trust" : "scan" - }, - { - "frame" : 15, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x34dbf9", - "offset" : "0x67a4dbf9", - "trust" : "scan" - }, - { - "frame" : 16, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x34d23c", - "offset" : "0x67a4d23c", - "trust" : "scan" - }, - { - "frame" : 17, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x53447", - "offset" : "0x77283447", - "trust" : "scan" - }, - { - "frame" : 18, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x34dcf4", - "offset" : "0x67a4dcf4", - "trust" : "scan" - }, - { - "frame" : 19, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1113cb", - "offset" : "0x6e1d13cb", - "trust" : "scan" - }, - { - "frame" : 20, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x61d27", - "offset" : "0x67761d27", - "trust" : "scan" - }, - { - "frame" : 21, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x2857d7", - "offset" : "0x6e3457d7", - "trust" : "scan" - }, - { - "frame" : 22, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x33307e", - "offset" : "0x67a3307e", - "trust" : "scan" - }, - { - "frame" : 23, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x16be4", - "offset" : "0x67716be4", - "trust" : "scan" - }, - { - "frame" : 24, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x122cb", - "offset" : "0x677122cb", - "trust" : "scan" - }, - { - "frame" : 25, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x18cc1", - "offset" : "0x67718cc1", - "trust" : "scan" - }, - { - "frame" : 26, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x11542f", - "offset" : "0x7734542f", - "trust" : "scan" - }, - { - "frame" : 27, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x76d47f", - "offset" : "0x67e6d47f", - "trust" : "scan" - }, - { - "frame" : 28, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19bee", - "offset" : "0x77029bee", - "trust" : "scan" - }, - { - "frame" : 29, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1113cb", - "offset" : "0x6e1d13cb", - "trust" : "scan" - }, - { - "frame" : 30, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1273a9", - "offset" : "0x6e1e73a9", - "trust" : "scan" - }, - { - "frame" : 31, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x53034", - "offset" : "0x67753034", - "trust" : "scan" - }, - { - "frame" : 32, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x12684f", - "offset" : "0x6e1e684f", - "trust" : "scan" - }, - { - "frame" : 33, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x18322", - "offset" : "0x67718322", - "trust" : "scan" - }, - { - "frame" : 34, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x7b9cf", - "offset" : "0x6777b9cf", - "trust" : "scan" - }, - { - "frame" : 35, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x11f28", - "offset" : "0x67711f28", - "trust" : "scan" - }, - { - "frame" : 36, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x121b1", - "offset" : "0x677121b1", - "trust" : "scan" - }, - { - "frame" : 37, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x25100", - "offset" : "0x67725100", - "trust" : "scan" - }, - { - "frame" : 38, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x872477", - "offset" : "0x67f72477", - "trust" : "scan" - }, - { - "frame" : 39, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x2857d7", - "offset" : "0x6e3457d7", - "trust" : "scan" - }, - { - "frame" : 40, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x7a43f", - "offset" : "0x6777a43f", - "trust" : "scan" - }, - { - "frame" : 41, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x33307e", - "offset" : "0x67a3307e", - "trust" : "scan" - }, - { - "frame" : 42, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x872477", - "offset" : "0x67f72477", - "trust" : "scan" - }, - { - "frame" : 43, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x87246f", - "offset" : "0x67f7246f", - "trust" : "scan" - }, - { - "frame" : 44, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x76d47f", - "offset" : "0x67e6d47f", - "trust" : "scan" - }, - { - "frame" : 45, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19aa5", - "offset" : "0x77029aa5", - "trust" : "scan" - }, - { - "frame" : 46, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x872047", - "offset" : "0x67f72047", - "trust" : "scan" - }, - { - "frame" : 47, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x7c7ec", - "offset" : "0x6777c7ec", - "trust" : "scan" - }, - { - "frame" : 48, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x10fedf", - "offset" : "0x6e1cfedf", - "trust" : "scan" - }, - { - "frame" : 49, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x18b58", - "offset" : "0x67718b58", - "trust" : "scan" - }, - { - "frame" : 50, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x122cb", - "offset" : "0x677122cb", - "trust" : "scan" - }, - { - "frame" : 51, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x180a8", - "offset" : "0x6e0d80a8", - "trust" : "scan" - }, - { - "frame" : 52, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19b42", - "offset" : "0x77029b42", - "trust" : "scan" - }, - { - "frame" : 53, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19bee", - "offset" : "0x77029bee", - "trust" : "scan" - }, - { - "frame" : 54, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x1b9b1", - "offset" : "0x7fefd4fb9b1", - "trust" : "scan" - }, - { - "frame" : 55, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x172ca", - "offset" : "0x770272ca", - "trust" : "scan" - }, - { - "frame" : 56, - "missing_symbols" : true, - "module" : "msctf.dll", - "module_offset" : "0x2163", - "offset" : "0x7fefd9d2163", - "trust" : "scan" - }, - { - "frame" : 57, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x3a139", - "offset" : "0x6e0fa139", - "trust" : "scan" - }, - { - "frame" : 58, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x10c3", - "offset" : "0x7fefdb010c3", - "trust" : "scan" - }, - { - "frame" : 59, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x185eb5", - "offset" : "0x6e245eb5", - "trust" : "scan" - }, - { - "frame" : 60, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x10c3", - "offset" : "0x7fefdb010c3", - "trust" : "scan" - }, - { - "frame" : 61, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x114487", - "offset" : "0x6e1d4487", - "trust" : "scan" - }, - { - "frame" : 62, - "missing_symbols" : true, - "module" : "msctf.dll", - "module_offset" : "0x3daf", - "offset" : "0x7fefd9d3daf", - "trust" : "scan" - }, - { - "frame" : 63, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1afe8", - "offset" : "0x6e0dafe8", - "trust" : "scan" - }, - { - "frame" : 64, - "missing_symbols" : true, - "module" : "msctf.dll", - "module_offset" : "0x2420", - "offset" : "0x7fefd9d2420", - "trust" : "scan" - }, - { - "frame" : 65, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0xb9fb", - "offset" : "0x7701b9fb", - "trust" : "scan" - }, - { - "frame" : 66, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x116fd8", - "offset" : "0x6e1d6fd8", - "trust" : "scan" - }, - { - "frame" : 67, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0xb9c5", - "offset" : "0x7701b9c5", - "trust" : "scan" - }, - { - "frame" : 68, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x138807", - "offset" : "0x6e1f8807", - "trust" : "scan" - }, - { - "frame" : 69, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x797b", - "offset" : "0x7701797b", - "trust" : "scan" - }, - { - "frame" : 70, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0xf628", - "offset" : "0x7701f628", - "trust" : "scan" - }, - { - "frame" : 71, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0xf5fa", - "offset" : "0x7701f5fa", - "trust" : "scan" - }, - { - "frame" : 72, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19bd0", - "offset" : "0x77029bd0", - "trust" : "scan" - }, - { - "frame" : 73, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x511f4", - "offset" : "0x772811f4", - "trust" : "scan" - }, - { - "frame" : 74, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19b42", - "offset" : "0x77029b42", - "trust" : "scan" - }, - { - "frame" : 75, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x198d9", - "offset" : "0x770298d9", - "trust" : "scan" - }, - { - "frame" : 76, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x7b9cf", - "offset" : "0x6777b9cf", - "trust" : "scan" - }, - { - "frame" : 77, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x19711", - "offset" : "0x77029711", - "trust" : "scan" - }, - { - "frame" : 78, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x13d4f", - "offset" : "0x6e0d3d4f", - "trust" : "scan" - }, - { - "frame" : 79, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x13b9dc", - "offset" : "0x6e1fb9dc", - "trust" : "scan" - }, - { - "frame" : 80, - "missing_symbols" : true, - "module" : "QTGUI4.DLL", - "module_offset" : "0x7b9cf", - "offset" : "0x6777b9cf", - "trust" : "scan" - }, - { - "frame" : 81, - "missing_symbols" : true, - "module" : "user32.dll", - "module_offset" : "0x16283", - "offset" : "0x77026283", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 20, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x512fa", - "offset" : "0x772812fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x540fc", - "offset" : "0x772840fc", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x36e200", - "offset" : "0x7255e200", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x370a18", - "offset" : "0x72560a18", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52f7f", - "offset" : "0x77282f7f", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52fbf", - "offset" : "0x77282fbf", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x3710fa", - "offset" : "0x725610fa", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1976f", - "offset" : "0x7712976f", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1976f", - "offset" : "0x7712976f", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 13, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 14, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x37102f", - "offset" : "0x7256102f", - "trust" : "scan" - }, - { - "frame" : 15, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x42be", - "offset" : "0x7fefdb042be", - "trust" : "scan" - }, - { - "frame" : 16, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x7458", - "offset" : "0x7fefdb07458", - "trust" : "scan" - }, - { - "frame" : 17, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x91e9f", - "offset" : "0x7fefdb91e9f", - "trust" : "scan" - }, - { - "frame" : 18, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 19, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 19, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x512fa", - "offset" : "0x772812fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x36e2f3", - "offset" : "0x7255e2f3", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x370a18", - "offset" : "0x72560a18", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52f7f", - "offset" : "0x77282f7f", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52fbf", - "offset" : "0x77282fbf", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x3710fa", - "offset" : "0x725610fa", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1976f", - "offset" : "0x7712976f", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1976f", - "offset" : "0x7712976f", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x22acf", - "offset" : "0x77132acf", - "trust" : "scan" - }, - { - "frame" : 13, - "missing_symbols" : true, - "module" : "opengl32.dll", - "module_offset" : "0x37102f", - "offset" : "0x7256102f", - "trust" : "scan" - }, - { - "frame" : 14, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x42be", - "offset" : "0x7fefdb042be", - "trust" : "scan" - }, - { - "frame" : 15, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x7458", - "offset" : "0x7fefdb07458", - "trust" : "scan" - }, - { - "frame" : 16, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x91e9f", - "offset" : "0x7fefdb91e9f", - "trust" : "scan" - }, - { - "frame" : 17, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 18, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 12, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x515fa", - "offset" : "0x772815fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x1202", - "offset" : "0x7fefd4e1202", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x6664f", - "offset" : "0x6e12664f", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x10c3", - "offset" : "0x7fefdb010c3", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x6129f", - "offset" : "0x6e12129f", - "trust" : "scan" - }, - { - "file" : "C:\\msys\\home\\NatronWin\\Natron\\buildmaster\\tmp64\\Natron\\build\\Engine/../../Engine/ExistenceCheckThread.cpp", - "frame" : 5, - "function" : "Natron::ExistenceCheckerThread::run", - "function_offset" : "0x147", - "line" : 127, - "module" : "Natron-bin.exe", - "module_offset" : "0x6d6307", - "offset" : "0xad6307", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1aaaa", - "offset" : "0x6e0daaaa", - "trust" : "cfi" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x42be", - "offset" : "0x7fefdb042be", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x7458", - "offset" : "0x7fefdb07458", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x91e9f", - "offset" : "0x7fefdb91e9f", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 13, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x512fa", - "offset" : "0x772812fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x18d0b7", - "offset" : "0x6e24d0b7", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0xa54e", - "offset" : "0x6e0ca54e", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1bd02", - "offset" : "0x6e0dbd02", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0xf375", - "offset" : "0x6e0cf375", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x180a8", - "offset" : "0x6e0d80a8", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1aaaa", - "offset" : "0x6e0daaaa", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x42be", - "offset" : "0x7fefdb042be", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x7458", - "offset" : "0x7fefdb07458", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x91e9f", - "offset" : "0x7fefdb91e9f", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 6, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x5134a", - "offset" : "0x7728134a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "mswsock.dll", - "module_offset" : "0x5970", - "offset" : "0x7fefc9b5970", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "mswsock.dll", - "module_offset" : "0x44f4f", - "offset" : "0x7fefc9f4f4f", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "mswsock.dll", - "module_offset" : "0x2754f", - "offset" : "0x7fefc9d754f", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 13, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x512fa", - "offset" : "0x772812fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x10db", - "offset" : "0x7fefd4e10db", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x3a388", - "offset" : "0x6e0fa388", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1bd02", - "offset" : "0x6e0dbd02", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0xf5f78", - "offset" : "0x6e1b5f78", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "libstdc++-6.dll", - "module_offset" : "0xc50eb", - "offset" : "0x6fd050eb", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x2857ff", - "offset" : "0x6e3457ff", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "QTCORE4.DLL", - "module_offset" : "0x1aaaa", - "offset" : "0x6e0daaaa", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x42be", - "offset" : "0x7fefdb042be", - "trust" : "scan" - }, - { - "frame" : 9, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x7458", - "offset" : "0x7fefdb07458", - "trust" : "scan" - }, - { - "frame" : 10, - "missing_symbols" : true, - "module" : "msvcrt.dll", - "module_offset" : "0x91e9f", - "offset" : "0x7fefdb91e9f", - "trust" : "scan" - }, - { - "frame" : 11, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 12, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 3, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x5186a", - "offset" : "0x7728186a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1b036", - "offset" : "0x7724b036", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x10454f", - "offset" : "0x7733454f", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 4, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52bba", - "offset" : "0x77282bba", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1fe3a", - "offset" : "0x7724fe3a", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1045e7", - "offset" : "0x773345e7", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1324af", - "offset" : "0x773624af", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 4, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x52bba", - "offset" : "0x77282bba", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1fe3a", - "offset" : "0x7724fe3a", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1045e7", - "offset" : "0x773345e7", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x1324af", - "offset" : "0x773624af", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 9, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x515fa", - "offset" : "0x772815fa", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "KERNELBASE.dll", - "module_offset" : "0x1202", - "offset" : "0x7fefd4e1202", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "ole32.dll", - "module_offset" : "0x2311a", - "offset" : "0x7fefd60311a", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "ole32.dll", - "module_offset" : "0x101cf", - "offset" : "0x7fefd5f01cf", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "ole32.dll", - "module_offset" : "0x10105", - "offset" : "0x7fefd5f0105", - "trust" : "scan" - }, - { - "frame" : 5, - "missing_symbols" : true, - "module" : "ole32.dll", - "module_offset" : "0x14639", - "offset" : "0x7fefd5f4639", - "trust" : "scan" - }, - { - "frame" : 6, - "missing_symbols" : true, - "module" : "ole32.dll", - "module_offset" : "0x10181", - "offset" : "0x7fefd5f0181", - "trust" : "scan" - }, - { - "frame" : 7, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 8, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - }, - { - "frame_count" : 5, - "frames" : [ - { - "frame" : 0, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x5186a", - "offset" : "0x7728186a", - "trust" : "context" - }, - { - "frame" : 1, - "missing_symbols" : true, - "module" : "winmm.dll", - "module_offset" : "0xa8ae", - "offset" : "0x7fefac3a8ae", - "trust" : "scan" - }, - { - "frame" : 2, - "missing_symbols" : true, - "module" : "winmm.dll", - "module_offset" : "0x303ff", - "offset" : "0x7fefac603ff", - "trust" : "scan" - }, - { - "frame" : 3, - "missing_symbols" : true, - "module" : "kernel32.dll", - "module_offset" : "0x1652c", - "offset" : "0x7712652c", - "trust" : "scan" - }, - { - "frame" : 4, - "missing_symbols" : true, - "module" : "ntdll.dll", - "module_offset" : "0x2c540", - "offset" : "0x7725c540", - "trust" : "scan" - } - ] - } - ] -} - diff --git a/tests/run.sh b/tests/run.sh index 7747ff5b10..f7fea231ca 100644 --- a/tests/run.sh +++ b/tests/run.sh @@ -1,20 +1,17 @@ #!/bin/sh SW="../minidump-stackwalk/stackwalker" -SYM="symbols" -DUMPS="39eb2108-ca98-7946-09d36d98-51c56b32 6537E627-678E-44B3-9116-36323C0BA4CC f97fd058-fb43-4098-b770-7fce7a3fb757" +DUMPS="2f5d2700-d191-9876-430fd7b8-3825119e" for i in $DUMPS;do - #echo "Testing $i" - #rm -f $i.tmp || true - $SW --pretty --symbols-url http://fxarena.net/natron/symbols --symbols-cache /tmp $i.dmp #> $i.tmp - #DIFF=`diff $i.json $i.tmp` - #if [ ! -z "$DIFF" ]; then - # echo "$i: FAILED" - # echo "$DIFF" - # exit 1 - #else - # echo "$i: PASSED" - #fi - #rm -f $i.tmp || true + echo "Testing $i" + rm -f $i.tmp || true + $SW --pretty $i.dmp symbols > $i.tmp + DIFF=`diff $i.json $i.tmp` + if [ ! -z "$DIFF" ]; then + echo "$i: FAILED" + echo "$DIFF" + exit 1 + else + echo "$i: PASSED" + fi + rm -f $i.tmp || true done -#echo "Tests done" -#exit 0 diff --git a/tests/symbols/Natron-bin/69CDA01A0F236F7C71CD19E5A20A21AC0/Natron-bin.sym.zip b/tests/symbols/Natron-bin/69CDA01A0F236F7C71CD19E5A20A21AC0/Natron-bin.sym.zip new file mode 100644 index 0000000000..db106da20e Binary files /dev/null and b/tests/symbols/Natron-bin/69CDA01A0F236F7C71CD19E5A20A21AC0/Natron-bin.sym.zip differ