From c330cbb315df4b609c494e324b9b248a4e5f3598 Mon Sep 17 00:00:00 2001 From: darco Date: Thu, 1 Mar 2007 02:37:26 +0000 Subject: [PATCH] Working toward a MacOS X framework for Synfig... git-svn-id: http://svn.voria.com/code@259 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-core/trunk/config/configure.ac | 6 +- synfig-core/trunk/macosxbuild.sh | 6 +- synfig-core/trunk/src/synfig/module.cpp | 13 +- synfig-core/trunk/src/synfig/savecanvas.cpp | 1 + synfig-core/trunk/synfig-core.xcodeproj/config.h | 264 + .../trunk/synfig-core.xcodeproj/darco.mode1 | 1542 +++++ .../trunk/synfig-core.xcodeproj/darco.pbxuser | 3939 +++++++++++ .../trunk/synfig-core.xcodeproj/project.pbxproj | 3071 +++++++++ synfig-core/trunk/synfig.pbproj/config.h | 335 - synfig-core/trunk/synfig.pbproj/darco.mode1 | 1121 ---- synfig-core/trunk/synfig.pbproj/darco.pbxuser | 757 --- synfig-core/trunk/synfig.pbproj/doxygen.cfg | 1243 ---- synfig-core/trunk/synfig.pbproj/etl_profile.h | 28 - synfig-core/trunk/synfig.pbproj/project.pbxproj | 6808 -------------------- 14 files changed, 8836 insertions(+), 10298 deletions(-) create mode 100644 synfig-core/trunk/synfig-core.xcodeproj/config.h create mode 100644 synfig-core/trunk/synfig-core.xcodeproj/darco.mode1 create mode 100644 synfig-core/trunk/synfig-core.xcodeproj/darco.pbxuser create mode 100644 synfig-core/trunk/synfig-core.xcodeproj/project.pbxproj delete mode 100644 synfig-core/trunk/synfig.pbproj/config.h delete mode 100755 synfig-core/trunk/synfig.pbproj/darco.mode1 delete mode 100755 synfig-core/trunk/synfig.pbproj/darco.pbxuser delete mode 100644 synfig-core/trunk/synfig.pbproj/doxygen.cfg delete mode 100644 synfig-core/trunk/synfig.pbproj/etl_profile.h delete mode 100755 synfig-core/trunk/synfig.pbproj/project.pbxproj diff --git a/synfig-core/trunk/config/configure.ac b/synfig-core/trunk/config/configure.ac index faef858..b10a1d3 100644 --- a/synfig-core/trunk/config/configure.ac +++ b/synfig-core/trunk/config/configure.ac @@ -229,7 +229,11 @@ if test $with_freetype != "no" ; then { PKG_CHECK_MODULES(FREETYPE, freetype2,[ with_freetype="yes" ],[ - with_freetype="no" + PKG_CHECK_MODULES(FREETYPE, xft,[ + with_freetype="yes" + ],[ + with_freetype="no" + ]) ]) } ; fi diff --git a/synfig-core/trunk/macosxbuild.sh b/synfig-core/trunk/macosxbuild.sh index e27bc87..b43b49c 100755 --- a/synfig-core/trunk/macosxbuild.sh +++ b/synfig-core/trunk/macosxbuild.sh @@ -2,7 +2,7 @@ #OPTIONS="--disable-optimization --enable-debug" -PREFIX=/Applications/SynfigStudio.app/Contents/synfig +PREFIX=/Users/darco/Projects/Voria/synfig-build export PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:/usr/lib/pkgconfig:/usr/X11R6/lib/pkgconfig OPTIONS="--prefix=$PREFIX" @@ -18,7 +18,7 @@ OPTIONS="$OPTIONS --disable-dependency-tracking" #OPTIONS="$OPTIONS --enable-universal" ARCH_FLAGS="" -ARCH_FLAGS="$ARCH_FLAGS -arch ppc" +#ARCH_FLAGS="$ARCH_FLAGS -arch ppc" ARCH_FLAGS="$ARCH_FLAGS -arch i386" LDFLAGS="-L$PREFIX/lib" @@ -50,7 +50,7 @@ echo ../configure $OPTIONS CC=\"$CC\" CXX=\"$CXX\" CPP=\"$CPP\" CXXCPP=\"$CXXCPP ../configure $OPTIONS CC="$CC" CXX="$CXX" CPP="$CPP" CXXCPP="$CXXCPP" LDFLAGS="$LDFLAGS" CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" MACOS_DEPLOYMENT_TARGET=10.4 || exit 1 -make +make -j2 make install-strip #make package $MAKEFLAGS diff --git a/synfig-core/trunk/src/synfig/module.cpp b/synfig-core/trunk/src/synfig/module.cpp index 7e50d08..8e3046d 100644 --- a/synfig-core/trunk/src/synfig/module.cpp +++ b/synfig-core/trunk/src/synfig/module.cpp @@ -33,8 +33,12 @@ #include "module.h" #include "general.h" -#include #include + +#ifndef USE_CF_BUNDLES +#include +#endif + #endif /* === M A C R O S ========================================================= */ @@ -52,6 +56,7 @@ Module::Book *synfig::Module::book_; bool Module::subsys_init(const String &prefix) { +#ifndef USE_CF_BUNDLES #ifndef SYNFIG_LTDL_NO_STATIC //LTDL_SET_PRELOADED_SYMBOLS(); #endif @@ -74,7 +79,7 @@ Module::subsys_init(const String &prefix) #endif lt_dladdsearchdir("/usr/local/lib/synfig/modules"); lt_dladdsearchdir("."); - +#endif book_=new Book; return true; } @@ -84,7 +89,9 @@ Module::subsys_stop() { delete book_; +#ifndef USE_CF_BUNDLES lt_dlexit(); +#endif return true; } @@ -109,6 +116,7 @@ synfig::Module::Register(Module::Handle mod) bool synfig::Module::Register(const String &module_name, ProgressCallback *callback) { +#ifndef USE_CF_BUNDLES lt_dlhandle module; if(callback)callback->task(strprintf(_("Attempting to register \"%s\""),module_name.c_str())); @@ -175,5 +183,6 @@ synfig::Module::Register(const String &module_name, ProgressCallback *callback) if(callback)callback->task(strprintf(_("Success for \"%s\""),module_name.c_str())); +#endif return false; } diff --git a/synfig-core/trunk/src/synfig/savecanvas.cpp b/synfig-core/trunk/src/synfig/savecanvas.cpp index 44468a6..f0b8a6b 100644 --- a/synfig-core/trunk/src/synfig/savecanvas.cpp +++ b/synfig-core/trunk/src/synfig/savecanvas.cpp @@ -55,6 +55,7 @@ #include #include #include "gradient.h" +#include #endif diff --git a/synfig-core/trunk/synfig-core.xcodeproj/config.h b/synfig-core/trunk/synfig-core.xcodeproj/config.h new file mode 100644 index 0000000..036cf69 --- /dev/null +++ b/synfig-core/trunk/synfig-core.xcodeproj/config.h @@ -0,0 +1,264 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ + +#define USE_CF_BUNDLES 1 + +/* Describes the time at which the library will stop working */ +/* #undef DEATH_TIME */ + +/* enable apple vImage */ +/* #undef HAS_VIMAGE */ + +/* Define to 1 if you have the `argz_append' function. */ +/* #undef HAVE_ARGZ_APPEND */ + +/* Define to 1 if you have the `argz_create_sep' function. */ +/* #undef HAVE_ARGZ_CREATE_SEP */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_ARGZ_H */ + +/* Define to 1 if you have the `argz_insert' function. */ +/* #undef HAVE_ARGZ_INSERT */ + +/* Define to 1 if you have the `argz_next' function. */ +/* #undef HAVE_ARGZ_NEXT */ + +/* Define to 1 if you have the `argz_stringify' function. */ +/* #undef HAVE_ARGZ_STRINGIFY */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ASSERT_H 1 + +/* Define to 1 if you have the `bcopy' function. */ +/* #undef HAVE_BCOPY */ + +/* Define to 1 if you have the `closedir' function. */ +#define HAVE_CLOSEDIR 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_CTYPE_H 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#define HAVE_DIRENT_H 1 + +/* Define if you have the GNU dld library. */ +/* #undef HAVE_DLD */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_DLD_H */ + +/* Define to 1 if you have the `dlerror' function. */ +#define HAVE_DLERROR 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_DL_H */ + +/* Define if you have the _dyld_func_lookup function. */ +/* #undef HAVE_DYLD */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ERRNO_H 1 + +/* Define to 1 if the system has the type `error_t'. */ +/* #undef HAVE_ERROR_T */ + +/* Define to 1 if you have the `floorl' function. */ +#define HAVE_FLOORL 1 + +/* Define to 1 if you have the `fork' function. */ +#define HAVE_FORK 1 + +/* Define to 1 if you have the `index' function. */ +/* #undef HAVE_INDEX */ + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `isnan' function. */ +#define HAVE_ISNAN 1 + +/* Define to 1 if you have the `isnanf' function. */ +/* #undef HAVE_ISNANF */ + +/* Define to 1 if you have the `kill' function. */ +#define HAVE_KILL 1 + +/* Define if you have the libdl library or equivalent. */ +#define HAVE_LIBDL 1 + +/* Define if JPEG library is available */ +#define HAVE_LIBJPEG + +/* Define if PNG library is available */ +#define HAVE_LIBPNG + +/* Define to 1 if you have the `pthread' library (-lpthread). */ +#define HAVE_LIBPTHREAD 1 + +/* Define if TIFF library is available */ +#define HAVE_LIBTIFF + +/* Define to 1 if you have the header file. */ +#define HAVE_MACH_O_DYLD_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MALLOC_H */ + +/* Define to 1 if you have the `memcpy' function. */ +#define HAVE_MEMCPY 1 + +/* Define to 1 if you have the `memmove' function. */ +#define HAVE_MEMMOVE 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. */ +/* #undef HAVE_NDIR_H */ + +/* Define to 1 if you have the `opendir' function. */ +#define HAVE_OPENDIR 1 + +/* Define if OpenEXR is available */ +/* #undef HAVE_OPENEXR */ + +/* Define to 1 if you have the `pipe' function. */ +#define HAVE_PIPE 1 + +/* Define if libtool can extract symbol lists from object files. */ +#define HAVE_PRELOADED_SYMBOLS 1 + +/* Define to 1 if you have the `readdir' function. */ +#define HAVE_READDIR 1 + +/* Define to 1 if you have the `rindex' function. */ +/* #undef HAVE_RINDEX */ + +/* Define if you have the shl_load function. */ +/* #undef HAVE_SHL_LOAD */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDIO_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strchr' function. */ +#define HAVE_STRCHR 1 + +/* Define to 1 if you have the `strcmp' function. */ +#define HAVE_STRCMP 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strrchr' function. */ +#define HAVE_STRRCHR 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_DIR_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_DL_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_ERRNO_H 1 + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +/* #undef HAVE_SYS_NDIR_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_TERMIOS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `_floorl' function. */ +/* #undef HAVE__FLOORL */ + +/* Define to 1 if you have the `_isnan' function. */ +/* #undef HAVE__ISNAN */ + +/* Define to 1 if you have the `_isnanf' function. */ +/* #undef HAVE__ISNANF */ + +/* Define if the OS needs help to load dependent libraries for dlopen(). */ +/* #undef LTDL_DLOPEN_DEPLIBS */ + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LTDL_OBJDIR ".libs/" + +/* Define to the name of the environment variable that determines the dynamic + library search path. */ +#define LTDL_SHLIBPATH_VAR "DYLD_LIBRARY_PATH" + +/* Define to the extension used for shared libraries, say, ".so". */ +#define LTDL_SHLIB_EXT ".so" + +/* Define to the system default library search path. */ +#define LTDL_SYSSEARCHPATH "/usr/local/lib:/lib:/usr/lib" + +/* LibLTDL is linked staticly */ +#define LT_SCOPE extern + +/* Define if dlsym() requires a leading underscore in symbol names. */ +/* #undef NEED_USCORE */ + +/* Name of package */ +#define PACKAGE "synfig" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "darco@voria.com" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "Synfig Core" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "Synfig Core 0.61.05-257" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "synfig" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "0.61.05-257" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* enable layer profiling */ +/* #undef SYNFIG_PROFILE_LAYERS */ + +/* Version number of package */ +#define VERSION "0.61.05-257" + +/* enable fontconfig support */ +#define WITH_FONTCONFIG + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to a type to use for `error_t' if it is not otherwise available. */ +#define error_t int diff --git a/synfig-core/trunk/synfig-core.xcodeproj/darco.mode1 b/synfig-core/trunk/synfig-core.xcodeproj/darco.mode1 new file mode 100644 index 0000000..80198ca --- /dev/null +++ b/synfig-core/trunk/synfig-core.xcodeproj/darco.mode1 @@ -0,0 +1,1542 @@ + + + + + ActivePerspectiveName + Project + AllowedModules + + + BundleLoadPath + + MaxInstances + n + Module + PBXSmartGroupTreeModule + Name + Groups and Files Outline View + + + BundleLoadPath + + MaxInstances + n + Module + PBXNavigatorGroup + Name + Editor + + + BundleLoadPath + + MaxInstances + n + Module + XCTaskListModule + Name + Task List + + + BundleLoadPath + + MaxInstances + n + Module + XCDetailModule + Name + File and Smart Group Detail Viewer + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXBuildResultsModule + Name + Detailed Build Results Viewer + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXProjectFindModule + Name + Project Batch Find Tool + + + BundleLoadPath + + MaxInstances + n + Module + PBXRunSessionModule + Name + Run Log + + + BundleLoadPath + + MaxInstances + n + Module + PBXBookmarksModule + Name + Bookmarks Tool + + + BundleLoadPath + + MaxInstances + n + Module + PBXClassBrowserModule + Name + Class Browser + + + BundleLoadPath + + MaxInstances + n + Module + PBXCVSModule + Name + Source Code Control Tool + + + BundleLoadPath + + MaxInstances + n + Module + PBXDebugBreakpointsModule + Name + Debug Breakpoints Tool + + + BundleLoadPath + + MaxInstances + n + Module + XCDockableInspector + Name + Inspector + + + BundleLoadPath + + MaxInstances + n + Module + PBXOpenQuicklyModule + Name + Open Quickly Tool + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXDebugSessionModule + Name + Debugger + + + BundleLoadPath + + MaxInstances + 1 + Module + PBXDebugCLIModule + Name + Debug Console + + + Description + DefaultDescriptionKey + DockingSystemVisible + + Extension + mode1 + FavBarConfig + + PBXProjectModuleGUID + A6AF2FF30B9663F500EDBA70 + XCBarModuleItemNames + + XCBarModuleItems + + + FirstTimeWindowDisplayed + + Identifier + com.apple.perspectives.project.mode1 + MajorVersion + 31 + MinorVersion + 1 + Name + Default + Notifications + + OpenEditors + + PerspectiveWidths + + -1 + -1 + + Perspectives + + + ChosenToolbarItems + + active-target-popup + active-buildstyle-popup + action + clean + build-and-debug + build-and-run + buildOrClean + com.apple.ide.PBXToolbarStopButton + get-info + toggle-editor + servicesModuleCVS + com.apple.pbx.toolbar.searchfield + + ControllerClassBaseName + + IconName + WindowOfProjectWithEditor + Identifier + perspective.project + IsVertical + + Layout + + + BecomeActive + + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C37FBAC04509CD000000102 + 1C37FAAC04509CD000000102 + 1C08E77C0454961000C914BD + 1C37FABC05509CD000000102 + 1C37FABC05539CD112110102 + E2644B35053B69B200211256 + 1C37FABC04509CD000100104 + 1CC0EA4004350EF90044410B + 1CC0EA4004350EF90041110B + + PBXProjectModuleGUID + 1CE0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + yes + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 186 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + A6AF11960B965E2E00EDBA70 + A6AF25F50B965F2D00EDBA70 + A6AF2F4D0B965FC900EDBA70 + A6AF20DC0B965ED900EDBA70 + 1C37FBAC04509CD000000102 + A6AF32410B96718700EDBA70 + 1C37FABC05509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {186, 348}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + + XCSharingToken + com.apple.Xcode.GFSharingToken + + GeometryConfiguration + + Frame + {{0, 0}, {203, 366}} + GroupTreeTableConfiguration + + MainColumn + 186 + + RubberWindowFrame + 506 231 924 407 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 203pt + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1CE0B20306471E060097A5F4 + PBXProjectModuleLabel + config.h + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 1CE0B20406471E060097A5F4 + PBXProjectModuleLabel + config.h + _historyCapacity + 0 + bookmark + A6AF32480B9672A500EDBA70 + history + + A6AF2FE50B9663F500EDBA70 + A6AF30B20B966B2700EDBA70 + A6AF30B30B966B2700EDBA70 + A6AF30B40B966B2700EDBA70 + A6AF30C40B966C8700EDBA70 + A6AF30CF0B966D7700EDBA70 + A6AF30F50B96707D00EDBA70 + A6AF30F60B96707D00EDBA70 + A6AF31540B96711700EDBA70 + A6AF31550B96711700EDBA70 + A6AF31560B96711700EDBA70 + A6AF31570B96711700EDBA70 + A6AF31580B96711700EDBA70 + A6AF31590B96711700EDBA70 + A6AF315A0B96711700EDBA70 + A6AF315B0B96711700EDBA70 + A6AF315C0B96711700EDBA70 + A6AF315D0B96711700EDBA70 + A6AF315E0B96711700EDBA70 + A6AF315F0B96711700EDBA70 + A6AF31600B96711700EDBA70 + A6AF31610B96711700EDBA70 + A6AF31620B96711700EDBA70 + A6AF31630B96711700EDBA70 + A6AF31640B96711700EDBA70 + A6AF31650B96711700EDBA70 + A6AF31660B96711700EDBA70 + A6AF31670B96711700EDBA70 + A6AF31680B96711700EDBA70 + A6AF31690B96711700EDBA70 + A6AF316A0B96711700EDBA70 + A6AF316B0B96711700EDBA70 + A6AF316C0B96711700EDBA70 + A6AF316D0B96711700EDBA70 + A6AF316E0B96711700EDBA70 + A6AF316F0B96711700EDBA70 + A6AF31700B96711700EDBA70 + A6AF31710B96711700EDBA70 + A6AF31720B96711700EDBA70 + A6AF31730B96711700EDBA70 + A6AF31740B96711700EDBA70 + A6AF31750B96711700EDBA70 + A6AF31760B96711700EDBA70 + A6AF31770B96711700EDBA70 + A6AF31780B96711700EDBA70 + A6AF31790B96711700EDBA70 + A6AF317A0B96711700EDBA70 + A6AF317B0B96711700EDBA70 + A6AF317C0B96711700EDBA70 + A6AF317D0B96711700EDBA70 + A6AF317E0B96711700EDBA70 + A6AF317F0B96711700EDBA70 + A6AF31800B96711700EDBA70 + A6AF31810B96711700EDBA70 + A6AF31820B96711700EDBA70 + A6AF31830B96711700EDBA70 + A6AF31840B96711700EDBA70 + A6AF31850B96711700EDBA70 + A6AF31860B96711700EDBA70 + A6AF31870B96711700EDBA70 + A6AF31880B96711700EDBA70 + A6AF31890B96711700EDBA70 + A6AF318A0B96711700EDBA70 + A6AF318B0B96711700EDBA70 + A6AF318C0B96711700EDBA70 + A6AF318D0B96711700EDBA70 + A6AF318E0B96711700EDBA70 + A6AF318F0B96711700EDBA70 + A6AF31900B96711700EDBA70 + A6AF31910B96711700EDBA70 + A6AF31920B96711700EDBA70 + A6AF31930B96711700EDBA70 + A6AF31940B96711700EDBA70 + A6AF31950B96711700EDBA70 + A6AF31960B96711700EDBA70 + A6AF31970B96711700EDBA70 + A6AF31980B96711700EDBA70 + A6AF31990B96711700EDBA70 + A6AF319A0B96711700EDBA70 + A6AF319B0B96711700EDBA70 + A6AF319C0B96711700EDBA70 + A6AF319D0B96711700EDBA70 + A6AF319E0B96711700EDBA70 + A6AF319F0B96711700EDBA70 + A6AF31A00B96711700EDBA70 + A6AF31A10B96711700EDBA70 + A6AF31A20B96711700EDBA70 + A6AF31A30B96711700EDBA70 + A6AF31A40B96711700EDBA70 + A6AF31A50B96711700EDBA70 + A6AF32420B96718700EDBA70 + A6AF32460B9672A500EDBA70 + A6AF30F40B96707D00EDBA70 + + prevStack + + A6AF2FE90B9663F500EDBA70 + A6AF2FEB0B9663F500EDBA70 + A6AF2FEC0B9663F500EDBA70 + A6AF2FED0B9663F500EDBA70 + A6AF2FEE0B9663F500EDBA70 + A6AF2FEF0B9663F500EDBA70 + A6AF30B50B966B2700EDBA70 + A6AF30B60B966B2700EDBA70 + A6AF30B70B966B2700EDBA70 + A6AF30C50B966C8700EDBA70 + A6AF30C60B966C8700EDBA70 + A6AF30C70B966C8700EDBA70 + A6AF30D20B966D7700EDBA70 + A6AF30D30B966D7700EDBA70 + A6AF30D40B966D7700EDBA70 + A6AF30F80B96707D00EDBA70 + A6AF30F90B96707D00EDBA70 + A6AF30FA0B96707D00EDBA70 + A6AF31A70B96711700EDBA70 + A6AF31A80B96711700EDBA70 + A6AF31A90B96711700EDBA70 + A6AF31AA0B96711700EDBA70 + A6AF31AB0B96711700EDBA70 + A6AF31AC0B96711700EDBA70 + A6AF31AD0B96711700EDBA70 + A6AF31AE0B96711700EDBA70 + A6AF31AF0B96711700EDBA70 + A6AF31B00B96711700EDBA70 + A6AF31B10B96711700EDBA70 + A6AF31B20B96711700EDBA70 + A6AF31B30B96711700EDBA70 + A6AF31B40B96711700EDBA70 + A6AF31B50B96711700EDBA70 + A6AF31B60B96711700EDBA70 + A6AF31B70B96711700EDBA70 + A6AF31B80B96711700EDBA70 + A6AF31B90B96711700EDBA70 + A6AF31BA0B96711700EDBA70 + A6AF31BB0B96711700EDBA70 + A6AF31BC0B96711700EDBA70 + A6AF31BD0B96711700EDBA70 + A6AF31BE0B96711700EDBA70 + A6AF31BF0B96711700EDBA70 + A6AF31C00B96711700EDBA70 + A6AF31C10B96711700EDBA70 + A6AF31C20B96711700EDBA70 + A6AF31C30B96711700EDBA70 + A6AF31C40B96711700EDBA70 + A6AF31C50B96711700EDBA70 + A6AF31C60B96711700EDBA70 + A6AF31C70B96711700EDBA70 + A6AF31C80B96711700EDBA70 + A6AF31C90B96711700EDBA70 + A6AF31CA0B96711700EDBA70 + A6AF31CB0B96711700EDBA70 + A6AF31CC0B96711700EDBA70 + A6AF31CD0B96711700EDBA70 + A6AF31CE0B96711700EDBA70 + A6AF31CF0B96711700EDBA70 + A6AF31D00B96711700EDBA70 + A6AF31D10B96711700EDBA70 + A6AF31D20B96711700EDBA70 + A6AF31D30B96711700EDBA70 + A6AF31D40B96711700EDBA70 + A6AF31D50B96711700EDBA70 + A6AF31D60B96711700EDBA70 + A6AF31D70B96711700EDBA70 + A6AF31D80B96711700EDBA70 + A6AF31D90B96711700EDBA70 + A6AF31DA0B96711700EDBA70 + A6AF31DB0B96711700EDBA70 + A6AF31DC0B96711700EDBA70 + A6AF31DD0B96711700EDBA70 + A6AF31DE0B96711700EDBA70 + A6AF31DF0B96711700EDBA70 + A6AF31E00B96711700EDBA70 + A6AF31E10B96711700EDBA70 + A6AF31E20B96711700EDBA70 + A6AF31E30B96711700EDBA70 + A6AF31E40B96711700EDBA70 + A6AF31E50B96711700EDBA70 + A6AF31E60B96711700EDBA70 + A6AF31E70B96711700EDBA70 + A6AF31E80B96711700EDBA70 + A6AF31E90B96711700EDBA70 + A6AF31EA0B96711700EDBA70 + A6AF31EB0B96711700EDBA70 + A6AF31EC0B96711700EDBA70 + A6AF31ED0B96711700EDBA70 + A6AF31EE0B96711700EDBA70 + A6AF31EF0B96711700EDBA70 + A6AF31F00B96711700EDBA70 + A6AF31F10B96711700EDBA70 + A6AF31F20B96711700EDBA70 + A6AF31F30B96711700EDBA70 + A6AF31F40B96711700EDBA70 + A6AF31F50B96711700EDBA70 + A6AF31F60B96711700EDBA70 + A6AF31F70B96711700EDBA70 + A6AF31F80B96711700EDBA70 + A6AF31F90B96711700EDBA70 + A6AF31FA0B96711700EDBA70 + A6AF32430B96718700EDBA70 + A6AF32470B9672A500EDBA70 + + + SplitCount + 1 + + StatusBarVisibility + + + GeometryConfiguration + + Frame + {{0, 0}, {716, 275}} + RubberWindowFrame + 506 231 924 407 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 275pt + + + ContentConfiguration + + PBXProjectModuleGUID + 1CE0B20506471E060097A5F4 + PBXProjectModuleLabel + Detail + + GeometryConfiguration + + Frame + {{0, 280}, {716, 86}} + RubberWindowFrame + 506 231 924 407 0 0 1440 878 + + Module + XCDetailModule + Proportion + 86pt + + + Proportion + 716pt + + + Name + Project + ServiceClasses + + XCModuleDock + PBXSmartGroupTreeModule + XCModuleDock + PBXNavigatorGroup + XCDetailModule + + TableOfContents + + A6AF2FF10B9663F500EDBA70 + 1CE0B1FE06471DED0097A5F4 + A6AF2FF20B9663F500EDBA70 + 1CE0B20306471E060097A5F4 + 1CE0B20506471E060097A5F4 + + ToolbarConfiguration + xcode.toolbar.config.default + + + ControllerClassBaseName + + IconName + WindowOfProject + Identifier + perspective.morph + IsVertical + 0 + Layout + + + BecomeActive + 1 + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C37FBAC04509CD000000102 + 1C37FAAC04509CD000000102 + 1C08E77C0454961000C914BD + 1C37FABC05509CD000000102 + 1C37FABC05539CD112110102 + E2644B35053B69B200211256 + 1C37FABC04509CD000100104 + 1CC0EA4004350EF90044410B + 1CC0EA4004350EF90041110B + + PBXProjectModuleGUID + 11E0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + yes + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 186 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + 29B97314FDCFA39411CA2CEA + 1C37FABC05509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {186, 337}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + 1 + XCSharingToken + com.apple.Xcode.GFSharingToken + + GeometryConfiguration + + Frame + {{0, 0}, {203, 355}} + GroupTreeTableConfiguration + + MainColumn + 186 + + RubberWindowFrame + 373 269 690 397 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 100% + + + Name + Morph + PreferredWidth + 300 + ServiceClasses + + XCModuleDock + PBXSmartGroupTreeModule + + TableOfContents + + 11E0B1FE06471DED0097A5F4 + + ToolbarConfiguration + xcode.toolbar.config.default.short + + + PerspectivesBarVisible + + ShelfIsVisible + + SourceDescription + file at '/System/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/Resources/XCPerspectivesSpecificationMode1.xcperspec' + StatusbarIsVisible + + TimeStamp + 0.0 + ToolbarDisplayMode + 2 + ToolbarIsVisible + + ToolbarSizeMode + 2 + Type + Perspectives + UpdateMessage + The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? + WindowJustification + 5 + WindowOrderList + + A6AF2FAE0B96608300EDBA70 + /Users/darco/Projects/Voria/synfig-core/synfig-core.xcodeproj + + WindowString + 506 231 924 407 0 0 1440 878 + WindowTools + + + FirstTimeWindowDisplayed + + Identifier + windowTool.build + IsVertical + + Layout + + + Dock + + + BecomeActive + + ContentConfiguration + + PBXProjectModuleGUID + 1CD0528F0623707200166675 + PBXProjectModuleLabel + canvas.h + StatusBarVisibility + + + GeometryConfiguration + + Frame + {{0, 0}, {1125, 392}} + RubberWindowFrame + 156 -100 1125 689 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 392pt + + + ContentConfiguration + + PBXBuildLogShowsTranscriptDefaultKey + {{0, 251}, {1125, 0}} + PBXProjectModuleGUID + XCMainBuildResultsModuleGUID + PBXProjectModuleLabel + Build + XCBuildResultsTrigger_Collapse + 1021 + XCBuildResultsTrigger_Open + 1011 + + GeometryConfiguration + + Frame + {{0, 397}, {1125, 251}} + RubberWindowFrame + 156 -100 1125 689 0 0 1440 878 + + Module + PBXBuildResultsModule + Proportion + 251pt + + + Proportion + 648pt + + + Name + Build Results + ServiceClasses + + PBXBuildResultsModule + + StatusbarIsVisible + + TableOfContents + + A6AF2FAE0B96608300EDBA70 + A6AF2FAF0B96608300EDBA70 + 1CD0528F0623707200166675 + XCMainBuildResultsModuleGUID + + ToolbarConfiguration + xcode.toolbar.config.build + WindowString + 156 -100 1125 689 0 0 1440 878 + WindowToolGUID + A6AF2FAE0B96608300EDBA70 + WindowToolIsVisible + + + + Identifier + windowTool.debugger + Layout + + + Dock + + + ContentConfiguration + + Debugger + + HorizontalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {317, 164}} + {{317, 0}, {377, 164}} + + + VerticalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {694, 164}} + {{0, 164}, {694, 216}} + + + + LauncherConfigVersion + 8 + PBXProjectModuleGUID + 1C162984064C10D400B95A72 + PBXProjectModuleLabel + Debug - GLUTExamples (Underwater) + + GeometryConfiguration + + DebugConsoleDrawerSize + {100, 120} + DebugConsoleVisible + None + DebugConsoleWindowFrame + {{200, 200}, {500, 300}} + DebugSTDIOWindowFrame + {{200, 200}, {500, 300}} + Frame + {{0, 0}, {694, 380}} + RubberWindowFrame + 321 238 694 422 0 0 1440 878 + + Module + PBXDebugSessionModule + Proportion + 100% + + + Proportion + 100% + + + Name + Debugger + ServiceClasses + + PBXDebugSessionModule + + StatusbarIsVisible + 1 + TableOfContents + + 1CD10A99069EF8BA00B06720 + 1C0AD2AB069F1E9B00FABCE6 + 1C162984064C10D400B95A72 + 1C0AD2AC069F1E9B00FABCE6 + + ToolbarConfiguration + xcode.toolbar.config.debug + WindowString + 321 238 694 422 0 0 1440 878 + WindowToolGUID + 1CD10A99069EF8BA00B06720 + WindowToolIsVisible + 0 + + + Identifier + windowTool.find + Layout + + + Dock + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1CDD528C0622207200134675 + PBXProjectModuleLabel + <No Editor> + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 1CD0528D0623707200166675 + + SplitCount + 1 + + StatusBarVisibility + 1 + + GeometryConfiguration + + Frame + {{0, 0}, {781, 167}} + RubberWindowFrame + 62 385 781 470 0 0 1440 878 + + Module + PBXNavigatorGroup + Proportion + 781pt + + + Proportion + 50% + + + BecomeActive + 1 + ContentConfiguration + + PBXProjectModuleGUID + 1CD0528E0623707200166675 + PBXProjectModuleLabel + Project Find + + GeometryConfiguration + + Frame + {{8, 0}, {773, 254}} + RubberWindowFrame + 62 385 781 470 0 0 1440 878 + + Module + PBXProjectFindModule + Proportion + 50% + + + Proportion + 428pt + + + Name + Project Find + ServiceClasses + + PBXProjectFindModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C530D57069F1CE1000CFCEE + 1C530D58069F1CE1000CFCEE + 1C530D59069F1CE1000CFCEE + 1CDD528C0622207200134675 + 1C530D5A069F1CE1000CFCEE + 1CE0B1FE06471DED0097A5F4 + 1CD0528E0623707200166675 + + WindowString + 62 385 781 470 0 0 1440 878 + WindowToolGUID + 1C530D57069F1CE1000CFCEE + WindowToolIsVisible + 0 + + + Identifier + MENUSEPARATOR + + + Identifier + windowTool.debuggerConsole + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + PBXProjectModuleGUID + 1C78EAAC065D492600B07095 + PBXProjectModuleLabel + Debugger Console + + GeometryConfiguration + + Frame + {{0, 0}, {440, 358}} + RubberWindowFrame + 650 41 440 400 0 0 1280 1002 + + Module + PBXDebugCLIModule + Proportion + 358pt + + + Proportion + 358pt + + + Name + Debugger Console + ServiceClasses + + PBXDebugCLIModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C78EAAD065D492600B07095 + 1C78EAAE065D492600B07095 + 1C78EAAC065D492600B07095 + + WindowString + 650 41 440 400 0 0 1280 1002 + + + Identifier + windowTool.run + Layout + + + Dock + + + ContentConfiguration + + LauncherConfigVersion + 3 + PBXProjectModuleGUID + 1CD0528B0623707200166675 + PBXProjectModuleLabel + Run + Runner + + HorizontalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {493, 167}} + {{0, 176}, {493, 267}} + + + VerticalSplitView + + _collapsingFrameDimension + 0.0 + _indexOfCollapsedView + 0 + _percentageOfCollapsedView + 0.0 + isCollapsed + yes + sizes + + {{0, 0}, {405, 443}} + {{414, 0}, {514, 443}} + + + + + GeometryConfiguration + + Frame + {{0, 0}, {460, 159}} + RubberWindowFrame + 316 696 459 200 0 0 1280 1002 + + Module + PBXRunSessionModule + Proportion + 159pt + + + Proportion + 159pt + + + Name + Run Log + ServiceClasses + + PBXRunSessionModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C0AD2B3069F1EA900FABCE6 + 1C0AD2B4069F1EA900FABCE6 + 1CD0528B0623707200166675 + 1C0AD2B5069F1EA900FABCE6 + + ToolbarConfiguration + xcode.toolbar.config.run + WindowString + 316 696 459 200 0 0 1280 1002 + WindowToolGUID + 1C0AD2B3069F1EA900FABCE6 + WindowToolIsVisible + 0 + + + Identifier + windowTool.scm + Layout + + + Dock + + + ContentConfiguration + + PBXProjectModuleGUID + 1C78EAB2065D492600B07095 + PBXProjectModuleLabel + <No Editor> + PBXSplitModuleInNavigatorKey + + Split0 + + PBXProjectModuleGUID + 1C78EAB3065D492600B07095 + + SplitCount + 1 + + StatusBarVisibility + 1 + + GeometryConfiguration + + Frame + {{0, 0}, {452, 0}} + RubberWindowFrame + 743 379 452 308 0 0 1280 1002 + + Module + PBXNavigatorGroup + Proportion + 0pt + + + BecomeActive + 1 + ContentConfiguration + + PBXProjectModuleGUID + 1CD052920623707200166675 + PBXProjectModuleLabel + SCM + + GeometryConfiguration + + ConsoleFrame + {{0, 259}, {452, 0}} + Frame + {{0, 7}, {452, 259}} + RubberWindowFrame + 743 379 452 308 0 0 1280 1002 + TableConfiguration + + Status + 30 + FileName + 199 + Path + 197.09500122070312 + + TableFrame + {{0, 0}, {452, 250}} + + Module + PBXCVSModule + Proportion + 262pt + + + Proportion + 266pt + + + Name + SCM + ServiceClasses + + PBXCVSModule + + StatusbarIsVisible + 1 + TableOfContents + + 1C78EAB4065D492600B07095 + 1C78EAB5065D492600B07095 + 1C78EAB2065D492600B07095 + 1CD052920623707200166675 + + ToolbarConfiguration + xcode.toolbar.config.scm + WindowString + 743 379 452 308 0 0 1280 1002 + + + Identifier + windowTool.breakpoints + IsVertical + 0 + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + PBXBottomSmartGroupGIDs + + 1C77FABC04509CD000000102 + + PBXProjectModuleGUID + 1CE0B1FE06471DED0097A5F4 + PBXProjectModuleLabel + Files + PBXProjectStructureProvided + no + PBXSmartGroupTreeModuleColumnData + + PBXSmartGroupTreeModuleColumnWidthsKey + + 168 + + PBXSmartGroupTreeModuleColumnsKey_v4 + + MainColumn + + + PBXSmartGroupTreeModuleOutlineStateKey_v7 + + PBXSmartGroupTreeModuleOutlineStateExpansionKey + + 1C77FABC04509CD000000102 + + PBXSmartGroupTreeModuleOutlineStateSelectionKey + + + 0 + + + PBXSmartGroupTreeModuleOutlineStateVisibleRectKey + {{0, 0}, {168, 350}} + + PBXTopSmartGroupGIDs + + XCIncludePerspectivesSwitch + 0 + + GeometryConfiguration + + Frame + {{0, 0}, {185, 368}} + GroupTreeTableConfiguration + + MainColumn + 168 + + RubberWindowFrame + 315 424 744 409 0 0 1440 878 + + Module + PBXSmartGroupTreeModule + Proportion + 185pt + + + ContentConfiguration + + PBXProjectModuleGUID + 1CA1AED706398EBD00589147 + PBXProjectModuleLabel + Detail + + GeometryConfiguration + + Frame + {{190, 0}, {554, 368}} + RubberWindowFrame + 315 424 744 409 0 0 1440 878 + + Module + XCDetailModule + Proportion + 554pt + + + Proportion + 368pt + + + MajorVersion + 2 + MinorVersion + 0 + Name + Breakpoints + ServiceClasses + + PBXSmartGroupTreeModule + XCDetailModule + + StatusbarIsVisible + 1 + TableOfContents + + 1CDDB66807F98D9800BB5817 + 1CDDB66907F98D9800BB5817 + 1CE0B1FE06471DED0097A5F4 + 1CA1AED706398EBD00589147 + + ToolbarConfiguration + xcode.toolbar.config.breakpoints + WindowString + 315 424 744 409 0 0 1440 878 + WindowToolGUID + 1CDDB66807F98D9800BB5817 + WindowToolIsVisible + 1 + + + Identifier + windowTool.debugAnimator + Layout + + + Dock + + + Module + PBXNavigatorGroup + Proportion + 100% + + + Proportion + 100% + + + Name + Debug Visualizer + ServiceClasses + + PBXNavigatorGroup + + StatusbarIsVisible + 1 + ToolbarConfiguration + xcode.toolbar.config.debugAnimator + WindowString + 100 100 700 500 0 0 1280 1002 + + + Identifier + windowTool.bookmarks + Layout + + + Dock + + + Module + PBXBookmarksModule + Proportion + 100% + + + Proportion + 100% + + + Name + Bookmarks + ServiceClasses + + PBXBookmarksModule + + StatusbarIsVisible + 0 + WindowString + 538 42 401 187 0 0 1280 1002 + + + Identifier + windowTool.classBrowser + Layout + + + Dock + + + BecomeActive + 1 + ContentConfiguration + + OptionsSetName + Hierarchy, all classes + PBXProjectModuleGUID + 1CA6456E063B45B4001379D8 + PBXProjectModuleLabel + Class Browser - NSObject + + GeometryConfiguration + + ClassesFrame + {{0, 0}, {374, 96}} + ClassesTreeTableConfiguration + + PBXClassNameColumnIdentifier + 208 + PBXClassBookColumnIdentifier + 22 + + Frame + {{0, 0}, {630, 331}} + MembersFrame + {{0, 105}, {374, 395}} + MembersTreeTableConfiguration + + PBXMemberTypeIconColumnIdentifier + 22 + PBXMemberNameColumnIdentifier + 216 + PBXMemberTypeColumnIdentifier + 97 + PBXMemberBookColumnIdentifier + 22 + + PBXModuleWindowStatusBarHidden2 + 1 + RubberWindowFrame + 385 179 630 352 0 0 1440 878 + + Module + PBXClassBrowserModule + Proportion + 332pt + + + Proportion + 332pt + + + Name + Class Browser + ServiceClasses + + PBXClassBrowserModule + + StatusbarIsVisible + 0 + TableOfContents + + 1C0AD2AF069F1E9B00FABCE6 + 1C0AD2B0069F1E9B00FABCE6 + 1CA6456E063B45B4001379D8 + + ToolbarConfiguration + xcode.toolbar.config.classbrowser + WindowString + 385 179 630 352 0 0 1440 878 + WindowToolGUID + 1C0AD2AF069F1E9B00FABCE6 + WindowToolIsVisible + 0 + + + + diff --git a/synfig-core/trunk/synfig-core.xcodeproj/darco.pbxuser b/synfig-core/trunk/synfig-core.xcodeproj/darco.pbxuser new file mode 100644 index 0000000..6743937 --- /dev/null +++ b/synfig-core/trunk/synfig-core.xcodeproj/darco.pbxuser @@ -0,0 +1,3939 @@ +// !$*UTF8*$! +{ + A6AF11980B965E2E00EDBA70 /* Project object */ = { + activeBuildConfigurationName = Debug; + activeExecutable = A6AF30E40B966F6D00EDBA70 /* Synfig Tool */; + activeTarget = A6AF30E20B966F6D00EDBA70 /* Synfig Tool */; + addToTargets = ( + A6AF20DA0B965ED900EDBA70 /* Synfig Framework */, + ); + codeSenseManager = A6AF119D0B965E2E00EDBA70 /* Code sense */; + executables = ( + A6AF30E40B966F6D00EDBA70 /* Synfig Tool */, + ); + ignoreBreakpointsInProjectsDict = { + }; + perUserDictionary = { + PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { + PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; + PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; + PBXFileTableDataSourceColumnWidthsKey = ( + 20, + 45, + 20, + 42, + 43, + 43, + 20, + ); + PBXFileTableDataSourceColumnsKey = ( + PBXFileDataSource_FiletypeID, + PBXFileDataSource_Filename_ColumnID, + PBXFileDataSource_Built_ColumnID, + PBXFileDataSource_ObjectSize_ColumnID, + PBXFileDataSource_Errors_ColumnID, + PBXFileDataSource_Warnings_ColumnID, + PBXFileDataSource_Target_ColumnID, + ); + }; + PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = { + PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; + PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; + PBXFileTableDataSourceColumnWidthsKey = ( + 20, + 200, + 99, + 20, + 42, + 43, + 43, + ); + PBXFileTableDataSourceColumnsKey = ( + PBXFileDataSource_FiletypeID, + PBXFileDataSource_Filename_ColumnID, + PBXTargetDataSource_PrimaryAttribute, + PBXFileDataSource_Built_ColumnID, + PBXFileDataSource_ObjectSize_ColumnID, + PBXFileDataSource_Errors_ColumnID, + PBXFileDataSource_Warnings_ColumnID, + ); + }; + PBXPerProjectTemplateStateSaveDate = 194403886; + PBXWorkspaceStateSaveDate = 194403886; + }; + perUserProjectItems = { + A6AF2FAA0B96608300EDBA70 /* PBXTextBookmark */ = A6AF2FAA0B96608300EDBA70 /* PBXTextBookmark */; + A6AF2FAC0B96608300EDBA70 /* PBXTextBookmark */ = A6AF2FAC0B96608300EDBA70 /* PBXTextBookmark */; + A6AF2FB00B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB00B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FB10B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB10B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FB30B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB30B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FB50B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB50B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FB60B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB60B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FB80B9660CB00EDBA70 /* PBXTextBookmark */ = A6AF2FB80B9660CB00EDBA70 /* PBXTextBookmark */; + A6AF2FBB0B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FBB0B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FBC0B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FBC0B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FBD0B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FBD0B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FBE0B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FBE0B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FBF0B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FBF0B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FC00B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FC00B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FC10B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FC10B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FC20B96614500EDBA70 /* PBXTextBookmark */ = A6AF2FC20B96614500EDBA70 /* PBXTextBookmark */; + A6AF2FC60B96616500EDBA70 /* PBXTextBookmark */ = A6AF2FC60B96616500EDBA70 /* PBXTextBookmark */; + A6AF2FC80B96618900EDBA70 /* PBXTextBookmark */ = A6AF2FC80B96618900EDBA70 /* PBXTextBookmark */; + A6AF2FC90B96618900EDBA70 /* PBXTextBookmark */ = A6AF2FC90B96618900EDBA70 /* PBXTextBookmark */; + A6AF2FCA0B96618900EDBA70 /* PBXTextBookmark */ = A6AF2FCA0B96618900EDBA70 /* PBXTextBookmark */; + A6AF2FCB0B96618900EDBA70 /* PBXTextBookmark */ = A6AF2FCB0B96618900EDBA70 /* PBXTextBookmark */; + A6AF2FCD0B96619A00EDBA70 /* PBXTextBookmark */ = A6AF2FCD0B96619A00EDBA70 /* PBXTextBookmark */; + A6AF2FCE0B96619A00EDBA70 /* PBXTextBookmark */ = A6AF2FCE0B96619A00EDBA70 /* PBXTextBookmark */; + A6AF2FD40B96626800EDBA70 /* PBXTextBookmark */ = A6AF2FD40B96626800EDBA70 /* PBXTextBookmark */; + A6AF2FD50B96626800EDBA70 /* PBXTextBookmark */ = A6AF2FD50B96626800EDBA70 /* PBXTextBookmark */; + A6AF2FD60B96626800EDBA70 /* PBXTextBookmark */ = A6AF2FD60B96626800EDBA70 /* PBXTextBookmark */; + A6AF2FD70B96626800EDBA70 /* PBXTextBookmark */ = A6AF2FD70B96626800EDBA70 /* PBXTextBookmark */; + A6AF2FD90B9662F600EDBA70 /* PBXTextBookmark */ = A6AF2FD90B9662F600EDBA70 /* PBXTextBookmark */; + A6AF2FDA0B9662F600EDBA70 /* PBXTextBookmark */ = A6AF2FDA0B9662F600EDBA70 /* PBXTextBookmark */; + A6AF2FDB0B9662F600EDBA70 /* PBXTextBookmark */ = A6AF2FDB0B9662F600EDBA70 /* PBXTextBookmark */; + A6AF2FDC0B9662F600EDBA70 /* PBXTextBookmark */ = A6AF2FDC0B9662F600EDBA70 /* PBXTextBookmark */; + A6AF2FE30B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE30B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FE50B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE50B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FE60B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE60B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FE70B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE70B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FE80B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE80B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FE90B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FE90B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FEB0B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FEB0B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FEC0B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FEC0B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FED0B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FED0B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FEE0B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FEE0B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FEF0B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FEF0B9663F500EDBA70 /* PBXTextBookmark */; + A6AF2FF00B9663F500EDBA70 /* PBXTextBookmark */ = A6AF2FF00B9663F500EDBA70 /* PBXTextBookmark */; + A6AF30400B9666E100EDBA70 /* PBXTextBookmark */ = A6AF30400B9666E100EDBA70 /* PBXTextBookmark */; + A6AF30410B9666E100EDBA70 /* PBXTextBookmark */ = A6AF30410B9666E100EDBA70 /* PBXTextBookmark */; + A6AF30430B9666E100EDBA70 /* PBXTextBookmark */ = A6AF30430B9666E100EDBA70 /* PBXTextBookmark */; + A6AF30440B9666E100EDBA70 /* PBXTextBookmark */ = A6AF30440B9666E100EDBA70 /* PBXTextBookmark */; + A6AF30450B96670D00EDBA70 /* PBXTextBookmark */ = A6AF30450B96670D00EDBA70 /* PBXTextBookmark */; + A6AF30740B96688E00EDBA70 /* PBXTextBookmark */ = A6AF30740B96688E00EDBA70 /* PBXTextBookmark */; + A6AF30750B96688E00EDBA70 /* PBXTextBookmark */ = A6AF30750B96688E00EDBA70 /* PBXTextBookmark */; + A6AF30770B96688E00EDBA70 /* PBXTextBookmark */ = A6AF30770B96688E00EDBA70 /* PBXTextBookmark */; + A6AF30780B96688E00EDBA70 /* PBXTextBookmark */ = A6AF30780B96688E00EDBA70 /* PBXTextBookmark */; + A6AF308B0B96691000EDBA70 /* PBXTextBookmark */ = A6AF308B0B96691000EDBA70 /* PBXTextBookmark */; + A6AF308C0B96691000EDBA70 /* PBXTextBookmark */ = A6AF308C0B96691000EDBA70 /* PBXTextBookmark */; + A6AF308E0B96691000EDBA70 /* PBXTextBookmark */ = A6AF308E0B96691000EDBA70 /* PBXTextBookmark */; + A6AF308F0B96691000EDBA70 /* PBXTextBookmark */ = A6AF308F0B96691000EDBA70 /* PBXTextBookmark */; + A6AF30A30B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A30B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30A40B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A40B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30A50B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A50B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30A70B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A70B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30A80B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A80B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30A90B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30A90B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30AA0B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30AA0B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30AB0B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30AB0B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30AC0B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30AC0B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30AD0B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30AD0B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30AE0B966B1700EDBA70 /* PBXTextBookmark */ = A6AF30AE0B966B1700EDBA70 /* PBXTextBookmark */; + A6AF30B20B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B20B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B30B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B30B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B40B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B40B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B50B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B50B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B60B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B60B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B70B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B70B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30B80B966B2700EDBA70 /* PBXTextBookmark */ = A6AF30B80B966B2700EDBA70 /* PBXTextBookmark */; + A6AF30BB0B966C6E00EDBA70 /* PBXTextBookmark */ = A6AF30BB0B966C6E00EDBA70 /* PBXTextBookmark */; + A6AF30BC0B966C6E00EDBA70 /* PBXTextBookmark */ = A6AF30BC0B966C6E00EDBA70 /* PBXTextBookmark */; + A6AF30BD0B966C6E00EDBA70 /* PBXTextBookmark */ = A6AF30BD0B966C6E00EDBA70 /* PBXTextBookmark */; + A6AF30BE0B966C6E00EDBA70 /* PBXTextBookmark */ = A6AF30BE0B966C6E00EDBA70 /* PBXTextBookmark */; + A6AF30C30B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C30B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C40B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C40B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C50B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C50B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C60B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C60B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C70B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C70B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C80B966C8700EDBA70 /* PBXTextBookmark */ = A6AF30C80B966C8700EDBA70 /* PBXTextBookmark */; + A6AF30C90B966CBD00EDBA70 /* PBXTextBookmark */ = A6AF30C90B966CBD00EDBA70 /* PBXTextBookmark */; + A6AF30CC0B966CD300EDBA70 /* PBXTextBookmark */ = A6AF30CC0B966CD300EDBA70 /* PBXTextBookmark */; + A6AF30CF0B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30CF0B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D00B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D00B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D10B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D10B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D20B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D20B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D30B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D30B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D40B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D40B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30D50B966D7700EDBA70 /* PBXTextBookmark */ = A6AF30D50B966D7700EDBA70 /* PBXTextBookmark */; + A6AF30F40B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30F40B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30F50B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30F50B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30F60B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30F60B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30F70B96707D00EDBA70 /* PBXBookmark */ = A6AF30F70B96707D00EDBA70 /* PBXBookmark */; + A6AF30F80B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30F80B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30F90B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30F90B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30FA0B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30FA0B96707D00EDBA70 /* PBXTextBookmark */; + A6AF30FB0B96707D00EDBA70 /* PBXTextBookmark */ = A6AF30FB0B96707D00EDBA70 /* PBXTextBookmark */; + A6AF31540B96711700EDBA70 /* PBXTextBookmark */ = A6AF31540B96711700EDBA70 /* PBXTextBookmark */; + A6AF31550B96711700EDBA70 /* PBXTextBookmark */ = A6AF31550B96711700EDBA70 /* PBXTextBookmark */; + A6AF31560B96711700EDBA70 /* PBXTextBookmark */ = A6AF31560B96711700EDBA70 /* PBXTextBookmark */; + A6AF31570B96711700EDBA70 /* PBXTextBookmark */ = A6AF31570B96711700EDBA70 /* PBXTextBookmark */; + A6AF31580B96711700EDBA70 /* PBXTextBookmark */ = A6AF31580B96711700EDBA70 /* PBXTextBookmark */; + A6AF31590B96711700EDBA70 /* PBXTextBookmark */ = A6AF31590B96711700EDBA70 /* PBXTextBookmark */; + A6AF315A0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315A0B96711700EDBA70 /* PBXTextBookmark */; + A6AF315B0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315B0B96711700EDBA70 /* PBXTextBookmark */; + A6AF315C0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315C0B96711700EDBA70 /* PBXTextBookmark */; + A6AF315D0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315D0B96711700EDBA70 /* PBXTextBookmark */; + A6AF315E0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315E0B96711700EDBA70 /* PBXTextBookmark */; + A6AF315F0B96711700EDBA70 /* PBXTextBookmark */ = A6AF315F0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31600B96711700EDBA70 /* PBXTextBookmark */ = A6AF31600B96711700EDBA70 /* PBXTextBookmark */; + A6AF31610B96711700EDBA70 /* PBXTextBookmark */ = A6AF31610B96711700EDBA70 /* PBXTextBookmark */; + A6AF31620B96711700EDBA70 /* PBXTextBookmark */ = A6AF31620B96711700EDBA70 /* PBXTextBookmark */; + A6AF31630B96711700EDBA70 /* PBXTextBookmark */ = A6AF31630B96711700EDBA70 /* PBXTextBookmark */; + A6AF31640B96711700EDBA70 /* PBXTextBookmark */ = A6AF31640B96711700EDBA70 /* PBXTextBookmark */; + A6AF31650B96711700EDBA70 /* PBXTextBookmark */ = A6AF31650B96711700EDBA70 /* PBXTextBookmark */; + A6AF31660B96711700EDBA70 /* PBXTextBookmark */ = A6AF31660B96711700EDBA70 /* PBXTextBookmark */; + A6AF31670B96711700EDBA70 /* PBXTextBookmark */ = A6AF31670B96711700EDBA70 /* PBXTextBookmark */; + A6AF31680B96711700EDBA70 /* PBXTextBookmark */ = A6AF31680B96711700EDBA70 /* PBXTextBookmark */; + A6AF31690B96711700EDBA70 /* PBXTextBookmark */ = A6AF31690B96711700EDBA70 /* PBXTextBookmark */; + A6AF316A0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316A0B96711700EDBA70 /* PBXTextBookmark */; + A6AF316B0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316B0B96711700EDBA70 /* PBXTextBookmark */; + A6AF316C0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316C0B96711700EDBA70 /* PBXTextBookmark */; + A6AF316D0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316D0B96711700EDBA70 /* PBXTextBookmark */; + A6AF316E0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316E0B96711700EDBA70 /* PBXTextBookmark */; + A6AF316F0B96711700EDBA70 /* PBXTextBookmark */ = A6AF316F0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31700B96711700EDBA70 /* PBXTextBookmark */ = A6AF31700B96711700EDBA70 /* PBXTextBookmark */; + A6AF31710B96711700EDBA70 /* PBXTextBookmark */ = A6AF31710B96711700EDBA70 /* PBXTextBookmark */; + A6AF31720B96711700EDBA70 /* PBXTextBookmark */ = A6AF31720B96711700EDBA70 /* PBXTextBookmark */; + A6AF31730B96711700EDBA70 /* PBXTextBookmark */ = A6AF31730B96711700EDBA70 /* PBXTextBookmark */; + A6AF31740B96711700EDBA70 /* PBXTextBookmark */ = A6AF31740B96711700EDBA70 /* PBXTextBookmark */; + A6AF31750B96711700EDBA70 /* PBXTextBookmark */ = A6AF31750B96711700EDBA70 /* PBXTextBookmark */; + A6AF31760B96711700EDBA70 /* PBXTextBookmark */ = A6AF31760B96711700EDBA70 /* PBXTextBookmark */; + A6AF31770B96711700EDBA70 /* PBXTextBookmark */ = A6AF31770B96711700EDBA70 /* PBXTextBookmark */; + A6AF31780B96711700EDBA70 /* PBXTextBookmark */ = A6AF31780B96711700EDBA70 /* PBXTextBookmark */; + A6AF31790B96711700EDBA70 /* PBXTextBookmark */ = A6AF31790B96711700EDBA70 /* PBXTextBookmark */; + A6AF317A0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317A0B96711700EDBA70 /* PBXTextBookmark */; + A6AF317B0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317B0B96711700EDBA70 /* PBXTextBookmark */; + A6AF317C0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317C0B96711700EDBA70 /* PBXTextBookmark */; + A6AF317D0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317D0B96711700EDBA70 /* PBXTextBookmark */; + A6AF317E0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317E0B96711700EDBA70 /* PBXTextBookmark */; + A6AF317F0B96711700EDBA70 /* PBXTextBookmark */ = A6AF317F0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31800B96711700EDBA70 /* PBXTextBookmark */ = A6AF31800B96711700EDBA70 /* PBXTextBookmark */; + A6AF31810B96711700EDBA70 /* PBXTextBookmark */ = A6AF31810B96711700EDBA70 /* PBXTextBookmark */; + A6AF31820B96711700EDBA70 /* PBXTextBookmark */ = A6AF31820B96711700EDBA70 /* PBXTextBookmark */; + A6AF31830B96711700EDBA70 /* PBXTextBookmark */ = A6AF31830B96711700EDBA70 /* PBXTextBookmark */; + A6AF31840B96711700EDBA70 /* PBXTextBookmark */ = A6AF31840B96711700EDBA70 /* PBXTextBookmark */; + A6AF31850B96711700EDBA70 /* PBXTextBookmark */ = A6AF31850B96711700EDBA70 /* PBXTextBookmark */; + A6AF31860B96711700EDBA70 /* PBXTextBookmark */ = A6AF31860B96711700EDBA70 /* PBXTextBookmark */; + A6AF31870B96711700EDBA70 /* PBXTextBookmark */ = A6AF31870B96711700EDBA70 /* PBXTextBookmark */; + A6AF31880B96711700EDBA70 /* PBXTextBookmark */ = A6AF31880B96711700EDBA70 /* PBXTextBookmark */; + A6AF31890B96711700EDBA70 /* PBXTextBookmark */ = A6AF31890B96711700EDBA70 /* PBXTextBookmark */; + A6AF318A0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318A0B96711700EDBA70 /* PBXTextBookmark */; + A6AF318B0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318B0B96711700EDBA70 /* PBXTextBookmark */; + A6AF318C0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318C0B96711700EDBA70 /* PBXTextBookmark */; + A6AF318D0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318D0B96711700EDBA70 /* PBXTextBookmark */; + A6AF318E0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318E0B96711700EDBA70 /* PBXTextBookmark */; + A6AF318F0B96711700EDBA70 /* PBXTextBookmark */ = A6AF318F0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31900B96711700EDBA70 /* PBXTextBookmark */ = A6AF31900B96711700EDBA70 /* PBXTextBookmark */; + A6AF31910B96711700EDBA70 /* PBXTextBookmark */ = A6AF31910B96711700EDBA70 /* PBXTextBookmark */; + A6AF31920B96711700EDBA70 /* PBXTextBookmark */ = A6AF31920B96711700EDBA70 /* PBXTextBookmark */; + A6AF31930B96711700EDBA70 /* PBXTextBookmark */ = A6AF31930B96711700EDBA70 /* PBXTextBookmark */; + A6AF31940B96711700EDBA70 /* PBXTextBookmark */ = A6AF31940B96711700EDBA70 /* PBXTextBookmark */; + A6AF31950B96711700EDBA70 /* PBXTextBookmark */ = A6AF31950B96711700EDBA70 /* PBXTextBookmark */; + A6AF31960B96711700EDBA70 /* PBXTextBookmark */ = A6AF31960B96711700EDBA70 /* PBXTextBookmark */; + A6AF31970B96711700EDBA70 /* PBXTextBookmark */ = A6AF31970B96711700EDBA70 /* PBXTextBookmark */; + A6AF31980B96711700EDBA70 /* PBXTextBookmark */ = A6AF31980B96711700EDBA70 /* PBXTextBookmark */; + A6AF31990B96711700EDBA70 /* PBXTextBookmark */ = A6AF31990B96711700EDBA70 /* PBXTextBookmark */; + A6AF319A0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319A0B96711700EDBA70 /* PBXTextBookmark */; + A6AF319B0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319B0B96711700EDBA70 /* PBXTextBookmark */; + A6AF319C0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319C0B96711700EDBA70 /* PBXTextBookmark */; + A6AF319D0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319D0B96711700EDBA70 /* PBXTextBookmark */; + A6AF319E0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319E0B96711700EDBA70 /* PBXTextBookmark */; + A6AF319F0B96711700EDBA70 /* PBXTextBookmark */ = A6AF319F0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31A90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31A90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AC0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AC0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AD0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AD0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AE0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AE0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31AF0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31AF0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31B90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31B90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BC0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BC0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BD0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BD0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BE0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BE0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31BF0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31BF0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31C90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31C90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CC0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CC0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CD0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CD0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CE0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CE0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31CF0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31CF0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31D90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31D90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DC0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DC0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DD0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DD0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DE0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DE0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31DF0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31DF0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31E90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31E90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31EA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31EA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31EB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31EB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31EC0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31EC0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31ED0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31ED0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31EE0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31EE0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31EF0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31EF0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F00B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F00B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F10B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F10B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F20B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F20B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F30B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F30B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F40B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F40B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F50B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F50B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F60B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F60B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F70B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F70B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F80B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F80B96711700EDBA70 /* PBXTextBookmark */; + A6AF31F90B96711700EDBA70 /* PBXTextBookmark */ = A6AF31F90B96711700EDBA70 /* PBXTextBookmark */; + A6AF31FA0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31FA0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31FB0B96711700EDBA70 /* PBXTextBookmark */ = A6AF31FB0B96711700EDBA70 /* PBXTextBookmark */; + A6AF31FC0B96714000EDBA70 /* PBXTextBookmark */ = A6AF31FC0B96714000EDBA70 /* PBXTextBookmark */; + A6AF31FD0B96714000EDBA70 /* PBXTextBookmark */ = A6AF31FD0B96714000EDBA70 /* PBXTextBookmark */; + A6AF31FF0B96714000EDBA70 /* PBXTextBookmark */ = A6AF31FF0B96714000EDBA70 /* PBXTextBookmark */; + A6AF32000B96714000EDBA70 /* PBXTextBookmark */ = A6AF32000B96714000EDBA70 /* PBXTextBookmark */; + A6AF32420B96718700EDBA70 /* PBXTextBookmark */ = A6AF32420B96718700EDBA70 /* PBXTextBookmark */; + A6AF32430B96718700EDBA70 /* PBXTextBookmark */ = A6AF32430B96718700EDBA70 /* PBXTextBookmark */; + A6AF32440B96718700EDBA70 /* PBXTextBookmark */ = A6AF32440B96718700EDBA70 /* PBXTextBookmark */; + A6AF32460B9672A500EDBA70 /* PBXTextBookmark */ = A6AF32460B9672A500EDBA70 /* PBXTextBookmark */; + A6AF32470B9672A500EDBA70 /* PBXTextBookmark */ = A6AF32470B9672A500EDBA70 /* PBXTextBookmark */; + A6AF32480B9672A500EDBA70 /* PBXTextBookmark */ = A6AF32480B9672A500EDBA70 /* PBXTextBookmark */; + }; + sourceControlManager = A6AF119C0B965E2E00EDBA70 /* Source Control */; + userBuildSettings = { + }; + }; + A6AF119C0B965E2E00EDBA70 /* Source Control */ = { + isa = PBXSourceControlManager; + fallbackIsa = XCSourceControlManager; + isSCMEnabled = 1; + scmConfiguration = { + SubversionToolPath = /usr/local/bin/svn; + }; + scmType = scm.subversion; + }; + A6AF119D0B965E2E00EDBA70 /* Code sense */ = { + isa = PBXCodeSenseManager; + indexTemplatePath = ""; + }; + A6AF20DA0B965ED900EDBA70 /* Synfig Framework */ = { + activeExec = 0; + }; + A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1084, 840}}"; + sepNavSelRange = "{1024, 21}"; + sepNavVisRect = "{{0, 248}, {1084, 360}}"; + }; + }; + A6AF29CB0B965F2E00EDBA70 /* activepoint.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {741, 1335}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29CC0B965F2E00EDBA70 /* angle.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 750}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1395}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D00B965F2E00EDBA70 /* blur.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1007, 1335}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D20B965F2E00EDBA70 /* canvas.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1077, 7290}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D30B965F2E00EDBA70 /* canvasbase.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 720}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D50B965F2E00EDBA70 /* color.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {902, 13005}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D70B965F2E00EDBA70 /* context.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {804, 1320}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29D90B965F2E00EDBA70 /* curve_helper.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {811, 2595}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29DB0B965F2E00EDBA70 /* curveset.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1395}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29DD0B965F2E00EDBA70 /* distance.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {839, 1935}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29DF0B965F2E00EDBA70 /* exception.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1470}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E10B965F2E00EDBA70 /* gamma.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {818, 1635}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E20B965F2E00EDBA70 /* general.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {902, 2460}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E40B965F2E00EDBA70 /* gradient.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1560}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E60B965F2E00EDBA70 /* guid.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {790, 2130}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E70B965F2E00EDBA70 /* guidset.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 930}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29E90B965F2E00EDBA70 /* importer.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1070, 1860}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29EA0B965F2E00EDBA70 /* interpolation.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 810}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29EC0B965F2E00EDBA70 /* keyframe.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1935}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29EE0B965F2E00EDBA70 /* layer.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1049, 6825}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1014, 1185}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29F20B965F2E00EDBA70 /* layer_composite.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1425}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29F40B965F2E00EDBA70 /* layer_mime.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1140}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1080}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1800}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1455}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1785}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {965, 1080}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A450B965F2F00EDBA70 /* listimporter.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1095}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {818, 2850}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A490B965F2F00EDBA70 /* main.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 945}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A4D0B965F2F00EDBA70 /* module.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {958, 2835}}"; + sepNavSelRange = "{1168, 0}"; + sepNavVisRect = "{{0, 2595}, {675, 221}}"; + }; + }; + A6AF2A4E0B965F2F00EDBA70 /* module.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1539, 2595}}"; + sepNavSelRange = "{263, 0}"; + sepNavVisRect = "{{0, 585}, {675, 76}}"; + }; + }; + A6AF2A500B965F2F00EDBA70 /* mutex.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1785}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A520B965F2F00EDBA70 /* node.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 3675}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A540B965F2F00EDBA70 /* palette.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1425}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A560B965F2F00EDBA70 /* paramdesc.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {713, 3420}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {797, 1815}}"; + sepNavSelRange = "{1715, 0}"; + sepNavVisRect = "{{0, 645}, {675, 76}}"; + }; + }; + A6AF2A600B965F2F00EDBA70 /* protocol.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1035}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A610B965F2F00EDBA70 /* real.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 630}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A630B965F2F00EDBA70 /* rect.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {720, 2625}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A650B965F2F00EDBA70 /* renddesc.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {804, 4815}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A670B965F2F00EDBA70 /* render.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {783, 1005}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1112, 11460}}"; + sepNavSelRange = "{1691, 0}"; + sepNavVisRect = "{{0, 733}, {822, 279}}"; + }; + }; + A6AF2A690B965F2F00EDBA70 /* savecanvas.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 825}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A6A0B965F2F00EDBA70 /* segment.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1020}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 795}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A6C0B965F2F00EDBA70 /* string.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 945}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 885}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A6F0B965F2F00EDBA70 /* surface.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {993, 2400}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A700B965F2F00EDBA70 /* surfacenew.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {622, 10605}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {471, 83}}"; + }; + }; + A6AF2A710B965F2F00EDBA70 /* surfacenew.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {822, 6015}}"; + sepNavSelRange = "{2791, 0}"; + sepNavVisRect = "{{0, 1688}, {822, 279}}"; + }; + }; + A6AF2A720B965F2F00EDBA70 /* synfig.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 2085}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A750B965F2F00EDBA70 /* target.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1042, 2475}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A770B965F2F00EDBA70 /* target_multi.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1035}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A790B965F2F00EDBA70 /* target_null.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1080}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {692, 1005}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1515}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1830}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A810B965F2F00EDBA70 /* time.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {937, 2490}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + sepNavWindowFrame = "{{160, 331}, {685, 437}}"; + }; + }; + A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {958, 825}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A850B965F2F00EDBA70 /* transform.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1305}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A860B965F2F00EDBA70 /* types.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 720}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A880B965F2F00EDBA70 /* uniqueid.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1380}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A8A0B965F2F00EDBA70 /* value.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {713, 6870}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {860, 5820}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1770}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1485}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1170}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1155}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {804, 3690}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1560}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1245}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1170}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1290}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1560}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1260}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1275}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1245}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1545}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1650}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1515}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 1545}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AAF0B965F2F00EDBA70 /* vector.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {846, 4290}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AB00B965F2F00EDBA70 /* version.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1196, 1170}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AB20B965F2F00EDBA70 /* waypoint.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {867, 3855}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 76}}"; + }; + }; + A6AF2AB30B965F2F00EDBA70 /* template.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {573, 825}}"; + sepNavSelRange = "{1004, 13}"; + sepNavVisRect = "{{0, 375}, {471, 83}}"; + sepNavWindowFrame = "{{207, 289}, {685, 437}}"; + }; + }; + A6AF2ABA0B965F2F00EDBA70 /* main.cpp */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1203, 16680}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {675, 221}}"; + }; + }; + A6AF2FAA0B96608300EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::memcpy' has not been declared"; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + rLen = 1; + rLoc = 78; + rType = 1; + }; + A6AF2FAB0B96608300EDBA70 /* cstring */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.cpp.h; + name = cstring; + path = "/usr/include/c++/4.0.0/cstring"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {559, 1935}}"; + sepNavSelRange = "{2380, 18}"; + sepNavVisRect = "{{0, 689}, {471, 83}}"; + }; + }; + A6AF2FAC0B96608300EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAD0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 190; + vrLoc = 2319; + }; + A6AF2FAD0B96608300EDBA70 /* cstring */ = { + isa = PBXFileReference; + name = cstring; + path = "/usr/include/c++/4.0.0/cstring"; + sourceTree = ""; + }; + A6AF2FB00B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 545; + vrLoc = 0; + }; + A6AF2FB10B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB20B9660CB00EDBA70 /* ctime */; + name = "(null): 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 545; + vrLoc = 0; + }; + A6AF2FB20B9660CB00EDBA70 /* ctime */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.cpp.h; + name = ctime; + path = "/usr/include/c++/4.0.0/ctime"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {822, 1230}}"; + sepNavSelRange = "{1952, 0}"; + sepNavVisRect = "{{0, 537}, {822, 294}}"; + }; + }; + A6AF2FB30B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Precompiling /System/Library/Frameworks/Carbon.framework/Headers/Carbon.h"; + fRef = A6AF2FB40B9660CB00EDBA70 /* Carbon.h */; + rLen = 0; + rLoc = 0; + rType = 1; + }; + A6AF2FB40B9660CB00EDBA70 /* Carbon.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = Carbon.h; + path = /System/Library/Frameworks/Carbon.framework/Headers/Carbon.h; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {822, 1230}}"; + sepNavSelRange = "{0, 0}"; + sepNavVisRect = "{{0, 0}, {822, 294}}"; + }; + }; + A6AF2FB50B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 545; + vrLoc = 0; + }; + A6AF2FB60B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB70B9660CB00EDBA70 /* ctime */; + name = "(null): 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 545; + vrLoc = 0; + }; + A6AF2FB70B9660CB00EDBA70 /* ctime */ = { + isa = PBXFileReference; + name = ctime; + path = "/usr/include/c++/4.0.0/ctime"; + sourceTree = ""; + }; + A6AF2FB80B9660CB00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB90B9660CB00EDBA70 /* Carbon.h */; + name = "(null): 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 474; + vrLoc = 0; + }; + A6AF2FB90B9660CB00EDBA70 /* Carbon.h */ = { + isa = PBXFileReference; + name = Carbon.h; + path = /System/Library/Frameworks/Carbon.framework/Headers/Carbon.h; + sourceTree = ""; + }; + A6AF2FBB0B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB40B9660CB00EDBA70 /* Carbon.h */; + name = "Carbon.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 474; + vrLoc = 0; + }; + A6AF2FBC0B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 889; + vrLoc = 0; + }; + A6AF2FBD0B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "Distributing compilation of /Users/darco/Projects/Voria/synfig-core/src/synfig/activepoint.cpp"; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + rLen = 0; + rLoc = 0; + rType = 1; + }; + A6AF2FBE0B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB40B9660CB00EDBA70 /* Carbon.h */; + name = "Carbon.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 474; + vrLoc = 0; + }; + A6AF2FBF0B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 322; + vrLoc = 2262; + }; + A6AF2FC00B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 373; + vrLoc = 961; + }; + A6AF2FC10B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 889; + vrLoc = 0; + }; + A6AF2FC20B96614500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 800; + vrLoc = 0; + }; + A6AF2FC60B96616500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 800; + vrLoc = 0; + }; + A6AF2FC80B96618900EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 800; + vrLoc = 0; + }; + A6AF2FC90B96618900EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::memcpy' has not been declared"; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + rLen = 1; + rLoc = 78; + rType = 1; + }; + A6AF2FCA0B96618900EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 800; + vrLoc = 0; + }; + A6AF2FCB0B96618900EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 708; + vrLoc = 1191; + }; + A6AF2FCD0B96619A00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::memcpy' has not been declared"; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + rLen = 1; + rLoc = 78; + rType = 1; + }; + A6AF2FCE0B96619A00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 322; + vrLoc = 2262; + }; + A6AF2FD40B96626800EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "{ return memchr(const_cast(__p), __c, __n); }"; + rLen = 61; + rLoc = 2771; + rType = 0; + vrLen = 397; + vrLoc = 2603; + }; + A6AF2FD50B96626800EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::clock_t' has not been declared"; + fRef = A6AF2FB20B9660CB00EDBA70 /* ctime */; + rLen = 1; + rLoc = 65; + rType = 1; + }; + A6AF2FD60B96626800EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "{ return memchr(const_cast(__p), __c, __n); }"; + rLen = 61; + rLoc = 2771; + rType = 0; + vrLen = 397; + vrLoc = 2603; + }; + A6AF2FD70B96626800EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB20B9660CB00EDBA70 /* ctime */; + name = "ctime: 51"; + rLen = 0; + rLoc = 1952; + rType = 0; + vrLen = 570; + vrLoc = 1507; + }; + A6AF2FD90B9662F600EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB20B9660CB00EDBA70 /* ctime */; + name = "ctime: 51"; + rLen = 0; + rLoc = 1952; + rType = 0; + vrLen = 570; + vrLoc = 1507; + }; + A6AF2FDA0B9662F600EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::memcpy' has not been declared"; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + rLen = 1; + rLoc = 78; + rType = 1; + }; + A6AF2FDB0B9662F600EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FB20B9660CB00EDBA70 /* ctime */; + name = "ctime: 51"; + rLen = 0; + rLoc = 1952; + rType = 0; + vrLen = 570; + vrLoc = 1507; + }; + A6AF2FDC0B9662F600EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; + A6AF2FE30B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FE40B9663F500EDBA70 /* template.cpp */; + name = "(null): 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 193; + vrLoc = 0; + }; + A6AF2FE40B9663F500EDBA70 /* template.cpp */ = { + isa = PBXFileReference; + name = template.cpp; + path = "/Users/darco/Projects/Voria/synfig-core/src/template.cpp"; + sourceTree = ""; + }; + A6AF2FE50B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D10B965F2E00EDBA70 /* canvas.cpp */; + name = "canvas.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 207; + vrLoc = 0; + }; + A6AF2FE60B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 52; + vrLoc = 1052; + }; + A6AF2FE70B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CC0B965F2E00EDBA70 /* angle.h */; + name = "angle.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF2FE80B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: '::memcpy' has not been declared"; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + rLen = 1; + rLoc = 78; + rType = 1; + }; + A6AF2FE90B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FEA0B9663F500EDBA70 /* template.cpp */; + name = "(null): 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 193; + vrLoc = 0; + }; + A6AF2FEA0B9663F500EDBA70 /* template.cpp */ = { + isa = PBXFileReference; + name = template.cpp; + path = "/Users/darco/Projects/Voria/synfig-core/src/template.cpp"; + sourceTree = ""; + }; + A6AF2FEB0B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 52; + vrLoc = 1052; + }; + A6AF2FEC0B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 71; + vrLoc = 2364; + }; + A6AF2FED0B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "activepoint.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 52; + vrLoc = 1052; + }; + A6AF2FEE0B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 71; + vrLoc = 2364; + }; + A6AF2FEF0B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CC0B965F2E00EDBA70 /* angle.h */; + name = "angle.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF2FF00B9663F500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 91; + vrLoc = 2363; + }; + A6AF303E0B9666C700EDBA70 /* signal_base.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = signal_base.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/signal_base.h"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {846, 4515}}"; + sepNavSelRange = "{898, 26}"; + sepNavVisRect = "{{0, 299}, {822, 137}}"; + sepNavWindowFrame = "{{184, 310}, {685, 437}}"; + }; + }; + A6AF30400B9666E100EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 158; + vrLoc = 2333; + }; + A6AF30410B9666E100EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: sigc++config.h: No such file or directory"; + fRef = A6AF30420B9666E100EDBA70 /* signal_base.h */; + rLen = 1; + rLoc = 24; + rType = 1; + }; + A6AF30420B9666E100EDBA70 /* signal_base.h */ = { + isa = PBXFileReference; + name = signal_base.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/signal_base.h"; + sourceTree = ""; + }; + A6AF30430B9666E100EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 158; + vrLoc = 2333; + }; + A6AF30440B9666E100EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF303E0B9666C700EDBA70 /* signal_base.h */; + name = "#include "; + rLen = 26; + rLoc = 898; + rType = 0; + vrLen = 236; + vrLoc = 822; + }; + A6AF30450B96670D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF303E0B9666C700EDBA70 /* signal_base.h */; + name = "#include "; + rLen = 26; + rLoc = 898; + rType = 0; + vrLen = 236; + vrLoc = 822; + }; + A6AF30740B96688E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 158; + vrLoc = 2333; + }; + A6AF30750B96688E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: sigc++/signal_base.h: No such file or directory"; + fRef = A6AF30760B96688E00EDBA70 /* signal.h */; + rLen = 1; + rLoc = 7; + rType = 1; + }; + A6AF30760B96688E00EDBA70 /* signal.h */ = { + isa = PBXFileReference; + name = signal.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/signal.h"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {2785, 49710}}"; + sepNavSelRange = "{139421, 0}"; + sepNavVisRect = "{{0, 0}, {822, 137}}"; + }; + }; + A6AF30770B96688E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 158; + vrLoc = 2333; + }; + A6AF30780B96688E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30790B96688E00EDBA70 /* signal.h */; + name = "#include "; + rLen = 32; + rLoc = 118; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF30790B96688E00EDBA70 /* signal.h */ = { + isa = PBXFileReference; + name = signal.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/signal.h"; + sourceTree = ""; + }; + A6AF308B0B96691000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30760B96688E00EDBA70 /* signal.h */; + name = "signal.h: 3314"; + rLen = 0; + rLoc = 139421; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF308C0B96691000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: sigc++config.h: No such file or directory"; + fRef = A6AF308D0B96691000EDBA70 /* adaptor_trait.h */; + rLen = 1; + rLoc = 4; + rType = 1; + }; + A6AF308D0B96691000EDBA70 /* adaptor_trait.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = adaptor_trait.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/adaptors/adaptor_trait.h"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {986, 5490}}"; + sepNavSelRange = "{15138, 0}"; + sepNavVisRect = "{{0, 0}, {471, 83}}"; + }; + }; + A6AF308E0B96691000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30760B96688E00EDBA70 /* signal.h */; + name = "signal.h: 3314"; + rLen = 0; + rLoc = 139421; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF308F0B96691000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30900B96691000EDBA70 /* adaptor_trait.h */; + name = "#include \"sigc++config.h\" //To get SIGC_TEMPLATE_KEYWORD_OPERATOR_OVERLOAD"; + rLen = 75; + rLoc = 148; + rType = 0; + vrLen = 419; + vrLoc = 0; + }; + A6AF30900B96691000EDBA70 /* adaptor_trait.h */ = { + isa = PBXFileReference; + name = adaptor_trait.h; + path = "/Users/darco/Projects/Voria/synfig-core/../../../Library/Frameworks/sigc++.framework/Headers/adaptors/adaptor_trait.h"; + sourceTree = ""; + }; + A6AF30A30B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF308D0B96691000EDBA70 /* adaptor_trait.h */; + name = "adaptor_trait.h: 366"; + rLen = 0; + rLoc = 15138; + rType = 0; + vrLen = 426; + vrLoc = 0; + }; + A6AF30A40B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */; + name = "polynomial_root.h: 46"; + rLen = 0; + rLoc = 1715; + rType = 0; + vrLen = 609; + vrLoc = 1252; + }; + A6AF30A50B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30A60B966B1700EDBA70 /* errno.h */; + name = "#define errno (*__error())"; + rLen = 27; + rLoc = 3353; + rType = 0; + vrLen = 333; + vrLoc = 3189; + }; + A6AF30A60B966B1700EDBA70 /* errno.h */ = { + isa = PBXFileReference; + name = errno.h; + path = /usr/include/sys/errno.h; + sourceTree = ""; + }; + A6AF30A70B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */; + name = "savecanvas.cpp: 59"; + rLen = 0; + rLoc = 1691; + rType = 0; + vrLen = 435; + vrLoc = 1493; + }; + A6AF30A80B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A710B965F2F00EDBA70 /* surfacenew.h */; + name = "surfacenew.h: w_"; + rLen = 0; + rLoc = 2791; + rType = 0; + vrLen = 251; + vrLoc = 2584; + }; + A6AF30A90B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: expected namespace-name before ';' token"; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + rLen = 1; + rLoc = 40; + rType = 1; + }; + A6AF30AA0B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF308D0B96691000EDBA70 /* adaptor_trait.h */; + name = "adaptor_trait.h: 366"; + rLen = 0; + rLoc = 15138; + rType = 0; + vrLen = 426; + vrLoc = 0; + }; + A6AF30AB0B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */; + name = "polynomial_root.h: 46"; + rLen = 0; + rLoc = 1715; + rType = 0; + vrLen = 609; + vrLoc = 1252; + }; + A6AF30AC0B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */; + name = "savecanvas.cpp: 59"; + rLen = 0; + rLoc = 1691; + rType = 0; + vrLen = 435; + vrLoc = 1493; + }; + A6AF30AD0B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A710B965F2F00EDBA70 /* surfacenew.h */; + name = "surfacenew.h: w_"; + rLen = 0; + rLoc = 2791; + rType = 0; + vrLen = 251; + vrLoc = 2584; + }; + A6AF30AE0B966B1700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = "using namespace etl;"; + rLen = 21; + rLoc = 1187; + rType = 0; + vrLen = 620; + vrLoc = 1018; + }; + A6AF30B20B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 69; + vrLoc = 1899; + }; + A6AF30B30B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF308D0B96691000EDBA70 /* adaptor_trait.h */; + name = "adaptor_trait.h: 366"; + rLen = 0; + rLoc = 15138; + rType = 0; + vrLen = 261; + vrLoc = 0; + }; + A6AF30B40B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A700B965F2F00EDBA70 /* surfacenew.cpp */; + name = "surfacenew.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF30B50B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2FAB0B96608300EDBA70 /* cstring */; + name = "using ::memcpy;"; + rLen = 18; + rLoc = 2380; + rType = 0; + vrLen = 69; + vrLoc = 1899; + }; + A6AF30B60B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF308D0B96691000EDBA70 /* adaptor_trait.h */; + name = "adaptor_trait.h: 366"; + rLen = 0; + rLoc = 15138; + rType = 0; + vrLen = 261; + vrLoc = 0; + }; + A6AF30B70B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A700B965F2F00EDBA70 /* surfacenew.cpp */; + name = "surfacenew.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF30B80B966B2700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = "template.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF30B90B966C1800EDBA70 /* config.h */ = { + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {675, 3975}}"; + sepNavSelRange = "{238, 0}"; + sepNavVisRect = "{{0, 3732}, {675, 243}}"; + }; + }; + A6AF30BB0B966C6E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = "using namespace etl;"; + rLen = 21; + rLoc = 1187; + rType = 0; + vrLen = 620; + vrLoc = 1018; + }; + A6AF30BC0B966C6E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: config.h: No such file or directory"; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + rLen = 1; + rLoc = 28; + rType = 1; + }; + A6AF30BD0B966C6E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = "using namespace etl;"; + rLen = 21; + rLoc = 1187; + rType = 0; + vrLen = 620; + vrLoc = 1018; + }; + A6AF30BE0B966C6E00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 580; + vrLoc = 672; + }; + A6AF30C30B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = "config.h: 4"; + rLen = 0; + rLoc = 160; + rType = 0; + vrLen = 176; + vrLoc = 239; + }; + A6AF30C40B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = HAVE_CONFIG_H; + rLen = 13; + rLoc = 1004; + rType = 0; + vrLen = 74; + vrLoc = 973; + }; + A6AF30C50B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = "template.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF30C60B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = "config.h: 4"; + rLen = 0; + rLoc = 160; + rType = 0; + vrLen = 176; + vrLoc = 239; + }; + A6AF30C70B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB30B965F2F00EDBA70 /* template.cpp */; + name = HAVE_CONFIG_H; + rLen = 13; + rLoc = 1004; + rType = 0; + vrLen = 74; + vrLoc = 973; + }; + A6AF30C80B966C8700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 99; + vrLoc = 979; + }; + A6AF30C90B966CBD00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 580; + vrLoc = 672; + }; + A6AF30CC0B966CD300EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 99; + vrLoc = 979; + }; + A6AF30CF0B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 99; + vrLoc = 979; + }; + A6AF30D00B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4E0B965F2F00EDBA70 /* module.h */; + name = "module.h: 9"; + rLen = 0; + rLoc = 263; + rType = 0; + vrLen = 909; + vrLoc = 1252; + }; + A6AF30D10B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4D0B965F2F00EDBA70 /* module.cpp */; + name = "module.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 865; + vrLoc = 0; + }; + A6AF30D20B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 99; + vrLoc = 979; + }; + A6AF30D30B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4E0B965F2F00EDBA70 /* module.h */; + name = "module.h: 9"; + rLen = 0; + rLoc = 263; + rType = 0; + vrLen = 909; + vrLoc = 1252; + }; + A6AF30D40B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4D0B965F2F00EDBA70 /* module.cpp */; + name = "module.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 865; + vrLoc = 0; + }; + A6AF30D50B966D7700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = "config.h: 4"; + rLen = 0; + rLoc = 146; + rType = 0; + vrLen = 649; + vrLoc = 0; + }; + A6AF30E20B966F6D00EDBA70 /* Synfig Tool */ = { + activeExec = 0; + executables = ( + A6AF30E40B966F6D00EDBA70 /* Synfig Tool */, + ); + }; + A6AF30E40B966F6D00EDBA70 /* Synfig Tool */ = { + isa = PBXExecutable; + activeArgIndex = 2147483647; + activeArgIndices = ( + ); + argumentStrings = ( + ); + autoAttachOnCrash = 1; + configStateDict = { + }; + customDataFormattersEnabled = 1; + debuggerPlugin = GDBDebugging; + disassemblyDisplayState = 0; + enableDebugStr = 1; + environmentEntries = ( + ); + executableSystemSymbolLevel = 0; + executableUserSymbolLevel = 0; + libgmallocEnabled = 0; + name = "Synfig Tool"; + sourceDirectories = ( + ); + }; + A6AF30F40B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = USE_CF_BUNDLES; + rLen = 14; + rLoc = 132; + rType = 0; + vrLen = 646; + vrLoc = 0; + }; + A6AF30F50B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4D0B965F2F00EDBA70 /* module.cpp */; + name = "module.cpp: 40"; + rLen = 0; + rLoc = 1168; + rType = 0; + vrLen = 324; + vrLoc = 4484; + }; + A6AF30F60B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2ABA0B965F2F00EDBA70 /* main.cpp */; + name = "main.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 586; + vrLoc = 0; + }; + A6AF30F70B96707D00EDBA70 /* PBXBookmark */ = { + isa = PBXBookmark; + fRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; + }; + A6AF30F80B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = USE_CF_BUNDLES; + rLen = 14; + rLoc = 132; + rType = 0; + vrLen = 646; + vrLoc = 0; + }; + A6AF30F90B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4D0B965F2F00EDBA70 /* module.cpp */; + name = "module.cpp: 40"; + rLen = 0; + rLoc = 1168; + rType = 0; + vrLen = 324; + vrLoc = 4484; + }; + A6AF30FA0B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2ABA0B965F2F00EDBA70 /* main.cpp */; + name = "main.cpp: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 586; + vrLoc = 0; + }; + A6AF30FB0B96707D00EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; + name = "activepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; + A6AF31540B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; + name = "activepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31550B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CC0B965F2E00EDBA70 /* angle.h */; + name = "angle.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31560B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */; + name = "blinepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF31570B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D00B965F2E00EDBA70 /* blur.h */; + name = "blur.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31580B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D20B965F2E00EDBA70 /* canvas.h */; + name = "canvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31590B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D30B965F2E00EDBA70 /* canvasbase.h */; + name = "canvasbase.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF315A0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D50B965F2E00EDBA70 /* color.h */; + name = "color.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 199; + vrLoc = 0; + }; + A6AF315B0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D70B965F2E00EDBA70 /* context.h */; + name = "context.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF315C0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D90B965F2E00EDBA70 /* curve_helper.h */; + name = "curve_helper.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 206; + vrLoc = 0; + }; + A6AF315D0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DB0B965F2E00EDBA70 /* curveset.h */; + name = "curveset.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 195; + vrLoc = 0; + }; + A6AF315E0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DD0B965F2E00EDBA70 /* distance.h */; + name = "distance.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF315F0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DF0B965F2E00EDBA70 /* exception.h */; + name = "exception.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 191; + vrLoc = 0; + }; + A6AF31600B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E10B965F2E00EDBA70 /* gamma.h */; + name = "gamma.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31610B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E20B965F2E00EDBA70 /* general.h */; + name = "general.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 228; + vrLoc = 0; + }; + A6AF31620B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E40B965F2E00EDBA70 /* gradient.h */; + name = "gradient.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 199; + vrLoc = 0; + }; + A6AF31630B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E60B965F2E00EDBA70 /* guid.h */; + name = "guid.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31640B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E70B965F2E00EDBA70 /* guidset.h */; + name = "guidset.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31650B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E90B965F2E00EDBA70 /* importer.h */; + name = "importer.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31660B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EA0B965F2E00EDBA70 /* interpolation.h */; + name = "interpolation.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31670B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EC0B965F2E00EDBA70 /* keyframe.h */; + name = "keyframe.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31680B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EE0B965F2E00EDBA70 /* layer.h */; + name = "layer.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 187; + vrLoc = 0; + }; + A6AF31690B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */; + name = "layer_bitmap.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF316A0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F20B965F2E00EDBA70 /* layer_composite.h */; + name = "layer_composite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 225; + vrLoc = 0; + }; + A6AF316B0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F40B965F2E00EDBA70 /* layer_mime.h */; + name = "layer_mime.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF316C0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */; + name = "layer_motionblur.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF316D0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */; + name = "layer_pastecanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF316E0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */; + name = "layer_polygon.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF316F0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */; + name = "layer_shape.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31700B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */; + name = "layer_solidcolor.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31710B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A450B965F2F00EDBA70 /* listimporter.h */; + name = "listimporter.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31720B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */; + name = "loadcanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31730B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A490B965F2F00EDBA70 /* main.h */; + name = "main.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31740B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4E0B965F2F00EDBA70 /* module.h */; + name = "module.h: 9"; + rLen = 0; + rLoc = 263; + rType = 0; + vrLen = 278; + vrLoc = 1252; + }; + A6AF31750B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A500B965F2F00EDBA70 /* mutex.h */; + name = "mutex.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 184; + vrLoc = 0; + }; + A6AF31760B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A520B965F2F00EDBA70 /* node.h */; + name = "node.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 182; + vrLoc = 0; + }; + A6AF31770B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A540B965F2F00EDBA70 /* palette.h */; + name = "palette.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31780B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A560B965F2F00EDBA70 /* paramdesc.h */; + name = "paramdesc.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 211; + vrLoc = 0; + }; + A6AF31790B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */; + name = "polynomial_root.h: 46"; + rLen = 0; + rLoc = 1715; + rType = 0; + vrLen = 204; + vrLoc = 1591; + }; + A6AF317A0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A600B965F2F00EDBA70 /* protocol.h */; + name = "protocol.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF317B0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A610B965F2F00EDBA70 /* real.h */; + name = "real.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF317C0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A630B965F2F00EDBA70 /* rect.h */; + name = "rect.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF317D0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A650B965F2F00EDBA70 /* renddesc.h */; + name = "renddesc.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF317E0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A670B965F2F00EDBA70 /* render.h */; + name = "render.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF317F0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A690B965F2F00EDBA70 /* savecanvas.h */; + name = "savecanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31800B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6A0B965F2F00EDBA70 /* segment.h */; + name = "segment.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31810B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */; + name = "smartfile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31820B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6C0B965F2F00EDBA70 /* string.h */; + name = "string.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31830B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */; + name = "string_decl.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31840B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6F0B965F2F00EDBA70 /* surface.h */; + name = "surface.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31850B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A720B965F2F00EDBA70 /* synfig.h */; + name = "synfig.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31860B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A750B965F2F00EDBA70 /* target.h */; + name = "target.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31870B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A770B965F2F00EDBA70 /* target_multi.h */; + name = "target_multi.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31880B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A790B965F2F00EDBA70 /* target_null.h */; + name = "target_null.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31890B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */; + name = "target_null_tile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF318A0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */; + name = "target_scanline.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF318B0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */; + name = "target_tile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF318C0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A810B965F2F00EDBA70 /* time.h */; + name = "time.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF318D0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */; + name = "timepointcollect.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF318E0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A850B965F2F00EDBA70 /* transform.h */; + name = "transform.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF318F0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A860B965F2F00EDBA70 /* types.h */; + name = "types.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31900B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A880B965F2F00EDBA70 /* uniqueid.h */; + name = "uniqueid.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31910B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8A0B965F2F00EDBA70 /* value.h */; + name = "value.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31920B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */; + name = "valuenode.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31930B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */; + name = "valuenode_animated.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 214; + vrLoc = 0; + }; + A6AF31940B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */; + name = "valuenode_bline.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31950B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */; + name = "valuenode_composite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF31960B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */; + name = "valuenode_const.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31970B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */; + name = "valuenode_dynamiclist.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 220; + vrLoc = 0; + }; + A6AF31980B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */; + name = "valuenode_gradientrotate.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 219; + vrLoc = 0; + }; + A6AF31990B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */; + name = "valuenode_linear.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF319A0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */; + name = "valuenode_radialcomposite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 228; + vrLoc = 0; + }; + A6AF319B0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */; + name = "valuenode_reference.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF319C0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */; + name = "valuenode_scale.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF319D0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */; + name = "valuenode_segcalctangent.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 226; + vrLoc = 0; + }; + A6AF319E0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */; + name = "valuenode_segcalcvertex.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 224; + vrLoc = 0; + }; + A6AF319F0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */; + name = "valuenode_sine.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 206; + vrLoc = 0; + }; + A6AF31A00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */; + name = "valuenode_stripes.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF31A10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */; + name = "valuenode_subtract.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 214; + vrLoc = 0; + }; + A6AF31A20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */; + name = "valuenode_timedswap.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF31A30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */; + name = "valuenode_twotone.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF31A40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAF0B965F2F00EDBA70 /* vector.h */; + name = "vector.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31A50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB00B965F2F00EDBA70 /* version.h */; + name = "version.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31A60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; + name = "waypoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31A70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; + name = "activepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31A80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; + name = "waypoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31A90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; + name = "activepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31AA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CC0B965F2E00EDBA70 /* angle.h */; + name = "angle.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31AB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */; + name = "blinepoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF31AC0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D00B965F2E00EDBA70 /* blur.h */; + name = "blur.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31AD0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D20B965F2E00EDBA70 /* canvas.h */; + name = "canvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31AE0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D30B965F2E00EDBA70 /* canvasbase.h */; + name = "canvasbase.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF31AF0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D50B965F2E00EDBA70 /* color.h */; + name = "color.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 199; + vrLoc = 0; + }; + A6AF31B00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D70B965F2E00EDBA70 /* context.h */; + name = "context.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31B10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29D90B965F2E00EDBA70 /* curve_helper.h */; + name = "curve_helper.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 206; + vrLoc = 0; + }; + A6AF31B20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DB0B965F2E00EDBA70 /* curveset.h */; + name = "curveset.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 195; + vrLoc = 0; + }; + A6AF31B30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DD0B965F2E00EDBA70 /* distance.h */; + name = "distance.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31B40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29DF0B965F2E00EDBA70 /* exception.h */; + name = "exception.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 191; + vrLoc = 0; + }; + A6AF31B50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E10B965F2E00EDBA70 /* gamma.h */; + name = "gamma.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31B60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E20B965F2E00EDBA70 /* general.h */; + name = "general.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 228; + vrLoc = 0; + }; + A6AF31B70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E40B965F2E00EDBA70 /* gradient.h */; + name = "gradient.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 199; + vrLoc = 0; + }; + A6AF31B80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E60B965F2E00EDBA70 /* guid.h */; + name = "guid.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31B90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E70B965F2E00EDBA70 /* guidset.h */; + name = "guidset.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31BA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29E90B965F2E00EDBA70 /* importer.h */; + name = "importer.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31BB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EA0B965F2E00EDBA70 /* interpolation.h */; + name = "interpolation.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31BC0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EC0B965F2E00EDBA70 /* keyframe.h */; + name = "keyframe.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31BD0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29EE0B965F2E00EDBA70 /* layer.h */; + name = "layer.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 187; + vrLoc = 0; + }; + A6AF31BE0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */; + name = "layer_bitmap.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF31BF0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F20B965F2E00EDBA70 /* layer_composite.h */; + name = "layer_composite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 225; + vrLoc = 0; + }; + A6AF31C00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F40B965F2E00EDBA70 /* layer_mime.h */; + name = "layer_mime.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 198; + vrLoc = 0; + }; + A6AF31C10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */; + name = "layer_motionblur.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31C20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */; + name = "layer_pastecanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31C30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */; + name = "layer_polygon.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31C40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */; + name = "layer_shape.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31C50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */; + name = "layer_solidcolor.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31C60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A450B965F2F00EDBA70 /* listimporter.h */; + name = "listimporter.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31C70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */; + name = "loadcanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31C80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A490B965F2F00EDBA70 /* main.h */; + name = "main.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31C90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A4E0B965F2F00EDBA70 /* module.h */; + name = "module.h: 9"; + rLen = 0; + rLoc = 263; + rType = 0; + vrLen = 278; + vrLoc = 1252; + }; + A6AF31CA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A500B965F2F00EDBA70 /* mutex.h */; + name = "mutex.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 184; + vrLoc = 0; + }; + A6AF31CB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A520B965F2F00EDBA70 /* node.h */; + name = "node.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 182; + vrLoc = 0; + }; + A6AF31CC0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A540B965F2F00EDBA70 /* palette.h */; + name = "palette.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31CD0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A560B965F2F00EDBA70 /* paramdesc.h */; + name = "paramdesc.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 211; + vrLoc = 0; + }; + A6AF31CE0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */; + name = "polynomial_root.h: 46"; + rLen = 0; + rLoc = 1715; + rType = 0; + vrLen = 204; + vrLoc = 1591; + }; + A6AF31CF0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A600B965F2F00EDBA70 /* protocol.h */; + name = "protocol.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31D00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A610B965F2F00EDBA70 /* real.h */; + name = "real.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31D10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A630B965F2F00EDBA70 /* rect.h */; + name = "rect.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31D20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A650B965F2F00EDBA70 /* renddesc.h */; + name = "renddesc.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31D30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A670B965F2F00EDBA70 /* render.h */; + name = "render.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31D40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A690B965F2F00EDBA70 /* savecanvas.h */; + name = "savecanvas.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31D50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6A0B965F2F00EDBA70 /* segment.h */; + name = "segment.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31D60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */; + name = "smartfile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31D70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6C0B965F2F00EDBA70 /* string.h */; + name = "string.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 190; + vrLoc = 0; + }; + A6AF31D80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */; + name = "string_decl.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31D90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A6F0B965F2F00EDBA70 /* surface.h */; + name = "surface.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31DA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A720B965F2F00EDBA70 /* synfig.h */; + name = "synfig.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31DB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A750B965F2F00EDBA70 /* target.h */; + name = "target.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31DC0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A770B965F2F00EDBA70 /* target_multi.h */; + name = "target_multi.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 202; + vrLoc = 0; + }; + A6AF31DD0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A790B965F2F00EDBA70 /* target_null.h */; + name = "target_null.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31DE0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */; + name = "target_null_tile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31DF0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */; + name = "target_scanline.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31E00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */; + name = "target_tile.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 200; + vrLoc = 0; + }; + A6AF31E10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A810B965F2F00EDBA70 /* time.h */; + name = "time.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 186; + vrLoc = 0; + }; + A6AF31E20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */; + name = "timepointcollect.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31E30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A850B965F2F00EDBA70 /* transform.h */; + name = "transform.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31E40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A860B965F2F00EDBA70 /* types.h */; + name = "types.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31E50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A880B965F2F00EDBA70 /* uniqueid.h */; + name = "uniqueid.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31E60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8A0B965F2F00EDBA70 /* value.h */; + name = "value.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 188; + vrLoc = 0; + }; + A6AF31E70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */; + name = "valuenode.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 196; + vrLoc = 0; + }; + A6AF31E80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */; + name = "valuenode_animated.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 214; + vrLoc = 0; + }; + A6AF31E90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */; + name = "valuenode_bline.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31EA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */; + name = "valuenode_composite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF31EB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */; + name = "valuenode_const.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31EC0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */; + name = "valuenode_dynamiclist.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 220; + vrLoc = 0; + }; + A6AF31ED0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */; + name = "valuenode_gradientrotate.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 219; + vrLoc = 0; + }; + A6AF31EE0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */; + name = "valuenode_linear.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 210; + vrLoc = 0; + }; + A6AF31EF0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */; + name = "valuenode_radialcomposite.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 228; + vrLoc = 0; + }; + A6AF31F00B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */; + name = "valuenode_reference.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF31F10B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */; + name = "valuenode_scale.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 208; + vrLoc = 0; + }; + A6AF31F20B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */; + name = "valuenode_segcalctangent.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 226; + vrLoc = 0; + }; + A6AF31F30B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */; + name = "valuenode_segcalcvertex.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 224; + vrLoc = 0; + }; + A6AF31F40B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */; + name = "valuenode_sine.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 206; + vrLoc = 0; + }; + A6AF31F50B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */; + name = "valuenode_stripes.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF31F60B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */; + name = "valuenode_subtract.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 214; + vrLoc = 0; + }; + A6AF31F70B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */; + name = "valuenode_timedswap.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 216; + vrLoc = 0; + }; + A6AF31F80B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */; + name = "valuenode_twotone.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 212; + vrLoc = 0; + }; + A6AF31F90B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AAF0B965F2F00EDBA70 /* vector.h */; + name = "vector.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 204; + vrLoc = 0; + }; + A6AF31FA0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB00B965F2F00EDBA70 /* version.h */; + name = "version.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 192; + vrLoc = 0; + }; + A6AF31FB0B96711700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; + name = "waypoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF31FC0B96714000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 580; + vrLoc = 672; + }; + A6AF31FD0B96714000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + comments = "error: sigc++/signal.h: No such file or directory"; + fRef = A6AF31FE0B96714000EDBA70 /* canvas.h */; + rLen = 1; + rLoc = 32; + rType = 1; + }; + A6AF31FE0B96714000EDBA70 /* canvas.h */ = { + isa = PBXFileReference; + lastKnownFileType = sourcecode.c.h; + name = canvas.h; + path = "/Users/darco/Projects/Voria/synfig-core/build/Debug/synfig.framework/Headers/canvas.h"; + sourceTree = ""; + uiCtxt = { + sepNavIntBoundsRect = "{{0, 0}, {1077, 7290}}"; + sepNavSelRange = "{13641, 0}"; + sepNavVisRect = "{{0, 450}, {675, 76}}"; + }; + }; + A6AF31FF0B96714000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; + name = "#\tinclude "; + rLen = 21; + rLoc = 1024; + rType = 0; + vrLen = 580; + vrLoc = 672; + }; + A6AF32000B96714000EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF32010B96714000EDBA70 /* canvas.h */; + name = "#include "; + rLen = 27; + rLoc = 1149; + rType = 0; + vrLen = 626; + vrLoc = 800; + }; + A6AF32010B96714000EDBA70 /* canvas.h */ = { + isa = PBXFileReference; + name = canvas.h; + path = "/Users/darco/Projects/Voria/synfig-core/build/Debug/synfig.framework/Headers/canvas.h"; + sourceTree = ""; + }; + A6AF32420B96718700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; + name = "waypoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF32430B96718700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; + name = "waypoint.h: 1"; + rLen = 0; + rLoc = 0; + rType = 0; + vrLen = 194; + vrLoc = 0; + }; + A6AF32440B96718700EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF32450B96718700EDBA70 /* canvas.h */; + name = "#include "; + rLen = 27; + rLoc = 1149; + rType = 0; + vrLen = 106; + vrLoc = 1111; + }; + A6AF32450B96718700EDBA70 /* canvas.h */ = { + isa = PBXFileReference; + name = canvas.h; + path = "/Users/darco/Projects/Voria/synfig-core/build/Debug/synfig.framework/Headers/canvas.h"; + sourceTree = ""; + }; + A6AF32460B9672A500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF31FE0B96714000EDBA70 /* canvas.h */; + name = "canvas.h: 486"; + rLen = 0; + rLoc = 13641; + rType = 0; + vrLen = 106; + vrLoc = 1111; + }; + A6AF32470B9672A500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF31FE0B96714000EDBA70 /* canvas.h */; + name = "canvas.h: 486"; + rLen = 0; + rLoc = 13641; + rType = 0; + vrLen = 106; + vrLoc = 1111; + }; + A6AF32480B9672A500EDBA70 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = A6AF30B90B966C1800EDBA70 /* config.h */; + name = "config.h: 8"; + rLen = 0; + rLoc = 238; + rType = 0; + vrLen = 389; + vrLoc = 6916; + }; +} diff --git a/synfig-core/trunk/synfig-core.xcodeproj/project.pbxproj b/synfig-core/trunk/synfig-core.xcodeproj/project.pbxproj new file mode 100644 index 0000000..b8a4487 --- /dev/null +++ b/synfig-core/trunk/synfig-core.xcodeproj/project.pbxproj @@ -0,0 +1,3071 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 42; + objects = { + +/* Begin PBXBuildFile section */ + A6AF2E570B965F2F00EDBA70 /* activepoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */; }; + A6AF2E5A0B965F2F00EDBA70 /* blinepoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29CD0B965F2E00EDBA70 /* blinepoint.cpp */; }; + A6AF2E5C0B965F2F00EDBA70 /* blur.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29CF0B965F2E00EDBA70 /* blur.cpp */; }; + A6AF2E5E0B965F2F00EDBA70 /* canvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29D10B965F2E00EDBA70 /* canvas.cpp */; }; + A6AF2E610B965F2F00EDBA70 /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29D40B965F2E00EDBA70 /* color.cpp */; }; + A6AF2E630B965F2F00EDBA70 /* context.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29D60B965F2E00EDBA70 /* context.cpp */; }; + A6AF2E650B965F2F00EDBA70 /* curve_helper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29D80B965F2E00EDBA70 /* curve_helper.cpp */; }; + A6AF2E670B965F2F00EDBA70 /* curveset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29DA0B965F2E00EDBA70 /* curveset.cpp */; }; + A6AF2E690B965F2F00EDBA70 /* distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29DC0B965F2E00EDBA70 /* distance.cpp */; }; + A6AF2E6B0B965F2F00EDBA70 /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29DE0B965F2E00EDBA70 /* exception.cpp */; }; + A6AF2E6D0B965F2F00EDBA70 /* gamma.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29E00B965F2E00EDBA70 /* gamma.cpp */; }; + A6AF2E700B965F2F00EDBA70 /* gradient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29E30B965F2E00EDBA70 /* gradient.cpp */; }; + A6AF2E720B965F2F00EDBA70 /* guid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29E50B965F2E00EDBA70 /* guid.cpp */; }; + A6AF2E750B965F2F00EDBA70 /* importer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29E80B965F2E00EDBA70 /* importer.cpp */; }; + A6AF2E780B965F2F00EDBA70 /* keyframe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29EB0B965F2E00EDBA70 /* keyframe.cpp */; }; + A6AF2E7A0B965F2F00EDBA70 /* layer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29ED0B965F2E00EDBA70 /* layer.cpp */; }; + A6AF2E7C0B965F2F00EDBA70 /* layer_bitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29EF0B965F2E00EDBA70 /* layer_bitmap.cpp */; }; + A6AF2E7E0B965F2F00EDBA70 /* layer_composite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29F10B965F2E00EDBA70 /* layer_composite.cpp */; }; + A6AF2E800B965F2F00EDBA70 /* layer_mime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29F30B965F2E00EDBA70 /* layer_mime.cpp */; }; + A6AF2E820B965F2F00EDBA70 /* layer_motionblur.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29F50B965F2E00EDBA70 /* layer_motionblur.cpp */; }; + A6AF2E840B965F2F00EDBA70 /* layer_pastecanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29F70B965F2E00EDBA70 /* layer_pastecanvas.cpp */; }; + A6AF2E860B965F2F00EDBA70 /* layer_polygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29F90B965F2E00EDBA70 /* layer_polygon.cpp */; }; + A6AF2E880B965F2F00EDBA70 /* layer_shape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29FB0B965F2E00EDBA70 /* layer_shape.cpp */; }; + A6AF2E8A0B965F2F00EDBA70 /* layer_solidcolor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF29FD0B965F2E00EDBA70 /* layer_solidcolor.cpp */; }; + A6AF2ED10B965F2F00EDBA70 /* listimporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A440B965F2F00EDBA70 /* listimporter.cpp */; }; + A6AF2ED30B965F2F00EDBA70 /* loadcanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A460B965F2F00EDBA70 /* loadcanvas.cpp */; }; + A6AF2ED50B965F2F00EDBA70 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A480B965F2F00EDBA70 /* main.cpp */; }; + A6AF2EDA0B965F2F00EDBA70 /* module.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A4D0B965F2F00EDBA70 /* module.cpp */; }; + A6AF2EDC0B965F2F00EDBA70 /* mutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A4F0B965F2F00EDBA70 /* mutex.cpp */; }; + A6AF2EDE0B965F2F00EDBA70 /* node.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A510B965F2F00EDBA70 /* node.cpp */; }; + A6AF2EE00B965F2F00EDBA70 /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A530B965F2F00EDBA70 /* palette.cpp */; }; + A6AF2EE20B965F2F00EDBA70 /* paramdesc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A550B965F2F00EDBA70 /* paramdesc.cpp */; }; + A6AF2EE50B965F2F00EDBA70 /* polynomial_root.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A580B965F2F00EDBA70 /* polynomial_root.cpp */; }; + A6AF2EEE0B965F2F00EDBA70 /* rect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A620B965F2F00EDBA70 /* rect.cpp */; }; + A6AF2EF00B965F2F00EDBA70 /* renddesc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A640B965F2F00EDBA70 /* renddesc.cpp */; }; + A6AF2EF20B965F2F00EDBA70 /* render.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A660B965F2F00EDBA70 /* render.cpp */; }; + A6AF2EF40B965F2F00EDBA70 /* savecanvas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */; }; + A6AF2EFA0B965F2F00EDBA70 /* surface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A6E0B965F2F00EDBA70 /* surface.cpp */; }; + A6AF2F000B965F2F00EDBA70 /* target.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A740B965F2F00EDBA70 /* target.cpp */; }; + A6AF2F020B965F2F00EDBA70 /* target_multi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A760B965F2F00EDBA70 /* target_multi.cpp */; }; + A6AF2F040B965F2F00EDBA70 /* target_null.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A780B965F2F00EDBA70 /* target_null.cpp */; }; + A6AF2F060B965F2F00EDBA70 /* target_null_tile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A7A0B965F2F00EDBA70 /* target_null_tile.cpp */; }; + A6AF2F080B965F2F00EDBA70 /* target_scanline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A7C0B965F2F00EDBA70 /* target_scanline.cpp */; }; + A6AF2F0A0B965F2F00EDBA70 /* target_tile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A7E0B965F2F00EDBA70 /* target_tile.cpp */; }; + A6AF2F0C0B965F2F00EDBA70 /* time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A800B965F2F00EDBA70 /* time.cpp */; }; + A6AF2F0E0B965F2F00EDBA70 /* timepointcollect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A820B965F2F00EDBA70 /* timepointcollect.cpp */; }; + A6AF2F100B965F2F00EDBA70 /* transform.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A840B965F2F00EDBA70 /* transform.cpp */; }; + A6AF2F130B965F2F00EDBA70 /* uniqueid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A870B965F2F00EDBA70 /* uniqueid.cpp */; }; + A6AF2F150B965F2F00EDBA70 /* value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A890B965F2F00EDBA70 /* value.cpp */; }; + A6AF2F170B965F2F00EDBA70 /* valuenode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A8B0B965F2F00EDBA70 /* valuenode.cpp */; }; + A6AF2F190B965F2F00EDBA70 /* valuenode_animated.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A8D0B965F2F00EDBA70 /* valuenode_animated.cpp */; }; + A6AF2F1B0B965F2F00EDBA70 /* valuenode_bline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A8F0B965F2F00EDBA70 /* valuenode_bline.cpp */; }; + A6AF2F1D0B965F2F00EDBA70 /* valuenode_composite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A910B965F2F00EDBA70 /* valuenode_composite.cpp */; }; + A6AF2F1F0B965F2F00EDBA70 /* valuenode_const.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A930B965F2F00EDBA70 /* valuenode_const.cpp */; }; + A6AF2F210B965F2F00EDBA70 /* valuenode_dynamiclist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A950B965F2F00EDBA70 /* valuenode_dynamiclist.cpp */; }; + A6AF2F230B965F2F00EDBA70 /* valuenode_gradientrotate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A970B965F2F00EDBA70 /* valuenode_gradientrotate.cpp */; }; + A6AF2F250B965F2F00EDBA70 /* valuenode_linear.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A990B965F2F00EDBA70 /* valuenode_linear.cpp */; }; + A6AF2F270B965F2F00EDBA70 /* valuenode_radialcomposite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A9B0B965F2F00EDBA70 /* valuenode_radialcomposite.cpp */; }; + A6AF2F290B965F2F00EDBA70 /* valuenode_reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A9D0B965F2F00EDBA70 /* valuenode_reference.cpp */; }; + A6AF2F2B0B965F2F00EDBA70 /* valuenode_scale.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2A9F0B965F2F00EDBA70 /* valuenode_scale.cpp */; }; + A6AF2F2D0B965F2F00EDBA70 /* valuenode_segcalctangent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AA10B965F2F00EDBA70 /* valuenode_segcalctangent.cpp */; }; + A6AF2F2F0B965F2F00EDBA70 /* valuenode_segcalcvertex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AA30B965F2F00EDBA70 /* valuenode_segcalcvertex.cpp */; }; + A6AF2F310B965F2F00EDBA70 /* valuenode_sine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AA50B965F2F00EDBA70 /* valuenode_sine.cpp */; }; + A6AF2F330B965F2F00EDBA70 /* valuenode_stripes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AA70B965F2F00EDBA70 /* valuenode_stripes.cpp */; }; + A6AF2F350B965F2F00EDBA70 /* valuenode_subtract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AA90B965F2F00EDBA70 /* valuenode_subtract.cpp */; }; + A6AF2F370B965F2F00EDBA70 /* valuenode_timedswap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AAB0B965F2F00EDBA70 /* valuenode_timedswap.cpp */; }; + A6AF2F390B965F2F00EDBA70 /* valuenode_twotone.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AAD0B965F2F00EDBA70 /* valuenode_twotone.cpp */; }; + A6AF2F3D0B965F2F00EDBA70 /* waypoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2AB10B965F2F00EDBA70 /* waypoint.cpp */; }; + A6AF2F500B965FEF00EDBA70 /* libxml++.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF2F4E0B965FEF00EDBA70 /* libxml++.framework */; }; + A6AF2F510B965FEF00EDBA70 /* sigc++.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF2F4F0B965FEF00EDBA70 /* sigc++.framework */; }; + A6AF30E50B966F9300EDBA70 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6AF2ABA0B965F2F00EDBA70 /* main.cpp */; }; + A6AF30E60B966F9A00EDBA70 /* synfig.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF20DB0B965ED900EDBA70 /* synfig.framework */; }; + A6AF30FE0B96709600EDBA70 /* activepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29CB0B965F2E00EDBA70 /* activepoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF30FF0B96709600EDBA70 /* angle.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29CC0B965F2E00EDBA70 /* angle.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31000B96709600EDBA70 /* blinepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31010B96709600EDBA70 /* blur.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D00B965F2E00EDBA70 /* blur.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31020B96709600EDBA70 /* canvas.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D20B965F2E00EDBA70 /* canvas.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31030B96709600EDBA70 /* canvasbase.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D30B965F2E00EDBA70 /* canvasbase.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31040B96709600EDBA70 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D50B965F2E00EDBA70 /* color.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31050B96709600EDBA70 /* context.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D70B965F2E00EDBA70 /* context.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31060B96709600EDBA70 /* curve_helper.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29D90B965F2E00EDBA70 /* curve_helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31070B96709600EDBA70 /* curveset.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29DB0B965F2E00EDBA70 /* curveset.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31080B96709600EDBA70 /* distance.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29DD0B965F2E00EDBA70 /* distance.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31090B96709600EDBA70 /* exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29DF0B965F2E00EDBA70 /* exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310A0B96709600EDBA70 /* gamma.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E10B965F2E00EDBA70 /* gamma.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310B0B96709600EDBA70 /* general.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E20B965F2E00EDBA70 /* general.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310C0B96709600EDBA70 /* gradient.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E40B965F2E00EDBA70 /* gradient.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310D0B96709600EDBA70 /* guid.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E60B965F2E00EDBA70 /* guid.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310E0B96709600EDBA70 /* guidset.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E70B965F2E00EDBA70 /* guidset.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF310F0B96709600EDBA70 /* importer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29E90B965F2E00EDBA70 /* importer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31100B96709600EDBA70 /* interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29EA0B965F2E00EDBA70 /* interpolation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31110B96709600EDBA70 /* keyframe.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29EC0B965F2E00EDBA70 /* keyframe.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31120B96709600EDBA70 /* layer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29EE0B965F2E00EDBA70 /* layer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31130B96709600EDBA70 /* layer_bitmap.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31140B96709600EDBA70 /* layer_composite.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29F20B965F2E00EDBA70 /* layer_composite.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31150B96709600EDBA70 /* layer_mime.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29F40B965F2E00EDBA70 /* layer_mime.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31160B96709600EDBA70 /* layer_motionblur.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31170B96709600EDBA70 /* layer_pastecanvas.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31180B96709600EDBA70 /* layer_polygon.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31190B96709600EDBA70 /* layer_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311A0B96709600EDBA70 /* layer_solidcolor.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311B0B96709600EDBA70 /* listimporter.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A450B965F2F00EDBA70 /* listimporter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311C0B96709600EDBA70 /* loadcanvas.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311D0B96709600EDBA70 /* main.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A490B965F2F00EDBA70 /* main.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311E0B96709600EDBA70 /* module.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A4E0B965F2F00EDBA70 /* module.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF311F0B96709600EDBA70 /* mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A500B965F2F00EDBA70 /* mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31200B96709600EDBA70 /* node.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A520B965F2F00EDBA70 /* node.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31210B96709600EDBA70 /* palette.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A540B965F2F00EDBA70 /* palette.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31220B96709600EDBA70 /* paramdesc.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A560B965F2F00EDBA70 /* paramdesc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31230B96709600EDBA70 /* polynomial_root.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31240B96709600EDBA70 /* protocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A600B965F2F00EDBA70 /* protocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31250B96709600EDBA70 /* real.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A610B965F2F00EDBA70 /* real.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31260B96709600EDBA70 /* rect.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A630B965F2F00EDBA70 /* rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31270B96709600EDBA70 /* renddesc.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A650B965F2F00EDBA70 /* renddesc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31280B96709600EDBA70 /* render.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A670B965F2F00EDBA70 /* render.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31290B96709600EDBA70 /* savecanvas.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A690B965F2F00EDBA70 /* savecanvas.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312A0B96709600EDBA70 /* segment.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A6A0B965F2F00EDBA70 /* segment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312B0B96709600EDBA70 /* smartfile.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312C0B96709600EDBA70 /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A6C0B965F2F00EDBA70 /* string.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312D0B96709600EDBA70 /* string_decl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312E0B96709600EDBA70 /* surface.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A6F0B965F2F00EDBA70 /* surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF312F0B96709600EDBA70 /* synfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A720B965F2F00EDBA70 /* synfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31300B96709600EDBA70 /* target.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A750B965F2F00EDBA70 /* target.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31310B96709600EDBA70 /* target_multi.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A770B965F2F00EDBA70 /* target_multi.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31320B96709600EDBA70 /* target_null.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A790B965F2F00EDBA70 /* target_null.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31330B96709600EDBA70 /* target_null_tile.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31340B96709600EDBA70 /* target_scanline.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31350B96709600EDBA70 /* target_tile.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31360B96709600EDBA70 /* time.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A810B965F2F00EDBA70 /* time.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31370B96709600EDBA70 /* timepointcollect.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31380B96709600EDBA70 /* transform.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A850B965F2F00EDBA70 /* transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31390B96709600EDBA70 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A860B965F2F00EDBA70 /* types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313A0B96709600EDBA70 /* uniqueid.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A880B965F2F00EDBA70 /* uniqueid.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313B0B96709600EDBA70 /* value.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A8A0B965F2F00EDBA70 /* value.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313C0B96709600EDBA70 /* valuenode.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313D0B96709600EDBA70 /* valuenode_animated.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313E0B96709600EDBA70 /* valuenode_bline.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF313F0B96709600EDBA70 /* valuenode_composite.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31400B96709600EDBA70 /* valuenode_const.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31410B96709600EDBA70 /* valuenode_dynamiclist.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31420B96709600EDBA70 /* valuenode_gradientrotate.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31430B96709600EDBA70 /* valuenode_linear.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31440B96709600EDBA70 /* valuenode_radialcomposite.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31450B96709600EDBA70 /* valuenode_reference.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31460B96709600EDBA70 /* valuenode_scale.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31470B96709600EDBA70 /* valuenode_segcalctangent.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31480B96709600EDBA70 /* valuenode_segcalcvertex.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31490B96709600EDBA70 /* valuenode_sine.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314A0B96709600EDBA70 /* valuenode_stripes.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314B0B96709600EDBA70 /* valuenode_subtract.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314C0B96709600EDBA70 /* valuenode_timedswap.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314D0B96709600EDBA70 /* valuenode_twotone.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314E0B96709600EDBA70 /* vector.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AAF0B965F2F00EDBA70 /* vector.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF314F0B96709600EDBA70 /* version.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AB00B965F2F00EDBA70 /* version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF31500B96709600EDBA70 /* waypoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF2AB20B965F2F00EDBA70 /* waypoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6AF32370B96714900EDBA70 /* sigc++.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF2F4F0B965FEF00EDBA70 /* sigc++.framework */; }; + A6AF323A0B96714D00EDBA70 /* libxml++.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A6AF2F4E0B965FEF00EDBA70 /* libxml++.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + A6AF30E90B966FB200EDBA70 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = A6AF11980B965E2E00EDBA70 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A6AF20DA0B965ED900EDBA70 /* Synfig Framework */; + remoteInfo = "Synfig Framework"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + A6AF20DB0B965ED900EDBA70 /* synfig.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = synfig.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A6AF20DD0B965ED900EDBA70 /* synfig-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = "synfig-Info.plist"; sourceTree = ""; }; + A6AF25FC0B965F2D00EDBA70 /* libexample_la-filledrect.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libexample_la-filledrect.Plo"; sourceTree = ""; }; + A6AF25FD0B965F2D00EDBA70 /* libexample_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libexample_la-main.Plo"; sourceTree = ""; }; + A6AF25FE0B965F2D00EDBA70 /* libexample_la-metaballs.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libexample_la-metaballs.Plo"; sourceTree = ""; }; + A6AF25FF0B965F2D00EDBA70 /* libexample_la-simplecircle.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libexample_la-simplecircle.Plo"; sourceTree = ""; }; + A6AF26000B965F2D00EDBA70 /* filledrect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filledrect.cpp; sourceTree = ""; }; + A6AF26010B965F2D00EDBA70 /* filledrect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filledrect.h; sourceTree = ""; }; + A6AF26020B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF26030B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF26040B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26050B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26060B965F2D00EDBA70 /* metaballs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = metaballs.cpp; sourceTree = ""; }; + A6AF26070B965F2D00EDBA70 /* metaballs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = metaballs.h; sourceTree = ""; }; + A6AF26080B965F2D00EDBA70 /* simplecircle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = simplecircle.cpp; sourceTree = ""; }; + A6AF26090B965F2D00EDBA70 /* simplecircle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = simplecircle.h; sourceTree = ""; }; + A6AF260C0B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_freetype_la-lyr_freetype.Plo"; sourceTree = ""; }; + A6AF260D0B965F2D00EDBA70 /* liblyr_freetype_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_freetype_la-main.Plo"; sourceTree = ""; }; + A6AF260F0B965F2D00EDBA70 /* liblyr_freetype.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_freetype.0.0.0.so; sourceTree = ""; }; + A6AF26100B965F2D00EDBA70 /* liblyr_freetype.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_freetype.0.so; sourceTree = ""; }; + A6AF26110B965F2D00EDBA70 /* liblyr_freetype.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_freetype.la; sourceTree = ""; }; + A6AF26120B965F2D00EDBA70 /* liblyr_freetype.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_freetype.lai; sourceTree = ""; }; + A6AF26130B965F2D00EDBA70 /* liblyr_freetype.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_freetype.so; sourceTree = ""; }; + A6AF26140B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_freetype_la-lyr_freetype.o"; sourceTree = ""; }; + A6AF26150B965F2D00EDBA70 /* liblyr_freetype_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_freetype_la-main.o"; sourceTree = ""; }; + A6AF26160B965F2D00EDBA70 /* liblyr_freetype.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_freetype.la; sourceTree = ""; }; + A6AF26170B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_freetype_la-lyr_freetype.lo"; sourceTree = ""; }; + A6AF26180B965F2D00EDBA70 /* liblyr_freetype_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_freetype_la-main.lo"; sourceTree = ""; }; + A6AF26190B965F2D00EDBA70 /* lyr_freetype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lyr_freetype.cpp; sourceTree = ""; }; + A6AF261A0B965F2D00EDBA70 /* lyr_freetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lyr_freetype.h; sourceTree = ""; }; + A6AF261B0B965F2D00EDBA70 /* lyr_freetype.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lyr_freetype.nsh; sourceTree = ""; }; + A6AF261C0B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF261D0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF261E0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF261F0B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26200B965F2D00EDBA70 /* unlyr_freetype.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unlyr_freetype.nsh; sourceTree = ""; }; + A6AF26230B965F2D00EDBA70 /* liblyr_std_la-bevel.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-bevel.Plo"; sourceTree = ""; }; + A6AF26240B965F2D00EDBA70 /* liblyr_std_la-booleancurve.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-booleancurve.Plo"; sourceTree = ""; }; + A6AF26250B965F2D00EDBA70 /* liblyr_std_la-clamp.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-clamp.Plo"; sourceTree = ""; }; + A6AF26260B965F2D00EDBA70 /* liblyr_std_la-import.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-import.Plo"; sourceTree = ""; }; + A6AF26270B965F2D00EDBA70 /* liblyr_std_la-insideout.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-insideout.Plo"; sourceTree = ""; }; + A6AF26280B965F2D00EDBA70 /* liblyr_std_la-julia.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-julia.Plo"; sourceTree = ""; }; + A6AF26290B965F2D00EDBA70 /* liblyr_std_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-main.Plo"; sourceTree = ""; }; + A6AF262A0B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-mandelbrot.Plo"; sourceTree = ""; }; + A6AF262B0B965F2D00EDBA70 /* liblyr_std_la-rotate.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-rotate.Plo"; sourceTree = ""; }; + A6AF262C0B965F2D00EDBA70 /* liblyr_std_la-shade.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-shade.Plo"; sourceTree = ""; }; + A6AF262D0B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-sphere_distort.Plo"; sourceTree = ""; }; + A6AF262E0B965F2D00EDBA70 /* liblyr_std_la-stretch.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-stretch.Plo"; sourceTree = ""; }; + A6AF262F0B965F2D00EDBA70 /* liblyr_std_la-supersample.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-supersample.Plo"; sourceTree = ""; }; + A6AF26300B965F2D00EDBA70 /* liblyr_std_la-timeloop.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-timeloop.Plo"; sourceTree = ""; }; + A6AF26310B965F2D00EDBA70 /* liblyr_std_la-translate.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-translate.Plo"; sourceTree = ""; }; + A6AF26320B965F2D00EDBA70 /* liblyr_std_la-twirl.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-twirl.Plo"; sourceTree = ""; }; + A6AF26330B965F2D00EDBA70 /* liblyr_std_la-warp.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-warp.Plo"; sourceTree = ""; }; + A6AF26340B965F2D00EDBA70 /* liblyr_std_la-xorpattern.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-xorpattern.Plo"; sourceTree = ""; }; + A6AF26350B965F2D00EDBA70 /* liblyr_std_la-zoom.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-zoom.Plo"; sourceTree = ""; }; + A6AF26370B965F2D00EDBA70 /* liblyr_std.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_std.0.0.0.so; sourceTree = ""; }; + A6AF26380B965F2D00EDBA70 /* liblyr_std.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_std.0.so; sourceTree = ""; }; + A6AF26390B965F2D00EDBA70 /* liblyr_std.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_std.la; sourceTree = ""; }; + A6AF263A0B965F2D00EDBA70 /* liblyr_std.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_std.lai; sourceTree = ""; }; + A6AF263B0B965F2D00EDBA70 /* liblyr_std.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = liblyr_std.so; sourceTree = ""; }; + A6AF263C0B965F2D00EDBA70 /* liblyr_std_la-bevel.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-bevel.o"; sourceTree = ""; }; + A6AF263D0B965F2D00EDBA70 /* liblyr_std_la-booleancurve.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-booleancurve.o"; sourceTree = ""; }; + A6AF263E0B965F2D00EDBA70 /* liblyr_std_la-clamp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-clamp.o"; sourceTree = ""; }; + A6AF263F0B965F2D00EDBA70 /* liblyr_std_la-import.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-import.o"; sourceTree = ""; }; + A6AF26400B965F2D00EDBA70 /* liblyr_std_la-insideout.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-insideout.o"; sourceTree = ""; }; + A6AF26410B965F2D00EDBA70 /* liblyr_std_la-julia.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-julia.o"; sourceTree = ""; }; + A6AF26420B965F2D00EDBA70 /* liblyr_std_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-main.o"; sourceTree = ""; }; + A6AF26430B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-mandelbrot.o"; sourceTree = ""; }; + A6AF26440B965F2D00EDBA70 /* liblyr_std_la-rotate.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-rotate.o"; sourceTree = ""; }; + A6AF26450B965F2D00EDBA70 /* liblyr_std_la-shade.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-shade.o"; sourceTree = ""; }; + A6AF26460B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-sphere_distort.o"; sourceTree = ""; }; + A6AF26470B965F2D00EDBA70 /* liblyr_std_la-stretch.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-stretch.o"; sourceTree = ""; }; + A6AF26480B965F2D00EDBA70 /* liblyr_std_la-supersample.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-supersample.o"; sourceTree = ""; }; + A6AF26490B965F2D00EDBA70 /* liblyr_std_la-timeloop.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-timeloop.o"; sourceTree = ""; }; + A6AF264A0B965F2D00EDBA70 /* liblyr_std_la-translate.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-translate.o"; sourceTree = ""; }; + A6AF264B0B965F2D00EDBA70 /* liblyr_std_la-twirl.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-twirl.o"; sourceTree = ""; }; + A6AF264C0B965F2D00EDBA70 /* liblyr_std_la-warp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-warp.o"; sourceTree = ""; }; + A6AF264D0B965F2D00EDBA70 /* liblyr_std_la-xorpattern.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-xorpattern.o"; sourceTree = ""; }; + A6AF264E0B965F2D00EDBA70 /* liblyr_std_la-zoom.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "liblyr_std_la-zoom.o"; sourceTree = ""; }; + A6AF264F0B965F2D00EDBA70 /* bevel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bevel.cpp; sourceTree = ""; }; + A6AF26500B965F2D00EDBA70 /* bevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bevel.h; sourceTree = ""; }; + A6AF26510B965F2D00EDBA70 /* booleancurve.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = booleancurve.cpp; sourceTree = ""; }; + A6AF26520B965F2D00EDBA70 /* booleancurve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = booleancurve.h; sourceTree = ""; }; + A6AF26530B965F2D00EDBA70 /* clamp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = clamp.cpp; sourceTree = ""; }; + A6AF26540B965F2D00EDBA70 /* clamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clamp.h; sourceTree = ""; }; + A6AF26550B965F2D00EDBA70 /* import.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = import.cpp; sourceTree = ""; }; + A6AF26560B965F2D00EDBA70 /* import.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = import.h; sourceTree = ""; }; + A6AF26570B965F2D00EDBA70 /* insideout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = insideout.cpp; sourceTree = ""; }; + A6AF26580B965F2D00EDBA70 /* insideout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = insideout.h; sourceTree = ""; }; + A6AF26590B965F2D00EDBA70 /* julia.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = julia.cpp; sourceTree = ""; }; + A6AF265A0B965F2D00EDBA70 /* julia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = julia.h; sourceTree = ""; }; + A6AF265B0B965F2D00EDBA70 /* liblyr_std.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = liblyr_std.la; sourceTree = ""; }; + A6AF265C0B965F2D00EDBA70 /* liblyr_std_la-bevel.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-bevel.lo"; sourceTree = ""; }; + A6AF265D0B965F2D00EDBA70 /* liblyr_std_la-booleancurve.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-booleancurve.lo"; sourceTree = ""; }; + A6AF265E0B965F2D00EDBA70 /* liblyr_std_la-clamp.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-clamp.lo"; sourceTree = ""; }; + A6AF265F0B965F2D00EDBA70 /* liblyr_std_la-import.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-import.lo"; sourceTree = ""; }; + A6AF26600B965F2D00EDBA70 /* liblyr_std_la-insideout.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-insideout.lo"; sourceTree = ""; }; + A6AF26610B965F2D00EDBA70 /* liblyr_std_la-julia.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-julia.lo"; sourceTree = ""; }; + A6AF26620B965F2D00EDBA70 /* liblyr_std_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-main.lo"; sourceTree = ""; }; + A6AF26630B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-mandelbrot.lo"; sourceTree = ""; }; + A6AF26640B965F2D00EDBA70 /* liblyr_std_la-rotate.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-rotate.lo"; sourceTree = ""; }; + A6AF26650B965F2D00EDBA70 /* liblyr_std_la-shade.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-shade.lo"; sourceTree = ""; }; + A6AF26660B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-sphere_distort.lo"; sourceTree = ""; }; + A6AF26670B965F2D00EDBA70 /* liblyr_std_la-stretch.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-stretch.lo"; sourceTree = ""; }; + A6AF26680B965F2D00EDBA70 /* liblyr_std_la-supersample.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-supersample.lo"; sourceTree = ""; }; + A6AF26690B965F2D00EDBA70 /* liblyr_std_la-timeloop.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-timeloop.lo"; sourceTree = ""; }; + A6AF266A0B965F2D00EDBA70 /* liblyr_std_la-translate.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-translate.lo"; sourceTree = ""; }; + A6AF266B0B965F2D00EDBA70 /* liblyr_std_la-twirl.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-twirl.lo"; sourceTree = ""; }; + A6AF266C0B965F2D00EDBA70 /* liblyr_std_la-warp.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-warp.lo"; sourceTree = ""; }; + A6AF266D0B965F2D00EDBA70 /* liblyr_std_la-xorpattern.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-xorpattern.lo"; sourceTree = ""; }; + A6AF266E0B965F2D00EDBA70 /* liblyr_std_la-zoom.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "liblyr_std_la-zoom.lo"; sourceTree = ""; }; + A6AF266F0B965F2D00EDBA70 /* lyr_std.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lyr_std.nsh; sourceTree = ""; }; + A6AF26700B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF26710B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF26720B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26730B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26740B965F2D00EDBA70 /* mandelbrot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mandelbrot.cpp; sourceTree = ""; }; + A6AF26750B965F2D00EDBA70 /* mandelbrot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mandelbrot.h; sourceTree = ""; }; + A6AF26760B965F2D00EDBA70 /* radialgradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radialgradient.cpp; sourceTree = ""; }; + A6AF26770B965F2D00EDBA70 /* rotate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rotate.cpp; sourceTree = ""; }; + A6AF26780B965F2D00EDBA70 /* rotate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rotate.h; sourceTree = ""; }; + A6AF26790B965F2D00EDBA70 /* shade.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shade.cpp; sourceTree = ""; }; + A6AF267A0B965F2D00EDBA70 /* shade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shade.h; sourceTree = ""; }; + A6AF267B0B965F2D00EDBA70 /* sphere_distort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sphere_distort.cpp; sourceTree = ""; }; + A6AF267C0B965F2D00EDBA70 /* sphere_distort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sphere_distort.h; sourceTree = ""; }; + A6AF267D0B965F2D00EDBA70 /* stretch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stretch.cpp; sourceTree = ""; }; + A6AF267E0B965F2D00EDBA70 /* stretch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stretch.h; sourceTree = ""; }; + A6AF267F0B965F2D00EDBA70 /* supersample.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = supersample.cpp; sourceTree = ""; }; + A6AF26800B965F2D00EDBA70 /* supersample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = supersample.h; sourceTree = ""; }; + A6AF26810B965F2D00EDBA70 /* timeloop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = timeloop.cpp; sourceTree = ""; }; + A6AF26820B965F2D00EDBA70 /* timeloop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timeloop.h; sourceTree = ""; }; + A6AF26830B965F2D00EDBA70 /* translate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = translate.cpp; sourceTree = ""; }; + A6AF26840B965F2D00EDBA70 /* translate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = translate.h; sourceTree = ""; }; + A6AF26850B965F2D00EDBA70 /* twirl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = twirl.cpp; sourceTree = ""; }; + A6AF26860B965F2D00EDBA70 /* twirl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = twirl.h; sourceTree = ""; }; + A6AF26870B965F2D00EDBA70 /* unlyr_std.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unlyr_std.nsh; sourceTree = ""; }; + A6AF26880B965F2D00EDBA70 /* warp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = warp.cpp; sourceTree = ""; }; + A6AF26890B965F2D00EDBA70 /* warp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = warp.h; sourceTree = ""; }; + A6AF268A0B965F2D00EDBA70 /* xorpattern.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xorpattern.cpp; sourceTree = ""; }; + A6AF268B0B965F2D00EDBA70 /* xorpattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xorpattern.h; sourceTree = ""; }; + A6AF268C0B965F2D00EDBA70 /* zoom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = zoom.cpp; sourceTree = ""; }; + A6AF268D0B965F2D00EDBA70 /* zoom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zoom.h; sourceTree = ""; }; + A6AF268E0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF268F0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26900B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26930B965F2D00EDBA70 /* libmod_bmp_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-main.Plo"; sourceTree = ""; }; + A6AF26940B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-mptr_bmp.Plo"; sourceTree = ""; }; + A6AF26950B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-trgt_bmp.Plo"; sourceTree = ""; }; + A6AF26970B965F2D00EDBA70 /* libmod_bmp.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_bmp.0.0.0.so; sourceTree = ""; }; + A6AF26980B965F2D00EDBA70 /* libmod_bmp.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_bmp.0.so; sourceTree = ""; }; + A6AF26990B965F2D00EDBA70 /* libmod_bmp.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_bmp.la; sourceTree = ""; }; + A6AF269A0B965F2D00EDBA70 /* libmod_bmp.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_bmp.lai; sourceTree = ""; }; + A6AF269B0B965F2D00EDBA70 /* libmod_bmp.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_bmp.so; sourceTree = ""; }; + A6AF269C0B965F2D00EDBA70 /* libmod_bmp_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_bmp_la-main.o"; sourceTree = ""; }; + A6AF269D0B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_bmp_la-mptr_bmp.o"; sourceTree = ""; }; + A6AF269E0B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_bmp_la-trgt_bmp.o"; sourceTree = ""; }; + A6AF269F0B965F2D00EDBA70 /* libmod_bmp.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_bmp.la; sourceTree = ""; }; + A6AF26A00B965F2D00EDBA70 /* libmod_bmp_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-main.lo"; sourceTree = ""; }; + A6AF26A10B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-mptr_bmp.lo"; sourceTree = ""; }; + A6AF26A20B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_bmp_la-trgt_bmp.lo"; sourceTree = ""; }; + A6AF26A30B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF26A40B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF26A50B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26A60B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26A70B965F2D00EDBA70 /* mod_bmp.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_bmp.nsh; sourceTree = ""; }; + A6AF26A80B965F2D00EDBA70 /* mptr_bmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_bmp.cpp; sourceTree = ""; }; + A6AF26A90B965F2D00EDBA70 /* mptr_bmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_bmp.h; sourceTree = ""; }; + A6AF26AA0B965F2D00EDBA70 /* trgt_bmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_bmp.cpp; sourceTree = ""; }; + A6AF26AB0B965F2D00EDBA70 /* trgt_bmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_bmp.h; sourceTree = ""; }; + A6AF26AC0B965F2D00EDBA70 /* unmod_bmp.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_bmp.nsh; sourceTree = ""; }; + A6AF26AF0B965F2D00EDBA70 /* libmod_dv_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_dv_la-main.Plo"; sourceTree = ""; }; + A6AF26B00B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_dv_la-trgt_dv.Plo"; sourceTree = ""; }; + A6AF26B20B965F2D00EDBA70 /* libmod_dv.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_dv.0.0.0.so; sourceTree = ""; }; + A6AF26B30B965F2D00EDBA70 /* libmod_dv.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_dv.0.so; sourceTree = ""; }; + A6AF26B40B965F2D00EDBA70 /* libmod_dv.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_dv.la; sourceTree = ""; }; + A6AF26B50B965F2D00EDBA70 /* libmod_dv.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_dv.lai; sourceTree = ""; }; + A6AF26B60B965F2D00EDBA70 /* libmod_dv.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_dv.so; sourceTree = ""; }; + A6AF26B70B965F2D00EDBA70 /* libmod_dv_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_dv_la-main.o"; sourceTree = ""; }; + A6AF26B80B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_dv_la-trgt_dv.o"; sourceTree = ""; }; + A6AF26B90B965F2D00EDBA70 /* libmod_dv.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_dv.la; sourceTree = ""; }; + A6AF26BA0B965F2D00EDBA70 /* libmod_dv_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_dv_la-main.lo"; sourceTree = ""; }; + A6AF26BB0B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_dv_la-trgt_dv.lo"; sourceTree = ""; }; + A6AF26BC0B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF26BD0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF26BE0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26BF0B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26C00B965F2D00EDBA70 /* mod_dv.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_dv.nsh; sourceTree = ""; }; + A6AF26C10B965F2D00EDBA70 /* trgt_dv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_dv.cpp; sourceTree = ""; }; + A6AF26C20B965F2D00EDBA70 /* trgt_dv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_dv.h; sourceTree = ""; }; + A6AF26C30B965F2D00EDBA70 /* unmod_dv.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_dv.nsh; sourceTree = ""; }; + A6AF26C60B965F2D00EDBA70 /* libmod_ffmpeg_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-main.Plo"; sourceTree = ""; }; + A6AF26C70B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-mptr_ffmpeg.Plo"; sourceTree = ""; }; + A6AF26C80B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-trgt_ffmpeg.Plo"; sourceTree = ""; }; + A6AF26CA0B965F2D00EDBA70 /* libmod_ffmpeg.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ffmpeg.0.0.0.so; sourceTree = ""; }; + A6AF26CB0B965F2D00EDBA70 /* libmod_ffmpeg.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ffmpeg.0.so; sourceTree = ""; }; + A6AF26CC0B965F2D00EDBA70 /* libmod_ffmpeg.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ffmpeg.la; sourceTree = ""; }; + A6AF26CD0B965F2D00EDBA70 /* libmod_ffmpeg.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ffmpeg.lai; sourceTree = ""; }; + A6AF26CE0B965F2D00EDBA70 /* libmod_ffmpeg.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ffmpeg.so; sourceTree = ""; }; + A6AF26CF0B965F2D00EDBA70 /* libmod_ffmpeg_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ffmpeg_la-main.o"; sourceTree = ""; }; + A6AF26D00B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ffmpeg_la-mptr_ffmpeg.o"; sourceTree = ""; }; + A6AF26D10B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ffmpeg_la-trgt_ffmpeg.o"; sourceTree = ""; }; + A6AF26D20B965F2D00EDBA70 /* libmod_ffmpeg.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ffmpeg.la; sourceTree = ""; }; + A6AF26D30B965F2D00EDBA70 /* libmod_ffmpeg_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-main.lo"; sourceTree = ""; }; + A6AF26D40B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-mptr_ffmpeg.lo"; sourceTree = ""; }; + A6AF26D50B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ffmpeg_la-trgt_ffmpeg.lo"; sourceTree = ""; }; + A6AF26D60B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF26D70B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF26D80B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF26D90B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF26DA0B965F2D00EDBA70 /* mod_ffmpeg.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_ffmpeg.nsh; sourceTree = ""; }; + A6AF26DB0B965F2D00EDBA70 /* mptr_ffmpeg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_ffmpeg.cpp; sourceTree = ""; }; + A6AF26DC0B965F2D00EDBA70 /* mptr_ffmpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_ffmpeg.h; sourceTree = ""; }; + A6AF26DD0B965F2D00EDBA70 /* trgt_ffmpeg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_ffmpeg.cpp; sourceTree = ""; }; + A6AF26DE0B965F2D00EDBA70 /* trgt_ffmpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_ffmpeg.h; sourceTree = ""; }; + A6AF26DF0B965F2D00EDBA70 /* unmod_ffmpeg.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_ffmpeg.nsh; sourceTree = ""; }; + A6AF26E20B965F2D00EDBA70 /* libmod_filter_la-blur.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-blur.Plo"; sourceTree = ""; }; + A6AF26E30B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-colorcorrect.Plo"; sourceTree = ""; }; + A6AF26E40B965F2D00EDBA70 /* libmod_filter_la-halftone.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone.Plo"; sourceTree = ""; }; + A6AF26E50B965F2D00EDBA70 /* libmod_filter_la-halftone2.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone2.Plo"; sourceTree = ""; }; + A6AF26E60B965F2D00EDBA70 /* libmod_filter_la-halftone3.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone3.Plo"; sourceTree = ""; }; + A6AF26E70B965F2D00EDBA70 /* libmod_filter_la-lumakey.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-lumakey.Plo"; sourceTree = ""; }; + A6AF26E80B965F2D00EDBA70 /* libmod_filter_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-main.Plo"; sourceTree = ""; }; + A6AF26E90B965F2D00EDBA70 /* libmod_filter_la-radialblur.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-radialblur.Plo"; sourceTree = ""; }; + A6AF26EB0B965F2D00EDBA70 /* libmod_filter.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_filter.0.0.0.so; sourceTree = ""; }; + A6AF26EC0B965F2D00EDBA70 /* libmod_filter.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_filter.0.so; sourceTree = ""; }; + A6AF26ED0B965F2D00EDBA70 /* libmod_filter.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_filter.la; sourceTree = ""; }; + A6AF26EE0B965F2D00EDBA70 /* libmod_filter.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_filter.lai; sourceTree = ""; }; + A6AF26EF0B965F2D00EDBA70 /* libmod_filter.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_filter.so; sourceTree = ""; }; + A6AF26F00B965F2D00EDBA70 /* libmod_filter_la-blur.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-blur.o"; sourceTree = ""; }; + A6AF26F10B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-colorcorrect.o"; sourceTree = ""; }; + A6AF26F20B965F2D00EDBA70 /* libmod_filter_la-halftone.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-halftone.o"; sourceTree = ""; }; + A6AF26F30B965F2D00EDBA70 /* libmod_filter_la-halftone2.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-halftone2.o"; sourceTree = ""; }; + A6AF26F40B965F2D00EDBA70 /* libmod_filter_la-halftone3.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-halftone3.o"; sourceTree = ""; }; + A6AF26F50B965F2D00EDBA70 /* libmod_filter_la-lumakey.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-lumakey.o"; sourceTree = ""; }; + A6AF26F60B965F2D00EDBA70 /* libmod_filter_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-main.o"; sourceTree = ""; }; + A6AF26F70B965F2D00EDBA70 /* libmod_filter_la-radialblur.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_filter_la-radialblur.o"; sourceTree = ""; }; + A6AF26F80B965F2D00EDBA70 /* blur.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = blur.cpp; sourceTree = ""; }; + A6AF26F90B965F2D00EDBA70 /* blur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blur.h; sourceTree = ""; }; + A6AF26FA0B965F2D00EDBA70 /* colorcorrect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colorcorrect.cpp; sourceTree = ""; }; + A6AF26FB0B965F2D00EDBA70 /* colorcorrect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colorcorrect.h; sourceTree = ""; }; + A6AF26FC0B965F2D00EDBA70 /* halftone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = halftone.cpp; sourceTree = ""; }; + A6AF26FD0B965F2D00EDBA70 /* halftone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = halftone.h; sourceTree = ""; }; + A6AF26FE0B965F2D00EDBA70 /* halftone2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = halftone2.cpp; sourceTree = ""; }; + A6AF26FF0B965F2D00EDBA70 /* halftone2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = halftone2.h; sourceTree = ""; }; + A6AF27000B965F2D00EDBA70 /* halftone3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = halftone3.cpp; sourceTree = ""; }; + A6AF27010B965F2D00EDBA70 /* halftone3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = halftone3.h; sourceTree = ""; }; + A6AF27020B965F2D00EDBA70 /* libmod_filter.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_filter.la; sourceTree = ""; }; + A6AF27030B965F2D00EDBA70 /* libmod_filter_la-blur.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-blur.lo"; sourceTree = ""; }; + A6AF27040B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-colorcorrect.lo"; sourceTree = ""; }; + A6AF27050B965F2D00EDBA70 /* libmod_filter_la-halftone.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone.lo"; sourceTree = ""; }; + A6AF27060B965F2D00EDBA70 /* libmod_filter_la-halftone2.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone2.lo"; sourceTree = ""; }; + A6AF27070B965F2D00EDBA70 /* libmod_filter_la-halftone3.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-halftone3.lo"; sourceTree = ""; }; + A6AF27080B965F2D00EDBA70 /* libmod_filter_la-lumakey.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-lumakey.lo"; sourceTree = ""; }; + A6AF27090B965F2D00EDBA70 /* libmod_filter_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-main.lo"; sourceTree = ""; }; + A6AF270A0B965F2D00EDBA70 /* libmod_filter_la-radialblur.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_filter_la-radialblur.lo"; sourceTree = ""; }; + A6AF270B0B965F2D00EDBA70 /* lumakey.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lumakey.cpp; sourceTree = ""; }; + A6AF270C0B965F2D00EDBA70 /* lumakey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lumakey.h; sourceTree = ""; }; + A6AF270D0B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF270E0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF270F0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF27100B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF27110B965F2D00EDBA70 /* mod_filter.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_filter.nsh; sourceTree = ""; }; + A6AF27120B965F2D00EDBA70 /* radialblur.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radialblur.cpp; sourceTree = ""; }; + A6AF27130B965F2D00EDBA70 /* radialblur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radialblur.h; sourceTree = ""; }; + A6AF27140B965F2D00EDBA70 /* unmod_filter.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_filter.nsh; sourceTree = ""; }; + A6AF27170B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-checkerboard.Plo"; sourceTree = ""; }; + A6AF27180B965F2D00EDBA70 /* libmod_geometry_la-circle.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-circle.Plo"; sourceTree = ""; }; + A6AF27190B965F2D00EDBA70 /* libmod_geometry_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-main.Plo"; sourceTree = ""; }; + A6AF271A0B965F2D00EDBA70 /* libmod_geometry_la-outline.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-outline.Plo"; sourceTree = ""; }; + A6AF271B0B965F2D00EDBA70 /* libmod_geometry_la-rectangle.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-rectangle.Plo"; sourceTree = ""; }; + A6AF271C0B965F2D00EDBA70 /* libmod_geometry_la-region.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-region.Plo"; sourceTree = ""; }; + A6AF271D0B965F2D00EDBA70 /* libmod_geometry_la-star.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-star.Plo"; sourceTree = ""; }; + A6AF271F0B965F2D00EDBA70 /* libmod_geometry.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_geometry.0.0.0.so; sourceTree = ""; }; + A6AF27200B965F2D00EDBA70 /* libmod_geometry.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_geometry.0.so; sourceTree = ""; }; + A6AF27210B965F2D00EDBA70 /* libmod_geometry.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_geometry.la; sourceTree = ""; }; + A6AF27220B965F2D00EDBA70 /* libmod_geometry.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_geometry.lai; sourceTree = ""; }; + A6AF27230B965F2D00EDBA70 /* libmod_geometry.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_geometry.so; sourceTree = ""; }; + A6AF27240B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-checkerboard.o"; sourceTree = ""; }; + A6AF27250B965F2D00EDBA70 /* libmod_geometry_la-circle.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-circle.o"; sourceTree = ""; }; + A6AF27260B965F2D00EDBA70 /* libmod_geometry_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-main.o"; sourceTree = ""; }; + A6AF27270B965F2D00EDBA70 /* libmod_geometry_la-outline.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-outline.o"; sourceTree = ""; }; + A6AF27280B965F2D00EDBA70 /* libmod_geometry_la-rectangle.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-rectangle.o"; sourceTree = ""; }; + A6AF27290B965F2D00EDBA70 /* libmod_geometry_la-region.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-region.o"; sourceTree = ""; }; + A6AF272A0B965F2D00EDBA70 /* libmod_geometry_la-star.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_geometry_la-star.o"; sourceTree = ""; }; + A6AF272B0B965F2D00EDBA70 /* checkerboard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkerboard.cpp; sourceTree = ""; }; + A6AF272C0B965F2D00EDBA70 /* checkerboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkerboard.h; sourceTree = ""; }; + A6AF272D0B965F2D00EDBA70 /* circle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = circle.cpp; sourceTree = ""; }; + A6AF272E0B965F2D00EDBA70 /* circle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = circle.h; sourceTree = ""; }; + A6AF272F0B965F2D00EDBA70 /* libmod_geometry.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_geometry.la; sourceTree = ""; }; + A6AF27300B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-checkerboard.lo"; sourceTree = ""; }; + A6AF27310B965F2D00EDBA70 /* libmod_geometry_la-circle.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-circle.lo"; sourceTree = ""; }; + A6AF27320B965F2D00EDBA70 /* libmod_geometry_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-main.lo"; sourceTree = ""; }; + A6AF27330B965F2D00EDBA70 /* libmod_geometry_la-outline.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-outline.lo"; sourceTree = ""; }; + A6AF27340B965F2D00EDBA70 /* libmod_geometry_la-rectangle.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-rectangle.lo"; sourceTree = ""; }; + A6AF27350B965F2D00EDBA70 /* libmod_geometry_la-region.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-region.lo"; sourceTree = ""; }; + A6AF27360B965F2D00EDBA70 /* libmod_geometry_la-star.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_geometry_la-star.lo"; sourceTree = ""; }; + A6AF27370B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF27380B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF27390B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF273A0B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF273B0B965F2D00EDBA70 /* mod_geometry.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_geometry.nsh; sourceTree = ""; }; + A6AF273C0B965F2D00EDBA70 /* outline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = outline.cpp; sourceTree = ""; }; + A6AF273D0B965F2D00EDBA70 /* outline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outline.h; sourceTree = ""; }; + A6AF273E0B965F2D00EDBA70 /* rectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectangle.cpp; sourceTree = ""; }; + A6AF273F0B965F2D00EDBA70 /* rectangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rectangle.h; sourceTree = ""; }; + A6AF27400B965F2D00EDBA70 /* region.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = region.cpp; sourceTree = ""; }; + A6AF27410B965F2D00EDBA70 /* region.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = region.h; sourceTree = ""; }; + A6AF27420B965F2D00EDBA70 /* star.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = star.cpp; sourceTree = ""; }; + A6AF27430B965F2D00EDBA70 /* star.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = star.h; sourceTree = ""; }; + A6AF27440B965F2D00EDBA70 /* unmod_geometry.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_geometry.nsh; sourceTree = ""; }; + A6AF27470B965F2D00EDBA70 /* libmod_gif_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gif_la-main.Plo"; sourceTree = ""; }; + A6AF27480B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gif_la-trgt_gif.Plo"; sourceTree = ""; }; + A6AF274A0B965F2D00EDBA70 /* libmod_gif.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gif.0.0.0.so; sourceTree = ""; }; + A6AF274B0B965F2D00EDBA70 /* libmod_gif.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gif.0.so; sourceTree = ""; }; + A6AF274C0B965F2D00EDBA70 /* libmod_gif.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gif.la; sourceTree = ""; }; + A6AF274D0B965F2D00EDBA70 /* libmod_gif.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gif.lai; sourceTree = ""; }; + A6AF274E0B965F2D00EDBA70 /* libmod_gif.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gif.so; sourceTree = ""; }; + A6AF274F0B965F2D00EDBA70 /* libmod_gif_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gif_la-main.o"; sourceTree = ""; }; + A6AF27500B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gif_la-trgt_gif.o"; sourceTree = ""; }; + A6AF27510B965F2D00EDBA70 /* libmod_gif.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gif.la; sourceTree = ""; }; + A6AF27520B965F2D00EDBA70 /* libmod_gif_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gif_la-main.lo"; sourceTree = ""; }; + A6AF27530B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gif_la-trgt_gif.lo"; sourceTree = ""; }; + A6AF27540B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF27550B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF27560B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF27570B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF27580B965F2D00EDBA70 /* mod_gif.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_gif.nsh; sourceTree = ""; }; + A6AF27590B965F2D00EDBA70 /* trgt_gif.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_gif.cpp; sourceTree = ""; }; + A6AF275A0B965F2D00EDBA70 /* trgt_gif.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_gif.h; sourceTree = ""; }; + A6AF275B0B965F2D00EDBA70 /* unmod_gif.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_gif.nsh; sourceTree = ""; }; + A6AF275E0B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-conicalgradient.Plo"; sourceTree = ""; }; + A6AF275F0B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-curvegradient.Plo"; sourceTree = ""; }; + A6AF27600B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-lineargradient.Plo"; sourceTree = ""; }; + A6AF27610B965F2D00EDBA70 /* libmod_gradient_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-main.Plo"; sourceTree = ""; }; + A6AF27620B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-radialgradient.Plo"; sourceTree = ""; }; + A6AF27630B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-spiralgradient.Plo"; sourceTree = ""; }; + A6AF27650B965F2D00EDBA70 /* libmod_gradient.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gradient.0.0.0.so; sourceTree = ""; }; + A6AF27660B965F2D00EDBA70 /* libmod_gradient.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gradient.0.so; sourceTree = ""; }; + A6AF27670B965F2D00EDBA70 /* libmod_gradient.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gradient.la; sourceTree = ""; }; + A6AF27680B965F2D00EDBA70 /* libmod_gradient.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gradient.lai; sourceTree = ""; }; + A6AF27690B965F2D00EDBA70 /* libmod_gradient.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_gradient.so; sourceTree = ""; }; + A6AF276A0B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-conicalgradient.o"; sourceTree = ""; }; + A6AF276B0B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-curvegradient.o"; sourceTree = ""; }; + A6AF276C0B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-lineargradient.o"; sourceTree = ""; }; + A6AF276D0B965F2D00EDBA70 /* libmod_gradient_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-main.o"; sourceTree = ""; }; + A6AF276E0B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-radialgradient.o"; sourceTree = ""; }; + A6AF276F0B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_gradient_la-spiralgradient.o"; sourceTree = ""; }; + A6AF27700B965F2D00EDBA70 /* conicalgradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = conicalgradient.cpp; sourceTree = ""; }; + A6AF27710B965F2D00EDBA70 /* conicalgradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conicalgradient.h; sourceTree = ""; }; + A6AF27720B965F2D00EDBA70 /* curvegradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = curvegradient.cpp; sourceTree = ""; }; + A6AF27730B965F2D00EDBA70 /* curvegradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curvegradient.h; sourceTree = ""; }; + A6AF27740B965F2D00EDBA70 /* libmod_gradient.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_gradient.la; sourceTree = ""; }; + A6AF27750B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-conicalgradient.lo"; sourceTree = ""; }; + A6AF27760B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-curvegradient.lo"; sourceTree = ""; }; + A6AF27770B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-lineargradient.lo"; sourceTree = ""; }; + A6AF27780B965F2D00EDBA70 /* libmod_gradient_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-main.lo"; sourceTree = ""; }; + A6AF27790B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-radialgradient.lo"; sourceTree = ""; }; + A6AF277A0B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_gradient_la-spiralgradient.lo"; sourceTree = ""; }; + A6AF277B0B965F2D00EDBA70 /* lineargradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineargradient.cpp; sourceTree = ""; }; + A6AF277C0B965F2D00EDBA70 /* lineargradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineargradient.h; sourceTree = ""; }; + A6AF277D0B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF277E0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF277F0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF27800B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF27810B965F2D00EDBA70 /* mod_gradient.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_gradient.nsh; sourceTree = ""; }; + A6AF27820B965F2D00EDBA70 /* radialgradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radialgradient.cpp; sourceTree = ""; }; + A6AF27830B965F2D00EDBA70 /* radialgradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radialgradient.h; sourceTree = ""; }; + A6AF27840B965F2D00EDBA70 /* spiralgradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spiralgradient.cpp; sourceTree = ""; }; + A6AF27850B965F2D00EDBA70 /* spiralgradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spiralgradient.h; sourceTree = ""; }; + A6AF27860B965F2D00EDBA70 /* unmod_gradient.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_gradient.nsh; sourceTree = ""; }; + A6AF27890B965F2D00EDBA70 /* libmod_imagemagick_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_imagemagick_la-main.Plo"; sourceTree = ""; }; + A6AF278A0B965F2D00EDBA70 /* libmod_imagemagick_la-mptr_imagemagick.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_imagemagick_la-mptr_imagemagick.Plo"; sourceTree = ""; }; + A6AF278B0B965F2D00EDBA70 /* libmod_imagemagick_la-trgt_imagemagick.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_imagemagick_la-trgt_imagemagick.Plo"; sourceTree = ""; }; + A6AF278C0B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF278D0B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF278E0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF278F0B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF27900B965F2D00EDBA70 /* mod_imagemagick.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_imagemagick.nsh; sourceTree = ""; }; + A6AF27910B965F2D00EDBA70 /* mptr_imagemagick.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_imagemagick.cpp; sourceTree = ""; }; + A6AF27920B965F2D00EDBA70 /* mptr_imagemagick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_imagemagick.h; sourceTree = ""; }; + A6AF27930B965F2D00EDBA70 /* trgt_imagemagick.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_imagemagick.cpp; sourceTree = ""; }; + A6AF27940B965F2D00EDBA70 /* trgt_imagemagick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_imagemagick.h; sourceTree = ""; }; + A6AF27950B965F2D00EDBA70 /* unmod_imagemagick.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_imagemagick.nsh; sourceTree = ""; }; + A6AF27980B965F2D00EDBA70 /* libmod_jpeg_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-main.Plo"; sourceTree = ""; }; + A6AF27990B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-mptr_jpeg.Plo"; sourceTree = ""; }; + A6AF279A0B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-trgt_jpeg.Plo"; sourceTree = ""; }; + A6AF279C0B965F2D00EDBA70 /* libmod_jpeg.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_jpeg.0.0.0.so; sourceTree = ""; }; + A6AF279D0B965F2D00EDBA70 /* libmod_jpeg.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_jpeg.0.so; sourceTree = ""; }; + A6AF279E0B965F2D00EDBA70 /* libmod_jpeg.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_jpeg.la; sourceTree = ""; }; + A6AF279F0B965F2D00EDBA70 /* libmod_jpeg.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_jpeg.lai; sourceTree = ""; }; + A6AF27A00B965F2D00EDBA70 /* libmod_jpeg.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_jpeg.so; sourceTree = ""; }; + A6AF27A10B965F2D00EDBA70 /* libmod_jpeg_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_jpeg_la-main.o"; sourceTree = ""; }; + A6AF27A20B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_jpeg_la-mptr_jpeg.o"; sourceTree = ""; }; + A6AF27A30B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_jpeg_la-trgt_jpeg.o"; sourceTree = ""; }; + A6AF27A40B965F2D00EDBA70 /* libmod_jpeg.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_jpeg.la; sourceTree = ""; }; + A6AF27A50B965F2D00EDBA70 /* libmod_jpeg_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-main.lo"; sourceTree = ""; }; + A6AF27A60B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-mptr_jpeg.lo"; sourceTree = ""; }; + A6AF27A70B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_jpeg_la-trgt_jpeg.lo"; sourceTree = ""; }; + A6AF27A80B965F2D00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF27A90B965F2D00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF27AA0B965F2D00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF27AB0B965F2D00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF27AC0B965F2D00EDBA70 /* mod_jpeg.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_jpeg.nsh; sourceTree = ""; }; + A6AF27AD0B965F2D00EDBA70 /* mptr_jpeg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_jpeg.cpp; sourceTree = ""; }; + A6AF27AE0B965F2D00EDBA70 /* mptr_jpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_jpeg.h; sourceTree = ""; }; + A6AF27AF0B965F2D00EDBA70 /* trgt_jpeg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_jpeg.cpp; sourceTree = ""; }; + A6AF27B00B965F2D00EDBA70 /* trgt_jpeg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_jpeg.h; sourceTree = ""; }; + A6AF27B10B965F2D00EDBA70 /* unmod_jpeg.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_jpeg.nsh; sourceTree = ""; }; + A6AF27B40B965F2D00EDBA70 /* libmod_libavcodec_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_libavcodec_la-main.Plo"; sourceTree = ""; }; + A6AF27B50B965F2D00EDBA70 /* libmod_libavcodec_la-mptr.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_libavcodec_la-mptr.Plo"; sourceTree = ""; }; + A6AF27B60B965F2D00EDBA70 /* libmod_libavcodec_la-trgt_av.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_libavcodec_la-trgt_av.Plo"; sourceTree = ""; }; + A6AF27B80B965F2D00EDBA70 /* 4xm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 4xm.c; sourceTree = ""; }; + A6AF27B90B965F2D00EDBA70 /* a52dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = a52dec.c; sourceTree = ""; }; + A6AF27BA0B965F2D00EDBA70 /* ac3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ac3.h; sourceTree = ""; }; + A6AF27BB0B965F2D00EDBA70 /* ac3dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ac3dec.c; sourceTree = ""; }; + A6AF27BC0B965F2D00EDBA70 /* ac3enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ac3enc.c; sourceTree = ""; }; + A6AF27BD0B965F2D00EDBA70 /* ac3tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ac3tab.h; sourceTree = ""; }; + A6AF27BE0B965F2D00EDBA70 /* adpcm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = adpcm.c; sourceTree = ""; }; + A6AF27BF0B965F2D00EDBA70 /* allcodecs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = allcodecs.c; sourceTree = ""; }; + A6AF27C00B965F2D00EDBA70 /* amr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amr.c; sourceTree = ""; }; + A6AF27C10B965F2D00EDBA70 /* apiexample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = apiexample.c; sourceTree = ""; }; + A6AF27C20B965F2D00EDBA70 /* asv1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = asv1.c; sourceTree = ""; }; + A6AF27C30B965F2D00EDBA70 /* avcodec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = avcodec.c; sourceTree = ""; }; + A6AF27C40B965F2D00EDBA70 /* avcodec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avcodec.h; sourceTree = ""; }; + A6AF27C50B965F2D00EDBA70 /* bswap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bswap.h; sourceTree = ""; }; + A6AF27C60B965F2D00EDBA70 /* cabac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cabac.c; sourceTree = ""; }; + A6AF27C70B965F2D00EDBA70 /* cabac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cabac.h; sourceTree = ""; }; + A6AF27C80B965F2D00EDBA70 /* cljr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cljr.c; sourceTree = ""; }; + A6AF27C90B965F2D00EDBA70 /* common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = common.c; sourceTree = ""; }; + A6AF27CA0B965F2D00EDBA70 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = ""; }; + A6AF27CB0B965F2D00EDBA70 /* cyuv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cyuv.c; sourceTree = ""; }; + A6AF27CC0B965F2D00EDBA70 /* dct-test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "dct-test.c"; sourceTree = ""; }; + A6AF27CD0B965F2D00EDBA70 /* Doxyfile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Doxyfile; sourceTree = ""; }; + A6AF27CE0B965F2D00EDBA70 /* dpcm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dpcm.c; sourceTree = ""; }; + A6AF27CF0B965F2D00EDBA70 /* dsputil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dsputil.c; sourceTree = ""; }; + A6AF27D00B965F2E00EDBA70 /* dsputil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsputil.h; sourceTree = ""; }; + A6AF27D10B965F2E00EDBA70 /* dv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dv.c; sourceTree = ""; }; + A6AF27D20B965F2E00EDBA70 /* dvdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dvdata.h; sourceTree = ""; }; + A6AF27D30B965F2E00EDBA70 /* error_resilience.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error_resilience.c; sourceTree = ""; }; + A6AF27D40B965F2E00EDBA70 /* eval.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eval.c; sourceTree = ""; }; + A6AF27D50B965F2E00EDBA70 /* faad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = faad.c; sourceTree = ""; }; + A6AF27D60B965F2E00EDBA70 /* fastmemcpy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fastmemcpy.h; sourceTree = ""; }; + A6AF27D70B965F2E00EDBA70 /* fdctref.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fdctref.c; sourceTree = ""; }; + A6AF27D80B965F2E00EDBA70 /* fft-test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "fft-test.c"; sourceTree = ""; }; + A6AF27D90B965F2E00EDBA70 /* fft.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fft.c; sourceTree = ""; }; + A6AF27DA0B965F2E00EDBA70 /* ffv1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ffv1.c; sourceTree = ""; }; + A6AF27DB0B965F2E00EDBA70 /* golomb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = golomb.c; sourceTree = ""; }; + A6AF27DC0B965F2E00EDBA70 /* golomb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = golomb.h; sourceTree = ""; }; + A6AF27DD0B965F2E00EDBA70 /* h263.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = h263.c; sourceTree = ""; }; + A6AF27DE0B965F2E00EDBA70 /* h263data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h263data.h; sourceTree = ""; }; + A6AF27DF0B965F2E00EDBA70 /* h263dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = h263dec.c; sourceTree = ""; }; + A6AF27E00B965F2E00EDBA70 /* h264.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = h264.c; sourceTree = ""; }; + A6AF27E10B965F2E00EDBA70 /* h264data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h264data.h; sourceTree = ""; }; + A6AF27E20B965F2E00EDBA70 /* huffyuv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = huffyuv.c; sourceTree = ""; }; + A6AF27E40B965F2E00EDBA70 /* cputest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cputest.c; sourceTree = ""; }; + A6AF27E50B965F2E00EDBA70 /* dsputil_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dsputil_mmx.c; sourceTree = ""; }; + A6AF27E60B965F2E00EDBA70 /* dsputil_mmx_avg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsputil_mmx_avg.h; sourceTree = ""; }; + A6AF27E70B965F2E00EDBA70 /* dsputil_mmx_rnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsputil_mmx_rnd.h; sourceTree = ""; }; + A6AF27E80B965F2E00EDBA70 /* fdct_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fdct_mmx.c; sourceTree = ""; }; + A6AF27E90B965F2E00EDBA70 /* fft_sse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fft_sse.c; sourceTree = ""; }; + A6AF27EA0B965F2E00EDBA70 /* idct_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = idct_mmx.c; sourceTree = ""; }; + A6AF27EB0B965F2E00EDBA70 /* mmx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmx.h; sourceTree = ""; }; + A6AF27EC0B965F2E00EDBA70 /* motion_est_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = motion_est_mmx.c; sourceTree = ""; }; + A6AF27ED0B965F2E00EDBA70 /* mpegvideo_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegvideo_mmx.c; sourceTree = ""; }; + A6AF27EE0B965F2E00EDBA70 /* mpegvideo_mmx_template.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegvideo_mmx_template.c; sourceTree = ""; }; + A6AF27EF0B965F2E00EDBA70 /* simple_idct_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = simple_idct_mmx.c; sourceTree = ""; }; + A6AF27F00B965F2E00EDBA70 /* imgconvert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = imgconvert.c; sourceTree = ""; }; + A6AF27F10B965F2E00EDBA70 /* imgconvert_template.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imgconvert_template.h; sourceTree = ""; }; + A6AF27F20B965F2E00EDBA70 /* imgresample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = imgresample.c; sourceTree = ""; }; + A6AF27F30B965F2E00EDBA70 /* indeo3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = indeo3.c; sourceTree = ""; }; + A6AF27F40B965F2E00EDBA70 /* indeo3data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = indeo3data.h; sourceTree = ""; }; + A6AF27F50B965F2E00EDBA70 /* interplayvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = interplayvideo.c; sourceTree = ""; }; + A6AF27F60B965F2E00EDBA70 /* jfdctfst.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jfdctfst.c; sourceTree = ""; }; + A6AF27F70B965F2E00EDBA70 /* jfdctint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jfdctint.c; sourceTree = ""; }; + A6AF27F80B965F2E00EDBA70 /* jrevdct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jrevdct.c; sourceTree = ""; }; + A6AF27FA0B965F2E00EDBA70 /* a52.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = a52.h; sourceTree = ""; }; + A6AF27FB0B965F2E00EDBA70 /* a52_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = a52_internal.h; sourceTree = ""; }; + A6AF27FC0B965F2E00EDBA70 /* a52_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = a52_util.h; sourceTree = ""; }; + A6AF27FD0B965F2E00EDBA70 /* bit_allocate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bit_allocate.c; sourceTree = ""; }; + A6AF27FE0B965F2E00EDBA70 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bitstream.c; sourceTree = ""; }; + A6AF27FF0B965F2E00EDBA70 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bitstream.h; sourceTree = ""; }; + A6AF28000B965F2E00EDBA70 /* crc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crc.c; sourceTree = ""; }; + A6AF28010B965F2E00EDBA70 /* downmix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = downmix.c; sourceTree = ""; }; + A6AF28020B965F2E00EDBA70 /* imdct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = imdct.c; sourceTree = ""; }; + A6AF28030B965F2E00EDBA70 /* mm_accel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mm_accel.h; sourceTree = ""; }; + A6AF28040B965F2E00EDBA70 /* parse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parse.c; sourceTree = ""; }; + A6AF28050B965F2E00EDBA70 /* resample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resample.c; sourceTree = ""; }; + A6AF28060B965F2E00EDBA70 /* resample_c.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resample_c.c; sourceTree = ""; }; + A6AF28070B965F2E00EDBA70 /* resample_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resample_mmx.c; sourceTree = ""; }; + A6AF28080B965F2E00EDBA70 /* tables.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tables.h; sourceTree = ""; }; + A6AF280A0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF280B0B965F2E00EDBA70 /* mangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mangle.h; sourceTree = ""; }; + A6AF280C0B965F2E00EDBA70 /* postprocess.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = postprocess.c; sourceTree = ""; }; + A6AF280D0B965F2E00EDBA70 /* postprocess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = postprocess.h; sourceTree = ""; }; + A6AF280E0B965F2E00EDBA70 /* postprocess_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = postprocess_internal.h; sourceTree = ""; }; + A6AF280F0B965F2E00EDBA70 /* postprocess_template.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = postprocess_template.c; sourceTree = ""; }; + A6AF28100B965F2E00EDBA70 /* mace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mace.c; sourceTree = ""; }; + A6AF28110B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF28120B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF28130B965F2E00EDBA70 /* mdct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mdct.c; sourceTree = ""; }; + A6AF28140B965F2E00EDBA70 /* mdec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mdec.c; sourceTree = ""; }; + A6AF28150B965F2E00EDBA70 /* mem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mem.c; sourceTree = ""; }; + A6AF28160B965F2E00EDBA70 /* mjpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mjpeg.c; sourceTree = ""; }; + A6AF28170B965F2E00EDBA70 /* motion_est.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = motion_est.c; sourceTree = ""; }; + A6AF28180B965F2E00EDBA70 /* motion_est_template.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = motion_est_template.c; sourceTree = ""; }; + A6AF28190B965F2E00EDBA70 /* motion_test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = motion_test.c; sourceTree = ""; }; + A6AF281A0B965F2E00EDBA70 /* mp3lameaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mp3lameaudio.c; sourceTree = ""; }; + A6AF281B0B965F2E00EDBA70 /* mpeg12.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpeg12.c; sourceTree = ""; }; + A6AF281C0B965F2E00EDBA70 /* mpeg12data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpeg12data.h; sourceTree = ""; }; + A6AF281D0B965F2E00EDBA70 /* mpeg4data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpeg4data.h; sourceTree = ""; }; + A6AF281E0B965F2E00EDBA70 /* mpegaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegaudio.c; sourceTree = ""; }; + A6AF281F0B965F2E00EDBA70 /* mpegaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegaudio.h; sourceTree = ""; }; + A6AF28200B965F2E00EDBA70 /* mpegaudiodec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegaudiodec.c; sourceTree = ""; }; + A6AF28210B965F2E00EDBA70 /* mpegaudiodectab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegaudiodectab.h; sourceTree = ""; }; + A6AF28220B965F2E00EDBA70 /* mpegaudiotab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegaudiotab.h; sourceTree = ""; }; + A6AF28230B965F2E00EDBA70 /* mpegvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegvideo.c; sourceTree = ""; }; + A6AF28240B965F2E00EDBA70 /* mpegvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegvideo.h; sourceTree = ""; }; + A6AF28250B965F2E00EDBA70 /* msmpeg4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = msmpeg4.c; sourceTree = ""; }; + A6AF28260B965F2E00EDBA70 /* msmpeg4data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = msmpeg4data.h; sourceTree = ""; }; + A6AF28270B965F2E00EDBA70 /* oggvorbis.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = oggvorbis.c; sourceTree = ""; }; + A6AF28280B965F2E00EDBA70 /* oggvorbis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oggvorbis.h; sourceTree = ""; }; + A6AF28290B965F2E00EDBA70 /* opts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = opts.c; sourceTree = ""; }; + A6AF282A0B965F2E00EDBA70 /* pcm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pcm.c; sourceTree = ""; }; + A6AF282B0B965F2E00EDBA70 /* ra144.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ra144.c; sourceTree = ""; }; + A6AF282C0B965F2E00EDBA70 /* ra144.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ra144.h; sourceTree = ""; }; + A6AF282D0B965F2E00EDBA70 /* ra288.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ra288.c; sourceTree = ""; }; + A6AF282E0B965F2E00EDBA70 /* ra288.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ra288.h; sourceTree = ""; }; + A6AF282F0B965F2E00EDBA70 /* ratecontrol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ratecontrol.c; sourceTree = ""; }; + A6AF28300B965F2E00EDBA70 /* raw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw.c; sourceTree = ""; }; + A6AF28310B965F2E00EDBA70 /* resample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = resample.c; sourceTree = ""; }; + A6AF28320B965F2E00EDBA70 /* roqvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = roqvideo.c; sourceTree = ""; }; + A6AF28330B965F2E00EDBA70 /* rv10.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rv10.c; sourceTree = ""; }; + A6AF28340B965F2E00EDBA70 /* simple_idct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = simple_idct.c; sourceTree = ""; }; + A6AF28350B965F2E00EDBA70 /* simple_idct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = simple_idct.h; sourceTree = ""; }; + A6AF28360B965F2E00EDBA70 /* svq1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = svq1.c; sourceTree = ""; }; + A6AF28370B965F2E00EDBA70 /* svq1_cb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = svq1_cb.h; sourceTree = ""; }; + A6AF28380B965F2E00EDBA70 /* svq1_vlc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = svq1_vlc.h; sourceTree = ""; }; + A6AF28390B965F2E00EDBA70 /* svq3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = svq3.c; sourceTree = ""; }; + A6AF283A0B965F2E00EDBA70 /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = ""; }; + A6AF283B0B965F2E00EDBA70 /* vcr1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vcr1.c; sourceTree = ""; }; + A6AF283C0B965F2E00EDBA70 /* vp3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vp3.c; sourceTree = ""; }; + A6AF283D0B965F2E00EDBA70 /* vp3data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vp3data.h; sourceTree = ""; }; + A6AF283E0B965F2E00EDBA70 /* wmadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wmadata.h; sourceTree = ""; }; + A6AF283F0B965F2E00EDBA70 /* wmadec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wmadec.c; sourceTree = ""; }; + A6AF28400B965F2E00EDBA70 /* wmv2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wmv2.c; sourceTree = ""; }; + A6AF28410B965F2E00EDBA70 /* xan.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xan.c; sourceTree = ""; }; + A6AF28420B965F2E00EDBA70 /* xvmcvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xvmcvideo.c; sourceTree = ""; }; + A6AF28440B965F2E00EDBA70 /* 4xm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 4xm.c; sourceTree = ""; }; + A6AF28450B965F2E00EDBA70 /* allformats.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = allformats.c; sourceTree = ""; }; + A6AF28460B965F2E00EDBA70 /* amr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amr.c; sourceTree = ""; }; + A6AF28470B965F2E00EDBA70 /* asf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = asf.c; sourceTree = ""; }; + A6AF28480B965F2E00EDBA70 /* au.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = au.c; sourceTree = ""; }; + A6AF28490B965F2E00EDBA70 /* audio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = audio.c; sourceTree = ""; }; + A6AF284A0B965F2E00EDBA70 /* avformat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avformat.h; sourceTree = ""; }; + A6AF284B0B965F2E00EDBA70 /* avi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avi.h; sourceTree = ""; }; + A6AF284C0B965F2E00EDBA70 /* avidec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = avidec.c; sourceTree = ""; }; + A6AF284D0B965F2E00EDBA70 /* avienc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = avienc.c; sourceTree = ""; }; + A6AF284E0B965F2E00EDBA70 /* avio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = avio.c; sourceTree = ""; }; + A6AF284F0B965F2E00EDBA70 /* avio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avio.h; sourceTree = ""; }; + A6AF28500B965F2E00EDBA70 /* aviobuf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = aviobuf.c; sourceTree = ""; }; + A6AF28510B965F2E00EDBA70 /* barpainet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = barpainet.c; sourceTree = ""; }; + A6AF28520B965F2E00EDBA70 /* barpainet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = barpainet.h; sourceTree = ""; }; + A6AF28530B965F2E00EDBA70 /* beosaudio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beosaudio.cpp; sourceTree = ""; }; + A6AF28540B965F2E00EDBA70 /* crc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crc.c; sourceTree = ""; }; + A6AF28550B965F2E00EDBA70 /* cutils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cutils.c; sourceTree = ""; }; + A6AF28560B965F2E00EDBA70 /* dv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dv.c; sourceTree = ""; }; + A6AF28570B965F2E00EDBA70 /* dv1394.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dv1394.c; sourceTree = ""; }; + A6AF28580B965F2E00EDBA70 /* dv1394.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dv1394.h; sourceTree = ""; }; + A6AF28590B965F2E00EDBA70 /* dvcore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dvcore.c; sourceTree = ""; }; + A6AF285A0B965F2E00EDBA70 /* dvcore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dvcore.h; sourceTree = ""; }; + A6AF285B0B965F2E00EDBA70 /* ffm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ffm.c; sourceTree = ""; }; + A6AF285C0B965F2E00EDBA70 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = ""; }; + A6AF285D0B965F2E00EDBA70 /* flvdec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = flvdec.c; sourceTree = ""; }; + A6AF285E0B965F2E00EDBA70 /* flvenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = flvenc.c; sourceTree = ""; }; + A6AF285F0B965F2E00EDBA70 /* framehook.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = framehook.c; sourceTree = ""; }; + A6AF28600B965F2E00EDBA70 /* framehook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = framehook.h; sourceTree = ""; }; + A6AF28610B965F2E00EDBA70 /* gif.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gif.c; sourceTree = ""; }; + A6AF28620B965F2E00EDBA70 /* gifdec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gifdec.c; sourceTree = ""; }; + A6AF28630B965F2E00EDBA70 /* grab.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = grab.c; sourceTree = ""; }; + A6AF28640B965F2E00EDBA70 /* http.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = http.c; sourceTree = ""; }; + A6AF28650B965F2E00EDBA70 /* idroq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = idroq.c; sourceTree = ""; }; + A6AF28660B965F2E00EDBA70 /* img.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = img.c; sourceTree = ""; }; + A6AF28670B965F2E00EDBA70 /* ipmovie.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ipmovie.c; sourceTree = ""; }; + A6AF28680B965F2E00EDBA70 /* jpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = jpeg.c; sourceTree = ""; }; + A6AF28690B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF286A0B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF286B0B965F2E00EDBA70 /* mov.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mov.c; sourceTree = ""; }; + A6AF286C0B965F2E00EDBA70 /* movenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = movenc.c; sourceTree = ""; }; + A6AF286D0B965F2E00EDBA70 /* mp3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mp3.c; sourceTree = ""; }; + A6AF286E0B965F2E00EDBA70 /* mpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpeg.c; sourceTree = ""; }; + A6AF286F0B965F2E00EDBA70 /* mpegts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegts.c; sourceTree = ""; }; + A6AF28700B965F2E00EDBA70 /* mpegts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mpegts.h; sourceTree = ""; }; + A6AF28710B965F2E00EDBA70 /* mpegtsenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpegtsenc.c; sourceTree = ""; }; + A6AF28720B965F2E00EDBA70 /* mpjpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpjpeg.c; sourceTree = ""; }; + A6AF28730B965F2E00EDBA70 /* nut.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = nut.c; sourceTree = ""; }; + A6AF28740B965F2E00EDBA70 /* ogg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ogg.c; sourceTree = ""; }; + A6AF28750B965F2E00EDBA70 /* os_support.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = os_support.c; sourceTree = ""; }; + A6AF28760B965F2E00EDBA70 /* os_support.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = os_support.h; sourceTree = ""; }; + A6AF28770B965F2E00EDBA70 /* png.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = png.c; sourceTree = ""; }; + A6AF28780B965F2E00EDBA70 /* pnm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pnm.c; sourceTree = ""; }; + A6AF28790B965F2E00EDBA70 /* psxstr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = psxstr.c; sourceTree = ""; }; + A6AF287A0B965F2E00EDBA70 /* raw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = raw.c; sourceTree = ""; }; + A6AF287B0B965F2E00EDBA70 /* rm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rm.c; sourceTree = ""; }; + A6AF287C0B965F2E00EDBA70 /* rtp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rtp.c; sourceTree = ""; }; + A6AF287D0B965F2E00EDBA70 /* rtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rtp.h; sourceTree = ""; }; + A6AF287E0B965F2E00EDBA70 /* rtpproto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rtpproto.c; sourceTree = ""; }; + A6AF287F0B965F2E00EDBA70 /* rtsp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rtsp.c; sourceTree = ""; }; + A6AF28800B965F2E00EDBA70 /* rtsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rtsp.h; sourceTree = ""; }; + A6AF28810B965F2E00EDBA70 /* rtspcodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rtspcodes.h; sourceTree = ""; }; + A6AF28820B965F2E00EDBA70 /* swf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = swf.c; sourceTree = ""; }; + A6AF28830B965F2E00EDBA70 /* tcp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tcp.c; sourceTree = ""; }; + A6AF28840B965F2E00EDBA70 /* udp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = udp.c; sourceTree = ""; }; + A6AF28850B965F2E00EDBA70 /* utils.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utils.c; sourceTree = ""; }; + A6AF28860B965F2E00EDBA70 /* wav.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wav.c; sourceTree = ""; }; + A6AF28870B965F2E00EDBA70 /* wc3movie.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = wc3movie.c; sourceTree = ""; }; + A6AF28880B965F2E00EDBA70 /* yuv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv.c; sourceTree = ""; }; + A6AF28890B965F2E00EDBA70 /* yuv4mpeg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = yuv4mpeg.c; sourceTree = ""; }; + A6AF288A0B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF288B0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF288C0B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF288D0B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF288E0B965F2E00EDBA70 /* mod_libavcodec.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_libavcodec.nsh; sourceTree = ""; }; + A6AF288F0B965F2E00EDBA70 /* mptr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr.cpp; sourceTree = ""; }; + A6AF28900B965F2E00EDBA70 /* mptr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr.h; sourceTree = ""; }; + A6AF28910B965F2E00EDBA70 /* trgt_av.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_av.cpp; sourceTree = ""; }; + A6AF28920B965F2E00EDBA70 /* trgt_av.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_av.h; sourceTree = ""; }; + A6AF28930B965F2E00EDBA70 /* unmod_libavcodec.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_libavcodec.nsh; sourceTree = ""; }; + A6AF28960B965F2E00EDBA70 /* libmod_noise_la-distort.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-distort.Plo"; sourceTree = ""; }; + A6AF28970B965F2E00EDBA70 /* libmod_noise_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-main.Plo"; sourceTree = ""; }; + A6AF28980B965F2E00EDBA70 /* libmod_noise_la-noise.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-noise.Plo"; sourceTree = ""; }; + A6AF28990B965F2E00EDBA70 /* libmod_noise_la-random.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-random.Plo"; sourceTree = ""; }; + A6AF289B0B965F2E00EDBA70 /* libmod_noise.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_noise.0.0.0.so; sourceTree = ""; }; + A6AF289C0B965F2E00EDBA70 /* libmod_noise.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_noise.0.so; sourceTree = ""; }; + A6AF289D0B965F2E00EDBA70 /* libmod_noise.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_noise.la; sourceTree = ""; }; + A6AF289E0B965F2E00EDBA70 /* libmod_noise.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_noise.lai; sourceTree = ""; }; + A6AF289F0B965F2E00EDBA70 /* libmod_noise.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_noise.so; sourceTree = ""; }; + A6AF28A00B965F2E00EDBA70 /* libmod_noise_la-distort.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_noise_la-distort.o"; sourceTree = ""; }; + A6AF28A10B965F2E00EDBA70 /* libmod_noise_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_noise_la-main.o"; sourceTree = ""; }; + A6AF28A20B965F2E00EDBA70 /* libmod_noise_la-noise.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_noise_la-noise.o"; sourceTree = ""; }; + A6AF28A30B965F2E00EDBA70 /* libmod_noise_la-random.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_noise_la-random.o"; sourceTree = ""; }; + A6AF28A40B965F2E00EDBA70 /* distort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = distort.cpp; sourceTree = ""; }; + A6AF28A50B965F2E00EDBA70 /* distort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = distort.h; sourceTree = ""; }; + A6AF28A60B965F2E00EDBA70 /* libmod_noise.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_noise.la; sourceTree = ""; }; + A6AF28A70B965F2E00EDBA70 /* libmod_noise_la-distort.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-distort.lo"; sourceTree = ""; }; + A6AF28A80B965F2E00EDBA70 /* libmod_noise_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-main.lo"; sourceTree = ""; }; + A6AF28A90B965F2E00EDBA70 /* libmod_noise_la-noise.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-noise.lo"; sourceTree = ""; }; + A6AF28AA0B965F2E00EDBA70 /* libmod_noise_la-random.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_noise_la-random.lo"; sourceTree = ""; }; + A6AF28AB0B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF28AC0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF28AD0B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF28AE0B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF28AF0B965F2E00EDBA70 /* mod_noise.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_noise.nsh; sourceTree = ""; }; + A6AF28B00B965F2E00EDBA70 /* noise.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = noise.cpp; sourceTree = ""; }; + A6AF28B10B965F2E00EDBA70 /* noise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = noise.h; sourceTree = ""; }; + A6AF28B20B965F2E00EDBA70 /* random.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = random.cpp; sourceTree = ""; }; + A6AF28B30B965F2E00EDBA70 /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = ""; }; + A6AF28B40B965F2E00EDBA70 /* unmod_noise.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_noise.nsh; sourceTree = ""; }; + A6AF28B70B965F2E00EDBA70 /* libmod_openexr_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_openexr_la-main.Plo"; sourceTree = ""; }; + A6AF28B80B965F2E00EDBA70 /* libmod_openexr_la-mptr_openexr.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_openexr_la-mptr_openexr.Plo"; sourceTree = ""; }; + A6AF28B90B965F2E00EDBA70 /* libmod_openexr_la-trgt_openexr.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_openexr_la-trgt_openexr.Plo"; sourceTree = ""; }; + A6AF28BA0B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF28BB0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF28BC0B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF28BD0B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF28BE0B965F2E00EDBA70 /* mod_openexr.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_openexr.nsh; sourceTree = ""; }; + A6AF28BF0B965F2E00EDBA70 /* mptr_openexr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_openexr.cpp; sourceTree = ""; }; + A6AF28C00B965F2E00EDBA70 /* mptr_openexr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_openexr.h; sourceTree = ""; }; + A6AF28C10B965F2E00EDBA70 /* trgt_openexr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_openexr.cpp; sourceTree = ""; }; + A6AF28C20B965F2E00EDBA70 /* trgt_openexr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_openexr.h; sourceTree = ""; }; + A6AF28C30B965F2E00EDBA70 /* unmod_openexr.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_openexr.nsh; sourceTree = ""; }; + A6AF28C60B965F2E00EDBA70 /* libmod_particle_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-main.Plo"; sourceTree = ""; }; + A6AF28C70B965F2E00EDBA70 /* libmod_particle_la-plant.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-plant.Plo"; sourceTree = ""; }; + A6AF28C80B965F2E00EDBA70 /* libmod_particle_la-random.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-random.Plo"; sourceTree = ""; }; + A6AF28CA0B965F2E00EDBA70 /* libmod_particle.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_particle.0.0.0.so; sourceTree = ""; }; + A6AF28CB0B965F2E00EDBA70 /* libmod_particle.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_particle.0.so; sourceTree = ""; }; + A6AF28CC0B965F2E00EDBA70 /* libmod_particle.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_particle.la; sourceTree = ""; }; + A6AF28CD0B965F2E00EDBA70 /* libmod_particle.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_particle.lai; sourceTree = ""; }; + A6AF28CE0B965F2E00EDBA70 /* libmod_particle.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_particle.so; sourceTree = ""; }; + A6AF28CF0B965F2E00EDBA70 /* libmod_particle_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_particle_la-main.o"; sourceTree = ""; }; + A6AF28D00B965F2E00EDBA70 /* libmod_particle_la-plant.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_particle_la-plant.o"; sourceTree = ""; }; + A6AF28D10B965F2E00EDBA70 /* libmod_particle_la-random.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_particle_la-random.o"; sourceTree = ""; }; + A6AF28D20B965F2E00EDBA70 /* libmod_particle.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_particle.la; sourceTree = ""; }; + A6AF28D30B965F2E00EDBA70 /* libmod_particle_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-main.lo"; sourceTree = ""; }; + A6AF28D40B965F2E00EDBA70 /* libmod_particle_la-plant.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-plant.lo"; sourceTree = ""; }; + A6AF28D50B965F2E00EDBA70 /* libmod_particle_la-random.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_particle_la-random.lo"; sourceTree = ""; }; + A6AF28D60B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF28D70B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF28D80B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF28D90B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF28DA0B965F2E00EDBA70 /* mod_particle.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_particle.nsh; sourceTree = ""; }; + A6AF28DB0B965F2E00EDBA70 /* plant.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plant.cpp; sourceTree = ""; }; + A6AF28DC0B965F2E00EDBA70 /* plant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plant.h; sourceTree = ""; }; + A6AF28DD0B965F2E00EDBA70 /* random.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = random.cpp; sourceTree = ""; }; + A6AF28DE0B965F2E00EDBA70 /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = random.h; sourceTree = ""; }; + A6AF28DF0B965F2E00EDBA70 /* unmod_particle.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_particle.nsh; sourceTree = ""; }; + A6AF28E20B965F2E00EDBA70 /* libmod_png_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-main.Plo"; sourceTree = ""; }; + A6AF28E30B965F2E00EDBA70 /* libmod_png_la-mptr_png.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-mptr_png.Plo"; sourceTree = ""; }; + A6AF28E40B965F2E00EDBA70 /* libmod_png_la-trgt_png.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-trgt_png.Plo"; sourceTree = ""; }; + A6AF28E60B965F2E00EDBA70 /* libmod_png.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_png.0.0.0.so; sourceTree = ""; }; + A6AF28E70B965F2E00EDBA70 /* libmod_png.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_png.0.so; sourceTree = ""; }; + A6AF28E80B965F2E00EDBA70 /* libmod_png.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_png.la; sourceTree = ""; }; + A6AF28E90B965F2E00EDBA70 /* libmod_png.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_png.lai; sourceTree = ""; }; + A6AF28EA0B965F2E00EDBA70 /* libmod_png.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_png.so; sourceTree = ""; }; + A6AF28EB0B965F2E00EDBA70 /* libmod_png_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_png_la-main.o"; sourceTree = ""; }; + A6AF28EC0B965F2E00EDBA70 /* libmod_png_la-mptr_png.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_png_la-mptr_png.o"; sourceTree = ""; }; + A6AF28ED0B965F2E00EDBA70 /* libmod_png_la-trgt_png.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_png_la-trgt_png.o"; sourceTree = ""; }; + A6AF28EE0B965F2E00EDBA70 /* libmod_png.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_png.la; sourceTree = ""; }; + A6AF28EF0B965F2E00EDBA70 /* libmod_png_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-main.lo"; sourceTree = ""; }; + A6AF28F00B965F2E00EDBA70 /* libmod_png_la-mptr_png.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-mptr_png.lo"; sourceTree = ""; }; + A6AF28F10B965F2E00EDBA70 /* libmod_png_la-trgt_png.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_png_la-trgt_png.lo"; sourceTree = ""; }; + A6AF28F20B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF28F30B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF28F40B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF28F50B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF28F60B965F2E00EDBA70 /* mod_png.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_png.nsh; sourceTree = ""; }; + A6AF28F70B965F2E00EDBA70 /* mptr_png.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_png.cpp; sourceTree = ""; }; + A6AF28F80B965F2E00EDBA70 /* mptr_png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_png.h; sourceTree = ""; }; + A6AF28F90B965F2E00EDBA70 /* trgt_png.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_png.cpp; sourceTree = ""; }; + A6AF28FA0B965F2E00EDBA70 /* trgt_png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_png.h; sourceTree = ""; }; + A6AF28FB0B965F2E00EDBA70 /* unmod_png.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_png.nsh; sourceTree = ""; }; + A6AF28FE0B965F2E00EDBA70 /* libmod_ppm_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-main.Plo"; sourceTree = ""; }; + A6AF28FF0B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-mptr_ppm.Plo"; sourceTree = ""; }; + A6AF29000B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-trgt_ppm.Plo"; sourceTree = ""; }; + A6AF29020B965F2E00EDBA70 /* libmod_ppm.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ppm.0.0.0.so; sourceTree = ""; }; + A6AF29030B965F2E00EDBA70 /* libmod_ppm.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ppm.0.so; sourceTree = ""; }; + A6AF29040B965F2E00EDBA70 /* libmod_ppm.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ppm.la; sourceTree = ""; }; + A6AF29050B965F2E00EDBA70 /* libmod_ppm.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ppm.lai; sourceTree = ""; }; + A6AF29060B965F2E00EDBA70 /* libmod_ppm.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_ppm.so; sourceTree = ""; }; + A6AF29070B965F2E00EDBA70 /* libmod_ppm_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ppm_la-main.o"; sourceTree = ""; }; + A6AF29080B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ppm_la-mptr_ppm.o"; sourceTree = ""; }; + A6AF29090B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_ppm_la-trgt_ppm.o"; sourceTree = ""; }; + A6AF290A0B965F2E00EDBA70 /* libmod_ppm.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_ppm.la; sourceTree = ""; }; + A6AF290B0B965F2E00EDBA70 /* libmod_ppm_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-main.lo"; sourceTree = ""; }; + A6AF290C0B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-mptr_ppm.lo"; sourceTree = ""; }; + A6AF290D0B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_ppm_la-trgt_ppm.lo"; sourceTree = ""; }; + A6AF290E0B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF290F0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF29100B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF29110B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF29120B965F2E00EDBA70 /* mod_ppm.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_ppm.nsh; sourceTree = ""; }; + A6AF29130B965F2E00EDBA70 /* mptr_ppm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_ppm.cpp; sourceTree = ""; }; + A6AF29140B965F2E00EDBA70 /* mptr_ppm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_ppm.h; sourceTree = ""; }; + A6AF29150B965F2E00EDBA70 /* trgt_mpg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_mpg.cpp; sourceTree = ""; }; + A6AF29160B965F2E00EDBA70 /* trgt_mpg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_mpg.h; sourceTree = ""; }; + A6AF29170B965F2E00EDBA70 /* trgt_ppm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_ppm.cpp; sourceTree = ""; }; + A6AF29180B965F2E00EDBA70 /* trgt_ppm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_ppm.h; sourceTree = ""; }; + A6AF29190B965F2E00EDBA70 /* unmod_ppm.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_ppm.nsh; sourceTree = ""; }; + A6AF291C0B965F2E00EDBA70 /* libmod_yuv420p_la-main.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_yuv420p_la-main.Plo"; sourceTree = ""; }; + A6AF291D0B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.Plo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_yuv420p_la-trgt_yuv.Plo"; sourceTree = ""; }; + A6AF291F0B965F2E00EDBA70 /* libmod_yuv420p.0.0.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_yuv420p.0.0.0.so; sourceTree = ""; }; + A6AF29200B965F2E00EDBA70 /* libmod_yuv420p.0.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_yuv420p.0.so; sourceTree = ""; }; + A6AF29210B965F2E00EDBA70 /* libmod_yuv420p.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_yuv420p.la; sourceTree = ""; }; + A6AF29220B965F2E00EDBA70 /* libmod_yuv420p.lai */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_yuv420p.lai; sourceTree = ""; }; + A6AF29230B965F2E00EDBA70 /* libmod_yuv420p.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = libmod_yuv420p.so; sourceTree = ""; }; + A6AF29240B965F2E00EDBA70 /* libmod_yuv420p_la-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_yuv420p_la-main.o"; sourceTree = ""; }; + A6AF29250B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "libmod_yuv420p_la-trgt_yuv.o"; sourceTree = ""; }; + A6AF29260B965F2E00EDBA70 /* libmod_yuv420p.la */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libmod_yuv420p.la; sourceTree = ""; }; + A6AF29270B965F2E00EDBA70 /* libmod_yuv420p_la-main.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_yuv420p_la-main.lo"; sourceTree = ""; }; + A6AF29280B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.lo */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "libmod_yuv420p_la-trgt_yuv.lo"; sourceTree = ""; }; + A6AF29290B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF292A0B965F2E00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF292B0B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF292C0B965F2E00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF292D0B965F2E00EDBA70 /* mod_yuv420p.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mod_yuv420p.nsh; sourceTree = ""; }; + A6AF292E0B965F2E00EDBA70 /* trgt_yuv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trgt_yuv.cpp; sourceTree = ""; }; + A6AF292F0B965F2E00EDBA70 /* trgt_yuv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trgt_yuv.h; sourceTree = ""; }; + A6AF29300B965F2E00EDBA70 /* unmod_yuv420p.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unmod_yuv420p.nsh; sourceTree = ""; }; + A6AF29320B965F2E00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF29330B965F2E00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF29340B965F2E00EDBA70 /* mptr_mplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mptr_mplayer.cpp; sourceTree = ""; }; + A6AF29350B965F2E00EDBA70 /* mptr_mplayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mptr_mplayer.h; sourceTree = ""; }; + A6AF29360B965F2E00EDBA70 /* synfig_modules.cfg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = synfig_modules.cfg; sourceTree = ""; }; + A6AF29370B965F2E00EDBA70 /* synfig_modules.cfg.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = synfig_modules.cfg.in; sourceTree = ""; }; + A6AF29380B965F2E00EDBA70 /* template.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = template.nsh; sourceTree = ""; }; + A6AF29390B965F2E00EDBA70 /* untemplate.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = untemplate.nsh; sourceTree = ""; }; + A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = activepoint.cpp; sourceTree = ""; }; + A6AF29CB0B965F2E00EDBA70 /* activepoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = activepoint.h; sourceTree = ""; }; + A6AF29CC0B965F2E00EDBA70 /* angle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = angle.h; sourceTree = ""; }; + A6AF29CD0B965F2E00EDBA70 /* blinepoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = blinepoint.cpp; sourceTree = ""; }; + A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blinepoint.h; sourceTree = ""; }; + A6AF29CF0B965F2E00EDBA70 /* blur.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = blur.cpp; sourceTree = ""; }; + A6AF29D00B965F2E00EDBA70 /* blur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blur.h; sourceTree = ""; }; + A6AF29D10B965F2E00EDBA70 /* canvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = canvas.cpp; sourceTree = ""; }; + A6AF29D20B965F2E00EDBA70 /* canvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = canvas.h; sourceTree = ""; }; + A6AF29D30B965F2E00EDBA70 /* canvasbase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = canvasbase.h; sourceTree = ""; }; + A6AF29D40B965F2E00EDBA70 /* color.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = color.cpp; sourceTree = ""; }; + A6AF29D50B965F2E00EDBA70 /* color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = color.h; sourceTree = ""; }; + A6AF29D60B965F2E00EDBA70 /* context.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = context.cpp; sourceTree = ""; }; + A6AF29D70B965F2E00EDBA70 /* context.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = context.h; sourceTree = ""; }; + A6AF29D80B965F2E00EDBA70 /* curve_helper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = curve_helper.cpp; sourceTree = ""; }; + A6AF29D90B965F2E00EDBA70 /* curve_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curve_helper.h; sourceTree = ""; }; + A6AF29DA0B965F2E00EDBA70 /* curveset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = curveset.cpp; sourceTree = ""; }; + A6AF29DB0B965F2E00EDBA70 /* curveset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = curveset.h; sourceTree = ""; }; + A6AF29DC0B965F2E00EDBA70 /* distance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = distance.cpp; sourceTree = ""; }; + A6AF29DD0B965F2E00EDBA70 /* distance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = distance.h; sourceTree = ""; }; + A6AF29DE0B965F2E00EDBA70 /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = ""; }; + A6AF29DF0B965F2E00EDBA70 /* exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exception.h; sourceTree = ""; }; + A6AF29E00B965F2E00EDBA70 /* gamma.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamma.cpp; sourceTree = ""; }; + A6AF29E10B965F2E00EDBA70 /* gamma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamma.h; sourceTree = ""; }; + A6AF29E20B965F2E00EDBA70 /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = general.h; sourceTree = ""; }; + A6AF29E30B965F2E00EDBA70 /* gradient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gradient.cpp; sourceTree = ""; }; + A6AF29E40B965F2E00EDBA70 /* gradient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gradient.h; sourceTree = ""; }; + A6AF29E50B965F2E00EDBA70 /* guid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guid.cpp; sourceTree = ""; }; + A6AF29E60B965F2E00EDBA70 /* guid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guid.h; sourceTree = ""; }; + A6AF29E70B965F2E00EDBA70 /* guidset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guidset.h; sourceTree = ""; }; + A6AF29E80B965F2E00EDBA70 /* importer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importer.cpp; sourceTree = ""; }; + A6AF29E90B965F2E00EDBA70 /* importer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importer.h; sourceTree = ""; }; + A6AF29EA0B965F2E00EDBA70 /* interpolation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interpolation.h; sourceTree = ""; }; + A6AF29EB0B965F2E00EDBA70 /* keyframe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = keyframe.cpp; sourceTree = ""; }; + A6AF29EC0B965F2E00EDBA70 /* keyframe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keyframe.h; sourceTree = ""; }; + A6AF29ED0B965F2E00EDBA70 /* layer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer.cpp; sourceTree = ""; }; + A6AF29EE0B965F2E00EDBA70 /* layer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer.h; sourceTree = ""; }; + A6AF29EF0B965F2E00EDBA70 /* layer_bitmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_bitmap.cpp; sourceTree = ""; }; + A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_bitmap.h; sourceTree = ""; }; + A6AF29F10B965F2E00EDBA70 /* layer_composite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_composite.cpp; sourceTree = ""; }; + A6AF29F20B965F2E00EDBA70 /* layer_composite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_composite.h; sourceTree = ""; }; + A6AF29F30B965F2E00EDBA70 /* layer_mime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_mime.cpp; sourceTree = ""; }; + A6AF29F40B965F2E00EDBA70 /* layer_mime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_mime.h; sourceTree = ""; }; + A6AF29F50B965F2E00EDBA70 /* layer_motionblur.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_motionblur.cpp; sourceTree = ""; }; + A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_motionblur.h; sourceTree = ""; }; + A6AF29F70B965F2E00EDBA70 /* layer_pastecanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_pastecanvas.cpp; sourceTree = ""; }; + A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_pastecanvas.h; sourceTree = ""; }; + A6AF29F90B965F2E00EDBA70 /* layer_polygon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_polygon.cpp; sourceTree = ""; }; + A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_polygon.h; sourceTree = ""; }; + A6AF29FB0B965F2E00EDBA70 /* layer_shape.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_shape.cpp; sourceTree = ""; }; + A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_shape.h; sourceTree = ""; }; + A6AF29FD0B965F2E00EDBA70 /* layer_solidcolor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layer_solidcolor.cpp; sourceTree = ""; }; + A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layer_solidcolor.h; sourceTree = ""; }; + A6AF2A440B965F2F00EDBA70 /* listimporter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listimporter.cpp; sourceTree = ""; }; + A6AF2A450B965F2F00EDBA70 /* listimporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listimporter.h; sourceTree = ""; }; + A6AF2A460B965F2F00EDBA70 /* loadcanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadcanvas.cpp; sourceTree = ""; }; + A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loadcanvas.h; sourceTree = ""; }; + A6AF2A480B965F2F00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF2A490B965F2F00EDBA70 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = main.h; sourceTree = ""; }; + A6AF2A4D0B965F2F00EDBA70 /* module.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = module.cpp; sourceTree = ""; }; + A6AF2A4E0B965F2F00EDBA70 /* module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = module.h; sourceTree = ""; }; + A6AF2A4F0B965F2F00EDBA70 /* mutex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mutex.cpp; sourceTree = ""; }; + A6AF2A500B965F2F00EDBA70 /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = ""; }; + A6AF2A510B965F2F00EDBA70 /* node.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = node.cpp; sourceTree = ""; }; + A6AF2A520B965F2F00EDBA70 /* node.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = node.h; sourceTree = ""; }; + A6AF2A530B965F2F00EDBA70 /* palette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = palette.cpp; sourceTree = ""; }; + A6AF2A540B965F2F00EDBA70 /* palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = palette.h; sourceTree = ""; }; + A6AF2A550B965F2F00EDBA70 /* paramdesc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = paramdesc.cpp; sourceTree = ""; }; + A6AF2A560B965F2F00EDBA70 /* paramdesc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = paramdesc.h; sourceTree = ""; }; + A6AF2A570B965F2F00EDBA70 /* pch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pch.h; sourceTree = ""; }; + A6AF2A580B965F2F00EDBA70 /* polynomial_root.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = polynomial_root.cpp; sourceTree = ""; }; + A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = polynomial_root.h; sourceTree = ""; }; + A6AF2A5D0B965F2F00EDBA70 /* nodebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nodebase.h; sourceTree = ""; }; + A6AF2A5E0B965F2F00EDBA70 /* nodebase.px */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = nodebase.px; sourceTree = ""; }; + A6AF2A5F0B965F2F00EDBA70 /* proto.m4 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = proto.m4; sourceTree = ""; }; + A6AF2A600B965F2F00EDBA70 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = ""; }; + A6AF2A610B965F2F00EDBA70 /* real.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = real.h; sourceTree = ""; }; + A6AF2A620B965F2F00EDBA70 /* rect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rect.cpp; sourceTree = ""; }; + A6AF2A630B965F2F00EDBA70 /* rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rect.h; sourceTree = ""; }; + A6AF2A640B965F2F00EDBA70 /* renddesc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = renddesc.cpp; sourceTree = ""; }; + A6AF2A650B965F2F00EDBA70 /* renddesc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renddesc.h; sourceTree = ""; }; + A6AF2A660B965F2F00EDBA70 /* render.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = render.cpp; sourceTree = ""; }; + A6AF2A670B965F2F00EDBA70 /* render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = render.h; sourceTree = ""; }; + A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = savecanvas.cpp; sourceTree = ""; }; + A6AF2A690B965F2F00EDBA70 /* savecanvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = savecanvas.h; sourceTree = ""; }; + A6AF2A6A0B965F2F00EDBA70 /* segment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = segment.h; sourceTree = ""; }; + A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = smartfile.h; sourceTree = ""; }; + A6AF2A6C0B965F2F00EDBA70 /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = ""; }; + A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string_decl.h; sourceTree = ""; }; + A6AF2A6E0B965F2F00EDBA70 /* surface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = surface.cpp; sourceTree = ""; }; + A6AF2A6F0B965F2F00EDBA70 /* surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = surface.h; sourceTree = ""; }; + A6AF2A700B965F2F00EDBA70 /* surfacenew.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = surfacenew.cpp; sourceTree = ""; }; + A6AF2A710B965F2F00EDBA70 /* surfacenew.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = surfacenew.h; sourceTree = ""; }; + A6AF2A720B965F2F00EDBA70 /* synfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synfig.h; sourceTree = ""; }; + A6AF2A730B965F2F00EDBA70 /* synfig.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = synfig.nsh; sourceTree = ""; }; + A6AF2A740B965F2F00EDBA70 /* target.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target.cpp; sourceTree = ""; }; + A6AF2A750B965F2F00EDBA70 /* target.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target.h; sourceTree = ""; }; + A6AF2A760B965F2F00EDBA70 /* target_multi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target_multi.cpp; sourceTree = ""; }; + A6AF2A770B965F2F00EDBA70 /* target_multi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target_multi.h; sourceTree = ""; }; + A6AF2A780B965F2F00EDBA70 /* target_null.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target_null.cpp; sourceTree = ""; }; + A6AF2A790B965F2F00EDBA70 /* target_null.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target_null.h; sourceTree = ""; }; + A6AF2A7A0B965F2F00EDBA70 /* target_null_tile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target_null_tile.cpp; sourceTree = ""; }; + A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target_null_tile.h; sourceTree = ""; }; + A6AF2A7C0B965F2F00EDBA70 /* target_scanline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target_scanline.cpp; sourceTree = ""; }; + A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target_scanline.h; sourceTree = ""; }; + A6AF2A7E0B965F2F00EDBA70 /* target_tile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = target_tile.cpp; sourceTree = ""; }; + A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = target_tile.h; sourceTree = ""; }; + A6AF2A800B965F2F00EDBA70 /* time.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = time.cpp; sourceTree = ""; }; + A6AF2A810B965F2F00EDBA70 /* time.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = time.h; sourceTree = ""; }; + A6AF2A820B965F2F00EDBA70 /* timepointcollect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = timepointcollect.cpp; sourceTree = ""; }; + A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timepointcollect.h; sourceTree = ""; }; + A6AF2A840B965F2F00EDBA70 /* transform.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transform.cpp; sourceTree = ""; }; + A6AF2A850B965F2F00EDBA70 /* transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transform.h; sourceTree = ""; }; + A6AF2A860B965F2F00EDBA70 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = ""; }; + A6AF2A870B965F2F00EDBA70 /* uniqueid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uniqueid.cpp; sourceTree = ""; }; + A6AF2A880B965F2F00EDBA70 /* uniqueid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uniqueid.h; sourceTree = ""; }; + A6AF2A890B965F2F00EDBA70 /* value.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = value.cpp; sourceTree = ""; }; + A6AF2A8A0B965F2F00EDBA70 /* value.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = value.h; sourceTree = ""; }; + A6AF2A8B0B965F2F00EDBA70 /* valuenode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode.cpp; sourceTree = ""; }; + A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode.h; sourceTree = ""; }; + A6AF2A8D0B965F2F00EDBA70 /* valuenode_animated.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_animated.cpp; sourceTree = ""; }; + A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_animated.h; sourceTree = ""; }; + A6AF2A8F0B965F2F00EDBA70 /* valuenode_bline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_bline.cpp; sourceTree = ""; }; + A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_bline.h; sourceTree = ""; }; + A6AF2A910B965F2F00EDBA70 /* valuenode_composite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_composite.cpp; sourceTree = ""; }; + A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_composite.h; sourceTree = ""; }; + A6AF2A930B965F2F00EDBA70 /* valuenode_const.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_const.cpp; sourceTree = ""; }; + A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_const.h; sourceTree = ""; }; + A6AF2A950B965F2F00EDBA70 /* valuenode_dynamiclist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_dynamiclist.cpp; sourceTree = ""; }; + A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_dynamiclist.h; sourceTree = ""; }; + A6AF2A970B965F2F00EDBA70 /* valuenode_gradientrotate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_gradientrotate.cpp; sourceTree = ""; }; + A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_gradientrotate.h; sourceTree = ""; }; + A6AF2A990B965F2F00EDBA70 /* valuenode_linear.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_linear.cpp; sourceTree = ""; }; + A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_linear.h; sourceTree = ""; }; + A6AF2A9B0B965F2F00EDBA70 /* valuenode_radialcomposite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_radialcomposite.cpp; sourceTree = ""; }; + A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_radialcomposite.h; sourceTree = ""; }; + A6AF2A9D0B965F2F00EDBA70 /* valuenode_reference.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_reference.cpp; sourceTree = ""; }; + A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_reference.h; sourceTree = ""; }; + A6AF2A9F0B965F2F00EDBA70 /* valuenode_scale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_scale.cpp; sourceTree = ""; }; + A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_scale.h; sourceTree = ""; }; + A6AF2AA10B965F2F00EDBA70 /* valuenode_segcalctangent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_segcalctangent.cpp; sourceTree = ""; }; + A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_segcalctangent.h; sourceTree = ""; }; + A6AF2AA30B965F2F00EDBA70 /* valuenode_segcalcvertex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_segcalcvertex.cpp; sourceTree = ""; }; + A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_segcalcvertex.h; sourceTree = ""; }; + A6AF2AA50B965F2F00EDBA70 /* valuenode_sine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_sine.cpp; sourceTree = ""; }; + A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_sine.h; sourceTree = ""; }; + A6AF2AA70B965F2F00EDBA70 /* valuenode_stripes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_stripes.cpp; sourceTree = ""; }; + A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_stripes.h; sourceTree = ""; }; + A6AF2AA90B965F2F00EDBA70 /* valuenode_subtract.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_subtract.cpp; sourceTree = ""; }; + A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_subtract.h; sourceTree = ""; }; + A6AF2AAB0B965F2F00EDBA70 /* valuenode_timedswap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_timedswap.cpp; sourceTree = ""; }; + A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_timedswap.h; sourceTree = ""; }; + A6AF2AAD0B965F2F00EDBA70 /* valuenode_twotone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = valuenode_twotone.cpp; sourceTree = ""; }; + A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = valuenode_twotone.h; sourceTree = ""; }; + A6AF2AAF0B965F2F00EDBA70 /* vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector.h; sourceTree = ""; }; + A6AF2AB00B965F2F00EDBA70 /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = version.h; sourceTree = ""; }; + A6AF2AB10B965F2F00EDBA70 /* waypoint.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = waypoint.cpp; sourceTree = ""; }; + A6AF2AB20B965F2F00EDBA70 /* waypoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = waypoint.h; sourceTree = ""; }; + A6AF2AB30B965F2F00EDBA70 /* template.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = template.cpp; sourceTree = ""; }; + A6AF2AB40B965F2F00EDBA70 /* template.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = template.h; sourceTree = ""; }; + A6AF2AB70B965F2F00EDBA70 /* synfig-main.Po */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "synfig-main.Po"; sourceTree = ""; }; + A6AF2AB90B965F2F00EDBA70 /* synfig */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = synfig; sourceTree = ""; }; + A6AF2ABA0B965F2F00EDBA70 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + A6AF2ABB0B965F2F00EDBA70 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = ""; }; + A6AF2ABC0B965F2F00EDBA70 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + A6AF2ABD0B965F2F00EDBA70 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = ""; }; + A6AF2ABE0B965F2F00EDBA70 /* synfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = synfig; sourceTree = ""; }; + A6AF2ABF0B965F2F00EDBA70 /* synfig-main.o */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.objfile"; path = "synfig-main.o"; sourceTree = ""; }; + A6AF2AC00B965F2F00EDBA70 /* tool.nsh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = tool.nsh; sourceTree = ""; }; + A6AF2F4E0B965FEF00EDBA70 /* libxml++.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "libxml++.framework"; path = "../../../Library/Frameworks/libxml++.framework"; sourceTree = SOURCE_ROOT; }; + A6AF2F4F0B965FEF00EDBA70 /* sigc++.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "sigc++.framework"; path = "../../../Library/Frameworks/sigc++.framework"; sourceTree = SOURCE_ROOT; }; + A6AF30B90B966C1800EDBA70 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = "synfig-core.xcodeproj/config.h"; sourceTree = SOURCE_ROOT; }; + A6AF30E30B966F6D00EDBA70 /* synfig */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "compiled.mach-o.executable"; path = synfig; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + A6AF20D90B965ED900EDBA70 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AF2F500B965FEF00EDBA70 /* libxml++.framework in Frameworks */, + A6AF2F510B965FEF00EDBA70 /* sigc++.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A6AF30E10B966F6D00EDBA70 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AF30E60B966F9A00EDBA70 /* synfig.framework in Frameworks */, + A6AF32370B96714900EDBA70 /* sigc++.framework in Frameworks */, + A6AF323A0B96714D00EDBA70 /* libxml++.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + A6AF11960B965E2E00EDBA70 = { + isa = PBXGroup; + children = ( + A6AF25F50B965F2D00EDBA70 /* Sources */, + A6AF2F4D0B965FC900EDBA70 /* Frameworks and Libraries */, + A6AF20DC0B965ED900EDBA70 /* Products */, + A6AF20DD0B965ED900EDBA70 /* synfig-Info.plist */, + ); + sourceTree = ""; + }; + A6AF20DC0B965ED900EDBA70 /* Products */ = { + isa = PBXGroup; + children = ( + A6AF20DB0B965ED900EDBA70 /* synfig.framework */, + A6AF30E30B966F6D00EDBA70 /* synfig */, + ); + name = Products; + sourceTree = ""; + }; + A6AF25F50B965F2D00EDBA70 /* Sources */ = { + isa = PBXGroup; + children = ( + A6AF30B90B966C1800EDBA70 /* config.h */, + A6AF25F90B965F2D00EDBA70 /* modules */, + A6AF293A0B965F2E00EDBA70 /* synfig */, + A6AF2AB30B965F2F00EDBA70 /* template.cpp */, + A6AF2AB40B965F2F00EDBA70 /* template.h */, + A6AF2AB50B965F2F00EDBA70 /* tool */, + ); + name = Sources; + path = src; + sourceTree = ""; + }; + A6AF25F90B965F2D00EDBA70 /* modules */ = { + isa = PBXGroup; + children = ( + A6AF25FA0B965F2D00EDBA70 /* example */, + A6AF260A0B965F2D00EDBA70 /* lyr_freetype */, + A6AF26210B965F2D00EDBA70 /* lyr_std */, + A6AF268E0B965F2D00EDBA70 /* Makefile */, + A6AF268F0B965F2D00EDBA70 /* Makefile.am */, + A6AF26900B965F2D00EDBA70 /* Makefile.in */, + A6AF26910B965F2D00EDBA70 /* mod_bmp */, + A6AF26AD0B965F2D00EDBA70 /* mod_dv */, + A6AF26C40B965F2D00EDBA70 /* mod_ffmpeg */, + A6AF26E00B965F2D00EDBA70 /* mod_filter */, + A6AF27150B965F2D00EDBA70 /* mod_geometry */, + A6AF27450B965F2D00EDBA70 /* mod_gif */, + A6AF275C0B965F2D00EDBA70 /* mod_gradient */, + A6AF27870B965F2D00EDBA70 /* mod_imagemagick */, + A6AF27960B965F2D00EDBA70 /* mod_jpeg */, + A6AF27B20B965F2D00EDBA70 /* mod_libavcodec */, + A6AF28940B965F2E00EDBA70 /* mod_noise */, + A6AF28B50B965F2E00EDBA70 /* mod_openexr */, + A6AF28C40B965F2E00EDBA70 /* mod_particle */, + A6AF28E00B965F2E00EDBA70 /* mod_png */, + A6AF28FC0B965F2E00EDBA70 /* mod_ppm */, + A6AF291A0B965F2E00EDBA70 /* mod_yuv420p */, + A6AF29310B965F2E00EDBA70 /* mptr_mplayer */, + A6AF29360B965F2E00EDBA70 /* synfig_modules.cfg */, + A6AF29370B965F2E00EDBA70 /* synfig_modules.cfg.in */, + A6AF29380B965F2E00EDBA70 /* template.nsh */, + A6AF29390B965F2E00EDBA70 /* untemplate.nsh */, + ); + path = modules; + sourceTree = ""; + }; + A6AF25FA0B965F2D00EDBA70 /* example */ = { + isa = PBXGroup; + children = ( + A6AF25FB0B965F2D00EDBA70 /* .deps */, + A6AF26000B965F2D00EDBA70 /* filledrect.cpp */, + A6AF26010B965F2D00EDBA70 /* filledrect.h */, + A6AF26020B965F2D00EDBA70 /* main.cpp */, + A6AF26030B965F2D00EDBA70 /* Makefile */, + A6AF26040B965F2D00EDBA70 /* Makefile.am */, + A6AF26050B965F2D00EDBA70 /* Makefile.in */, + A6AF26060B965F2D00EDBA70 /* metaballs.cpp */, + A6AF26070B965F2D00EDBA70 /* metaballs.h */, + A6AF26080B965F2D00EDBA70 /* simplecircle.cpp */, + A6AF26090B965F2D00EDBA70 /* simplecircle.h */, + ); + path = example; + sourceTree = ""; + }; + A6AF25FB0B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF25FC0B965F2D00EDBA70 /* libexample_la-filledrect.Plo */, + A6AF25FD0B965F2D00EDBA70 /* libexample_la-main.Plo */, + A6AF25FE0B965F2D00EDBA70 /* libexample_la-metaballs.Plo */, + A6AF25FF0B965F2D00EDBA70 /* libexample_la-simplecircle.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF260A0B965F2D00EDBA70 /* lyr_freetype */ = { + isa = PBXGroup; + children = ( + A6AF260B0B965F2D00EDBA70 /* .deps */, + A6AF260E0B965F2D00EDBA70 /* .libs */, + A6AF26160B965F2D00EDBA70 /* liblyr_freetype.la */, + A6AF26170B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.lo */, + A6AF26180B965F2D00EDBA70 /* liblyr_freetype_la-main.lo */, + A6AF26190B965F2D00EDBA70 /* lyr_freetype.cpp */, + A6AF261A0B965F2D00EDBA70 /* lyr_freetype.h */, + A6AF261B0B965F2D00EDBA70 /* lyr_freetype.nsh */, + A6AF261C0B965F2D00EDBA70 /* main.cpp */, + A6AF261D0B965F2D00EDBA70 /* Makefile */, + A6AF261E0B965F2D00EDBA70 /* Makefile.am */, + A6AF261F0B965F2D00EDBA70 /* Makefile.in */, + A6AF26200B965F2D00EDBA70 /* unlyr_freetype.nsh */, + ); + path = lyr_freetype; + sourceTree = ""; + }; + A6AF260B0B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF260C0B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.Plo */, + A6AF260D0B965F2D00EDBA70 /* liblyr_freetype_la-main.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF260E0B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF260F0B965F2D00EDBA70 /* liblyr_freetype.0.0.0.so */, + A6AF26100B965F2D00EDBA70 /* liblyr_freetype.0.so */, + A6AF26110B965F2D00EDBA70 /* liblyr_freetype.la */, + A6AF26120B965F2D00EDBA70 /* liblyr_freetype.lai */, + A6AF26130B965F2D00EDBA70 /* liblyr_freetype.so */, + A6AF26140B965F2D00EDBA70 /* liblyr_freetype_la-lyr_freetype.o */, + A6AF26150B965F2D00EDBA70 /* liblyr_freetype_la-main.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF26210B965F2D00EDBA70 /* lyr_std */ = { + isa = PBXGroup; + children = ( + A6AF26220B965F2D00EDBA70 /* .deps */, + A6AF26360B965F2D00EDBA70 /* .libs */, + A6AF264F0B965F2D00EDBA70 /* bevel.cpp */, + A6AF26500B965F2D00EDBA70 /* bevel.h */, + A6AF26510B965F2D00EDBA70 /* booleancurve.cpp */, + A6AF26520B965F2D00EDBA70 /* booleancurve.h */, + A6AF26530B965F2D00EDBA70 /* clamp.cpp */, + A6AF26540B965F2D00EDBA70 /* clamp.h */, + A6AF26550B965F2D00EDBA70 /* import.cpp */, + A6AF26560B965F2D00EDBA70 /* import.h */, + A6AF26570B965F2D00EDBA70 /* insideout.cpp */, + A6AF26580B965F2D00EDBA70 /* insideout.h */, + A6AF26590B965F2D00EDBA70 /* julia.cpp */, + A6AF265A0B965F2D00EDBA70 /* julia.h */, + A6AF265B0B965F2D00EDBA70 /* liblyr_std.la */, + A6AF265C0B965F2D00EDBA70 /* liblyr_std_la-bevel.lo */, + A6AF265D0B965F2D00EDBA70 /* liblyr_std_la-booleancurve.lo */, + A6AF265E0B965F2D00EDBA70 /* liblyr_std_la-clamp.lo */, + A6AF265F0B965F2D00EDBA70 /* liblyr_std_la-import.lo */, + A6AF26600B965F2D00EDBA70 /* liblyr_std_la-insideout.lo */, + A6AF26610B965F2D00EDBA70 /* liblyr_std_la-julia.lo */, + A6AF26620B965F2D00EDBA70 /* liblyr_std_la-main.lo */, + A6AF26630B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.lo */, + A6AF26640B965F2D00EDBA70 /* liblyr_std_la-rotate.lo */, + A6AF26650B965F2D00EDBA70 /* liblyr_std_la-shade.lo */, + A6AF26660B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.lo */, + A6AF26670B965F2D00EDBA70 /* liblyr_std_la-stretch.lo */, + A6AF26680B965F2D00EDBA70 /* liblyr_std_la-supersample.lo */, + A6AF26690B965F2D00EDBA70 /* liblyr_std_la-timeloop.lo */, + A6AF266A0B965F2D00EDBA70 /* liblyr_std_la-translate.lo */, + A6AF266B0B965F2D00EDBA70 /* liblyr_std_la-twirl.lo */, + A6AF266C0B965F2D00EDBA70 /* liblyr_std_la-warp.lo */, + A6AF266D0B965F2D00EDBA70 /* liblyr_std_la-xorpattern.lo */, + A6AF266E0B965F2D00EDBA70 /* liblyr_std_la-zoom.lo */, + A6AF266F0B965F2D00EDBA70 /* lyr_std.nsh */, + A6AF26700B965F2D00EDBA70 /* main.cpp */, + A6AF26710B965F2D00EDBA70 /* Makefile */, + A6AF26720B965F2D00EDBA70 /* Makefile.am */, + A6AF26730B965F2D00EDBA70 /* Makefile.in */, + A6AF26740B965F2D00EDBA70 /* mandelbrot.cpp */, + A6AF26750B965F2D00EDBA70 /* mandelbrot.h */, + A6AF26760B965F2D00EDBA70 /* radialgradient.cpp */, + A6AF26770B965F2D00EDBA70 /* rotate.cpp */, + A6AF26780B965F2D00EDBA70 /* rotate.h */, + A6AF26790B965F2D00EDBA70 /* shade.cpp */, + A6AF267A0B965F2D00EDBA70 /* shade.h */, + A6AF267B0B965F2D00EDBA70 /* sphere_distort.cpp */, + A6AF267C0B965F2D00EDBA70 /* sphere_distort.h */, + A6AF267D0B965F2D00EDBA70 /* stretch.cpp */, + A6AF267E0B965F2D00EDBA70 /* stretch.h */, + A6AF267F0B965F2D00EDBA70 /* supersample.cpp */, + A6AF26800B965F2D00EDBA70 /* supersample.h */, + A6AF26810B965F2D00EDBA70 /* timeloop.cpp */, + A6AF26820B965F2D00EDBA70 /* timeloop.h */, + A6AF26830B965F2D00EDBA70 /* translate.cpp */, + A6AF26840B965F2D00EDBA70 /* translate.h */, + A6AF26850B965F2D00EDBA70 /* twirl.cpp */, + A6AF26860B965F2D00EDBA70 /* twirl.h */, + A6AF26870B965F2D00EDBA70 /* unlyr_std.nsh */, + A6AF26880B965F2D00EDBA70 /* warp.cpp */, + A6AF26890B965F2D00EDBA70 /* warp.h */, + A6AF268A0B965F2D00EDBA70 /* xorpattern.cpp */, + A6AF268B0B965F2D00EDBA70 /* xorpattern.h */, + A6AF268C0B965F2D00EDBA70 /* zoom.cpp */, + A6AF268D0B965F2D00EDBA70 /* zoom.h */, + ); + path = lyr_std; + sourceTree = ""; + }; + A6AF26220B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF26230B965F2D00EDBA70 /* liblyr_std_la-bevel.Plo */, + A6AF26240B965F2D00EDBA70 /* liblyr_std_la-booleancurve.Plo */, + A6AF26250B965F2D00EDBA70 /* liblyr_std_la-clamp.Plo */, + A6AF26260B965F2D00EDBA70 /* liblyr_std_la-import.Plo */, + A6AF26270B965F2D00EDBA70 /* liblyr_std_la-insideout.Plo */, + A6AF26280B965F2D00EDBA70 /* liblyr_std_la-julia.Plo */, + A6AF26290B965F2D00EDBA70 /* liblyr_std_la-main.Plo */, + A6AF262A0B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.Plo */, + A6AF262B0B965F2D00EDBA70 /* liblyr_std_la-rotate.Plo */, + A6AF262C0B965F2D00EDBA70 /* liblyr_std_la-shade.Plo */, + A6AF262D0B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.Plo */, + A6AF262E0B965F2D00EDBA70 /* liblyr_std_la-stretch.Plo */, + A6AF262F0B965F2D00EDBA70 /* liblyr_std_la-supersample.Plo */, + A6AF26300B965F2D00EDBA70 /* liblyr_std_la-timeloop.Plo */, + A6AF26310B965F2D00EDBA70 /* liblyr_std_la-translate.Plo */, + A6AF26320B965F2D00EDBA70 /* liblyr_std_la-twirl.Plo */, + A6AF26330B965F2D00EDBA70 /* liblyr_std_la-warp.Plo */, + A6AF26340B965F2D00EDBA70 /* liblyr_std_la-xorpattern.Plo */, + A6AF26350B965F2D00EDBA70 /* liblyr_std_la-zoom.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF26360B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF26370B965F2D00EDBA70 /* liblyr_std.0.0.0.so */, + A6AF26380B965F2D00EDBA70 /* liblyr_std.0.so */, + A6AF26390B965F2D00EDBA70 /* liblyr_std.la */, + A6AF263A0B965F2D00EDBA70 /* liblyr_std.lai */, + A6AF263B0B965F2D00EDBA70 /* liblyr_std.so */, + A6AF263C0B965F2D00EDBA70 /* liblyr_std_la-bevel.o */, + A6AF263D0B965F2D00EDBA70 /* liblyr_std_la-booleancurve.o */, + A6AF263E0B965F2D00EDBA70 /* liblyr_std_la-clamp.o */, + A6AF263F0B965F2D00EDBA70 /* liblyr_std_la-import.o */, + A6AF26400B965F2D00EDBA70 /* liblyr_std_la-insideout.o */, + A6AF26410B965F2D00EDBA70 /* liblyr_std_la-julia.o */, + A6AF26420B965F2D00EDBA70 /* liblyr_std_la-main.o */, + A6AF26430B965F2D00EDBA70 /* liblyr_std_la-mandelbrot.o */, + A6AF26440B965F2D00EDBA70 /* liblyr_std_la-rotate.o */, + A6AF26450B965F2D00EDBA70 /* liblyr_std_la-shade.o */, + A6AF26460B965F2D00EDBA70 /* liblyr_std_la-sphere_distort.o */, + A6AF26470B965F2D00EDBA70 /* liblyr_std_la-stretch.o */, + A6AF26480B965F2D00EDBA70 /* liblyr_std_la-supersample.o */, + A6AF26490B965F2D00EDBA70 /* liblyr_std_la-timeloop.o */, + A6AF264A0B965F2D00EDBA70 /* liblyr_std_la-translate.o */, + A6AF264B0B965F2D00EDBA70 /* liblyr_std_la-twirl.o */, + A6AF264C0B965F2D00EDBA70 /* liblyr_std_la-warp.o */, + A6AF264D0B965F2D00EDBA70 /* liblyr_std_la-xorpattern.o */, + A6AF264E0B965F2D00EDBA70 /* liblyr_std_la-zoom.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF26910B965F2D00EDBA70 /* mod_bmp */ = { + isa = PBXGroup; + children = ( + A6AF26920B965F2D00EDBA70 /* .deps */, + A6AF26960B965F2D00EDBA70 /* .libs */, + A6AF269F0B965F2D00EDBA70 /* libmod_bmp.la */, + A6AF26A00B965F2D00EDBA70 /* libmod_bmp_la-main.lo */, + A6AF26A10B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.lo */, + A6AF26A20B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.lo */, + A6AF26A30B965F2D00EDBA70 /* main.cpp */, + A6AF26A40B965F2D00EDBA70 /* Makefile */, + A6AF26A50B965F2D00EDBA70 /* Makefile.am */, + A6AF26A60B965F2D00EDBA70 /* Makefile.in */, + A6AF26A70B965F2D00EDBA70 /* mod_bmp.nsh */, + A6AF26A80B965F2D00EDBA70 /* mptr_bmp.cpp */, + A6AF26A90B965F2D00EDBA70 /* mptr_bmp.h */, + A6AF26AA0B965F2D00EDBA70 /* trgt_bmp.cpp */, + A6AF26AB0B965F2D00EDBA70 /* trgt_bmp.h */, + A6AF26AC0B965F2D00EDBA70 /* unmod_bmp.nsh */, + ); + path = mod_bmp; + sourceTree = ""; + }; + A6AF26920B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF26930B965F2D00EDBA70 /* libmod_bmp_la-main.Plo */, + A6AF26940B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.Plo */, + A6AF26950B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF26960B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF26970B965F2D00EDBA70 /* libmod_bmp.0.0.0.so */, + A6AF26980B965F2D00EDBA70 /* libmod_bmp.0.so */, + A6AF26990B965F2D00EDBA70 /* libmod_bmp.la */, + A6AF269A0B965F2D00EDBA70 /* libmod_bmp.lai */, + A6AF269B0B965F2D00EDBA70 /* libmod_bmp.so */, + A6AF269C0B965F2D00EDBA70 /* libmod_bmp_la-main.o */, + A6AF269D0B965F2D00EDBA70 /* libmod_bmp_la-mptr_bmp.o */, + A6AF269E0B965F2D00EDBA70 /* libmod_bmp_la-trgt_bmp.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF26AD0B965F2D00EDBA70 /* mod_dv */ = { + isa = PBXGroup; + children = ( + A6AF26AE0B965F2D00EDBA70 /* .deps */, + A6AF26B10B965F2D00EDBA70 /* .libs */, + A6AF26B90B965F2D00EDBA70 /* libmod_dv.la */, + A6AF26BA0B965F2D00EDBA70 /* libmod_dv_la-main.lo */, + A6AF26BB0B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.lo */, + A6AF26BC0B965F2D00EDBA70 /* main.cpp */, + A6AF26BD0B965F2D00EDBA70 /* Makefile */, + A6AF26BE0B965F2D00EDBA70 /* Makefile.am */, + A6AF26BF0B965F2D00EDBA70 /* Makefile.in */, + A6AF26C00B965F2D00EDBA70 /* mod_dv.nsh */, + A6AF26C10B965F2D00EDBA70 /* trgt_dv.cpp */, + A6AF26C20B965F2D00EDBA70 /* trgt_dv.h */, + A6AF26C30B965F2D00EDBA70 /* unmod_dv.nsh */, + ); + path = mod_dv; + sourceTree = ""; + }; + A6AF26AE0B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF26AF0B965F2D00EDBA70 /* libmod_dv_la-main.Plo */, + A6AF26B00B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF26B10B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF26B20B965F2D00EDBA70 /* libmod_dv.0.0.0.so */, + A6AF26B30B965F2D00EDBA70 /* libmod_dv.0.so */, + A6AF26B40B965F2D00EDBA70 /* libmod_dv.la */, + A6AF26B50B965F2D00EDBA70 /* libmod_dv.lai */, + A6AF26B60B965F2D00EDBA70 /* libmod_dv.so */, + A6AF26B70B965F2D00EDBA70 /* libmod_dv_la-main.o */, + A6AF26B80B965F2D00EDBA70 /* libmod_dv_la-trgt_dv.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF26C40B965F2D00EDBA70 /* mod_ffmpeg */ = { + isa = PBXGroup; + children = ( + A6AF26C50B965F2D00EDBA70 /* .deps */, + A6AF26C90B965F2D00EDBA70 /* .libs */, + A6AF26D20B965F2D00EDBA70 /* libmod_ffmpeg.la */, + A6AF26D30B965F2D00EDBA70 /* libmod_ffmpeg_la-main.lo */, + A6AF26D40B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.lo */, + A6AF26D50B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.lo */, + A6AF26D60B965F2D00EDBA70 /* main.cpp */, + A6AF26D70B965F2D00EDBA70 /* Makefile */, + A6AF26D80B965F2D00EDBA70 /* Makefile.am */, + A6AF26D90B965F2D00EDBA70 /* Makefile.in */, + A6AF26DA0B965F2D00EDBA70 /* mod_ffmpeg.nsh */, + A6AF26DB0B965F2D00EDBA70 /* mptr_ffmpeg.cpp */, + A6AF26DC0B965F2D00EDBA70 /* mptr_ffmpeg.h */, + A6AF26DD0B965F2D00EDBA70 /* trgt_ffmpeg.cpp */, + A6AF26DE0B965F2D00EDBA70 /* trgt_ffmpeg.h */, + A6AF26DF0B965F2D00EDBA70 /* unmod_ffmpeg.nsh */, + ); + path = mod_ffmpeg; + sourceTree = ""; + }; + A6AF26C50B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF26C60B965F2D00EDBA70 /* libmod_ffmpeg_la-main.Plo */, + A6AF26C70B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.Plo */, + A6AF26C80B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF26C90B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF26CA0B965F2D00EDBA70 /* libmod_ffmpeg.0.0.0.so */, + A6AF26CB0B965F2D00EDBA70 /* libmod_ffmpeg.0.so */, + A6AF26CC0B965F2D00EDBA70 /* libmod_ffmpeg.la */, + A6AF26CD0B965F2D00EDBA70 /* libmod_ffmpeg.lai */, + A6AF26CE0B965F2D00EDBA70 /* libmod_ffmpeg.so */, + A6AF26CF0B965F2D00EDBA70 /* libmod_ffmpeg_la-main.o */, + A6AF26D00B965F2D00EDBA70 /* libmod_ffmpeg_la-mptr_ffmpeg.o */, + A6AF26D10B965F2D00EDBA70 /* libmod_ffmpeg_la-trgt_ffmpeg.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF26E00B965F2D00EDBA70 /* mod_filter */ = { + isa = PBXGroup; + children = ( + A6AF26E10B965F2D00EDBA70 /* .deps */, + A6AF26EA0B965F2D00EDBA70 /* .libs */, + A6AF26F80B965F2D00EDBA70 /* blur.cpp */, + A6AF26F90B965F2D00EDBA70 /* blur.h */, + A6AF26FA0B965F2D00EDBA70 /* colorcorrect.cpp */, + A6AF26FB0B965F2D00EDBA70 /* colorcorrect.h */, + A6AF26FC0B965F2D00EDBA70 /* halftone.cpp */, + A6AF26FD0B965F2D00EDBA70 /* halftone.h */, + A6AF26FE0B965F2D00EDBA70 /* halftone2.cpp */, + A6AF26FF0B965F2D00EDBA70 /* halftone2.h */, + A6AF27000B965F2D00EDBA70 /* halftone3.cpp */, + A6AF27010B965F2D00EDBA70 /* halftone3.h */, + A6AF27020B965F2D00EDBA70 /* libmod_filter.la */, + A6AF27030B965F2D00EDBA70 /* libmod_filter_la-blur.lo */, + A6AF27040B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.lo */, + A6AF27050B965F2D00EDBA70 /* libmod_filter_la-halftone.lo */, + A6AF27060B965F2D00EDBA70 /* libmod_filter_la-halftone2.lo */, + A6AF27070B965F2D00EDBA70 /* libmod_filter_la-halftone3.lo */, + A6AF27080B965F2D00EDBA70 /* libmod_filter_la-lumakey.lo */, + A6AF27090B965F2D00EDBA70 /* libmod_filter_la-main.lo */, + A6AF270A0B965F2D00EDBA70 /* libmod_filter_la-radialblur.lo */, + A6AF270B0B965F2D00EDBA70 /* lumakey.cpp */, + A6AF270C0B965F2D00EDBA70 /* lumakey.h */, + A6AF270D0B965F2D00EDBA70 /* main.cpp */, + A6AF270E0B965F2D00EDBA70 /* Makefile */, + A6AF270F0B965F2D00EDBA70 /* Makefile.am */, + A6AF27100B965F2D00EDBA70 /* Makefile.in */, + A6AF27110B965F2D00EDBA70 /* mod_filter.nsh */, + A6AF27120B965F2D00EDBA70 /* radialblur.cpp */, + A6AF27130B965F2D00EDBA70 /* radialblur.h */, + A6AF27140B965F2D00EDBA70 /* unmod_filter.nsh */, + ); + path = mod_filter; + sourceTree = ""; + }; + A6AF26E10B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF26E20B965F2D00EDBA70 /* libmod_filter_la-blur.Plo */, + A6AF26E30B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.Plo */, + A6AF26E40B965F2D00EDBA70 /* libmod_filter_la-halftone.Plo */, + A6AF26E50B965F2D00EDBA70 /* libmod_filter_la-halftone2.Plo */, + A6AF26E60B965F2D00EDBA70 /* libmod_filter_la-halftone3.Plo */, + A6AF26E70B965F2D00EDBA70 /* libmod_filter_la-lumakey.Plo */, + A6AF26E80B965F2D00EDBA70 /* libmod_filter_la-main.Plo */, + A6AF26E90B965F2D00EDBA70 /* libmod_filter_la-radialblur.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF26EA0B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF26EB0B965F2D00EDBA70 /* libmod_filter.0.0.0.so */, + A6AF26EC0B965F2D00EDBA70 /* libmod_filter.0.so */, + A6AF26ED0B965F2D00EDBA70 /* libmod_filter.la */, + A6AF26EE0B965F2D00EDBA70 /* libmod_filter.lai */, + A6AF26EF0B965F2D00EDBA70 /* libmod_filter.so */, + A6AF26F00B965F2D00EDBA70 /* libmod_filter_la-blur.o */, + A6AF26F10B965F2D00EDBA70 /* libmod_filter_la-colorcorrect.o */, + A6AF26F20B965F2D00EDBA70 /* libmod_filter_la-halftone.o */, + A6AF26F30B965F2D00EDBA70 /* libmod_filter_la-halftone2.o */, + A6AF26F40B965F2D00EDBA70 /* libmod_filter_la-halftone3.o */, + A6AF26F50B965F2D00EDBA70 /* libmod_filter_la-lumakey.o */, + A6AF26F60B965F2D00EDBA70 /* libmod_filter_la-main.o */, + A6AF26F70B965F2D00EDBA70 /* libmod_filter_la-radialblur.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF27150B965F2D00EDBA70 /* mod_geometry */ = { + isa = PBXGroup; + children = ( + A6AF27160B965F2D00EDBA70 /* .deps */, + A6AF271E0B965F2D00EDBA70 /* .libs */, + A6AF272B0B965F2D00EDBA70 /* checkerboard.cpp */, + A6AF272C0B965F2D00EDBA70 /* checkerboard.h */, + A6AF272D0B965F2D00EDBA70 /* circle.cpp */, + A6AF272E0B965F2D00EDBA70 /* circle.h */, + A6AF272F0B965F2D00EDBA70 /* libmod_geometry.la */, + A6AF27300B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.lo */, + A6AF27310B965F2D00EDBA70 /* libmod_geometry_la-circle.lo */, + A6AF27320B965F2D00EDBA70 /* libmod_geometry_la-main.lo */, + A6AF27330B965F2D00EDBA70 /* libmod_geometry_la-outline.lo */, + A6AF27340B965F2D00EDBA70 /* libmod_geometry_la-rectangle.lo */, + A6AF27350B965F2D00EDBA70 /* libmod_geometry_la-region.lo */, + A6AF27360B965F2D00EDBA70 /* libmod_geometry_la-star.lo */, + A6AF27370B965F2D00EDBA70 /* main.cpp */, + A6AF27380B965F2D00EDBA70 /* Makefile */, + A6AF27390B965F2D00EDBA70 /* Makefile.am */, + A6AF273A0B965F2D00EDBA70 /* Makefile.in */, + A6AF273B0B965F2D00EDBA70 /* mod_geometry.nsh */, + A6AF273C0B965F2D00EDBA70 /* outline.cpp */, + A6AF273D0B965F2D00EDBA70 /* outline.h */, + A6AF273E0B965F2D00EDBA70 /* rectangle.cpp */, + A6AF273F0B965F2D00EDBA70 /* rectangle.h */, + A6AF27400B965F2D00EDBA70 /* region.cpp */, + A6AF27410B965F2D00EDBA70 /* region.h */, + A6AF27420B965F2D00EDBA70 /* star.cpp */, + A6AF27430B965F2D00EDBA70 /* star.h */, + A6AF27440B965F2D00EDBA70 /* unmod_geometry.nsh */, + ); + path = mod_geometry; + sourceTree = ""; + }; + A6AF27160B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF27170B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.Plo */, + A6AF27180B965F2D00EDBA70 /* libmod_geometry_la-circle.Plo */, + A6AF27190B965F2D00EDBA70 /* libmod_geometry_la-main.Plo */, + A6AF271A0B965F2D00EDBA70 /* libmod_geometry_la-outline.Plo */, + A6AF271B0B965F2D00EDBA70 /* libmod_geometry_la-rectangle.Plo */, + A6AF271C0B965F2D00EDBA70 /* libmod_geometry_la-region.Plo */, + A6AF271D0B965F2D00EDBA70 /* libmod_geometry_la-star.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF271E0B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF271F0B965F2D00EDBA70 /* libmod_geometry.0.0.0.so */, + A6AF27200B965F2D00EDBA70 /* libmod_geometry.0.so */, + A6AF27210B965F2D00EDBA70 /* libmod_geometry.la */, + A6AF27220B965F2D00EDBA70 /* libmod_geometry.lai */, + A6AF27230B965F2D00EDBA70 /* libmod_geometry.so */, + A6AF27240B965F2D00EDBA70 /* libmod_geometry_la-checkerboard.o */, + A6AF27250B965F2D00EDBA70 /* libmod_geometry_la-circle.o */, + A6AF27260B965F2D00EDBA70 /* libmod_geometry_la-main.o */, + A6AF27270B965F2D00EDBA70 /* libmod_geometry_la-outline.o */, + A6AF27280B965F2D00EDBA70 /* libmod_geometry_la-rectangle.o */, + A6AF27290B965F2D00EDBA70 /* libmod_geometry_la-region.o */, + A6AF272A0B965F2D00EDBA70 /* libmod_geometry_la-star.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF27450B965F2D00EDBA70 /* mod_gif */ = { + isa = PBXGroup; + children = ( + A6AF27460B965F2D00EDBA70 /* .deps */, + A6AF27490B965F2D00EDBA70 /* .libs */, + A6AF27510B965F2D00EDBA70 /* libmod_gif.la */, + A6AF27520B965F2D00EDBA70 /* libmod_gif_la-main.lo */, + A6AF27530B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.lo */, + A6AF27540B965F2D00EDBA70 /* main.cpp */, + A6AF27550B965F2D00EDBA70 /* Makefile */, + A6AF27560B965F2D00EDBA70 /* Makefile.am */, + A6AF27570B965F2D00EDBA70 /* Makefile.in */, + A6AF27580B965F2D00EDBA70 /* mod_gif.nsh */, + A6AF27590B965F2D00EDBA70 /* trgt_gif.cpp */, + A6AF275A0B965F2D00EDBA70 /* trgt_gif.h */, + A6AF275B0B965F2D00EDBA70 /* unmod_gif.nsh */, + ); + path = mod_gif; + sourceTree = ""; + }; + A6AF27460B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF27470B965F2D00EDBA70 /* libmod_gif_la-main.Plo */, + A6AF27480B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF27490B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF274A0B965F2D00EDBA70 /* libmod_gif.0.0.0.so */, + A6AF274B0B965F2D00EDBA70 /* libmod_gif.0.so */, + A6AF274C0B965F2D00EDBA70 /* libmod_gif.la */, + A6AF274D0B965F2D00EDBA70 /* libmod_gif.lai */, + A6AF274E0B965F2D00EDBA70 /* libmod_gif.so */, + A6AF274F0B965F2D00EDBA70 /* libmod_gif_la-main.o */, + A6AF27500B965F2D00EDBA70 /* libmod_gif_la-trgt_gif.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF275C0B965F2D00EDBA70 /* mod_gradient */ = { + isa = PBXGroup; + children = ( + A6AF275D0B965F2D00EDBA70 /* .deps */, + A6AF27640B965F2D00EDBA70 /* .libs */, + A6AF27700B965F2D00EDBA70 /* conicalgradient.cpp */, + A6AF27710B965F2D00EDBA70 /* conicalgradient.h */, + A6AF27720B965F2D00EDBA70 /* curvegradient.cpp */, + A6AF27730B965F2D00EDBA70 /* curvegradient.h */, + A6AF27740B965F2D00EDBA70 /* libmod_gradient.la */, + A6AF27750B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.lo */, + A6AF27760B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.lo */, + A6AF27770B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.lo */, + A6AF27780B965F2D00EDBA70 /* libmod_gradient_la-main.lo */, + A6AF27790B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.lo */, + A6AF277A0B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.lo */, + A6AF277B0B965F2D00EDBA70 /* lineargradient.cpp */, + A6AF277C0B965F2D00EDBA70 /* lineargradient.h */, + A6AF277D0B965F2D00EDBA70 /* main.cpp */, + A6AF277E0B965F2D00EDBA70 /* Makefile */, + A6AF277F0B965F2D00EDBA70 /* Makefile.am */, + A6AF27800B965F2D00EDBA70 /* Makefile.in */, + A6AF27810B965F2D00EDBA70 /* mod_gradient.nsh */, + A6AF27820B965F2D00EDBA70 /* radialgradient.cpp */, + A6AF27830B965F2D00EDBA70 /* radialgradient.h */, + A6AF27840B965F2D00EDBA70 /* spiralgradient.cpp */, + A6AF27850B965F2D00EDBA70 /* spiralgradient.h */, + A6AF27860B965F2D00EDBA70 /* unmod_gradient.nsh */, + ); + path = mod_gradient; + sourceTree = ""; + }; + A6AF275D0B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF275E0B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.Plo */, + A6AF275F0B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.Plo */, + A6AF27600B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.Plo */, + A6AF27610B965F2D00EDBA70 /* libmod_gradient_la-main.Plo */, + A6AF27620B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.Plo */, + A6AF27630B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF27640B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF27650B965F2D00EDBA70 /* libmod_gradient.0.0.0.so */, + A6AF27660B965F2D00EDBA70 /* libmod_gradient.0.so */, + A6AF27670B965F2D00EDBA70 /* libmod_gradient.la */, + A6AF27680B965F2D00EDBA70 /* libmod_gradient.lai */, + A6AF27690B965F2D00EDBA70 /* libmod_gradient.so */, + A6AF276A0B965F2D00EDBA70 /* libmod_gradient_la-conicalgradient.o */, + A6AF276B0B965F2D00EDBA70 /* libmod_gradient_la-curvegradient.o */, + A6AF276C0B965F2D00EDBA70 /* libmod_gradient_la-lineargradient.o */, + A6AF276D0B965F2D00EDBA70 /* libmod_gradient_la-main.o */, + A6AF276E0B965F2D00EDBA70 /* libmod_gradient_la-radialgradient.o */, + A6AF276F0B965F2D00EDBA70 /* libmod_gradient_la-spiralgradient.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF27870B965F2D00EDBA70 /* mod_imagemagick */ = { + isa = PBXGroup; + children = ( + A6AF27880B965F2D00EDBA70 /* .deps */, + A6AF278C0B965F2D00EDBA70 /* main.cpp */, + A6AF278D0B965F2D00EDBA70 /* Makefile */, + A6AF278E0B965F2D00EDBA70 /* Makefile.am */, + A6AF278F0B965F2D00EDBA70 /* Makefile.in */, + A6AF27900B965F2D00EDBA70 /* mod_imagemagick.nsh */, + A6AF27910B965F2D00EDBA70 /* mptr_imagemagick.cpp */, + A6AF27920B965F2D00EDBA70 /* mptr_imagemagick.h */, + A6AF27930B965F2D00EDBA70 /* trgt_imagemagick.cpp */, + A6AF27940B965F2D00EDBA70 /* trgt_imagemagick.h */, + A6AF27950B965F2D00EDBA70 /* unmod_imagemagick.nsh */, + ); + path = mod_imagemagick; + sourceTree = ""; + }; + A6AF27880B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF27890B965F2D00EDBA70 /* libmod_imagemagick_la-main.Plo */, + A6AF278A0B965F2D00EDBA70 /* libmod_imagemagick_la-mptr_imagemagick.Plo */, + A6AF278B0B965F2D00EDBA70 /* libmod_imagemagick_la-trgt_imagemagick.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF27960B965F2D00EDBA70 /* mod_jpeg */ = { + isa = PBXGroup; + children = ( + A6AF27970B965F2D00EDBA70 /* .deps */, + A6AF279B0B965F2D00EDBA70 /* .libs */, + A6AF27A40B965F2D00EDBA70 /* libmod_jpeg.la */, + A6AF27A50B965F2D00EDBA70 /* libmod_jpeg_la-main.lo */, + A6AF27A60B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.lo */, + A6AF27A70B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.lo */, + A6AF27A80B965F2D00EDBA70 /* main.cpp */, + A6AF27A90B965F2D00EDBA70 /* Makefile */, + A6AF27AA0B965F2D00EDBA70 /* Makefile.am */, + A6AF27AB0B965F2D00EDBA70 /* Makefile.in */, + A6AF27AC0B965F2D00EDBA70 /* mod_jpeg.nsh */, + A6AF27AD0B965F2D00EDBA70 /* mptr_jpeg.cpp */, + A6AF27AE0B965F2D00EDBA70 /* mptr_jpeg.h */, + A6AF27AF0B965F2D00EDBA70 /* trgt_jpeg.cpp */, + A6AF27B00B965F2D00EDBA70 /* trgt_jpeg.h */, + A6AF27B10B965F2D00EDBA70 /* unmod_jpeg.nsh */, + ); + path = mod_jpeg; + sourceTree = ""; + }; + A6AF27970B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF27980B965F2D00EDBA70 /* libmod_jpeg_la-main.Plo */, + A6AF27990B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.Plo */, + A6AF279A0B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF279B0B965F2D00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF279C0B965F2D00EDBA70 /* libmod_jpeg.0.0.0.so */, + A6AF279D0B965F2D00EDBA70 /* libmod_jpeg.0.so */, + A6AF279E0B965F2D00EDBA70 /* libmod_jpeg.la */, + A6AF279F0B965F2D00EDBA70 /* libmod_jpeg.lai */, + A6AF27A00B965F2D00EDBA70 /* libmod_jpeg.so */, + A6AF27A10B965F2D00EDBA70 /* libmod_jpeg_la-main.o */, + A6AF27A20B965F2D00EDBA70 /* libmod_jpeg_la-mptr_jpeg.o */, + A6AF27A30B965F2D00EDBA70 /* libmod_jpeg_la-trgt_jpeg.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF27B20B965F2D00EDBA70 /* mod_libavcodec */ = { + isa = PBXGroup; + children = ( + A6AF27B30B965F2D00EDBA70 /* .deps */, + A6AF27B70B965F2D00EDBA70 /* libavcodec */, + A6AF28430B965F2E00EDBA70 /* libavformat */, + A6AF288A0B965F2E00EDBA70 /* main.cpp */, + A6AF288B0B965F2E00EDBA70 /* Makefile */, + A6AF288C0B965F2E00EDBA70 /* Makefile.am */, + A6AF288D0B965F2E00EDBA70 /* Makefile.in */, + A6AF288E0B965F2E00EDBA70 /* mod_libavcodec.nsh */, + A6AF288F0B965F2E00EDBA70 /* mptr.cpp */, + A6AF28900B965F2E00EDBA70 /* mptr.h */, + A6AF28910B965F2E00EDBA70 /* trgt_av.cpp */, + A6AF28920B965F2E00EDBA70 /* trgt_av.h */, + A6AF28930B965F2E00EDBA70 /* unmod_libavcodec.nsh */, + ); + path = mod_libavcodec; + sourceTree = ""; + }; + A6AF27B30B965F2D00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF27B40B965F2D00EDBA70 /* libmod_libavcodec_la-main.Plo */, + A6AF27B50B965F2D00EDBA70 /* libmod_libavcodec_la-mptr.Plo */, + A6AF27B60B965F2D00EDBA70 /* libmod_libavcodec_la-trgt_av.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF27B70B965F2D00EDBA70 /* libavcodec */ = { + isa = PBXGroup; + children = ( + A6AF27B80B965F2D00EDBA70 /* 4xm.c */, + A6AF27B90B965F2D00EDBA70 /* a52dec.c */, + A6AF27BA0B965F2D00EDBA70 /* ac3.h */, + A6AF27BB0B965F2D00EDBA70 /* ac3dec.c */, + A6AF27BC0B965F2D00EDBA70 /* ac3enc.c */, + A6AF27BD0B965F2D00EDBA70 /* ac3tab.h */, + A6AF27BE0B965F2D00EDBA70 /* adpcm.c */, + A6AF27BF0B965F2D00EDBA70 /* allcodecs.c */, + A6AF27C00B965F2D00EDBA70 /* amr.c */, + A6AF27C10B965F2D00EDBA70 /* apiexample.c */, + A6AF27C20B965F2D00EDBA70 /* asv1.c */, + A6AF27C30B965F2D00EDBA70 /* avcodec.c */, + A6AF27C40B965F2D00EDBA70 /* avcodec.h */, + A6AF27C50B965F2D00EDBA70 /* bswap.h */, + A6AF27C60B965F2D00EDBA70 /* cabac.c */, + A6AF27C70B965F2D00EDBA70 /* cabac.h */, + A6AF27C80B965F2D00EDBA70 /* cljr.c */, + A6AF27C90B965F2D00EDBA70 /* common.c */, + A6AF27CA0B965F2D00EDBA70 /* common.h */, + A6AF27CB0B965F2D00EDBA70 /* cyuv.c */, + A6AF27CC0B965F2D00EDBA70 /* dct-test.c */, + A6AF27CD0B965F2D00EDBA70 /* Doxyfile */, + A6AF27CE0B965F2D00EDBA70 /* dpcm.c */, + A6AF27CF0B965F2D00EDBA70 /* dsputil.c */, + A6AF27D00B965F2E00EDBA70 /* dsputil.h */, + A6AF27D10B965F2E00EDBA70 /* dv.c */, + A6AF27D20B965F2E00EDBA70 /* dvdata.h */, + A6AF27D30B965F2E00EDBA70 /* error_resilience.c */, + A6AF27D40B965F2E00EDBA70 /* eval.c */, + A6AF27D50B965F2E00EDBA70 /* faad.c */, + A6AF27D60B965F2E00EDBA70 /* fastmemcpy.h */, + A6AF27D70B965F2E00EDBA70 /* fdctref.c */, + A6AF27D80B965F2E00EDBA70 /* fft-test.c */, + A6AF27D90B965F2E00EDBA70 /* fft.c */, + A6AF27DA0B965F2E00EDBA70 /* ffv1.c */, + A6AF27DB0B965F2E00EDBA70 /* golomb.c */, + A6AF27DC0B965F2E00EDBA70 /* golomb.h */, + A6AF27DD0B965F2E00EDBA70 /* h263.c */, + A6AF27DE0B965F2E00EDBA70 /* h263data.h */, + A6AF27DF0B965F2E00EDBA70 /* h263dec.c */, + A6AF27E00B965F2E00EDBA70 /* h264.c */, + A6AF27E10B965F2E00EDBA70 /* h264data.h */, + A6AF27E20B965F2E00EDBA70 /* huffyuv.c */, + A6AF27E30B965F2E00EDBA70 /* i386 */, + A6AF27F00B965F2E00EDBA70 /* imgconvert.c */, + A6AF27F10B965F2E00EDBA70 /* imgconvert_template.h */, + A6AF27F20B965F2E00EDBA70 /* imgresample.c */, + A6AF27F30B965F2E00EDBA70 /* indeo3.c */, + A6AF27F40B965F2E00EDBA70 /* indeo3data.h */, + A6AF27F50B965F2E00EDBA70 /* interplayvideo.c */, + A6AF27F60B965F2E00EDBA70 /* jfdctfst.c */, + A6AF27F70B965F2E00EDBA70 /* jfdctint.c */, + A6AF27F80B965F2E00EDBA70 /* jrevdct.c */, + A6AF27F90B965F2E00EDBA70 /* liba52 */, + A6AF28090B965F2E00EDBA70 /* libpostproc */, + A6AF28100B965F2E00EDBA70 /* mace.c */, + A6AF28110B965F2E00EDBA70 /* Makefile */, + A6AF28120B965F2E00EDBA70 /* Makefile.am */, + A6AF28130B965F2E00EDBA70 /* mdct.c */, + A6AF28140B965F2E00EDBA70 /* mdec.c */, + A6AF28150B965F2E00EDBA70 /* mem.c */, + A6AF28160B965F2E00EDBA70 /* mjpeg.c */, + A6AF28170B965F2E00EDBA70 /* motion_est.c */, + A6AF28180B965F2E00EDBA70 /* motion_est_template.c */, + A6AF28190B965F2E00EDBA70 /* motion_test.c */, + A6AF281A0B965F2E00EDBA70 /* mp3lameaudio.c */, + A6AF281B0B965F2E00EDBA70 /* mpeg12.c */, + A6AF281C0B965F2E00EDBA70 /* mpeg12data.h */, + A6AF281D0B965F2E00EDBA70 /* mpeg4data.h */, + A6AF281E0B965F2E00EDBA70 /* mpegaudio.c */, + A6AF281F0B965F2E00EDBA70 /* mpegaudio.h */, + A6AF28200B965F2E00EDBA70 /* mpegaudiodec.c */, + A6AF28210B965F2E00EDBA70 /* mpegaudiodectab.h */, + A6AF28220B965F2E00EDBA70 /* mpegaudiotab.h */, + A6AF28230B965F2E00EDBA70 /* mpegvideo.c */, + A6AF28240B965F2E00EDBA70 /* mpegvideo.h */, + A6AF28250B965F2E00EDBA70 /* msmpeg4.c */, + A6AF28260B965F2E00EDBA70 /* msmpeg4data.h */, + A6AF28270B965F2E00EDBA70 /* oggvorbis.c */, + A6AF28280B965F2E00EDBA70 /* oggvorbis.h */, + A6AF28290B965F2E00EDBA70 /* opts.c */, + A6AF282A0B965F2E00EDBA70 /* pcm.c */, + A6AF282B0B965F2E00EDBA70 /* ra144.c */, + A6AF282C0B965F2E00EDBA70 /* ra144.h */, + A6AF282D0B965F2E00EDBA70 /* ra288.c */, + A6AF282E0B965F2E00EDBA70 /* ra288.h */, + A6AF282F0B965F2E00EDBA70 /* ratecontrol.c */, + A6AF28300B965F2E00EDBA70 /* raw.c */, + A6AF28310B965F2E00EDBA70 /* resample.c */, + A6AF28320B965F2E00EDBA70 /* roqvideo.c */, + A6AF28330B965F2E00EDBA70 /* rv10.c */, + A6AF28340B965F2E00EDBA70 /* simple_idct.c */, + A6AF28350B965F2E00EDBA70 /* simple_idct.h */, + A6AF28360B965F2E00EDBA70 /* svq1.c */, + A6AF28370B965F2E00EDBA70 /* svq1_cb.h */, + A6AF28380B965F2E00EDBA70 /* svq1_vlc.h */, + A6AF28390B965F2E00EDBA70 /* svq3.c */, + A6AF283A0B965F2E00EDBA70 /* utils.c */, + A6AF283B0B965F2E00EDBA70 /* vcr1.c */, + A6AF283C0B965F2E00EDBA70 /* vp3.c */, + A6AF283D0B965F2E00EDBA70 /* vp3data.h */, + A6AF283E0B965F2E00EDBA70 /* wmadata.h */, + A6AF283F0B965F2E00EDBA70 /* wmadec.c */, + A6AF28400B965F2E00EDBA70 /* wmv2.c */, + A6AF28410B965F2E00EDBA70 /* xan.c */, + A6AF28420B965F2E00EDBA70 /* xvmcvideo.c */, + ); + path = libavcodec; + sourceTree = ""; + }; + A6AF27E30B965F2E00EDBA70 /* i386 */ = { + isa = PBXGroup; + children = ( + A6AF27E40B965F2E00EDBA70 /* cputest.c */, + A6AF27E50B965F2E00EDBA70 /* dsputil_mmx.c */, + A6AF27E60B965F2E00EDBA70 /* dsputil_mmx_avg.h */, + A6AF27E70B965F2E00EDBA70 /* dsputil_mmx_rnd.h */, + A6AF27E80B965F2E00EDBA70 /* fdct_mmx.c */, + A6AF27E90B965F2E00EDBA70 /* fft_sse.c */, + A6AF27EA0B965F2E00EDBA70 /* idct_mmx.c */, + A6AF27EB0B965F2E00EDBA70 /* mmx.h */, + A6AF27EC0B965F2E00EDBA70 /* motion_est_mmx.c */, + A6AF27ED0B965F2E00EDBA70 /* mpegvideo_mmx.c */, + A6AF27EE0B965F2E00EDBA70 /* mpegvideo_mmx_template.c */, + A6AF27EF0B965F2E00EDBA70 /* simple_idct_mmx.c */, + ); + path = i386; + sourceTree = ""; + }; + A6AF27F90B965F2E00EDBA70 /* liba52 */ = { + isa = PBXGroup; + children = ( + A6AF27FA0B965F2E00EDBA70 /* a52.h */, + A6AF27FB0B965F2E00EDBA70 /* a52_internal.h */, + A6AF27FC0B965F2E00EDBA70 /* a52_util.h */, + A6AF27FD0B965F2E00EDBA70 /* bit_allocate.c */, + A6AF27FE0B965F2E00EDBA70 /* bitstream.c */, + A6AF27FF0B965F2E00EDBA70 /* bitstream.h */, + A6AF28000B965F2E00EDBA70 /* crc.c */, + A6AF28010B965F2E00EDBA70 /* downmix.c */, + A6AF28020B965F2E00EDBA70 /* imdct.c */, + A6AF28030B965F2E00EDBA70 /* mm_accel.h */, + A6AF28040B965F2E00EDBA70 /* parse.c */, + A6AF28050B965F2E00EDBA70 /* resample.c */, + A6AF28060B965F2E00EDBA70 /* resample_c.c */, + A6AF28070B965F2E00EDBA70 /* resample_mmx.c */, + A6AF28080B965F2E00EDBA70 /* tables.h */, + ); + path = liba52; + sourceTree = ""; + }; + A6AF28090B965F2E00EDBA70 /* libpostproc */ = { + isa = PBXGroup; + children = ( + A6AF280A0B965F2E00EDBA70 /* Makefile */, + A6AF280B0B965F2E00EDBA70 /* mangle.h */, + A6AF280C0B965F2E00EDBA70 /* postprocess.c */, + A6AF280D0B965F2E00EDBA70 /* postprocess.h */, + A6AF280E0B965F2E00EDBA70 /* postprocess_internal.h */, + A6AF280F0B965F2E00EDBA70 /* postprocess_template.c */, + ); + path = libpostproc; + sourceTree = ""; + }; + A6AF28430B965F2E00EDBA70 /* libavformat */ = { + isa = PBXGroup; + children = ( + A6AF28440B965F2E00EDBA70 /* 4xm.c */, + A6AF28450B965F2E00EDBA70 /* allformats.c */, + A6AF28460B965F2E00EDBA70 /* amr.c */, + A6AF28470B965F2E00EDBA70 /* asf.c */, + A6AF28480B965F2E00EDBA70 /* au.c */, + A6AF28490B965F2E00EDBA70 /* audio.c */, + A6AF284A0B965F2E00EDBA70 /* avformat.h */, + A6AF284B0B965F2E00EDBA70 /* avi.h */, + A6AF284C0B965F2E00EDBA70 /* avidec.c */, + A6AF284D0B965F2E00EDBA70 /* avienc.c */, + A6AF284E0B965F2E00EDBA70 /* avio.c */, + A6AF284F0B965F2E00EDBA70 /* avio.h */, + A6AF28500B965F2E00EDBA70 /* aviobuf.c */, + A6AF28510B965F2E00EDBA70 /* barpainet.c */, + A6AF28520B965F2E00EDBA70 /* barpainet.h */, + A6AF28530B965F2E00EDBA70 /* beosaudio.cpp */, + A6AF28540B965F2E00EDBA70 /* crc.c */, + A6AF28550B965F2E00EDBA70 /* cutils.c */, + A6AF28560B965F2E00EDBA70 /* dv.c */, + A6AF28570B965F2E00EDBA70 /* dv1394.c */, + A6AF28580B965F2E00EDBA70 /* dv1394.h */, + A6AF28590B965F2E00EDBA70 /* dvcore.c */, + A6AF285A0B965F2E00EDBA70 /* dvcore.h */, + A6AF285B0B965F2E00EDBA70 /* ffm.c */, + A6AF285C0B965F2E00EDBA70 /* file.c */, + A6AF285D0B965F2E00EDBA70 /* flvdec.c */, + A6AF285E0B965F2E00EDBA70 /* flvenc.c */, + A6AF285F0B965F2E00EDBA70 /* framehook.c */, + A6AF28600B965F2E00EDBA70 /* framehook.h */, + A6AF28610B965F2E00EDBA70 /* gif.c */, + A6AF28620B965F2E00EDBA70 /* gifdec.c */, + A6AF28630B965F2E00EDBA70 /* grab.c */, + A6AF28640B965F2E00EDBA70 /* http.c */, + A6AF28650B965F2E00EDBA70 /* idroq.c */, + A6AF28660B965F2E00EDBA70 /* img.c */, + A6AF28670B965F2E00EDBA70 /* ipmovie.c */, + A6AF28680B965F2E00EDBA70 /* jpeg.c */, + A6AF28690B965F2E00EDBA70 /* Makefile */, + A6AF286A0B965F2E00EDBA70 /* Makefile.am */, + A6AF286B0B965F2E00EDBA70 /* mov.c */, + A6AF286C0B965F2E00EDBA70 /* movenc.c */, + A6AF286D0B965F2E00EDBA70 /* mp3.c */, + A6AF286E0B965F2E00EDBA70 /* mpeg.c */, + A6AF286F0B965F2E00EDBA70 /* mpegts.c */, + A6AF28700B965F2E00EDBA70 /* mpegts.h */, + A6AF28710B965F2E00EDBA70 /* mpegtsenc.c */, + A6AF28720B965F2E00EDBA70 /* mpjpeg.c */, + A6AF28730B965F2E00EDBA70 /* nut.c */, + A6AF28740B965F2E00EDBA70 /* ogg.c */, + A6AF28750B965F2E00EDBA70 /* os_support.c */, + A6AF28760B965F2E00EDBA70 /* os_support.h */, + A6AF28770B965F2E00EDBA70 /* png.c */, + A6AF28780B965F2E00EDBA70 /* pnm.c */, + A6AF28790B965F2E00EDBA70 /* psxstr.c */, + A6AF287A0B965F2E00EDBA70 /* raw.c */, + A6AF287B0B965F2E00EDBA70 /* rm.c */, + A6AF287C0B965F2E00EDBA70 /* rtp.c */, + A6AF287D0B965F2E00EDBA70 /* rtp.h */, + A6AF287E0B965F2E00EDBA70 /* rtpproto.c */, + A6AF287F0B965F2E00EDBA70 /* rtsp.c */, + A6AF28800B965F2E00EDBA70 /* rtsp.h */, + A6AF28810B965F2E00EDBA70 /* rtspcodes.h */, + A6AF28820B965F2E00EDBA70 /* swf.c */, + A6AF28830B965F2E00EDBA70 /* tcp.c */, + A6AF28840B965F2E00EDBA70 /* udp.c */, + A6AF28850B965F2E00EDBA70 /* utils.c */, + A6AF28860B965F2E00EDBA70 /* wav.c */, + A6AF28870B965F2E00EDBA70 /* wc3movie.c */, + A6AF28880B965F2E00EDBA70 /* yuv.c */, + A6AF28890B965F2E00EDBA70 /* yuv4mpeg.c */, + ); + path = libavformat; + sourceTree = ""; + }; + A6AF28940B965F2E00EDBA70 /* mod_noise */ = { + isa = PBXGroup; + children = ( + A6AF28950B965F2E00EDBA70 /* .deps */, + A6AF289A0B965F2E00EDBA70 /* .libs */, + A6AF28A40B965F2E00EDBA70 /* distort.cpp */, + A6AF28A50B965F2E00EDBA70 /* distort.h */, + A6AF28A60B965F2E00EDBA70 /* libmod_noise.la */, + A6AF28A70B965F2E00EDBA70 /* libmod_noise_la-distort.lo */, + A6AF28A80B965F2E00EDBA70 /* libmod_noise_la-main.lo */, + A6AF28A90B965F2E00EDBA70 /* libmod_noise_la-noise.lo */, + A6AF28AA0B965F2E00EDBA70 /* libmod_noise_la-random.lo */, + A6AF28AB0B965F2E00EDBA70 /* main.cpp */, + A6AF28AC0B965F2E00EDBA70 /* Makefile */, + A6AF28AD0B965F2E00EDBA70 /* Makefile.am */, + A6AF28AE0B965F2E00EDBA70 /* Makefile.in */, + A6AF28AF0B965F2E00EDBA70 /* mod_noise.nsh */, + A6AF28B00B965F2E00EDBA70 /* noise.cpp */, + A6AF28B10B965F2E00EDBA70 /* noise.h */, + A6AF28B20B965F2E00EDBA70 /* random.cpp */, + A6AF28B30B965F2E00EDBA70 /* random.h */, + A6AF28B40B965F2E00EDBA70 /* unmod_noise.nsh */, + ); + path = mod_noise; + sourceTree = ""; + }; + A6AF28950B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF28960B965F2E00EDBA70 /* libmod_noise_la-distort.Plo */, + A6AF28970B965F2E00EDBA70 /* libmod_noise_la-main.Plo */, + A6AF28980B965F2E00EDBA70 /* libmod_noise_la-noise.Plo */, + A6AF28990B965F2E00EDBA70 /* libmod_noise_la-random.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF289A0B965F2E00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF289B0B965F2E00EDBA70 /* libmod_noise.0.0.0.so */, + A6AF289C0B965F2E00EDBA70 /* libmod_noise.0.so */, + A6AF289D0B965F2E00EDBA70 /* libmod_noise.la */, + A6AF289E0B965F2E00EDBA70 /* libmod_noise.lai */, + A6AF289F0B965F2E00EDBA70 /* libmod_noise.so */, + A6AF28A00B965F2E00EDBA70 /* libmod_noise_la-distort.o */, + A6AF28A10B965F2E00EDBA70 /* libmod_noise_la-main.o */, + A6AF28A20B965F2E00EDBA70 /* libmod_noise_la-noise.o */, + A6AF28A30B965F2E00EDBA70 /* libmod_noise_la-random.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF28B50B965F2E00EDBA70 /* mod_openexr */ = { + isa = PBXGroup; + children = ( + A6AF28B60B965F2E00EDBA70 /* .deps */, + A6AF28BA0B965F2E00EDBA70 /* main.cpp */, + A6AF28BB0B965F2E00EDBA70 /* Makefile */, + A6AF28BC0B965F2E00EDBA70 /* Makefile.am */, + A6AF28BD0B965F2E00EDBA70 /* Makefile.in */, + A6AF28BE0B965F2E00EDBA70 /* mod_openexr.nsh */, + A6AF28BF0B965F2E00EDBA70 /* mptr_openexr.cpp */, + A6AF28C00B965F2E00EDBA70 /* mptr_openexr.h */, + A6AF28C10B965F2E00EDBA70 /* trgt_openexr.cpp */, + A6AF28C20B965F2E00EDBA70 /* trgt_openexr.h */, + A6AF28C30B965F2E00EDBA70 /* unmod_openexr.nsh */, + ); + path = mod_openexr; + sourceTree = ""; + }; + A6AF28B60B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF28B70B965F2E00EDBA70 /* libmod_openexr_la-main.Plo */, + A6AF28B80B965F2E00EDBA70 /* libmod_openexr_la-mptr_openexr.Plo */, + A6AF28B90B965F2E00EDBA70 /* libmod_openexr_la-trgt_openexr.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF28C40B965F2E00EDBA70 /* mod_particle */ = { + isa = PBXGroup; + children = ( + A6AF28C50B965F2E00EDBA70 /* .deps */, + A6AF28C90B965F2E00EDBA70 /* .libs */, + A6AF28D20B965F2E00EDBA70 /* libmod_particle.la */, + A6AF28D30B965F2E00EDBA70 /* libmod_particle_la-main.lo */, + A6AF28D40B965F2E00EDBA70 /* libmod_particle_la-plant.lo */, + A6AF28D50B965F2E00EDBA70 /* libmod_particle_la-random.lo */, + A6AF28D60B965F2E00EDBA70 /* main.cpp */, + A6AF28D70B965F2E00EDBA70 /* Makefile */, + A6AF28D80B965F2E00EDBA70 /* Makefile.am */, + A6AF28D90B965F2E00EDBA70 /* Makefile.in */, + A6AF28DA0B965F2E00EDBA70 /* mod_particle.nsh */, + A6AF28DB0B965F2E00EDBA70 /* plant.cpp */, + A6AF28DC0B965F2E00EDBA70 /* plant.h */, + A6AF28DD0B965F2E00EDBA70 /* random.cpp */, + A6AF28DE0B965F2E00EDBA70 /* random.h */, + A6AF28DF0B965F2E00EDBA70 /* unmod_particle.nsh */, + ); + path = mod_particle; + sourceTree = ""; + }; + A6AF28C50B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF28C60B965F2E00EDBA70 /* libmod_particle_la-main.Plo */, + A6AF28C70B965F2E00EDBA70 /* libmod_particle_la-plant.Plo */, + A6AF28C80B965F2E00EDBA70 /* libmod_particle_la-random.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF28C90B965F2E00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF28CA0B965F2E00EDBA70 /* libmod_particle.0.0.0.so */, + A6AF28CB0B965F2E00EDBA70 /* libmod_particle.0.so */, + A6AF28CC0B965F2E00EDBA70 /* libmod_particle.la */, + A6AF28CD0B965F2E00EDBA70 /* libmod_particle.lai */, + A6AF28CE0B965F2E00EDBA70 /* libmod_particle.so */, + A6AF28CF0B965F2E00EDBA70 /* libmod_particle_la-main.o */, + A6AF28D00B965F2E00EDBA70 /* libmod_particle_la-plant.o */, + A6AF28D10B965F2E00EDBA70 /* libmod_particle_la-random.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF28E00B965F2E00EDBA70 /* mod_png */ = { + isa = PBXGroup; + children = ( + A6AF28E10B965F2E00EDBA70 /* .deps */, + A6AF28E50B965F2E00EDBA70 /* .libs */, + A6AF28EE0B965F2E00EDBA70 /* libmod_png.la */, + A6AF28EF0B965F2E00EDBA70 /* libmod_png_la-main.lo */, + A6AF28F00B965F2E00EDBA70 /* libmod_png_la-mptr_png.lo */, + A6AF28F10B965F2E00EDBA70 /* libmod_png_la-trgt_png.lo */, + A6AF28F20B965F2E00EDBA70 /* main.cpp */, + A6AF28F30B965F2E00EDBA70 /* Makefile */, + A6AF28F40B965F2E00EDBA70 /* Makefile.am */, + A6AF28F50B965F2E00EDBA70 /* Makefile.in */, + A6AF28F60B965F2E00EDBA70 /* mod_png.nsh */, + A6AF28F70B965F2E00EDBA70 /* mptr_png.cpp */, + A6AF28F80B965F2E00EDBA70 /* mptr_png.h */, + A6AF28F90B965F2E00EDBA70 /* trgt_png.cpp */, + A6AF28FA0B965F2E00EDBA70 /* trgt_png.h */, + A6AF28FB0B965F2E00EDBA70 /* unmod_png.nsh */, + ); + path = mod_png; + sourceTree = ""; + }; + A6AF28E10B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF28E20B965F2E00EDBA70 /* libmod_png_la-main.Plo */, + A6AF28E30B965F2E00EDBA70 /* libmod_png_la-mptr_png.Plo */, + A6AF28E40B965F2E00EDBA70 /* libmod_png_la-trgt_png.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF28E50B965F2E00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF28E60B965F2E00EDBA70 /* libmod_png.0.0.0.so */, + A6AF28E70B965F2E00EDBA70 /* libmod_png.0.so */, + A6AF28E80B965F2E00EDBA70 /* libmod_png.la */, + A6AF28E90B965F2E00EDBA70 /* libmod_png.lai */, + A6AF28EA0B965F2E00EDBA70 /* libmod_png.so */, + A6AF28EB0B965F2E00EDBA70 /* libmod_png_la-main.o */, + A6AF28EC0B965F2E00EDBA70 /* libmod_png_la-mptr_png.o */, + A6AF28ED0B965F2E00EDBA70 /* libmod_png_la-trgt_png.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF28FC0B965F2E00EDBA70 /* mod_ppm */ = { + isa = PBXGroup; + children = ( + A6AF28FD0B965F2E00EDBA70 /* .deps */, + A6AF29010B965F2E00EDBA70 /* .libs */, + A6AF290A0B965F2E00EDBA70 /* libmod_ppm.la */, + A6AF290B0B965F2E00EDBA70 /* libmod_ppm_la-main.lo */, + A6AF290C0B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.lo */, + A6AF290D0B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.lo */, + A6AF290E0B965F2E00EDBA70 /* main.cpp */, + A6AF290F0B965F2E00EDBA70 /* Makefile */, + A6AF29100B965F2E00EDBA70 /* Makefile.am */, + A6AF29110B965F2E00EDBA70 /* Makefile.in */, + A6AF29120B965F2E00EDBA70 /* mod_ppm.nsh */, + A6AF29130B965F2E00EDBA70 /* mptr_ppm.cpp */, + A6AF29140B965F2E00EDBA70 /* mptr_ppm.h */, + A6AF29150B965F2E00EDBA70 /* trgt_mpg.cpp */, + A6AF29160B965F2E00EDBA70 /* trgt_mpg.h */, + A6AF29170B965F2E00EDBA70 /* trgt_ppm.cpp */, + A6AF29180B965F2E00EDBA70 /* trgt_ppm.h */, + A6AF29190B965F2E00EDBA70 /* unmod_ppm.nsh */, + ); + path = mod_ppm; + sourceTree = ""; + }; + A6AF28FD0B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF28FE0B965F2E00EDBA70 /* libmod_ppm_la-main.Plo */, + A6AF28FF0B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.Plo */, + A6AF29000B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF29010B965F2E00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF29020B965F2E00EDBA70 /* libmod_ppm.0.0.0.so */, + A6AF29030B965F2E00EDBA70 /* libmod_ppm.0.so */, + A6AF29040B965F2E00EDBA70 /* libmod_ppm.la */, + A6AF29050B965F2E00EDBA70 /* libmod_ppm.lai */, + A6AF29060B965F2E00EDBA70 /* libmod_ppm.so */, + A6AF29070B965F2E00EDBA70 /* libmod_ppm_la-main.o */, + A6AF29080B965F2E00EDBA70 /* libmod_ppm_la-mptr_ppm.o */, + A6AF29090B965F2E00EDBA70 /* libmod_ppm_la-trgt_ppm.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF291A0B965F2E00EDBA70 /* mod_yuv420p */ = { + isa = PBXGroup; + children = ( + A6AF291B0B965F2E00EDBA70 /* .deps */, + A6AF291E0B965F2E00EDBA70 /* .libs */, + A6AF29260B965F2E00EDBA70 /* libmod_yuv420p.la */, + A6AF29270B965F2E00EDBA70 /* libmod_yuv420p_la-main.lo */, + A6AF29280B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.lo */, + A6AF29290B965F2E00EDBA70 /* main.cpp */, + A6AF292A0B965F2E00EDBA70 /* Makefile */, + A6AF292B0B965F2E00EDBA70 /* Makefile.am */, + A6AF292C0B965F2E00EDBA70 /* Makefile.in */, + A6AF292D0B965F2E00EDBA70 /* mod_yuv420p.nsh */, + A6AF292E0B965F2E00EDBA70 /* trgt_yuv.cpp */, + A6AF292F0B965F2E00EDBA70 /* trgt_yuv.h */, + A6AF29300B965F2E00EDBA70 /* unmod_yuv420p.nsh */, + ); + path = mod_yuv420p; + sourceTree = ""; + }; + A6AF291B0B965F2E00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF291C0B965F2E00EDBA70 /* libmod_yuv420p_la-main.Plo */, + A6AF291D0B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.Plo */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF291E0B965F2E00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF291F0B965F2E00EDBA70 /* libmod_yuv420p.0.0.0.so */, + A6AF29200B965F2E00EDBA70 /* libmod_yuv420p.0.so */, + A6AF29210B965F2E00EDBA70 /* libmod_yuv420p.la */, + A6AF29220B965F2E00EDBA70 /* libmod_yuv420p.lai */, + A6AF29230B965F2E00EDBA70 /* libmod_yuv420p.so */, + A6AF29240B965F2E00EDBA70 /* libmod_yuv420p_la-main.o */, + A6AF29250B965F2E00EDBA70 /* libmod_yuv420p_la-trgt_yuv.o */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF29310B965F2E00EDBA70 /* mptr_mplayer */ = { + isa = PBXGroup; + children = ( + A6AF29320B965F2E00EDBA70 /* main.cpp */, + A6AF29330B965F2E00EDBA70 /* Makefile.am */, + A6AF29340B965F2E00EDBA70 /* mptr_mplayer.cpp */, + A6AF29350B965F2E00EDBA70 /* mptr_mplayer.h */, + ); + path = mptr_mplayer; + sourceTree = ""; + }; + A6AF293A0B965F2E00EDBA70 /* synfig */ = { + isa = PBXGroup; + children = ( + A6AF29CB0B965F2E00EDBA70 /* activepoint.h */, + A6AF29CC0B965F2E00EDBA70 /* angle.h */, + A6AF29CE0B965F2E00EDBA70 /* blinepoint.h */, + A6AF29D00B965F2E00EDBA70 /* blur.h */, + A6AF29D20B965F2E00EDBA70 /* canvas.h */, + A6AF29D30B965F2E00EDBA70 /* canvasbase.h */, + A6AF29D50B965F2E00EDBA70 /* color.h */, + A6AF29D70B965F2E00EDBA70 /* context.h */, + A6AF29D90B965F2E00EDBA70 /* curve_helper.h */, + A6AF29DB0B965F2E00EDBA70 /* curveset.h */, + A6AF29DD0B965F2E00EDBA70 /* distance.h */, + A6AF29DF0B965F2E00EDBA70 /* exception.h */, + A6AF29E10B965F2E00EDBA70 /* gamma.h */, + A6AF29E20B965F2E00EDBA70 /* general.h */, + A6AF29E40B965F2E00EDBA70 /* gradient.h */, + A6AF29E60B965F2E00EDBA70 /* guid.h */, + A6AF29E70B965F2E00EDBA70 /* guidset.h */, + A6AF29E90B965F2E00EDBA70 /* importer.h */, + A6AF29EA0B965F2E00EDBA70 /* interpolation.h */, + A6AF29EC0B965F2E00EDBA70 /* keyframe.h */, + A6AF29EE0B965F2E00EDBA70 /* layer.h */, + A6AF29F00B965F2E00EDBA70 /* layer_bitmap.h */, + A6AF29F20B965F2E00EDBA70 /* layer_composite.h */, + A6AF29F40B965F2E00EDBA70 /* layer_mime.h */, + A6AF29F60B965F2E00EDBA70 /* layer_motionblur.h */, + A6AF29F80B965F2E00EDBA70 /* layer_pastecanvas.h */, + A6AF29FA0B965F2E00EDBA70 /* layer_polygon.h */, + A6AF29FC0B965F2E00EDBA70 /* layer_shape.h */, + A6AF29FE0B965F2E00EDBA70 /* layer_solidcolor.h */, + A6AF2A450B965F2F00EDBA70 /* listimporter.h */, + A6AF2A470B965F2F00EDBA70 /* loadcanvas.h */, + A6AF2A490B965F2F00EDBA70 /* main.h */, + A6AF2A4E0B965F2F00EDBA70 /* module.h */, + A6AF2A500B965F2F00EDBA70 /* mutex.h */, + A6AF2A520B965F2F00EDBA70 /* node.h */, + A6AF2A540B965F2F00EDBA70 /* palette.h */, + A6AF2A560B965F2F00EDBA70 /* paramdesc.h */, + A6AF2A590B965F2F00EDBA70 /* polynomial_root.h */, + A6AF2A600B965F2F00EDBA70 /* protocol.h */, + A6AF2A610B965F2F00EDBA70 /* real.h */, + A6AF2A630B965F2F00EDBA70 /* rect.h */, + A6AF2A650B965F2F00EDBA70 /* renddesc.h */, + A6AF2A670B965F2F00EDBA70 /* render.h */, + A6AF2A690B965F2F00EDBA70 /* savecanvas.h */, + A6AF2A6A0B965F2F00EDBA70 /* segment.h */, + A6AF2A6B0B965F2F00EDBA70 /* smartfile.h */, + A6AF2A6C0B965F2F00EDBA70 /* string.h */, + A6AF2A6D0B965F2F00EDBA70 /* string_decl.h */, + A6AF2A6F0B965F2F00EDBA70 /* surface.h */, + A6AF2A720B965F2F00EDBA70 /* synfig.h */, + A6AF2A750B965F2F00EDBA70 /* target.h */, + A6AF2A770B965F2F00EDBA70 /* target_multi.h */, + A6AF2A790B965F2F00EDBA70 /* target_null.h */, + A6AF2A7B0B965F2F00EDBA70 /* target_null_tile.h */, + A6AF2A7D0B965F2F00EDBA70 /* target_scanline.h */, + A6AF2A7F0B965F2F00EDBA70 /* target_tile.h */, + A6AF2A810B965F2F00EDBA70 /* time.h */, + A6AF2A830B965F2F00EDBA70 /* timepointcollect.h */, + A6AF2A850B965F2F00EDBA70 /* transform.h */, + A6AF2A860B965F2F00EDBA70 /* types.h */, + A6AF2A880B965F2F00EDBA70 /* uniqueid.h */, + A6AF2A8A0B965F2F00EDBA70 /* value.h */, + A6AF2A8C0B965F2F00EDBA70 /* valuenode.h */, + A6AF2A8E0B965F2F00EDBA70 /* valuenode_animated.h */, + A6AF2A900B965F2F00EDBA70 /* valuenode_bline.h */, + A6AF2A920B965F2F00EDBA70 /* valuenode_composite.h */, + A6AF2A940B965F2F00EDBA70 /* valuenode_const.h */, + A6AF2A960B965F2F00EDBA70 /* valuenode_dynamiclist.h */, + A6AF2A980B965F2F00EDBA70 /* valuenode_gradientrotate.h */, + A6AF2A9A0B965F2F00EDBA70 /* valuenode_linear.h */, + A6AF2A9C0B965F2F00EDBA70 /* valuenode_radialcomposite.h */, + A6AF2A9E0B965F2F00EDBA70 /* valuenode_reference.h */, + A6AF2AA00B965F2F00EDBA70 /* valuenode_scale.h */, + A6AF2AA20B965F2F00EDBA70 /* valuenode_segcalctangent.h */, + A6AF2AA40B965F2F00EDBA70 /* valuenode_segcalcvertex.h */, + A6AF2AA60B965F2F00EDBA70 /* valuenode_sine.h */, + A6AF2AA80B965F2F00EDBA70 /* valuenode_stripes.h */, + A6AF2AAA0B965F2F00EDBA70 /* valuenode_subtract.h */, + A6AF2AAC0B965F2F00EDBA70 /* valuenode_timedswap.h */, + A6AF2AAE0B965F2F00EDBA70 /* valuenode_twotone.h */, + A6AF2AAF0B965F2F00EDBA70 /* vector.h */, + A6AF2AB00B965F2F00EDBA70 /* version.h */, + A6AF2AB20B965F2F00EDBA70 /* waypoint.h */, + A6AF29CA0B965F2E00EDBA70 /* activepoint.cpp */, + A6AF29CD0B965F2E00EDBA70 /* blinepoint.cpp */, + A6AF29CF0B965F2E00EDBA70 /* blur.cpp */, + A6AF29D10B965F2E00EDBA70 /* canvas.cpp */, + A6AF29D40B965F2E00EDBA70 /* color.cpp */, + A6AF29D60B965F2E00EDBA70 /* context.cpp */, + A6AF29D80B965F2E00EDBA70 /* curve_helper.cpp */, + A6AF29DA0B965F2E00EDBA70 /* curveset.cpp */, + A6AF29DC0B965F2E00EDBA70 /* distance.cpp */, + A6AF29DE0B965F2E00EDBA70 /* exception.cpp */, + A6AF29E00B965F2E00EDBA70 /* gamma.cpp */, + A6AF29E30B965F2E00EDBA70 /* gradient.cpp */, + A6AF29E50B965F2E00EDBA70 /* guid.cpp */, + A6AF29E80B965F2E00EDBA70 /* importer.cpp */, + A6AF29EB0B965F2E00EDBA70 /* keyframe.cpp */, + A6AF29ED0B965F2E00EDBA70 /* layer.cpp */, + A6AF29EF0B965F2E00EDBA70 /* layer_bitmap.cpp */, + A6AF29F10B965F2E00EDBA70 /* layer_composite.cpp */, + A6AF29F30B965F2E00EDBA70 /* layer_mime.cpp */, + A6AF29F50B965F2E00EDBA70 /* layer_motionblur.cpp */, + A6AF29F70B965F2E00EDBA70 /* layer_pastecanvas.cpp */, + A6AF29F90B965F2E00EDBA70 /* layer_polygon.cpp */, + A6AF29FB0B965F2E00EDBA70 /* layer_shape.cpp */, + A6AF29FD0B965F2E00EDBA70 /* layer_solidcolor.cpp */, + A6AF2A440B965F2F00EDBA70 /* listimporter.cpp */, + A6AF2A460B965F2F00EDBA70 /* loadcanvas.cpp */, + A6AF2A480B965F2F00EDBA70 /* main.cpp */, + A6AF2A4D0B965F2F00EDBA70 /* module.cpp */, + A6AF2A4F0B965F2F00EDBA70 /* mutex.cpp */, + A6AF2A510B965F2F00EDBA70 /* node.cpp */, + A6AF2A530B965F2F00EDBA70 /* palette.cpp */, + A6AF2A550B965F2F00EDBA70 /* paramdesc.cpp */, + A6AF2A570B965F2F00EDBA70 /* pch.h */, + A6AF2A580B965F2F00EDBA70 /* polynomial_root.cpp */, + A6AF2A5A0B965F2F00EDBA70 /* proto */, + A6AF2A620B965F2F00EDBA70 /* rect.cpp */, + A6AF2A640B965F2F00EDBA70 /* renddesc.cpp */, + A6AF2A660B965F2F00EDBA70 /* render.cpp */, + A6AF2A680B965F2F00EDBA70 /* savecanvas.cpp */, + A6AF2A6E0B965F2F00EDBA70 /* surface.cpp */, + A6AF2A700B965F2F00EDBA70 /* surfacenew.cpp */, + A6AF2A710B965F2F00EDBA70 /* surfacenew.h */, + A6AF2A730B965F2F00EDBA70 /* synfig.nsh */, + A6AF2A740B965F2F00EDBA70 /* target.cpp */, + A6AF2A760B965F2F00EDBA70 /* target_multi.cpp */, + A6AF2A780B965F2F00EDBA70 /* target_null.cpp */, + A6AF2A7A0B965F2F00EDBA70 /* target_null_tile.cpp */, + A6AF2A7C0B965F2F00EDBA70 /* target_scanline.cpp */, + A6AF2A7E0B965F2F00EDBA70 /* target_tile.cpp */, + A6AF2A800B965F2F00EDBA70 /* time.cpp */, + A6AF2A820B965F2F00EDBA70 /* timepointcollect.cpp */, + A6AF2A840B965F2F00EDBA70 /* transform.cpp */, + A6AF2A870B965F2F00EDBA70 /* uniqueid.cpp */, + A6AF2A890B965F2F00EDBA70 /* value.cpp */, + A6AF2A8B0B965F2F00EDBA70 /* valuenode.cpp */, + A6AF2A8D0B965F2F00EDBA70 /* valuenode_animated.cpp */, + A6AF2A8F0B965F2F00EDBA70 /* valuenode_bline.cpp */, + A6AF2A910B965F2F00EDBA70 /* valuenode_composite.cpp */, + A6AF2A930B965F2F00EDBA70 /* valuenode_const.cpp */, + A6AF2A950B965F2F00EDBA70 /* valuenode_dynamiclist.cpp */, + A6AF2A970B965F2F00EDBA70 /* valuenode_gradientrotate.cpp */, + A6AF2A990B965F2F00EDBA70 /* valuenode_linear.cpp */, + A6AF2A9B0B965F2F00EDBA70 /* valuenode_radialcomposite.cpp */, + A6AF2A9D0B965F2F00EDBA70 /* valuenode_reference.cpp */, + A6AF2A9F0B965F2F00EDBA70 /* valuenode_scale.cpp */, + A6AF2AA10B965F2F00EDBA70 /* valuenode_segcalctangent.cpp */, + A6AF2AA30B965F2F00EDBA70 /* valuenode_segcalcvertex.cpp */, + A6AF2AA50B965F2F00EDBA70 /* valuenode_sine.cpp */, + A6AF2AA70B965F2F00EDBA70 /* valuenode_stripes.cpp */, + A6AF2AA90B965F2F00EDBA70 /* valuenode_subtract.cpp */, + A6AF2AAB0B965F2F00EDBA70 /* valuenode_timedswap.cpp */, + A6AF2AAD0B965F2F00EDBA70 /* valuenode_twotone.cpp */, + A6AF2AB10B965F2F00EDBA70 /* waypoint.cpp */, + ); + path = synfig; + sourceTree = ""; + }; + A6AF2A5A0B965F2F00EDBA70 /* proto */ = { + isa = PBXGroup; + children = ( + A6AF2A5D0B965F2F00EDBA70 /* nodebase.h */, + A6AF2A5E0B965F2F00EDBA70 /* nodebase.px */, + A6AF2A5F0B965F2F00EDBA70 /* proto.m4 */, + ); + path = proto; + sourceTree = ""; + }; + A6AF2AB50B965F2F00EDBA70 /* tool */ = { + isa = PBXGroup; + children = ( + A6AF2AB60B965F2F00EDBA70 /* .deps */, + A6AF2AB80B965F2F00EDBA70 /* .libs */, + A6AF2ABA0B965F2F00EDBA70 /* main.cpp */, + A6AF2ABB0B965F2F00EDBA70 /* Makefile */, + A6AF2ABC0B965F2F00EDBA70 /* Makefile.am */, + A6AF2ABD0B965F2F00EDBA70 /* Makefile.in */, + A6AF2ABE0B965F2F00EDBA70 /* synfig */, + A6AF2ABF0B965F2F00EDBA70 /* synfig-main.o */, + A6AF2AC00B965F2F00EDBA70 /* tool.nsh */, + ); + path = tool; + sourceTree = ""; + }; + A6AF2AB60B965F2F00EDBA70 /* .deps */ = { + isa = PBXGroup; + children = ( + A6AF2AB70B965F2F00EDBA70 /* synfig-main.Po */, + ); + path = .deps; + sourceTree = ""; + }; + A6AF2AB80B965F2F00EDBA70 /* .libs */ = { + isa = PBXGroup; + children = ( + A6AF2AB90B965F2F00EDBA70 /* synfig */, + ); + path = .libs; + sourceTree = ""; + }; + A6AF2F4D0B965FC900EDBA70 /* Frameworks and Libraries */ = { + isa = PBXGroup; + children = ( + A6AF2F4E0B965FEF00EDBA70 /* libxml++.framework */, + A6AF2F4F0B965FEF00EDBA70 /* sigc++.framework */, + ); + name = "Frameworks and Libraries"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + A6AF30F10B96707300EDBA70 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AF30FE0B96709600EDBA70 /* activepoint.h in Headers */, + A6AF30FF0B96709600EDBA70 /* angle.h in Headers */, + A6AF31000B96709600EDBA70 /* blinepoint.h in Headers */, + A6AF31010B96709600EDBA70 /* blur.h in Headers */, + A6AF31020B96709600EDBA70 /* canvas.h in Headers */, + A6AF31030B96709600EDBA70 /* canvasbase.h in Headers */, + A6AF31040B96709600EDBA70 /* color.h in Headers */, + A6AF31050B96709600EDBA70 /* context.h in Headers */, + A6AF31060B96709600EDBA70 /* curve_helper.h in Headers */, + A6AF31070B96709600EDBA70 /* curveset.h in Headers */, + A6AF31080B96709600EDBA70 /* distance.h in Headers */, + A6AF31090B96709600EDBA70 /* exception.h in Headers */, + A6AF310A0B96709600EDBA70 /* gamma.h in Headers */, + A6AF310B0B96709600EDBA70 /* general.h in Headers */, + A6AF310C0B96709600EDBA70 /* gradient.h in Headers */, + A6AF310D0B96709600EDBA70 /* guid.h in Headers */, + A6AF310E0B96709600EDBA70 /* guidset.h in Headers */, + A6AF310F0B96709600EDBA70 /* importer.h in Headers */, + A6AF31100B96709600EDBA70 /* interpolation.h in Headers */, + A6AF31110B96709600EDBA70 /* keyframe.h in Headers */, + A6AF31120B96709600EDBA70 /* layer.h in Headers */, + A6AF31130B96709600EDBA70 /* layer_bitmap.h in Headers */, + A6AF31140B96709600EDBA70 /* layer_composite.h in Headers */, + A6AF31150B96709600EDBA70 /* layer_mime.h in Headers */, + A6AF31160B96709600EDBA70 /* layer_motionblur.h in Headers */, + A6AF31170B96709600EDBA70 /* layer_pastecanvas.h in Headers */, + A6AF31180B96709600EDBA70 /* layer_polygon.h in Headers */, + A6AF31190B96709600EDBA70 /* layer_shape.h in Headers */, + A6AF311A0B96709600EDBA70 /* layer_solidcolor.h in Headers */, + A6AF311B0B96709600EDBA70 /* listimporter.h in Headers */, + A6AF311C0B96709600EDBA70 /* loadcanvas.h in Headers */, + A6AF311D0B96709600EDBA70 /* main.h in Headers */, + A6AF311E0B96709600EDBA70 /* module.h in Headers */, + A6AF311F0B96709600EDBA70 /* mutex.h in Headers */, + A6AF31200B96709600EDBA70 /* node.h in Headers */, + A6AF31210B96709600EDBA70 /* palette.h in Headers */, + A6AF31220B96709600EDBA70 /* paramdesc.h in Headers */, + A6AF31230B96709600EDBA70 /* polynomial_root.h in Headers */, + A6AF31240B96709600EDBA70 /* protocol.h in Headers */, + A6AF31250B96709600EDBA70 /* real.h in Headers */, + A6AF31260B96709600EDBA70 /* rect.h in Headers */, + A6AF31270B96709600EDBA70 /* renddesc.h in Headers */, + A6AF31280B96709600EDBA70 /* render.h in Headers */, + A6AF31290B96709600EDBA70 /* savecanvas.h in Headers */, + A6AF312A0B96709600EDBA70 /* segment.h in Headers */, + A6AF312B0B96709600EDBA70 /* smartfile.h in Headers */, + A6AF312C0B96709600EDBA70 /* string.h in Headers */, + A6AF312D0B96709600EDBA70 /* string_decl.h in Headers */, + A6AF312E0B96709600EDBA70 /* surface.h in Headers */, + A6AF312F0B96709600EDBA70 /* synfig.h in Headers */, + A6AF31300B96709600EDBA70 /* target.h in Headers */, + A6AF31310B96709600EDBA70 /* target_multi.h in Headers */, + A6AF31320B96709600EDBA70 /* target_null.h in Headers */, + A6AF31330B96709600EDBA70 /* target_null_tile.h in Headers */, + A6AF31340B96709600EDBA70 /* target_scanline.h in Headers */, + A6AF31350B96709600EDBA70 /* target_tile.h in Headers */, + A6AF31360B96709600EDBA70 /* time.h in Headers */, + A6AF31370B96709600EDBA70 /* timepointcollect.h in Headers */, + A6AF31380B96709600EDBA70 /* transform.h in Headers */, + A6AF31390B96709600EDBA70 /* types.h in Headers */, + A6AF313A0B96709600EDBA70 /* uniqueid.h in Headers */, + A6AF313B0B96709600EDBA70 /* value.h in Headers */, + A6AF313C0B96709600EDBA70 /* valuenode.h in Headers */, + A6AF313D0B96709600EDBA70 /* valuenode_animated.h in Headers */, + A6AF313E0B96709600EDBA70 /* valuenode_bline.h in Headers */, + A6AF313F0B96709600EDBA70 /* valuenode_composite.h in Headers */, + A6AF31400B96709600EDBA70 /* valuenode_const.h in Headers */, + A6AF31410B96709600EDBA70 /* valuenode_dynamiclist.h in Headers */, + A6AF31420B96709600EDBA70 /* valuenode_gradientrotate.h in Headers */, + A6AF31430B96709600EDBA70 /* valuenode_linear.h in Headers */, + A6AF31440B96709600EDBA70 /* valuenode_radialcomposite.h in Headers */, + A6AF31450B96709600EDBA70 /* valuenode_reference.h in Headers */, + A6AF31460B96709600EDBA70 /* valuenode_scale.h in Headers */, + A6AF31470B96709600EDBA70 /* valuenode_segcalctangent.h in Headers */, + A6AF31480B96709600EDBA70 /* valuenode_segcalcvertex.h in Headers */, + A6AF31490B96709600EDBA70 /* valuenode_sine.h in Headers */, + A6AF314A0B96709600EDBA70 /* valuenode_stripes.h in Headers */, + A6AF314B0B96709600EDBA70 /* valuenode_subtract.h in Headers */, + A6AF314C0B96709600EDBA70 /* valuenode_timedswap.h in Headers */, + A6AF314D0B96709600EDBA70 /* valuenode_twotone.h in Headers */, + A6AF314E0B96709600EDBA70 /* vector.h in Headers */, + A6AF314F0B96709600EDBA70 /* version.h in Headers */, + A6AF31500B96709600EDBA70 /* waypoint.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + A6AF20DA0B965ED900EDBA70 /* Synfig Framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = A6AF20DE0B965ED900EDBA70 /* Build configuration list for PBXNativeTarget "Synfig Framework" */; + buildPhases = ( + A6AF30F10B96707300EDBA70 /* Headers */, + A6AF20D80B965ED900EDBA70 /* Sources */, + A6AF20D90B965ED900EDBA70 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Synfig Framework"; + productName = synfig; + productReference = A6AF20DB0B965ED900EDBA70 /* synfig.framework */; + productType = "com.apple.product-type.framework"; + }; + A6AF30E20B966F6D00EDBA70 /* Synfig Tool */ = { + isa = PBXNativeTarget; + buildConfigurationList = A6AF30EC0B966FD100EDBA70 /* Build configuration list for PBXNativeTarget "Synfig Tool" */; + buildPhases = ( + A6AF30E00B966F6D00EDBA70 /* Sources */, + A6AF30E10B966F6D00EDBA70 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A6AF30EA0B966FB200EDBA70 /* PBXTargetDependency */, + ); + name = "Synfig Tool"; + productName = "Synfig Tool"; + productReference = A6AF30E30B966F6D00EDBA70 /* synfig */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + A6AF11980B965E2E00EDBA70 /* Project object */ = { + isa = PBXProject; + buildConfigurationList = A6AF11990B965E2E00EDBA70 /* Build configuration list for PBXProject "synfig-core" */; + hasScannedForEncodings = 0; + mainGroup = A6AF11960B965E2E00EDBA70; + productRefGroup = A6AF20DC0B965ED900EDBA70 /* Products */; + projectDirPath = ""; + targets = ( + A6AF20DA0B965ED900EDBA70 /* Synfig Framework */, + A6AF30E20B966F6D00EDBA70 /* Synfig Tool */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + A6AF20D80B965ED900EDBA70 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AF2E570B965F2F00EDBA70 /* activepoint.cpp in Sources */, + A6AF2E5A0B965F2F00EDBA70 /* blinepoint.cpp in Sources */, + A6AF2E5C0B965F2F00EDBA70 /* blur.cpp in Sources */, + A6AF2E5E0B965F2F00EDBA70 /* canvas.cpp in Sources */, + A6AF2E610B965F2F00EDBA70 /* color.cpp in Sources */, + A6AF2E630B965F2F00EDBA70 /* context.cpp in Sources */, + A6AF2E650B965F2F00EDBA70 /* curve_helper.cpp in Sources */, + A6AF2E670B965F2F00EDBA70 /* curveset.cpp in Sources */, + A6AF2E690B965F2F00EDBA70 /* distance.cpp in Sources */, + A6AF2E6B0B965F2F00EDBA70 /* exception.cpp in Sources */, + A6AF2E6D0B965F2F00EDBA70 /* gamma.cpp in Sources */, + A6AF2E700B965F2F00EDBA70 /* gradient.cpp in Sources */, + A6AF2E720B965F2F00EDBA70 /* guid.cpp in Sources */, + A6AF2E750B965F2F00EDBA70 /* importer.cpp in Sources */, + A6AF2E780B965F2F00EDBA70 /* keyframe.cpp in Sources */, + A6AF2E7A0B965F2F00EDBA70 /* layer.cpp in Sources */, + A6AF2E7C0B965F2F00EDBA70 /* layer_bitmap.cpp in Sources */, + A6AF2E7E0B965F2F00EDBA70 /* layer_composite.cpp in Sources */, + A6AF2E800B965F2F00EDBA70 /* layer_mime.cpp in Sources */, + A6AF2E820B965F2F00EDBA70 /* layer_motionblur.cpp in Sources */, + A6AF2E840B965F2F00EDBA70 /* layer_pastecanvas.cpp in Sources */, + A6AF2E860B965F2F00EDBA70 /* layer_polygon.cpp in Sources */, + A6AF2E880B965F2F00EDBA70 /* layer_shape.cpp in Sources */, + A6AF2E8A0B965F2F00EDBA70 /* layer_solidcolor.cpp in Sources */, + A6AF2ED10B965F2F00EDBA70 /* listimporter.cpp in Sources */, + A6AF2ED30B965F2F00EDBA70 /* loadcanvas.cpp in Sources */, + A6AF2ED50B965F2F00EDBA70 /* main.cpp in Sources */, + A6AF2EDA0B965F2F00EDBA70 /* module.cpp in Sources */, + A6AF2EDC0B965F2F00EDBA70 /* mutex.cpp in Sources */, + A6AF2EDE0B965F2F00EDBA70 /* node.cpp in Sources */, + A6AF2EE00B965F2F00EDBA70 /* palette.cpp in Sources */, + A6AF2EE20B965F2F00EDBA70 /* paramdesc.cpp in Sources */, + A6AF2EE50B965F2F00EDBA70 /* polynomial_root.cpp in Sources */, + A6AF2EEE0B965F2F00EDBA70 /* rect.cpp in Sources */, + A6AF2EF00B965F2F00EDBA70 /* renddesc.cpp in Sources */, + A6AF2EF20B965F2F00EDBA70 /* render.cpp in Sources */, + A6AF2EF40B965F2F00EDBA70 /* savecanvas.cpp in Sources */, + A6AF2EFA0B965F2F00EDBA70 /* surface.cpp in Sources */, + A6AF2F000B965F2F00EDBA70 /* target.cpp in Sources */, + A6AF2F020B965F2F00EDBA70 /* target_multi.cpp in Sources */, + A6AF2F040B965F2F00EDBA70 /* target_null.cpp in Sources */, + A6AF2F060B965F2F00EDBA70 /* target_null_tile.cpp in Sources */, + A6AF2F080B965F2F00EDBA70 /* target_scanline.cpp in Sources */, + A6AF2F0A0B965F2F00EDBA70 /* target_tile.cpp in Sources */, + A6AF2F0C0B965F2F00EDBA70 /* time.cpp in Sources */, + A6AF2F0E0B965F2F00EDBA70 /* timepointcollect.cpp in Sources */, + A6AF2F100B965F2F00EDBA70 /* transform.cpp in Sources */, + A6AF2F130B965F2F00EDBA70 /* uniqueid.cpp in Sources */, + A6AF2F150B965F2F00EDBA70 /* value.cpp in Sources */, + A6AF2F170B965F2F00EDBA70 /* valuenode.cpp in Sources */, + A6AF2F190B965F2F00EDBA70 /* valuenode_animated.cpp in Sources */, + A6AF2F1B0B965F2F00EDBA70 /* valuenode_bline.cpp in Sources */, + A6AF2F1D0B965F2F00EDBA70 /* valuenode_composite.cpp in Sources */, + A6AF2F1F0B965F2F00EDBA70 /* valuenode_const.cpp in Sources */, + A6AF2F210B965F2F00EDBA70 /* valuenode_dynamiclist.cpp in Sources */, + A6AF2F230B965F2F00EDBA70 /* valuenode_gradientrotate.cpp in Sources */, + A6AF2F250B965F2F00EDBA70 /* valuenode_linear.cpp in Sources */, + A6AF2F270B965F2F00EDBA70 /* valuenode_radialcomposite.cpp in Sources */, + A6AF2F290B965F2F00EDBA70 /* valuenode_reference.cpp in Sources */, + A6AF2F2B0B965F2F00EDBA70 /* valuenode_scale.cpp in Sources */, + A6AF2F2D0B965F2F00EDBA70 /* valuenode_segcalctangent.cpp in Sources */, + A6AF2F2F0B965F2F00EDBA70 /* valuenode_segcalcvertex.cpp in Sources */, + A6AF2F310B965F2F00EDBA70 /* valuenode_sine.cpp in Sources */, + A6AF2F330B965F2F00EDBA70 /* valuenode_stripes.cpp in Sources */, + A6AF2F350B965F2F00EDBA70 /* valuenode_subtract.cpp in Sources */, + A6AF2F370B965F2F00EDBA70 /* valuenode_timedswap.cpp in Sources */, + A6AF2F390B965F2F00EDBA70 /* valuenode_twotone.cpp in Sources */, + A6AF2F3D0B965F2F00EDBA70 /* waypoint.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A6AF30E00B966F6D00EDBA70 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A6AF30E50B966F9300EDBA70 /* main.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + A6AF30EA0B966FB200EDBA70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = A6AF20DA0B965ED900EDBA70 /* Synfig Framework */; + targetProxy = A6AF30E90B966FB200EDBA70 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + A6AF119A0B965E2E00EDBA70 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + GCC_PREPROCESSOR_DEFINITIONS = HAVE_CONFIG_H; + HEADER_SEARCH_PATHS = ( + $SRCROOT/src, + "$SRCROOT/synfig-core.xcodeproj", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(OTHER_CFLAGS)", + "-fpermissive", + ); + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Debug; + }; + A6AF119B0B965E2E00EDBA70 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = YES; + GCC_PREPROCESSOR_DEFINITIONS = HAVE_CONFIG_H; + HEADER_SEARCH_PATHS = ( + $SRCROOT/src, + "$SRCROOT/synfig-core.xcodeproj", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(OTHER_CFLAGS)", + "-fpermissive", + ); + USER_HEADER_SEARCH_PATHS = ""; + }; + name = Release; + }; + A6AF20DF0B965ED900EDBA70 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../Library/Frameworks\""; + FRAMEWORK_VERSION = A; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ""; + INFOPLIST_FILE = "synfig-Info.plist"; + INSTALL_PATH = "$(HOME)/Library/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", + ); + LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/src/synfig/.libs\""; + OTHER_LDFLAGS = ""; + PREBINDING = NO; + PRODUCT_NAME = synfig; + ZERO_LINK = YES; + }; + name = Debug; + }; + A6AF20E00B965ED900EDBA70 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = ( + i386, + ppc, + ); + COPY_PHASE_STRIP = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../Library/Frameworks\""; + FRAMEWORK_VERSION = A; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ""; + INFOPLIST_FILE = "synfig-Info.plist"; + INSTALL_PATH = "$(HOME)/Library/Frameworks"; + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(LIBRARY_SEARCH_PATHS_QUOTED_1)", + ); + LIBRARY_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/src/synfig/.libs\""; + OTHER_LDFLAGS = ""; + PREBINDING = NO; + PRODUCT_NAME = synfig; + ZERO_LINK = NO; + }; + name = Release; + }; + A6AF30ED0B966FD100EDBA70 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../Library/Frameworks\""; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_FIX_AND_CONTINUE = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_MODEL_TUNING = G5; + GCC_OPTIMIZATION_LEVEL = 0; + INSTALL_PATH = "$(HOME)/bin"; + PREBINDING = NO; + PRODUCT_NAME = synfig; + ZERO_LINK = YES; + }; + name = Debug; + }; + A6AF30EE0B966FD100EDBA70 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = YES; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", + ); + FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SRCROOT)/../../../Library/Frameworks\""; + GCC_ENABLE_FIX_AND_CONTINUE = NO; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_MODEL_TUNING = G5; + INSTALL_PATH = "$(HOME)/bin"; + PREBINDING = NO; + PRODUCT_NAME = synfig; + ZERO_LINK = NO; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + A6AF11990B965E2E00EDBA70 /* Build configuration list for PBXProject "synfig-core" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A6AF119A0B965E2E00EDBA70 /* Debug */, + A6AF119B0B965E2E00EDBA70 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A6AF20DE0B965ED900EDBA70 /* Build configuration list for PBXNativeTarget "Synfig Framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A6AF20DF0B965ED900EDBA70 /* Debug */, + A6AF20E00B965ED900EDBA70 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + A6AF30EC0B966FD100EDBA70 /* Build configuration list for PBXNativeTarget "Synfig Tool" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A6AF30ED0B966FD100EDBA70 /* Debug */, + A6AF30EE0B966FD100EDBA70 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = A6AF11980B965E2E00EDBA70 /* Project object */; +} diff --git a/synfig-core/trunk/synfig.pbproj/config.h b/synfig-core/trunk/synfig.pbproj/config.h deleted file mode 100644 index 522c160..0000000 --- a/synfig-core/trunk/synfig.pbproj/config.h +++ /dev/null @@ -1,335 +0,0 @@ -/* config.h. Generated automatically by configure. */ -/* config-h.in. Generated automatically from configure.in by autoheader. */ -/* Define to the address where bug reports for this package should be sent. */ - -#define PACKAGE_BUGREPORT "darco@deepdarc.com" -#define PROJECT_BUILDER 1 - -/* Define to the full name of this package. */ -#define PACKAGE "synfig" - -/* Define to the version of this package. */ -#define VERSION "0.60.05-mac" - -#define LTDL_SHLIB_EXT ".so" - -#define PLATFORM_DARWIN_PPC 1 - -/* Define to empty if the keyword does not work. */ -/* #undef const */ - -/* Define as __inline if that's what the C compiler calls it. */ -/* #undef inline */ - -#define SYNFIG_LTDL_NO_STATIC - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you have the argz_append function. */ -/* #undef HAVE_ARGZ_APPEND */ - -/* Define if you have the argz_create_sep function. */ -/* #undef HAVE_ARGZ_CREATE_SEP */ - -/* Define if you have the argz_insert function. */ -/* #undef HAVE_ARGZ_INSERT */ - -/* Define if you have the argz_next function. */ -/* #undef HAVE_ARGZ_NEXT */ - -/* Define if you have the argz_stringify function. */ -/* #undef HAVE_ARGZ_STRINGIFY */ - -/* Define if you have the bcopy function. */ -/* #undef HAVE_BCOPY */ - -/* Define if you have the dlerror function. */ -/* #undef HAVE_DLERROR */ - -/* Define if you have the index function. */ -/* #undef HAVE_INDEX */ - -/* Define if you have the memcpy function. */ -#define HAVE_MEMCPY 1 - -/* Define if you have the memmove function. */ -#define HAVE_MEMMOVE 1 - -/* Define if you have the rindex function. */ -/* #undef HAVE_RINDEX */ - -/* Define if you have the strchr function. */ -#define HAVE_STRCHR 1 - -/* Define if you have the strcmp function. */ -#define HAVE_STRCMP 1 - -/* Define if you have the strrchr function. */ -#define HAVE_STRRCHR 1 - -/* Define if you have the header file. */ -/* #undef HAVE_ARGZ_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_ASSERT_H */ - -/* Define if you have the header file. */ -#define HAVE_CTYPE_H 1 - -/* Define if you have the header file. */ -#define HAVE_DIRENT_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_DL_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_DLD_H */ - -/* Define if you have the header file. */ -#undef HAVE_DLFCN_H - -/* Define if you have the header file. */ -#define HAVE_ERRNO_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_MALLOC_H */ - -/* Define if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_NDIR_H */ - -/* Define if you have the header file. */ -#define HAVE_STDIO_H 1 - -/* Define if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_STRINGS_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_SYS_DIR_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_SYS_DL_H */ - -/* Define if you have the header file. */ -/* #undef HAVE_SYS_NDIR_H */ - -/* Define if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define to the extension used for shared libraries, say, .so. */ -/* #undef LTDL_SHLIB_EXT */ - -/* Define to the name of the environment variable that determines the dynamic library search path. */ -#define LTDL_SHLIBPATH_VAR "DYLD_LIBRARY_PATH" - -/* Define to the system default library search path. */ -#define LTDL_SYSSEARCHPATH "/lib:/usr/lib" - -/* Define to the sub-directory in which libtool stores uninstalled libraries. */ -#define LTDL_OBJDIR ".libs/" - -/* Define if libtool can extract symbol lists from object files. */ -#define HAVE_PRELOADED_SYMBOLS 1 - -/* Define if you have the libdl library or equivalent. */ -/* #undef HAVE_LIBDL */ - -/* Define if you have the libdl library or equivalent. */ -/* #undef HAVE_LIBDL */ - -/* Define if you have the libdl library or equivalent. */ -/* #undef HAVE_LIBDL */ - -/* Define if you have the shl_load function. */ -/* #undef HAVE_SHL_LOAD */ - -/* Define if you have the shl_load function. */ -/* #undef HAVE_SHL_LOAD */ - -/* Define if you have the GNU dld library. */ -/* #undef HAVE_DLD */ - -/* Define if dlsym() requires a leading underscode in symbol names. */ -/* #undef NEED_USCORE */ - -/* Define if the OS needs help to load dependent libraries for dlopen(). */ -#define LTDL_DLOPEN_DEPLIBS 1 - -/* Define to a type to use for `error_t' if it is not otherwise available. */ -#define error_t int - -/* Define to 1 if you have the `argz_append' function. */ -/* #undef HAVE_ARGZ_APPEND */ - -/* Define to 1 if you have the `argz_create_sep' function. */ -/* #undef HAVE_ARGZ_CREATE_SEP */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_ARGZ_H */ - -/* Define to 1 if you have the `argz_insert' function. */ -/* #undef HAVE_ARGZ_INSERT */ - -/* Define to 1 if you have the `argz_next' function. */ -/* #undef HAVE_ARGZ_NEXT */ - -/* Define to 1 if you have the `argz_stringify' function. */ -/* #undef HAVE_ARGZ_STRINGIFY */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_ASSERT_H */ - -/* Define to 1 if you have the `bcopy' function. */ -/* #undef HAVE_BCOPY */ - -/* Define to 1 if you have the header file. */ -#define HAVE_CTYPE_H 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -#define HAVE_DIRENT_H 1 - -/* Define if you have the GNU dld library. */ -/* #undef HAVE_DLD */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_DLD_H */ - -/* Define to 1 if you have the `dlerror' function. */ -#define HAVE_DLERROR 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_DLFCN_H 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_DL_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_ERRNO_H 1 - -/* Define to 1 if the system has the type `error_t'. */ -/* #undef HAVE_ERROR_T */ - -/* Define to 1 if you have the `index' function. */ -/* #undef HAVE_INDEX */ - -/* Define to 1 if you have the header file. */ -#define HAVE_INTTYPES_H 1 - -/* Define if you have the libdl library or equivalent. */ -#define HAVE_LIBDL 1 - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_MALLOC_H */ - -#define HAVE_SIGNAL_H 1 - -/* Define to 1 if you have the `memcpy' function. */ -#define HAVE_MEMCPY 1 - -/* Define to 1 if you have the `memmove' function. */ -#define HAVE_MEMMOVE 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_MEMORY_H 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. */ -/* #undef HAVE_NDIR_H */ - -/* Define if libtool can extract symbol lists from object files. */ -#define HAVE_PRELOADED_SYMBOLS 1 - -/* Define to 1 if you have the `rindex' function. */ -/* #undef HAVE_RINDEX */ - -/* Define if you have the shl_load function. */ -/* #undef HAVE_SHL_LOAD */ - -/* Define to 1 if you have the header file. */ -#define HAVE_STDINT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDIO_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STDLIB_H 1 - -/* Define to 1 if you have the `strchr' function. */ -#define HAVE_STRCHR 1 - -/* Define to 1 if you have the `strcmp' function. */ -#define HAVE_STRCMP 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRINGS_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_STRING_H 1 - -/* Define to 1 if you have the `strrchr' function. */ -#define HAVE_STRRCHR 1 - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -/* #undef HAVE_SYS_DIR_H */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_SYS_DL_H */ - -/* Define to 1 if you have the header file, and it defines `DIR'. - */ -/* #undef HAVE_SYS_NDIR_H */ - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_STAT_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_SYS_TYPES_H 1 - -/* Define to 1 if you have the header file. */ -#define HAVE_UNISTD_H 1 - -/* Define if the OS needs help to load dependent libraries for dlopen(). */ -#define LTDL_DLOPEN_DEPLIBS 1 - -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ -#define LTDL_OBJDIR ".libs/" - -/* Define to the name of the environment variable that determines the dynamic - library search path. */ -#define LTDL_SHLIBPATH_VAR "DYLD_LIBRARY_PATH" - -/* Define to the extension used for shared libraries, say, ".so". */ -/* #undef LTDL_SHLIB_EXT */ - -/* Define to the system default library search path. */ -#define LTDL_SYSSEARCHPATH "/lib:/usr/lib" - -/* Define if dlsym() requires a leading underscode in symbol names. */ -#define NEED_USCORE 1 - - -/* Define to 1 if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define to empty if `const' does not conform to ANSI C. */ -/* #undef const */ - -/* Define to a type to use for `error_t' if it is not otherwise available. */ -#define error_t int - -#define HAVE_LIBPNG 1 -#define HAVE_OPENEXR 1 -/* Define as `__inline' if that's what the C compiler calls it, or to nothing - if it is not supported. */ -/* #undef inline */ diff --git a/synfig-core/trunk/synfig.pbproj/darco.mode1 b/synfig-core/trunk/synfig.pbproj/darco.mode1 deleted file mode 100755 index 487f18c..0000000 --- a/synfig-core/trunk/synfig.pbproj/darco.mode1 +++ /dev/null @@ -1,1121 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXRunSessionModule - Name - Run Log - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - Description - This workspace mimics that found in Xcode 1.2, with various minor improvements such as including attached editors to the build results window and the project find window. - DockingSystemVisible - - Extension - mode1 - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1 - MajorVersion - 31 - MinorVersion - 0 - Name - Default Workspace - Notifications - - OpenEditors - - Perspectives - - - ChosenToolbarItems - - active-target-popup - action - NSToolbarFlexibleSpaceItem - buildOrClean - build-and-runOrDebug - clean-target - com.apple.ide.PBXToolbarStopButton - get-info - toggle-editor - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - F550016102F0983D01000102 - F550017202F0ABE401000102 - A684452D0474A7BD00A80006 - F588A3BE02F0CCE501000102 - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 1804}, {186, 576}} - - PBXTopSmartGroupGIDs - - - GeometryConfiguration - - Frame - {{0, 0}, {203, 594}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 152 177 935 636 0 0 1152 848 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - MyNewFile14.java - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {726, 0}} - RubberWindowFrame - 152 177 935 636 0 0 1152 848 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Targets - - GeometryConfiguration - - Frame - {{0, 7}, {726, 587}} - RubberWindowFrame - 152 177 935 636 0 0 1152 848 - - Module - XCDetailModule - Proportion - 587pt - - - Proportion - 726pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - A6E2EA81076564F1002AF736 - 1CE0B1FE06471DED0097A5F4 - A6E2EA82076564F1002AF736 - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default - - - PerspectivesBarVisible - - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - - WindowJustification - 5 - WindowOrderList - - A6E2EAF7076568B6002AF736 - A6E2EB0A07656ADA002AF736 - /Users/darco/Projects/Voria/synfig/synfig.pbproj - - WindowString - 152 177 935 636 0 0 1152 848 - WindowTools - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - time.h - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD052900623707200166675 - PBXProjectModuleLabel - time.h - bookmark - A6E2EB0907656ADA002AF736 - history - - A6E2EB0807656ADA002AF736 - - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {500, 215}} - RubberWindowFrame - 27 325 500 500 0 0 1152 848 - - Module - PBXNavigatorGroup - Proportion - 215pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 222}, {500, 236}} - RubberWindowFrame - 27 325 500 500 0 0 1152 848 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 458pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - A6E2EAF7076568B6002AF736 - A6E2EAF8076568B6002AF736 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.build - WindowString - 27 325 500 500 0 0 1152 848 - WindowToolGUID - A6E2EAF7076568B6002AF736 - WindowToolIsVisible - - - - Identifier - windowTool.debugger - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {317, 164}} - {{317, 0}, {377, 164}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 164}} - {{0, 164}, {694, 216}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleDrawerSize - {100, 120} - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 380}} - RubberWindowFrame - 321 238 694 422 0 0 1440 878 - - Module - PBXDebugSessionModule - Proportion - 380pt - - - Proportion - 380pt - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - - TableOfContents - - 1CD10A99069EF8BA00B06720 - 1C0AD2AB069F1E9B00FABCE6 - 1C162984064C10D400B95A72 - 1C0AD2AC069F1E9B00FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.debug - WindowString - 321 238 694 422 0 0 1440 878 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - - - - Identifier - MENUSEPARATOR - - - Identifier - windowTool.debuggerConsole - Layout - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {440, 358}} - RubberWindowFrame - 650 41 440 400 0 0 1280 1002 - - Module - PBXDebugCLIModule - Proportion - 358pt - - - Proportion - 358pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - - TableOfContents - - 1C78EAAD065D492600B07095 - 1C78EAAE065D492600B07095 - 1C78EAAC065D492600B07095 - - WindowString - 650 41 440 400 0 0 1280 1002 - - - Identifier - windowTool.run - Layout - - - Dock - - - ContentConfiguration - - LauncherConfigVersion - 3 - PBXProjectModuleGUID - 1CD0528B0623707200166675 - PBXProjectModuleLabel - Run - Runner - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {491, 167}} - {{0, 176}, {491, 267}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {405, 443}} - {{414, 0}, {514, 443}} - - - - - GeometryConfiguration - - Frame - {{0, 0}, {458, 143}} - RubberWindowFrame - 342 452 458 185 0 0 1440 878 - - Module - PBXRunSessionModule - Proportion - 143pt - - - Proportion - 143pt - - - Name - Run Log - ServiceClasses - - PBXRunSessionModule - - StatusbarIsVisible - - TableOfContents - - 1C0AD2B3069F1EA900FABCE6 - 1C0AD2B4069F1EA900FABCE6 - 1CD0528B0623707200166675 - 1C0AD2B5069F1EA900FABCE6 - - ToolbarConfiguration - xcode.toolbar.config.run - WindowString - 342 452 458 185 0 0 1440 878 - WindowToolGUID - 1C0AD2B3069F1EA900FABCE6 - WindowToolIsVisible - - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.09500122070312 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 259pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - Layout - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CD052930623707200166675 - PBXProjectModuleLabel - Breakpoints - - GeometryConfiguration - - BreakpointsTreeTableConfiguration - - enabledColumn - 16 - breakpointColumn - 201.5830078125 - - Frame - {{0, 0}, {240, 195}} - RubberWindowFrame - 342 421 240 216 0 0 1440 878 - - Module - PBXDebugBreakpointsModule - Proportion - 195pt - - - Proportion - 195pt - - - Name - Breakpoints - ServiceClasses - - PBXDebugBreakpointsModule - - StatusbarIsVisible - - TableOfContents - - 1C0AD2AD069F1E9B00FABCE6 - 1C0AD2AE069F1E9B00FABCE6 - 1CD052930623707200166675 - - WindowString - 342 421 240 216 0 0 1440 878 - WindowToolGUID - 1C0AD2AD069F1E9B00FABCE6 - WindowToolIsVisible - - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 166pt - - - Proportion - 166pt - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 331pt - - - Proportion - 331pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - - - - - diff --git a/synfig-core/trunk/synfig.pbproj/darco.pbxuser b/synfig-core/trunk/synfig.pbproj/darco.pbxuser deleted file mode 100755 index 84e0388..0000000 --- a/synfig-core/trunk/synfig.pbproj/darco.pbxuser +++ /dev/null @@ -1,757 +0,0 @@ -// !$*UTF8*$! -{ - A60324DD04425DAD00A80006 = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {806, 2309}}"; - sepNavSelRange = "{3451, 79}"; - sepNavVisRect = "{{0, 1470}, {459, 183}}"; - sepNavWindowFrame = "{{42, 264}, {750, 558}}"; - }; - }; - A60324E904425DF300A80006 = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {938, 8161}}"; - sepNavSelRange = "{10705, 0}"; - sepNavVisRect = "{{0, 5897}, {711, 428}}"; - }; - }; - A64F6CE3052A991700140006 = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {788, 8231}}"; - sepNavSelRange = "{6111, 55}"; - sepNavVisRect = "{{0, 3321}, {711, 428}}"; - }; - }; - A65F23E605E843EC005A2B7E = { - fallbackIsa = XCSourceControlManager; - isSCMEnabled = 0; - isa = PBXSourceControlManager; - scmConfiguration = { - }; - scmType = scm.cvs; - }; - A65F23E705E843EC005A2B7E = { - indexTemplatePath = ""; - isa = PBXCodeSenseManager; - usesDefaults = 1; - wantsCodeCompletion = 1; - wantsCodeCompletionAutoSuggestions = 0; - wantsCodeCompletionCaseSensitivity = 1; - wantsCodeCompletionListAlways = 1; - wantsCodeCompletionOnlyMatchingItems = 1; - wantsCodeCompletionParametersIncluded = 1; - wantsCodeCompletionPlaceholdersInserted = 1; - wantsCodeCompletionTabCompletes = 1; - wantsIndex = 1; - }; - A6E2EB0807656ADA002AF736 = { - fRef = A60324DD04425DAD00A80006; - isa = PBXTextBookmark; - rLen = 1; - rLoc = 111; - rType = 1; - }; - A6E2EB0907656ADA002AF736 = { - fRef = A60324DD04425DAD00A80006; - isa = PBXTextBookmark; - name = "\ttemplate bool operator<(const U& rhs)const { return value_