diff --git a/Growl.framework.dSYM/Contents/Info.plist b/Growl.framework.dSYM/Contents/Info.plist
new file mode 100644
index 000000000..f4b304b0d
--- /dev/null
+++ b/Growl.framework.dSYM/Contents/Info.plist
@@ -0,0 +1,20 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ English
+ CFBundleIdentifier
+ com.apple.xcode.dsym.com.growl.growlframework
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundlePackageType
+ dSYM
+ CFBundleSignature
+ ????
+ CFBundleShortVersionString
+ 1.2.1
+ CFBundleVersion
+ 1.2.1
+
+
diff --git a/Growl.framework.dSYM/Contents/Resources/DWARF/Growl b/Growl.framework.dSYM/Contents/Resources/DWARF/Growl
new file mode 100644
index 000000000..af2d1a20b
Binary files /dev/null and b/Growl.framework.dSYM/Contents/Resources/DWARF/Growl differ
diff --git a/Growl.framework/Versions/A/Growl b/Growl.framework/Versions/A/Growl
index a0572a332..eb63866a2 100755
Binary files a/Growl.framework/Versions/A/Growl and b/Growl.framework/Versions/A/Growl differ
diff --git a/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h b/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h
index fb705097f..d4adefd43 100644
--- a/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h
+++ b/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h
@@ -14,6 +14,10 @@
#include
#include
+#ifndef GROWL_EXPORT
+#define GROWL_EXPORT __attribute__((visibility("default"))) DEPRECATED_ATTRIBUTE
+#endif
+
/*! @header GrowlApplicationBridge-Carbon.h
* @abstract Declares an API that Carbon applications can use to interact with Growl.
* @discussion GrowlApplicationBridge uses a delegate to provide information //XXX
@@ -323,6 +327,8 @@ struct Growl_Notification {
* 0.7.
*/
void (*clickCallback)(CFPropertyListRef clickContext);
+
+ CFStringRef identifier;
};
#pragma mark -
@@ -374,6 +380,8 @@ struct Growl_Notification {
(notification)->reserved = 0U; \
(notification)->isSticky = false; \
(notification)->clickContext = NULL; \
+ (notification)->clickCallback = NULL; \
+ (notification)->identifier = NULL; \
} \
} while(0)
@@ -417,7 +425,7 @@ struct Growl_Notification {
* structure, except possibly the referenceCount by calling the retain and
* release members.
*/
-Boolean Growl_SetDelegate(struct Growl_Delegate *newDelegate);
+GROWL_EXPORT Boolean Growl_SetDelegate(struct Growl_Delegate *newDelegate);
/*! @function Growl_GetDelegate
* @abstract Returns the current Growl delegate, if any.
@@ -430,7 +438,7 @@ Boolean Growl_SetDelegate(struct Growl_Delegate *newDelegate);
* delegate on your behalf. You are responsible for retaining and releasing
* the delegate as needed.
*/
-struct Growl_Delegate *Growl_GetDelegate(void);
+GROWL_EXPORT struct Growl_Delegate *Growl_GetDelegate(void);
#pragma mark -
@@ -452,7 +460,7 @@ struct Growl_Delegate *Growl_GetDelegate(void);
* If the user does choose to install Growl, the requested notification will
* be displayed once Growl is installed and running.
*/
-void Growl_PostNotification(const struct Growl_Notification *notification);
+GROWL_EXPORT void Growl_PostNotification(const struct Growl_Notification *notification);
/*! @function Growl_PostNotificationWithDictionary
* @abstract Notifies using a userInfo dictionary suitable for passing to
@@ -468,7 +476,7 @@ void Growl_PostNotification(const struct Growl_Notification *notification);
* to using CFDistributedNotificationCenter. The keys for this dictionary
* can be found in GrowlDefines.h.
*/
-void Growl_PostNotificationWithDictionary(CFDictionaryRef userInfo);
+GROWL_EXPORT void Growl_PostNotificationWithDictionary(CFDictionaryRef userInfo);
/*! @function Growl_NotifyWithTitleDescriptionNameIconPriorityStickyClickContext
* @abstract Posts a Growl notification using parameter values.
@@ -491,7 +499,7 @@ void Growl_PostNotificationWithDictionary(CFDictionaryRef userInfo);
* The icon data can be in any format supported by NSImage. As of Mac OS X
* 10.3, this includes the .icns, TIFF, JPEG, GIF, PNG, PDF, and PICT formats.
*/
-void Growl_NotifyWithTitleDescriptionNameIconPriorityStickyClickContext(
+GROWL_EXPORT void Growl_NotifyWithTitleDescriptionNameIconPriorityStickyClickContext(
/*inhale*/
CFStringRef title,
CFStringRef description,
@@ -525,7 +533,7 @@ void Growl_NotifyWithTitleDescriptionNameIconPriorityStickyClickContext(
* This function was introduced in Growl.framework 0.7.
* @result false
if registration failed (e.g. if Growl isn't installed).
*/
-Boolean Growl_RegisterWithDictionary(CFDictionaryRef regDict);
+GROWL_EXPORT Boolean Growl_RegisterWithDictionary(CFDictionaryRef regDict);
/*! @function Growl_Reregister
* @abstract Updates your registration with Growl.
@@ -543,7 +551,7 @@ Boolean Growl_RegisterWithDictionary(CFDictionaryRef regDict);
* This function is now implemented using
* Growl_RegisterWithDictionary
.
*/
-void Growl_Reregister(void);
+GROWL_EXPORT void Growl_Reregister(void);
#pragma mark -
@@ -563,14 +571,14 @@ void Growl_Reregister(void);
* @param flag true
if you want GrowlApplicationBridge to register with
* Growl when next it is ready; false
if not.
*/
-void Growl_SetWillRegisterWhenGrowlIsReady(Boolean flag);
+GROWL_EXPORT void Growl_SetWillRegisterWhenGrowlIsReady(Boolean flag);
/*! @function Growl_WillRegisterWhenGrowlIsReady
* @abstract Reports whether GrowlApplicationBridge will register with Growl
* when Growl next launches.
* @result true
if GrowlApplicationBridge will register with
* Growl when next it posts GROWL_IS_READY; false
if not.
*/
-Boolean Growl_WillRegisterWhenGrowlIsReady(void);
+GROWL_EXPORT Boolean Growl_WillRegisterWhenGrowlIsReady(void);
#pragma mark -
@@ -585,14 +593,14 @@ Boolean Growl_WillRegisterWhenGrowlIsReady(void);
* This function does not attempt to clean up the dictionary in any way - for
* example, if it is missing the GROWL_APP_NAME
key, the result
* will be missing it too. Use
- * Growl_CreateRegistrationDictionaryByFillingInDictionary:
or
+ * Growl_CreateRegistrationDictionaryByFillingInDictionary
or
* Growl_CreateRegistrationDictionaryByFillingInDictionaryRestrictedToKeys
* to try to fill in missing keys.
*
* This function was introduced in Growl.framework 0.7.
* @result A registration dictionary.
*/
-CFDictionaryRef Growl_CopyRegistrationDictionaryFromDelegate(void);
+GROWL_EXPORT CFDictionaryRef Growl_CopyRegistrationDictionaryFromDelegate(void);
/*! @function Growl_CopyRegistrationDictionaryFromBundle
* @abstract Looks in a bundle for a registration dictionary.
@@ -613,7 +621,7 @@ CFDictionaryRef Growl_CopyRegistrationDictionaryFromDelegate(void);
* This function was introduced in Growl.framework 0.7.
* @result A registration dictionary.
*/
-CFDictionaryRef Growl_CopyRegistrationDictionaryFromBundle(CFBundleRef bundle);
+GROWL_EXPORT CFDictionaryRef Growl_CopyRegistrationDictionaryFromBundle(CFBundleRef bundle);
/*! @function Growl_CreateBestRegistrationDictionary
* @abstract Obtains a registration dictionary, filled out to the best of
@@ -639,7 +647,7 @@ CFDictionaryRef Growl_CopyRegistrationDictionaryFromBundle(CFBundleRef bundle);
* This function was introduced in Growl.framework 0.7.
* @result A registration dictionary.
*/
-CFDictionaryRef Growl_CreateBestRegistrationDictionary(void);
+GROWL_EXPORT CFDictionaryRef Growl_CreateBestRegistrationDictionary(void);
#pragma mark -
@@ -664,7 +672,7 @@ CFDictionaryRef Growl_CreateBestRegistrationDictionary(void);
*
* This function was introduced in Growl.framework 0.7.
*/
-CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionary(CFDictionaryRef regDict);
+GROWL_EXPORT CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionary(CFDictionaryRef regDict);
/*! @function Growl_CreateRegistrationDictionaryByFillingInDictionaryRestrictedToKeys
* @abstract Tries to fill in missing keys in a registration dictionary.
* @param regDict The dictionary to fill in.
@@ -686,7 +694,21 @@ CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionary(CFDictio
*
* This function was introduced in Growl.framework 0.7.
*/
-CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionaryRestrictedToKeys(CFDictionaryRef regDict, CFSetRef keys);
+GROWL_EXPORT CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionaryRestrictedToKeys(CFDictionaryRef regDict, CFSetRef keys);
+
+/*! @brief Tries to fill in missing keys in a notification dictionary.
+ * @param notifDict The dictionary to fill in.
+ * @return The dictionary with the keys filled in. This will be a separate instance from \a notifDict.
+ * @discussion This function examines the \a notifDict for missing keys, and
+ * tries to get them from the last known registration dictionary. As of 1.1,
+ * the keys that it will look for are:
+ *
+ * \li GROWL_APP_NAME
+ * \li GROWL_APP_ICON
+ *
+ * @since Growl.framework 1.1
+ */
+GROWL_EXPORT CFDictionaryRef Growl_CreateNotificationDictionaryByFillingInDictionary(CFDictionaryRef notifDict);
#pragma mark -
@@ -697,14 +719,14 @@ CFDictionaryRef Growl_CreateRegistrationDictionaryByFillingInDictionaryRestricte
* installed.
* @result Returns true if Growl is installed, false otherwise.
*/
-Boolean Growl_IsInstalled(void);
+GROWL_EXPORT Boolean Growl_IsInstalled(void);
/*! @function Growl_IsRunning
* @abstract Cycles through the process list to find whether GrowlHelperApp
* is running.
* @result Returns true if Growl is running, false otherwise.
*/
-Boolean Growl_IsRunning(void);
+GROWL_EXPORT Boolean Growl_IsRunning(void);
#pragma mark -
@@ -738,7 +760,7 @@ typedef void (*GrowlLaunchCallback)(void *context);
* acceptable for context to be NULL
. The callback itself can be
* NULL
if you don't want one.
*/
-Boolean Growl_LaunchIfInstalled(GrowlLaunchCallback callback, void *context);
+GROWL_EXPORT Boolean Growl_LaunchIfInstalled(GrowlLaunchCallback callback, void *context);
#pragma mark -
#pragma mark Constants
diff --git a/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h b/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h
index 7ac315af3..1e39f8d65 100644
--- a/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h
+++ b/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h
@@ -3,7 +3,7 @@
// Growl
//
// Created by Evan Schoenberg on Wed Jun 16 2004.
-// Copyright 2004-2005 The Growl Project. All rights reserved.
+// Copyright 2004-2006 The Growl Project. All rights reserved.
//
/*!
@@ -17,23 +17,12 @@
#define __GrowlApplicationBridge_h__
#import
+#import
#import "GrowlDefines.h"
//Forward declarations
@protocol GrowlApplicationBridgeDelegate;
-/*!
- * @defined GROWL_PREFPANE_BUNDLE_IDENTIFIER
- * @discussion The bundle identifier for the Growl prefpane.
- */
-#define GROWL_PREFPANE_BUNDLE_IDENTIFIER @"com.growl.prefpanel"
-
-/*!
- * @defined GROWL_PREFPANE_NAME
- * @discussion The file name of the Growl prefpane.
- */
-#define GROWL_PREFPANE_NAME @"Growl.prefPane"
-
//Internal notification when the user chooses not to install (to avoid continuing to cache notifications awaiting installation)
#define GROWL_USER_CHOSE_NOT_TO_INSTALL_NOTIFICATION @"User chose not to install"
@@ -371,6 +360,21 @@
*/
+ (NSDictionary *) registrationDictionaryByFillingInDictionary:(NSDictionary *)regDict restrictToKeys:(NSSet *)keys;
+/*! @brief Tries to fill in missing keys in a notification dictionary.
+ * @param notifDict The dictionary to fill in.
+ * @return The dictionary with the keys filled in. This will be a separate instance from \a notifDict.
+ * @discussion This function examines the \a notifDict for missing keys, and
+ * tries to get them from the last known registration dictionary. As of 1.1,
+ * the keys that it will look for are:
+ *
+ * \li GROWL_APP_NAME
+ * \li GROWL_APP_ICON
+ *
+ * @since Growl.framework 1.1
+ */
++ (NSDictionary *) notificationDictionaryByFillingInDictionary:(NSDictionary *)regDict;
+
++ (NSDictionary *) frameworkInfoDictionary;
@end
//------------------------------------------------------------------------------
@@ -417,10 +421,13 @@
* +[GrowlApplicationBridge
* notifyWithTitle:description:notificationName:iconData:priority:isSticky:clickContext:]
calls.
*
- * The dictionary should have 2 key object pairs:
+ * The dictionary should have the required key object pairs:
* key: GROWL_NOTIFICATIONS_ALL object: NSArray
of NSString
objects
* key: GROWL_NOTIFICATIONS_DEFAULT object: NSArray
of NSString
objects
*
+ * The dictionary may have the following key object pairs:
+ * key: GROWL_NOTIFICATIONS_HUMAN_READABLE_NAMES object: NSDictionary
of key: notification name object: human-readable notification name
+ *
* You do not need to implement this method if you have an auto-discoverable
* plist file in your app bundle. (XXX refer to more information on that)
*
@@ -447,6 +454,18 @@
*/
- (NSString *) applicationNameForGrowl;
+/*!
+ * @method applicationIconForGrowl
+ * @abstract Return the NSImage
to treat as the application icon.
+ * @discussion The delegate may optionally return an NSImage
+ * object to use as the application icon. If this method is not implemented,
+ * {{{-applicationIconDataForGrowl}}} is tried. If that method is not
+ * implemented, the application's own icon is used. Neither method is
+ * generally needed.
+ * @result The NSImage
to treat as the application icon.
+ */
+- (NSImage *) applicationIconForGrowl;
+
/*!
* @method applicationIconDataForGrowl
* @abstract Return the NSData
to treat as the application icon.
@@ -454,6 +473,7 @@
* object to use as the application icon; if this is not implemented, the
* application's own icon is used. This is not generally needed.
* @result The NSData
to treat as the application icon.
+ * @deprecated In version 1.1, in favor of {{{-applicationIconForGrowl}}}.
*/
- (NSData *) applicationIconDataForGrowl;
@@ -461,9 +481,8 @@
* @method growlIsReady
* @abstract Informs the delegate that Growl has launched.
* @discussion Informs the delegate that Growl (specifically, the
- * GrowlHelperApp) was launched successfully or was already running. The
- * application can take actions with the knowledge that Growl is installed and
- * functional.
+ * GrowlHelperApp) was launched successfully. The application can take actions
+ * with the knowledge that Growl is installed and functional.
*/
- (void) growlIsReady;
diff --git a/Growl.framework/Versions/A/Headers/GrowlDefines.h b/Growl.framework/Versions/A/Headers/GrowlDefines.h
index 6ff6ee3d2..2b971cfe5 100644
--- a/Growl.framework/Versions/A/Headers/GrowlDefines.h
+++ b/Growl.framework/Versions/A/Headers/GrowlDefines.h
@@ -7,10 +7,10 @@
#ifdef __OBJC__
#define XSTR(x) (@x)
-#define STRING NSString *
+#define STRING_TYPE NSString *
#else
#define XSTR CFSTR
-#define STRING CFStringRef
+#define STRING_TYPE CFStringRef
#endif
/*! @header GrowlDefines.h
@@ -48,6 +48,14 @@
* "SurfWriter Lite" are not.
*/
#define GROWL_APP_NAME XSTR("ApplicationName")
+/*! @defined GROWL_APP_ID
+ * @abstract The bundle identifier of your application.
+ * @discussion The bundle identifier of your application. This key should
+ * be unique for your application while there may be several applications
+ * with the same GROWL_APP_NAME.
+ * This key is optional.
+ */
+#define GROWL_APP_ID XSTR("ApplicationId")
/*! @defined GROWL_APP_ICON
* @abstract The image data for your application's icon.
* @discussion Image data representing your application's icon. This may be
@@ -74,6 +82,26 @@
* notification names.
*/
#define GROWL_NOTIFICATIONS_ALL XSTR("AllNotifications")
+/*! @defined GROWL_NOTIFICATIONS_HUMAN_READABLE_DESCRIPTIONS
+ * @abstract A dictionary of human-readable names for your notifications.
+ * @discussion By default, the Growl UI will display notifications by the names given in GROWL_NOTIFICATIONS_ALL
+ * which correspond to the GROWL_NOTIFICATION_NAME. This dictionary specifies the human-readable name to display.
+ * The keys of the dictionary are GROWL_NOTIFICATION_NAME strings; the objects are the human-readable versions.
+ * For any GROWL_NOTIFICATION_NAME not specific in this dictionary, the GROWL_NOTIFICATION_NAME will be displayed.
+ *
+ * This key is optional.
+ */
+#define GROWL_NOTIFICATIONS_HUMAN_READABLE_NAMES XSTR("HumanReadableNames")
+/*! @defined GROWL_NOTIFICATIONS_DESCRIPTIONS
+* @abstract A dictionary of descriptions of _when_ each notification occurs
+* @discussion This is an NSDictionary whose keys are GROWL_NOTIFICATION_NAME strings and whose objects are
+* descriptions of _when_ each notification occurs, such as "You received a new mail message" or
+* "A file finished downloading".
+*
+* This key is optional.
+*/
+#define GROWL_NOTIFICATIONS_DESCRIPTIONS XSTR("NotificationDescriptions")
+
/*! @defined GROWL_TICKET_VERSION
* @abstract The version of your registration ticket.
* @discussion Include this key in a ticket plist file that you put in your
@@ -97,9 +125,10 @@
/*! @defined GROWL_NOTIFICATION_NAME
* @abstract The name of the notification.
- * @discussion The name of the notification. This should be human-readable, as
- * it's shown in the prefpane, in the list of notifications your application
- * supports. */
+ * @discussion The name of the notification. Note that if you do not define
+ * GROWL_NOTIFICATIONS_HUMAN_READABLE_NAMES when registering your ticket originally this name
+ * will the one displayed within the Growl preference pane and should be human-readable.
+ */
#define GROWL_NOTIFICATION_NAME XSTR("NotificationName")
/*! @defined GROWL_NOTIFICATION_TITLE
* @abstract The title to display in the notification.
@@ -186,6 +215,15 @@
*/
#define GROWL_APP_PID XSTR("ApplicationPID")
+/*! @defined GROWL_NOTIFICATION_PROGRESS
+* @abstract If this key is set, it should contain a double value wrapped
+* in a NSNumber which describes some sort of progress (from 0.0 to 100.0).
+* If this is key is not set, no progress bar is shown.
+*
+* Optional. Not supported by all display plugins.
+*/
+#define GROWL_NOTIFICATION_PROGRESS XSTR("NotificationProgress")
+
// Notifications
#pragma mark Notifications
@@ -304,4 +342,7 @@
*/
#define GROWL_REG_DICT_EXTENSION XSTR("growlRegDict")
+
+#define GROWL_POSITION_PREFERENCE_KEY @"GrowlSelectedPosition"
+
#endif //ndef _GROWLDEFINES_H
diff --git a/Growl.framework/Versions/A/Resources/Info.plist b/Growl.framework/Versions/A/Resources/Info.plist
index 6530bd21e..5a76a5f19 100644
--- a/Growl.framework/Versions/A/Resources/Info.plist
+++ b/Growl.framework/Versions/A/Resources/Info.plist
@@ -1,5 +1,5 @@
-
+
CFBundleDevelopmentRegion
@@ -13,11 +13,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.7.6
+ 1.2.1
CFBundleSignature
GRRR
CFBundleVersion
- 0.7.6
+ 1.2.1
NSPrincipalClass
GrowlApplicationBridge
diff --git a/License.txt b/License.txt
new file mode 100644
index 000000000..8e8721f72
--- /dev/null
+++ b/License.txt
@@ -0,0 +1,15 @@
+Copyright (c) The Growl Project, 2004-2009
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+3. Neither the name of Growl nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/LmuTracker.c b/LmuTracker.c
new file mode 100644
index 000000000..4d6126ba1
--- /dev/null
+++ b/LmuTracker.c
@@ -0,0 +1,113 @@
+/*
+ JNI LmuTracker - JNI Ambient Light Sensor detection for Apple MacBookPro.
+
+ (c) copyright 2008 Martin Raedlinger (www.formatlos.de)
+ based on Amit Singh experiments with the Ambient Light Sensor
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ Boston, MA 02111-1307 USA
+ */
+
+
+#include "lmu_LmuTracker.h"
+#include "LmuTrackerCommon.h"
+
+#include
+#include
+#include
+#include
+#include
+
+static io_connect_t dataPort = 0;
+static int last_left = 0;
+static int last_right = 0;
+
+/**
+* function reads the data from the ambient light sensor
+*/
+void read_lmu(int *l, int *r)
+{
+ kern_return_t kr;
+ uint32_t outputCnt = 2;
+ uint64_t scalarI_64[2];
+ scalarI_64[0] = 0;
+ scalarI_64[1] = 0;
+
+
+ // Check if Mac OS X 10.5 API is available..
+ if (IOConnectCallScalarMethod != NULL)
+ kr = IOConnectCallScalarMethod(dataPort, kGetSensorReadingID, NULL, 0, scalarI_64, &outputCnt);
+
+ if (kr == KERN_SUCCESS)
+ {
+ last_left = scalarI_64[0];
+ last_right = scalarI_64[1];
+ *l = last_left;
+ *r = last_right;
+ return;
+ }
+ if (kr == kIOReturnBusy)
+ {
+ *l = last_left;
+ *r = last_right;
+ return;
+ }
+
+ // Error
+ mach_error("I/O Kit error:", kr);
+ exit(kr);
+}
+
+
+// JNI Function to return an array of ints w/ sensor values
+JNIEXPORT jintArray JNICALL Java_lmu_LmuTracker_readLMU (JNIEnv *env, jclass this)
+{
+
+ kern_return_t kr;
+ io_service_t serviceObject;
+ int l,r;
+ l = r = 0;
+
+ // Look up a registered IOService object whose class is AppleLMUController
+ serviceObject = IOServiceGetMatchingService(kIOMasterPortDefault, IOServiceMatching("AppleLMUController"));
+
+ if (!serviceObject)
+ {
+ fprintf(stderr, "failed to find ambient light sensor\n");
+ exit(1);
+ }
+
+ // Create a connection to the IOService object
+ kr = IOServiceOpen(serviceObject, mach_task_self(), 0, &dataPort);
+ IOObjectRelease(serviceObject);
+ if (kr != KERN_SUCCESS)
+ {
+ mach_error("IOServiceOpen:", kr);
+ exit(kr);
+ }
+
+ read_lmu(&l,&r);
+
+ jintArray jr;
+ jsize rlen = 2;
+ jr = (*env)->NewIntArray(env, rlen);
+ int size = 2;
+ long *data;
+ data = (long *)malloc(sizeof(long)*size);
+ data[0] = l; data[1] = r;
+ (*env)->SetIntArrayRegion(env,jr, 0, size,data);
+ free(data);
+ return jr;
+}
\ No newline at end of file
diff --git a/LmuTrackerCommon.h b/LmuTrackerCommon.h
new file mode 100644
index 000000000..0370195a1
--- /dev/null
+++ b/LmuTrackerCommon.h
@@ -0,0 +1,42 @@
+/*
+ JNI LmuTracker - JNI Ambient Light Sensor detection for Apple MacBookPro.
+
+ (c) copyright 2008 Martin Raedlinger (www.formatlos.de)
+ based on Amit Singh experiments with the Ambient Light Sensor
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General
+ Public License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ Boston, MA 02111-1307 USA
+ */
+
+#ifndef LMUCOMMON_H
+#define LMUCOMMON_H
+
+enum {
+ kGetSensorReadingID = 0,
+ kGetLEDBrightnessID = 1,
+ kSetLEDBrightnessID = 2,
+ kSetLEDFadeID = 3,
+};
+
+
+#endif
+
+
+
+
+
+
+
+
diff --git a/MarcoPolo.xcodeproj/dustin.mode1v3 b/MarcoPolo.xcodeproj/dustin.mode1v3
new file mode 100644
index 000000000..f49f56ae9
--- /dev/null
+++ b/MarcoPolo.xcodeproj/dustin.mode1v3
@@ -0,0 +1,1438 @@
+
+
+
+
+ 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
+ XCProjectFormatConflictsModule
+ Name
+ Project Format Conflicts List
+
+
+ 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
+
+
+ BundleLoadPath
+
+ MaxInstances
+ n
+ Module
+ XCSnapshotModule
+ Name
+ Snapshots Tool
+
+
+ BundlePath
+ /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources
+ Description
+ DefaultDescriptionKey
+ DockingSystemVisible
+
+ Extension
+ mode1v3
+ FavBarConfig
+
+ PBXProjectModuleGUID
+ DA1F42AB1148B0150012BEF5
+ XCBarModuleItemNames
+
+ XCBarModuleItems
+
+
+ FirstTimeWindowDisplayed
+
+ Identifier
+ com.apple.perspectives.project.mode1v3
+ MajorVersion
+ 33
+ MinorVersion
+ 0
+ Name
+ Default
+ Notifications
+
+ OpenEditors
+
+ PerspectiveWidths
+
+ -1
+ -1
+
+ Perspectives
+
+
+ ChosenToolbarItems
+
+ active-combo-popup
+ action
+ NSToolbarFlexibleSpaceItem
+ debugger-enable-breakpoints
+ build-and-go
+ com.apple.ide.PBXToolbarStopButton
+ get-info
+ NSToolbarFlexibleSpaceItem
+ com.apple.pbx.toolbar.searchfield
+
+ ControllerClassBaseName
+
+ IconName
+ WindowOfProjectWithEditor
+ Identifier
+ perspective.project
+ IsVertical
+
+ Layout
+
+
+ BecomeActive
+
+ ContentConfiguration
+
+ PBXBottomSmartGroupGIDs
+
+ 1C37FBAC04509CD000000102
+ 1C37FAAC04509CD000000102
+ 1C37FABC05509CD000000102
+ 1C37FABC05539CD112110102
+ E2644B35053B69B200211256
+ 1C37FABC04509CD000100104
+ 1CC0EA4004350EF90044410B
+ 1CC0EA4004350EF90041110B
+
+ PBXProjectModuleGUID
+ 1CE0B1FE06471DED0097A5F4
+ PBXProjectModuleLabel
+ Files
+ PBXProjectStructureProvided
+ yes
+ PBXSmartGroupTreeModuleColumnData
+
+ PBXSmartGroupTreeModuleColumnWidthsKey
+
+ 261
+
+ PBXSmartGroupTreeModuleColumnsKey_v4
+
+ MainColumn
+
+
+ PBXSmartGroupTreeModuleOutlineStateKey_v7
+
+ PBXSmartGroupTreeModuleOutlineStateExpansionKey
+
+ 29B97314FDCFA39411CA2CEA
+ 080E96DDFE201D6D7F000001
+ 29B97315FDCFA39411CA2CEA
+ 29B97323FDCFA39411CA2CEA
+ 1058C7A0FEA54F0111CA2CBB
+ 19C28FACFE9D520D11CA2CBB
+ 1C37FBAC04509CD000000102
+
+ PBXSmartGroupTreeModuleOutlineStateSelectionKey
+
+
+ 8
+ 1
+ 0
+
+
+ PBXSmartGroupTreeModuleOutlineStateVisibleRectKey
+ {{0, 91}, {261, 650}}
+
+ PBXTopSmartGroupGIDs
+
+ XCIncludePerspectivesSwitch
+
+ XCSharingToken
+ com.apple.Xcode.GFSharingToken
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 0}, {278, 668}}
+ GroupTreeTableConfiguration
+
+ MainColumn
+ 261
+
+ RubberWindowFrame
+ 23 278 1351 709 0 0 1680 1028
+
+ Module
+ PBXSmartGroupTreeModule
+ Proportion
+ 278pt
+
+
+ Dock
+
+
+ ContentConfiguration
+
+ PBXProjectModuleGUID
+ 1CE0B20306471E060097A5F4
+ PBXProjectModuleLabel
+ PrefsWindowController.m
+ PBXSplitModuleInNavigatorKey
+
+ Split0
+
+ PBXProjectModuleGUID
+ 1CE0B20406471E060097A5F4
+ PBXProjectModuleLabel
+ PrefsWindowController.m
+ _historyCapacity
+ 0
+ bookmark
+ DA9B53FA127772BD00E74E2D
+ history
+
+ DA8B17461149AD5F00417D4F
+ DADD3D011149EDC80063096B
+ DADD3D031149EDC80063096B
+ DADD3D061149EDC80063096B
+ DADD3D071149EDC80063096B
+ DADD3D091149EDC80063096B
+ DADD3D0A1149EDC80063096B
+ DADD3D0C1149EDC80063096B
+ DADD3D0E1149EDC80063096B
+ DADD3D0F1149EDC80063096B
+ DADD3D101149EDC80063096B
+ DADD3D121149EDC80063096B
+ DADD3D141149EDC80063096B
+ DA6D1862115458EB00347E93
+ DABC4BAD115555DA0017B723
+ DABC4BCB115559CC0017B723
+ DABC4BCC115559CC0017B723
+ DABC4C18115563A70017B723
+ DABC4CF011557A570017B723
+ DABC4D0311557FB60017B723
+ DABC4D0511557FB60017B723
+ DABC4D0611557FB60017B723
+ DABC4D0711557FB60017B723
+ DABC4D0811557FB60017B723
+ DABC4D0911557FB60017B723
+ DABC4D181155CF3F0017B723
+ DABC4D191155CF3F0017B723
+ DABC4D1A1155CF3F0017B723
+ DABC4D1B1155CF3F0017B723
+ DABC4D1C1155CF3F0017B723
+ DA2CFF1C115B9ED200F9CC82
+ DA4C9F91116232B90085A878
+ DA4C9F92116232B90085A878
+ DA4C9F93116232B90085A878
+ DA4C9F94116232B90085A878
+ DA4C9F95116232B90085A878
+ DA9B53F6127772BD00E74E2D
+ DA9B53F7127772BD00E74E2D
+ DA9B53F8127772BD00E74E2D
+ DA9B53F9127772BD00E74E2D
+ DABC4D0411557FB60017B723
+
+
+ SplitCount
+ 1
+
+ StatusBarVisibility
+
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 0}, {1068, 513}}
+ RubberWindowFrame
+ 23 278 1351 709 0 0 1680 1028
+
+ Module
+ PBXNavigatorGroup
+ Proportion
+ 513pt
+
+
+ ContentConfiguration
+
+ PBXProjectModuleGUID
+ 1CE0B20506471E060097A5F4
+ PBXProjectModuleLabel
+ Detail
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 518}, {1068, 150}}
+ RubberWindowFrame
+ 23 278 1351 709 0 0 1680 1028
+
+ Module
+ XCDetailModule
+ Proportion
+ 150pt
+
+
+ Proportion
+ 1068pt
+
+
+ Name
+ Project
+ ServiceClasses
+
+ XCModuleDock
+ PBXSmartGroupTreeModule
+ XCModuleDock
+ PBXNavigatorGroup
+ XCDetailModule
+
+ TableOfContents
+
+ DA9B53FB127772BD00E74E2D
+ 1CE0B1FE06471DED0097A5F4
+ DA9B53FC127772BD00E74E2D
+ 1CE0B20306471E060097A5F4
+ 1CE0B20506471E060097A5F4
+
+ ToolbarConfigUserDefaultsMinorVersion
+ 2
+ ToolbarConfiguration
+ xcode.toolbar.config.defaultV3
+
+
+ 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.shortV3
+
+
+ PerspectivesBarVisible
+
+ ShelfIsVisible
+
+ SourceDescription
+ file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec'
+ StatusbarIsVisible
+
+ TimeStamp
+ 0.0
+ ToolbarConfigUserDefaultsMinorVersion
+ 2
+ ToolbarDisplayMode
+ 1
+ ToolbarIsVisible
+
+ ToolbarSizeMode
+ 1
+ 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
+
+ DA1F42891148ADD80012BEF5
+ /Users/dustin/Development/marcopolo/MarcoPolo.xcodeproj
+
+ WindowString
+ 23 278 1351 709 0 0 1680 1028
+ WindowToolsV3
+
+
+ FirstTimeWindowDisplayed
+
+ Identifier
+ windowTool.build
+ IsVertical
+
+ Layout
+
+
+ Dock
+
+
+ ContentConfiguration
+
+ PBXProjectModuleGUID
+ 1CD0528F0623707200166675
+ PBXProjectModuleLabel
+
+ StatusBarVisibility
+
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 0}, {988, 378}}
+ RubberWindowFrame
+ 289 368 988 660 0 0 1680 1028
+
+ Module
+ PBXNavigatorGroup
+ Proportion
+ 378pt
+
+
+ ContentConfiguration
+
+ PBXProjectModuleGUID
+ XCMainBuildResultsModuleGUID
+ PBXProjectModuleLabel
+ Build Results
+ XCBuildResultsTrigger_Collapse
+ 1021
+ XCBuildResultsTrigger_Open
+ 1011
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 383}, {988, 236}}
+ RubberWindowFrame
+ 289 368 988 660 0 0 1680 1028
+
+ Module
+ PBXBuildResultsModule
+ Proportion
+ 236pt
+
+
+ Proportion
+ 619pt
+
+
+ Name
+ Build Results
+ ServiceClasses
+
+ PBXBuildResultsModule
+
+ StatusbarIsVisible
+
+ TableOfContents
+
+ DA1F42891148ADD80012BEF5
+ DA9B53FD127772BD00E74E2D
+ 1CD0528F0623707200166675
+ XCMainBuildResultsModuleGUID
+
+ ToolbarConfiguration
+ xcode.toolbar.config.buildV3
+ WindowContentMinSize
+ 486 300
+ WindowString
+ 289 368 988 660 0 0 1680 1028
+ WindowToolGUID
+ DA1F42891148ADD80012BEF5
+ WindowToolIsVisible
+
+
+
+ FirstTimeWindowDisplayed
+
+ Identifier
+ windowTool.debugger
+ IsVertical
+
+ Layout
+
+
+ Dock
+
+
+ ContentConfiguration
+
+ Debugger
+
+ HorizontalSplitView
+
+ _collapsingFrameDimension
+ 0.0
+ _indexOfCollapsedView
+ 0
+ _percentageOfCollapsedView
+ 0.0
+ isCollapsed
+ yes
+ sizes
+
+ {{0, 0}, {316, 203}}
+ {{316, 0}, {378, 203}}
+
+
+ VerticalSplitView
+
+ _collapsingFrameDimension
+ 0.0
+ _indexOfCollapsedView
+ 0
+ _percentageOfCollapsedView
+ 0.0
+ isCollapsed
+ yes
+ sizes
+
+ {{0, 0}, {694, 203}}
+ {{0, 203}, {694, 178}}
+
+
+
+ LauncherConfigVersion
+ 8
+ PBXProjectModuleGUID
+ 1C162984064C10D400B95A72
+ PBXProjectModuleLabel
+ Debug - GLUTExamples (Underwater)
+
+ GeometryConfiguration
+
+ DebugConsoleVisible
+ None
+ DebugConsoleWindowFrame
+ {{200, 200}, {500, 300}}
+ DebugSTDIOWindowFrame
+ {{200, 200}, {500, 300}}
+ Frame
+ {{0, 0}, {694, 381}}
+ PBXDebugSessionStackFrameViewKey
+
+ DebugVariablesTableConfiguration
+
+ Name
+ 120
+ Value
+ 85
+ Summary
+ 148
+
+ Frame
+ {{316, 0}, {378, 203}}
+ RubberWindowFrame
+ 449 485 694 422 0 0 1680 1028
+
+ RubberWindowFrame
+ 449 485 694 422 0 0 1680 1028
+
+ Module
+ PBXDebugSessionModule
+ Proportion
+ 381pt
+
+
+ Proportion
+ 381pt
+
+
+ Name
+ Debugger
+ ServiceClasses
+
+ PBXDebugSessionModule
+
+ StatusbarIsVisible
+
+ TableOfContents
+
+ 1CD10A99069EF8BA00B06720
+ DA2CFF05115B9D6C00F9CC82
+ 1C162984064C10D400B95A72
+ DA2CFF06115B9D6C00F9CC82
+ DA2CFF07115B9D6C00F9CC82
+ DA2CFF08115B9D6C00F9CC82
+ DA2CFF09115B9D6C00F9CC82
+ DA2CFF0A115B9D6C00F9CC82
+
+ ToolbarConfiguration
+ xcode.toolbar.config.debugV3
+ WindowString
+ 449 485 694 422 0 0 1680 1028
+ WindowToolGUID
+ 1CD10A99069EF8BA00B06720
+ WindowToolIsVisible
+
+
+
+ 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
+
+
+ FirstTimeWindowDisplayed
+
+ Identifier
+ windowTool.debuggerConsole
+ IsVertical
+
+ Layout
+
+
+ Dock
+
+
+ BecomeActive
+
+ ContentConfiguration
+
+ PBXProjectModuleGUID
+ 1C78EAAC065D492600B07095
+ PBXProjectModuleLabel
+ Debugger Console
+
+ GeometryConfiguration
+
+ Frame
+ {{0, 0}, {650, 209}}
+ RubberWindowFrame
+ 267 462 650 250 0 0 1280 778
+
+ Module
+ PBXDebugCLIModule
+ Proportion
+ 209pt
+
+
+ Proportion
+ 209pt
+
+
+ Name
+ Debugger Console
+ ServiceClasses
+
+ PBXDebugCLIModule
+
+ StatusbarIsVisible
+
+ TableOfContents
+
+ 1C78EAAD065D492600B07095
+ DABC4B5E11554DC40017B723
+ 1C78EAAC065D492600B07095
+
+ ToolbarConfiguration
+ xcode.toolbar.config.consoleV3
+ WindowString
+ 267 462 650 250 0 0 1280 778
+ WindowToolGUID
+ 1C78EAAD065D492600B07095
+ WindowToolIsVisible
+
+
+
+ Identifier
+ windowTool.snapshots
+ Layout
+
+
+ Dock
+
+
+ Module
+ XCSnapshotModule
+ Proportion
+ 100%
+
+
+ Proportion
+ 100%
+
+
+ Name
+ Snapshots
+ ServiceClasses
+
+ XCSnapshotModule
+
+ StatusbarIsVisible
+ Yes
+ ToolbarConfiguration
+ xcode.toolbar.config.snapshots
+ WindowString
+ 315 824 300 550 0 0 1440 878
+ WindowToolIsVisible
+ Yes
+
+
+ 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.0950012207031
+
+ 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
+ 3
+ MinorVersion
+ 0
+ Name
+ Breakpoints
+ ServiceClasses
+
+ PBXSmartGroupTreeModule
+ XCDetailModule
+
+ StatusbarIsVisible
+ 1
+ TableOfContents
+
+ 1CDDB66807F98D9800BB5817
+ 1CDDB66907F98D9800BB5817
+ 1CE0B1FE06471DED0097A5F4
+ 1CA1AED706398EBD00589147
+
+ ToolbarConfiguration
+ xcode.toolbar.config.breakpointsV3
+ 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.debugAnimatorV3
+ 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.projectFormatConflicts
+ Layout
+
+
+ Dock
+
+
+ Module
+ XCProjectFormatConflictsModule
+ Proportion
+ 100%
+
+
+ Proportion
+ 100%
+
+
+ Name
+ Project Format Conflicts
+ ServiceClasses
+
+ XCProjectFormatConflictsModule
+
+ StatusbarIsVisible
+ 0
+ WindowContentMinSize
+ 450 300
+ WindowString
+ 50 850 472 307 0 0 1440 877
+
+
+ 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
+
+
+ Identifier
+ windowTool.refactoring
+ IncludeInToolsMenu
+ 0
+ Layout
+
+
+ Dock
+
+
+ BecomeActive
+ 1
+ GeometryConfiguration
+
+ Frame
+ {0, 0}, {500, 335}
+ RubberWindowFrame
+ {0, 0}, {500, 335}
+
+ Module
+ XCRefactoringModule
+ Proportion
+ 100%
+
+
+ Proportion
+ 100%
+
+
+ Name
+ Refactoring
+ ServiceClasses
+
+ XCRefactoringModule
+
+ WindowString
+ 200 200 500 356 0 0 1920 1200
+
+
+
+
diff --git a/MarcoPolo.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/MarcoPolo.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 000000000..dd99459e9
--- /dev/null
+++ b/MarcoPolo.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/UserInterfaceState.xcuserstate b/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/UserInterfaceState.xcuserstate
new file mode 100644
index 000000000..f7a16e4d2
--- /dev/null
+++ b/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/UserInterfaceState.xcuserstate
@@ -0,0 +1,18076 @@
+
+
+
+
+ $archiver
+ NSKeyedArchiver
+ $objects
+
+ $null
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 2
+
+
+ CF$UID
+ 3
+
+
+ CF$UID
+ 4
+
+
+ CF$UID
+ 5
+
+
+ CF$UID
+ 6
+
+
+ CF$UID
+ 7
+
+
+ CF$UID
+ 8
+
+
+ CF$UID
+ 9
+
+
+ NS.objects
+
+
+ CF$UID
+ 10
+
+
+ CF$UID
+ 190
+
+
+ CF$UID
+ 497
+
+
+ CF$UID
+ 598
+
+
+ CF$UID
+ 829
+
+
+ CF$UID
+ 924
+
+
+ CF$UID
+ 1016
+
+
+ CF$UID
+ 1108
+
+
+
+ 10239FF4-1A62-4E3A-B44C-2F63CC392A77
+ IDEWorkspaceDocument
+ AB292226-DE7F-4862-BA13-C90CEEBE139B
+ 036CAF8E-E993-4A8B-A17E-25E0FBFB195C
+ 90DF422F-ADC1-4A56-B142-952EB15B34CF
+ C211ED32-B4CB-4AC9-A6A7-628DEB69C27D
+ 30E27E5A-64F1-494C-9625-9F572522F1DE
+ FB554721-A56B-4E73-845A-083FABE20385
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 11
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 15
+
+
+ CF$UID
+ 16
+
+
+ NS.objects
+
+
+ CF$UID
+ 2
+
+
+ CF$UID
+ 17
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 15
+
+
+ CF$UID
+ 20
+
+
+ CF$UID
+ 189
+
+
+
+ IDEWorkspaceWindowControllerUniqueIdentifier
+ IDEOrderedWorkspaceTabControllers
+ IDEWindowToolbarIsVisible
+ IDEActiveWorkspaceTabController
+ IDEWorkspaceTabController_410A4FEA-1D42-4176-98B9-4C0F7313749F
+ IDEWindowFrame
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 15
+
+
+
+
+ $classes
+
+ NSArray
+ NSObject
+
+ $classname
+ NSArray
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 29
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 31
+
+
+ CF$UID
+ 44
+
+
+ CF$UID
+ 76
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 85
+
+
+
+ IDETabLabel
+ IDEShowNavigator
+ AssistantEditorsLayout
+ IDEWorkspaceTabControllerUtilityAreaSplitView
+ IDENavigatorArea
+ IDEWorkspaceTabControllerDesignAreaSplitView
+ IDEShowUtilities
+ IDEEditorArea
+ PrefsWindowController.m
+ 0
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 33
+
+
+
+ DVTSplitViewItems
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 34
+
+
+ CF$UID
+ 40
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 38
+
+
+
+ DVTIdentifier
+ DVTViewMagnitude
+
+ 398
+
+ $classes
+
+ NSDictionary
+ NSObject
+
+ $classname
+ NSDictionary
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 41
+
+
+
+ 224
+
+ $classes
+
+ NSMutableArray
+ NSArray
+ NSObject
+
+ $classname
+ NSMutableArray
+
+
+ $classes
+
+ NSMutableDictionary
+ NSDictionary
+ NSObject
+
+ $classname
+ NSMutableDictionary
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 47
+
+
+
+ SelectedNavigator
+ Xcode.IDEKit.Navigator.Structure
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 55
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 58
+
+
+ CF$UID
+ 63
+
+
+
+ IDEVisibleRect
+ IDEUnsavedDocumentFilteringEnabled
+ IDENavigatorExpandedItemsBeforeFilteringSet
+ IDERecentDocumentFilteringEnabled
+ IDESCMStatusFilteringEnabled
+ IDESelectedObjects
+ IDEExpandedItemsSet
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+
+ $classes
+
+ NSSet
+ NSObject
+
+ $classname
+ NSSet
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 59
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 62
+
+
+
+ MarcoPolo
+ Classes
+ PrefsWindowController.m
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 64
+
+
+ CF$UID
+ 65
+
+
+ CF$UID
+ 67
+
+
+ CF$UID
+ 69
+
+
+ CF$UID
+ 72
+
+
+ CF$UID
+ 74
+
+
+ CF$UID
+ 75
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 66
+
+
+
+ Frameworks
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+ CoreWLAN.framework
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+ Evidence Sources
+ Concrete Evidence Sources
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+ UI Utilities
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 60
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 77
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 78
+
+
+ CF$UID
+ 80
+
+
+ CF$UID
+ 82
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 79
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 81
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 84
+
+
+
+ IDEUtilitiesArea
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 94
+
+
+ CF$UID
+ 113
+
+
+ CF$UID
+ 152
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 180
+
+
+ CF$UID
+ 188
+
+
+ CF$UID
+ 19
+
+
+
+ layoutTree
+ IDEEditorMode_Standard
+ IDEEDitorArea_DebugArea
+ IDEShowEditor
+ EditorMode
+ DebuggerSplitView
+ DefaultPersistentRepresentations
+ ShowDebuggerArea
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 95
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 109
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 96
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 109
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 104
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 98
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+ Xcode.IDENavigableItemDomain.WorkspaceStructure
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 99
+
+
+ CF$UID
+ 101
+
+
+ CF$UID
+ 102
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 62
+
+
+
+ $classes
+
+ IDEArchivableStringIndexPair
+ NSObject
+
+ $classname
+ IDEArchivableStringIndexPair
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 61
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 103
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 105
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/PrefsWindowController.m
+
+
+ $classes
+
+ NSMutableString
+ NSString
+ NSObject
+
+ $classname
+ NSMutableString
+
+
+ $classes
+
+ DVTDocumentLocation
+ NSObject
+
+ $classname
+ DVTDocumentLocation
+
+
+ $classes
+
+ IDENavigableItemArchivableRepresentation
+ NSObject
+
+ $classname
+ IDENavigableItemArchivableRepresentation
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 110
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 95
+
+
+
+
+ $classes
+
+ IDEWorkspaceTabControllerLayoutTreeNode
+ NSObject
+
+ $classname
+ IDEWorkspaceTabControllerLayoutTreeNode
+
+
+ $classes
+
+ IDEWorkspaceTabControllerLayoutTree
+ NSObject
+
+ $classname
+ IDEWorkspaceTabControllerLayoutTree
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 115
+
+
+
+ EditorLayout_PersistentRepresentation
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 117
+
+
+
+ Main
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 121
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 150
+
+
+
+ EditorLayout_StateSavingStateDictionaries
+ EditorLayout_Selected
+ EditorLayout_Geometry
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 122
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 130
+
+
+ CF$UID
+ 131
+
+
+ CF$UID
+ 137
+
+
+ CF$UID
+ 145
+
+
+ CF$UID
+ 62
+
+
+ CF$UID
+ 146
+
+
+ CF$UID
+ 147
+
+
+
+ FileDataType
+ ArchivableRepresentation
+ EditorState
+ NavigableItemName
+ DocumentNavigableItemName
+ DocumentExtensionIdentifier
+ DocumentURL
+ public.objective-c-source
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 104
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 132
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 133
+
+
+ CF$UID
+ 134
+
+
+ CF$UID
+ 135
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 62
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 61
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 136
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 142
+
+
+ CF$UID
+ 143
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 144
+
+
+
+ PrimaryDocumentTimestamp
+ PrimaryDocumentVisibleCharacterRange
+ HideAllIssues
+ PrimaryDocumentSelectedCharacterRange
+ 332216092.48133302
+ {8897, 1239}
+ {6428, 0}
+ -awakeFromNib
+ Xcode.IDEKit.EditorDocument.SourceCode
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 148
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/PrefsWindowController.m
+
+ $classes
+
+ NSURL
+ NSObject
+
+ $classname
+ NSURL
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 151
+
+
+
+ {{0, 0}, {600, 600}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 160
+
+
+ CF$UID
+ 162
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 165
+
+
+ CF$UID
+ 173
+
+
+
+ LayoutFocusMode
+ console
+ variables
+ LayoutMode
+ IDEDebugArea_SplitView
+ IDEDebuggerAreaSplitView
+ 1
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+ ConsoleFilterMode
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+ DBGVariablesViewFilterMode
+ 2
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 166
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 167
+
+
+ CF$UID
+ 170
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 169
+
+
+
+ VariablesView
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 172
+
+
+
+ ConsoleArea
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 174
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 175
+
+
+ CF$UID
+ 177
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 176
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 178
+
+
+
+ 301
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 181
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 182
+
+
+ CF$UID
+ 185
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 184
+
+
+
+ IDEEditor
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 187
+
+
+
+ IDEDebuggerArea
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ {{0, 132}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 191
+
+
+ CF$UID
+ 192
+
+
+ CF$UID
+ 193
+
+
+ CF$UID
+ 194
+
+
+ CF$UID
+ 195
+
+
+ CF$UID
+ 196
+
+
+ CF$UID
+ 197
+
+
+ CF$UID
+ 198
+
+
+ CF$UID
+ 199
+
+
+ CF$UID
+ 200
+
+
+ CF$UID
+ 201
+
+
+ NS.objects
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 202
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 418
+
+
+ CF$UID
+ 423
+
+
+ CF$UID
+ 426
+
+
+ CF$UID
+ 456
+
+
+ CF$UID
+ 457
+
+
+ CF$UID
+ 477
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+
+ BreakpointsActivated
+ DefaultEditorStatesForURLs
+ DebuggingWindowBehavior
+ ActiveRunDestination
+ ActiveScheme
+ LastCompletedPersistentSchemeBasedActivityReport
+ DocumentWindows
+ DefaultEditorFrameSizeForURLs
+ RecentEditorDocumentURLs
+ AppFocusInMiniDebugging
+ MiniDebuggingConsole
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 203
+
+
+ CF$UID
+ 204
+
+
+ CF$UID
+ 205
+
+
+ CF$UID
+ 206
+
+
+ CF$UID
+ 207
+
+
+ CF$UID
+ 208
+
+
+ NS.objects
+
+
+ CF$UID
+ 209
+
+
+ CF$UID
+ 255
+
+
+ CF$UID
+ 272
+
+
+ CF$UID
+ 325
+
+
+ CF$UID
+ 395
+
+
+ CF$UID
+ 407
+
+
+
+ Xcode.IDEKit.CocoaIntegration.EditorDocument.Cocoa
+ IDEQuickLookEditor.Editor
+ Xcode.Xcode3ProjectSupport.EditorDocument.Xcode3Project
+ Xcode.IDEKit.EditorDocument.SourceCode
+ Xcode.IDEKit.EditorDocument.LogDocument
+ Xcode.IDEKit.EditorDocument.SourceCodeComparisonEditor
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 210
+
+
+ CF$UID
+ 212
+
+
+ CF$UID
+ 214
+
+
+ NS.objects
+
+
+ CF$UID
+ 216
+
+
+ CF$UID
+ 232
+
+
+ CF$UID
+ 246
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 211
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/pt_BR.lproj/LightRule.nib/
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 213
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/GenericRule.nib/
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 215
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/MainMenu.nib/
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 217
+
+
+ CF$UID
+ 218
+
+
+ CF$UID
+ 219
+
+
+ CF$UID
+ 220
+
+
+ NS.objects
+
+
+ CF$UID
+ 221
+
+
+ CF$UID
+ 224
+
+
+ CF$UID
+ 220
+
+
+ CF$UID
+ 226
+
+
+
+ IBDockViewController
+ SelectedObjectIDs
+ SelectionProvider
+ IBCanvasViewController
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 222
+
+
+ NS.objects
+
+
+ CF$UID
+ 223
+
+
+
+ LastKnownOutlineViewWidth
+ 270
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 225
+
+
+
+ 7
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 227
+
+
+ CF$UID
+ 228
+
+
+ NS.objects
+
+
+ CF$UID
+ 229
+
+
+ CF$UID
+ 230
+
+
+
+ ObjectIDToLastKnownCanvasPositionMap
+ EditedTopLevelObjectIDs
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+ 5
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 237
+
+
+ CF$UID
+ 240
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 241
+
+
+
+ IBDockViewController
+ SelectedObjectIDs
+ SelectionProvider
+ IBCanvasViewController
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 239
+
+
+
+ LastKnownOutlineViewWidth
+ 270
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 244
+
+
+ CF$UID
+ 245
+
+
+
+ ObjectIDToLastKnownCanvasPositionMap
+ EditedTopLevelObjectIDs
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 247
+
+
+ CF$UID
+ 249
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 251
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 248
+
+
+
+ 270
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 250
+
+
+
+ 390
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 252
+
+
+ CF$UID
+ 253
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 254
+
+
+
+ 390
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 256
+
+
+ CF$UID
+ 258
+
+
+ NS.objects
+
+
+ CF$UID
+ 260
+
+
+ CF$UID
+ 267
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 257
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/graphics/AdvancedPrefs.tiff
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 259
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/graphics/EvidenceSourcesPrefs.tiff
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 261
+
+
+ NS.objects
+
+
+ CF$UID
+ 262
+
+
+
+ SelectedDocumentLocations
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 263
+
+
+
+
+ $class
+
+ CF$UID
+ 266
+
+ IDEQuickLookPageNumber
+
+ CF$UID
+ 30
+
+ documentURL
+
+ CF$UID
+ 264
+
+ timestamp
+
+ CF$UID
+ 265
+
+
+ file://localhost/Users/dustin/Development/marcopolo/graphics/AdvancedPrefs.tiff
+ 332216152.72277999
+
+ $classes
+
+ IDEQuickLookDocumentLocation
+ DVTDocumentLocation
+ NSObject
+
+ $classname
+ IDEQuickLookDocumentLocation
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 261
+
+
+ NS.objects
+
+
+ CF$UID
+ 268
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 269
+
+
+
+
+ $class
+
+ CF$UID
+ 266
+
+ IDEQuickLookPageNumber
+
+ CF$UID
+ 30
+
+ documentURL
+
+ CF$UID
+ 270
+
+ timestamp
+
+ CF$UID
+ 271
+
+
+ file://localhost/Users/dustin/Development/marcopolo/graphics/EvidenceSourcesPrefs.tiff
+ 332216223.91441798
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 273
+
+
+ NS.objects
+
+
+ CF$UID
+ 275
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 274
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/MarcoPolo.xcodeproj/
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 276
+
+
+ CF$UID
+ 277
+
+
+ CF$UID
+ 278
+
+
+ CF$UID
+ 279
+
+
+ CF$UID
+ 280
+
+
+ CF$UID
+ 281
+
+
+ NS.objects
+
+
+ CF$UID
+ 282
+
+
+ CF$UID
+ 283
+
+
+ CF$UID
+ 289
+
+
+ CF$UID
+ 290
+
+
+ CF$UID
+ 300
+
+
+ CF$UID
+ 301
+
+
+
+ Xcode3ProjectEditorPreviousProjectEditorClass
+ Xcode3ProjectEditor.sourceList.splitview
+ Xcode3ProjectEditorPreviousTargetEditorClass
+ Xcode3ProjectEditorSelectedDocumentLocations
+ Xcode3ProjectEditor_Xcode3InfoEditor
+ Xcode3ProjectEditor_Xcode3BuildPhasesEditor
+ Xcode3ProjectInfoEditor
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 284
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 285
+
+
+ CF$UID
+ 287
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 286
+
+
+
+ 170
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 288
+
+
+
+ 835
+ Xcode3InfoEditor
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 291
+
+
+
+
+ $class
+
+ CF$UID
+ 299
+
+ documentURL
+
+ CF$UID
+ 292
+
+ selection
+
+ CF$UID
+ 294
+
+ timestamp
+
+ CF$UID
+ 293
+
+
+ file://localhost/Users/dustin/Development/marcopolo/MarcoPolo.xcodeproj/
+ 332218261.58600497
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 295
+
+
+ CF$UID
+ 296
+
+
+ NS.objects
+
+
+ CF$UID
+ 297
+
+
+ CF$UID
+ 298
+
+
+
+ Editor
+ Target
+ Xcode3InfoEditor
+ MarcoPolo
+
+ $classes
+
+ Xcode3ProjectDocumentLocation
+ DVTDocumentLocation
+ NSObject
+
+ $classname
+ Xcode3ProjectDocumentLocation
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 302
+
+
+ CF$UID
+ 303
+
+
+ CF$UID
+ 304
+
+
+ CF$UID
+ 305
+
+
+ CF$UID
+ 306
+
+
+ CF$UID
+ 307
+
+
+ CF$UID
+ 308
+
+
+ CF$UID
+ 309
+
+
+ CF$UID
+ 310
+
+
+ CF$UID
+ 311
+
+
+ CF$UID
+ 312
+
+
+ NS.objects
+
+
+ CF$UID
+ 313
+
+
+ CF$UID
+ 314
+
+
+ CF$UID
+ 315
+
+
+ CF$UID
+ 316
+
+
+ CF$UID
+ 317
+
+
+ CF$UID
+ 318
+
+
+ CF$UID
+ 320
+
+
+ CF$UID
+ 321
+
+
+ CF$UID
+ 322
+
+
+ CF$UID
+ 323
+
+
+ CF$UID
+ 324
+
+
+
+ 8D1107260486CEB800E47090
+ Xcode3BuildPhasesEditorFilterKey
+ 8D8E50140BA7CFB2005DBC9F
+ 8D2073870B86AB5100D61A9E
+ 8D11072E0486CEB800E47090
+ Xcode3BuildPhasesEditorDisclosedNamesKey
+ 8D1107290486CEB800E47090
+ 8DEF43B20BAA072400F87273
+ 8D11072C0486CEB800E47090
+ kXcode3BuildPhasesEditorScrollPointKey
+ 8D076E1D0CA53F20007B7E94
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 319
+
+
+ CF$UID
+ 319
+
+
+ CF$UID
+ 319
+
+
+ CF$UID
+ 319
+
+
+ CF$UID
+ 319
+
+
+
+ Link Binary With Libraries
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ {0, 0}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 326
+
+
+ CF$UID
+ 327
+
+
+ CF$UID
+ 329
+
+
+ CF$UID
+ 331
+
+
+ CF$UID
+ 333
+
+
+ CF$UID
+ 335
+
+
+ CF$UID
+ 337
+
+
+ CF$UID
+ 339
+
+
+ CF$UID
+ 341
+
+
+ CF$UID
+ 343
+
+
+ CF$UID
+ 345
+
+
+ CF$UID
+ 347
+
+
+ NS.objects
+
+
+ CF$UID
+ 349
+
+
+ CF$UID
+ 353
+
+
+ CF$UID
+ 360
+
+
+ CF$UID
+ 364
+
+
+ CF$UID
+ 367
+
+
+ CF$UID
+ 371
+
+
+ CF$UID
+ 374
+
+
+ CF$UID
+ 377
+
+
+ CF$UID
+ 380
+
+
+ CF$UID
+ 384
+
+
+ CF$UID
+ 387
+
+
+ CF$UID
+ 391
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 105
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 328
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/LmuTrackerCommon.h
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 330
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/WiFiEvidenceSource.m
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 332
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/MPController.m
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 334
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.m
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 336
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/Apple80211.h
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 338
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/LmuTracker.c
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 340
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/HACKING.html
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 342
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/WiFiEvidenceSource.h
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 344
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/EvidenceSource.h
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 346
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.h
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 348
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/EvidenceSource.m
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 350
+
+
+ CF$UID
+ 351
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 352
+
+
+
+ 332216114.80079198
+ {3893, 754}
+ {6428, 0}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 354
+
+
+ CF$UID
+ 355
+
+
+ CF$UID
+ 356
+
+
+ CF$UID
+ 357
+
+
+ NS.objects
+
+
+ CF$UID
+ 358
+
+
+ CF$UID
+ 359
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ PrimaryDocumentTimestamp
+ PrimaryDocumentVisibleCharacterRange
+ HideAllIssues
+ PrimaryDocumentSelectedCharacterRange
+ 332022206.80631
+ {0, 1110}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 361
+
+
+ CF$UID
+ 362
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 363
+
+
+
+ 332216234.88501501
+ {196, 485}
+ {240, 91}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 365
+
+
+ CF$UID
+ 366
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332216752.18140602
+ {960, 752}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 368
+
+
+ CF$UID
+ 369
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 370
+
+
+
+ 332218181.541466
+ {2597, 1281}
+ {3026, 0}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 354
+
+
+ CF$UID
+ 355
+
+
+ CF$UID
+ 356
+
+
+ CF$UID
+ 357
+
+
+ NS.objects
+
+
+ CF$UID
+ 372
+
+
+ CF$UID
+ 373
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332026167.380916
+ {0, 1233}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 354
+
+
+ CF$UID
+ 355
+
+
+ CF$UID
+ 356
+
+
+ CF$UID
+ 357
+
+
+ NS.objects
+
+
+ CF$UID
+ 375
+
+
+ CF$UID
+ 376
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332022215.96760398
+ {0, 1476}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 378
+
+
+ CF$UID
+ 379
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332216771.731915
+ {1207, 1035}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 354
+
+
+ CF$UID
+ 355
+
+
+ CF$UID
+ 356
+
+
+ CF$UID
+ 357
+
+
+ NS.objects
+
+
+ CF$UID
+ 381
+
+
+ CF$UID
+ 382
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 383
+
+
+
+ 332023091.46251702
+ {28, 552}
+ {284, 289}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 385
+
+
+ CF$UID
+ 386
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332216549.53318399
+ {0, 585}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 388
+
+
+ CF$UID
+ 389
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 390
+
+
+
+ 332217411.71046901
+ {0, 823}
+ {253, 0}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 392
+
+
+ CF$UID
+ 393
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 394
+
+
+
+ 332216590.47776902
+ {7572, 1272}
+ {8461, 0}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 396
+
+
+ NS.objects
+
+
+ CF$UID
+ 398
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 397
+
+
+ x-xcode-log://9273D295-53B5-437B-9367-4A67186B3C27
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 399
+
+
+ NS.objects
+
+
+ CF$UID
+ 400
+
+
+
+ SelectedDocumentLocations
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 401
+
+
+
+
+ $class
+
+ CF$UID
+ 406
+
+ documentURL
+
+ CF$UID
+ 397
+
+ expandTranscript
+
+ indexPath
+
+ CF$UID
+ 402
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 405
+
+ NSIndexPathData
+
+ CF$UID
+ 403
+
+ NSIndexPathLength
+ 2
+
+
+ $class
+
+ CF$UID
+ 404
+
+ NS.data
+
+ AKIB
+
+
+
+ $classes
+
+ NSMutableData
+ NSData
+ NSObject
+
+ $classname
+ NSMutableData
+
+
+ $classes
+
+ NSIndexPath
+ NSObject
+
+ $classname
+ NSIndexPath
+
+
+ $classes
+
+ IDELogDocumentLocation
+ DVTDocumentLocation
+ NSObject
+
+ $classname
+ IDELogDocumentLocation
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 408
+
+
+ CF$UID
+ 410
+
+
+ NS.objects
+
+
+ CF$UID
+ 412
+
+
+ CF$UID
+ 415
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 409
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/src/BluetoothEvidenceSource.m
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 411
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 141
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 138
+
+
+ NS.objects
+
+
+ CF$UID
+ 323
+
+
+ CF$UID
+ 413
+
+
+ CF$UID
+ 414
+
+
+
+ {679, 767}
+ 332218152.37082303
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 141
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 138
+
+
+ NS.objects
+
+
+ CF$UID
+ 323
+
+
+ CF$UID
+ 416
+
+
+ CF$UID
+ 417
+
+
+
+ {382, 762}
+ 332218261.58621299
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 419
+
+
+ CF$UID
+ 420
+
+
+ NS.objects
+
+
+ CF$UID
+ 421
+
+
+ CF$UID
+ 422
+
+
+
+ IDEDeviceLocation
+ IDEDeviceArchitecture
+ dvtdevice-local-computer:localhost
+ x86_64
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 424
+
+
+ NS.objects
+
+
+ CF$UID
+ 425
+
+
+
+ IDENameString
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 427
+
+
+ CF$UID
+ 428
+
+
+ CF$UID
+ 429
+
+
+ NS.objects
+
+
+ CF$UID
+ 430
+
+
+ CF$UID
+ 455
+
+
+ CF$UID
+ 437
+
+
+
+ IDEActivityReportCompletionSummaryStringSegments
+ IDEActivityReportOptions
+ IDEActivityReportTitle
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 431
+
+
+ CF$UID
+ 438
+
+
+ CF$UID
+ 442
+
+
+ CF$UID
+ 446
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 432
+
+
+ CF$UID
+ 433
+
+
+ CF$UID
+ 434
+
+
+ NS.objects
+
+
+ CF$UID
+ 435
+
+
+ CF$UID
+ 436
+
+
+ CF$UID
+ 437
+
+
+
+ IDEActivityReportStringSegmentPriority
+ IDEActivityReportStringSegmentBackSeparator
+ IDEActivityReportStringSegmentStringValue
+ 2
+
+ Build
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 432
+
+
+ CF$UID
+ 433
+
+
+ CF$UID
+ 434
+
+
+ NS.objects
+
+
+ CF$UID
+ 439
+
+
+ CF$UID
+ 440
+
+
+ CF$UID
+ 441
+
+
+
+ 4
+ :
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 432
+
+
+ CF$UID
+ 433
+
+
+ CF$UID
+ 434
+
+
+ NS.objects
+
+
+ CF$UID
+ 443
+
+
+ CF$UID
+ 444
+
+
+ CF$UID
+ 445
+
+
+
+ 1
+ │
+
+ $class
+
+ CF$UID
+ 404
+
+ NS.data
+
+ YnBsaXN0MDDUAQIDBAUGOzxYJHZlcnNpb25YJG9iamVjdHNZJGFy
+ Y2hpdmVyVCR0b3ASAAGGoK0HCA8QGhscJCUrMTQ3VSRudWxs0wkK
+ CwwNDlxOU0F0dHJpYnV0ZXNWJGNsYXNzWE5TU3RyaW5ngAOADIAC
+ WVN1Y2NlZWRlZNMKERITFBdXTlMua2V5c1pOUy5vYmplY3RzgAui
+ FRaABIAFohgZgAaACVZOU0ZvbnRXTlNDb2xvctQKHR4fICEiI1ZO
+ U05hbWVWTlNTaXplWE5TZkZsYWdzgAiAByNAJgAAAAAAABENEF8Q
+ EUx1Y2lkYUdyYW5kZS1Cb2xk0iYnKClaJGNsYXNzbmFtZVgkY2xh
+ c3Nlc1ZOU0ZvbnSiKCpYTlNPYmplY3TTCiwtLi8wXE5TQ29sb3JT
+ cGFjZVdOU1doaXRlgAoQA0IwANImJzIzV05TQ29sb3KiMirSJic1
+ NlxOU0RpY3Rpb25hcnmiNSrSJic4OV8QEk5TQXR0cmlidXRlZFN0
+ cmluZ6I6Kl8QEk5TQXR0cmlidXRlZFN0cmluZ18QD05TS2V5ZWRB
+ cmNoaXZlctE9PlRyb290gAEACAARABoAIwAtADIANwBFAEsAUgBf
+ AGYAbwBxAHMAdQB/AIYAjgCZAJsAngCgAKIApQCnAKkAsAC4AMEA
+ yADPANgA2gDcAOUA6AD8AQEBDAEVARwBHwEoAS8BPAFEAUYBSAFL
+ AVABWAFbAWABbQFwAXUBigGNAaIBtAG3AbwAAAAAAAACAQAAAAAA
+ AAA/AAAAAAAAAAAAAAAAAAABvg==
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 432
+
+
+ CF$UID
+ 447
+
+
+ CF$UID
+ 448
+
+
+ CF$UID
+ 434
+
+
+ CF$UID
+ 449
+
+
+ CF$UID
+ 450
+
+
+ NS.objects
+
+
+ CF$UID
+ 451
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 452
+
+
+ CF$UID
+ 454
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 159
+
+
+
+ IDEActivityReportStringSegmentType
+ IDEActivityReportStringSegmentDate
+ IDEActivityReportStringSegmentDateStyle
+ IDEActivityReportStringSegmentTimeStyle
+ 3
+
+ $class
+
+ CF$UID
+ 453
+
+ NS.time
+ 332218220.65258902
+
+
+ $classes
+
+ NSDate
+ NSObject
+
+ $classname
+ NSDate
+
+ Today at 9:50 PM
+ 106
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 5
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 458
+
+
+ CF$UID
+ 339
+
+
+ CF$UID
+ 212
+
+
+ CF$UID
+ 214
+
+
+ CF$UID
+ 326
+
+
+ NS.objects
+
+
+ CF$UID
+ 460
+
+
+ CF$UID
+ 465
+
+
+ CF$UID
+ 468
+
+
+ CF$UID
+ 471
+
+
+ CF$UID
+ 474
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 459
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/IPRule.nib/
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 461
+
+
+ CF$UID
+ 462
+
+
+ NS.objects
+
+
+ CF$UID
+ 463
+
+
+ CF$UID
+ 464
+
+
+
+ width
+ height
+ 600
+ 600
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 461
+
+
+ CF$UID
+ 462
+
+
+ NS.objects
+
+
+ CF$UID
+ 466
+
+
+ CF$UID
+ 467
+
+
+
+ 600
+ 622
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 461
+
+
+ CF$UID
+ 462
+
+
+ NS.objects
+
+
+ CF$UID
+ 469
+
+
+ CF$UID
+ 470
+
+
+
+ 600
+ 600
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 461
+
+
+ CF$UID
+ 462
+
+
+ NS.objects
+
+
+ CF$UID
+ 472
+
+
+ CF$UID
+ 473
+
+
+
+ 600
+ 600
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 461
+
+
+ CF$UID
+ 462
+
+
+ NS.objects
+
+
+ CF$UID
+ 475
+
+
+ CF$UID
+ 476
+
+
+
+ 600
+ 600
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 478
+
+
+ CF$UID
+ 480
+
+
+ CF$UID
+ 481
+
+
+ CF$UID
+ 483
+
+
+ CF$UID
+ 485
+
+
+ CF$UID
+ 487
+
+
+ CF$UID
+ 489
+
+
+ CF$UID
+ 491
+
+
+ CF$UID
+ 493
+
+
+ CF$UID
+ 495
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 479
+
+
+ file://localhost/Users/dustin/Development/marcopolo/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 292
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 482
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/BluetoothEvidenceSource.m
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 484
+
+
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.m
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 486
+
+
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.h
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 488
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/MPController.m
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 490
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/EvidenceSource.m
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 492
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/EvidenceSource.h
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 494
+
+
+ file://localhost/Users/dustin/Development/marcopolo/HACKING.html
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 496
+
+
+ file://localhost/Users/dustin/Development/marcopolo/src/WiFiEvidenceSource.m
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 11
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 498
+
+
+ CF$UID
+ 16
+
+
+ NS.objects
+
+
+ CF$UID
+ 4
+
+
+ CF$UID
+ 499
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 498
+
+
+ CF$UID
+ 500
+
+
+ CF$UID
+ 597
+
+
+
+ IDEWorkspaceTabController_331625D8-42D6-4250-897C-6DDE01FD2830
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 498
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 501
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 502
+
+
+ CF$UID
+ 508
+
+
+ CF$UID
+ 527
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 535
+
+
+
+ IPRule.nib
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 503
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 504
+
+
+ CF$UID
+ 506
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 505
+
+
+
+ 398
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 507
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 509
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 510
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 511
+
+
+ CF$UID
+ 516
+
+
+
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 512
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 515
+
+
+
+ MarcoPolo
+ Resources
+ IPRule.nib
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 517
+
+
+ CF$UID
+ 518
+
+
+ CF$UID
+ 519
+
+
+ CF$UID
+ 520
+
+
+ CF$UID
+ 521
+
+
+ CF$UID
+ 522
+
+
+ CF$UID
+ 523
+
+
+ CF$UID
+ 525
+
+
+ CF$UID
+ 526
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+
+ GenericRule.nib
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 513
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 528
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 529
+
+
+ CF$UID
+ 531
+
+
+ CF$UID
+ 533
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 530
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 532
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 534
+
+
+
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 536
+
+
+ CF$UID
+ 548
+
+
+ CF$UID
+ 575
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 590
+
+
+ CF$UID
+ 596
+
+
+ CF$UID
+ 19
+
+
+
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 537
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 546
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 538
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 546
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 545
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 539
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 544
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 540
+
+
+ CF$UID
+ 541
+
+
+ CF$UID
+ 542
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 515
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 543
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 459
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 547
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 537
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 549
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 550
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 551
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 573
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 552
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 553
+
+
+ CF$UID
+ 554
+
+
+ CF$UID
+ 562
+
+
+ CF$UID
+ 569
+
+
+ CF$UID
+ 515
+
+
+ CF$UID
+ 570
+
+
+ CF$UID
+ 571
+
+
+
+ com.apple.InterfaceBuilder2.Cocoa.NIB
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 561
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 555
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 560
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 556
+
+
+ CF$UID
+ 557
+
+
+ CF$UID
+ 558
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 515
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 559
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 459
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 563
+
+
+ CF$UID
+ 565
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 566
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 564
+
+
+
+ 270
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 567
+
+
+ CF$UID
+ 568
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+ Panel
+ Xcode.IDEKit.CocoaIntegration.EditorDocument.Cocoa
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 572
+
+
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/IPRule.nib/
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 574
+
+
+
+ {{0, 0}, {600, 600}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 576
+
+
+ CF$UID
+ 577
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 578
+
+
+ CF$UID
+ 584
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 579
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 580
+
+
+ CF$UID
+ 582
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 581
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 583
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 585
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 586
+
+
+ CF$UID
+ 588
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 587
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 589
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 591
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 592
+
+
+ CF$UID
+ 594
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 593
+
+
+
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 595
+
+
+
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ {{0, 132}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 16
+
+
+ CF$UID
+ 599
+
+
+ CF$UID
+ 600
+
+
+ NS.objects
+
+
+ CF$UID
+ 599
+
+
+ CF$UID
+ 601
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 602
+
+
+ CF$UID
+ 603
+
+
+ CF$UID
+ 5
+
+
+
+ IDEWorkspaceTabController_082751A1-767D-4B25-9E96-72354617746D
+ IDEWorkspaceWindowControllerUniqueIdentifier
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 599
+
+
+
+ {{0, 50}, {1280, 728}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 21
+
+
+ NS.objects
+
+
+ CF$UID
+ 604
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 722
+
+
+ CF$UID
+ 728
+
+
+ CF$UID
+ 820
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 828
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 605
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 606
+
+
+ CF$UID
+ 618
+
+
+ CF$UID
+ 650
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 665
+
+
+ CF$UID
+ 671
+
+
+ CF$UID
+ 672
+
+
+ CF$UID
+ 179
+
+
+
+ IDEEditorMode_Genius
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 607
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 616
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 608
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 616
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 614
+
+ DomainIdentifier
+
+ CF$UID
+ 609
+
+ IdentifierPath
+
+ CF$UID
+ 610
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 613
+
+
+ Xcode.IDENavigableItemDomain.WorkspaceStructure
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 611
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 612
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 615
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/MarcoPolo.xcodeproj/
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 617
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 607
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 619
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 620
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 621
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 648
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 622
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 623
+
+
+ CF$UID
+ 624
+
+
+ CF$UID
+ 629
+
+
+ CF$UID
+ 644
+
+
+ CF$UID
+ 644
+
+
+ CF$UID
+ 645
+
+
+ CF$UID
+ 646
+
+
+
+ com.apple.xcode.project
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 614
+
+ DomainIdentifier
+
+ CF$UID
+ 609
+
+ IdentifierPath
+
+ CF$UID
+ 625
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 628
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 626
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 627
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 276
+
+
+ CF$UID
+ 277
+
+
+ CF$UID
+ 278
+
+
+ CF$UID
+ 279
+
+
+ CF$UID
+ 280
+
+
+ CF$UID
+ 281
+
+
+ NS.objects
+
+
+ CF$UID
+ 630
+
+
+ CF$UID
+ 631
+
+
+ CF$UID
+ 637
+
+
+ CF$UID
+ 638
+
+
+ CF$UID
+ 643
+
+
+ CF$UID
+ 301
+
+
+
+ Xcode3ProjectInfoEditor
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 632
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 633
+
+
+ CF$UID
+ 635
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 634
+
+
+
+ 170
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 636
+
+
+
+ 835
+ Xcode3InfoEditor
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 639
+
+
+
+
+ $class
+
+ CF$UID
+ 299
+
+ documentURL
+
+ CF$UID
+ 292
+
+ selection
+
+ CF$UID
+ 641
+
+ timestamp
+
+ CF$UID
+ 640
+
+
+ 332218261.60266501
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 295
+
+
+ CF$UID
+ 296
+
+
+ NS.objects
+
+
+ CF$UID
+ 642
+
+
+ CF$UID
+ 298
+
+
+
+ Xcode3InfoEditor
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ MarcoPolo
+ Xcode.Xcode3ProjectSupport.EditorDocument.Xcode3Project
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 647
+
+
+ file://localhost/Users/dustin/Development/marcopolo/MarcoPolo.xcodeproj/
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 649
+
+
+
+ {{0, 0}, {1005, 402}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 158
+
+
+ CF$UID
+ 157
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 651
+
+
+ CF$UID
+ 652
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 653
+
+
+ CF$UID
+ 659
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 654
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 655
+
+
+ CF$UID
+ 657
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 656
+
+
+
+ 294
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 658
+
+
+
+ 710
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 660
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 661
+
+
+ CF$UID
+ 663
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 662
+
+
+
+ 294
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 664
+
+
+
+ 710
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 666
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 667
+
+
+ CF$UID
+ 669
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 668
+
+
+
+ 424
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 670
+
+
+
+ 228
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 673
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 674
+
+
+ CF$UID
+ 675
+
+
+
+ SplitPosition
+ 0.55124378204345703
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 676
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 677
+
+
+ CF$UID
+ 700
+
+
+
+ Alternate
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 678
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 698
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 679
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 130
+
+
+ CF$UID
+ 680
+
+
+ CF$UID
+ 690
+
+
+ CF$UID
+ 694
+
+
+ CF$UID
+ 695
+
+
+ CF$UID
+ 146
+
+
+ CF$UID
+ 696
+
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 688
+
+ DomainIdentifier
+
+ CF$UID
+ 0
+
+ IdentifierPath
+
+ CF$UID
+ 681
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 682
+
+
+ CF$UID
+ 685
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 683
+
+
+ NS.objects
+
+
+ CF$UID
+ 684
+
+
+
+ navigableItem_name
+ WiFiEvidenceSource2.m
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 686
+
+
+ NS.objects
+
+
+ CF$UID
+ 687
+
+
+
+ identifier
+ Xcode.IDEKit.GeniusCategory.Counterparts
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 689
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 106
+
+ NS.string
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.m
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 691
+
+
+ CF$UID
+ 692
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 693
+
+
+
+ 332217407.35539699
+ {0, 523}
+ {156, 0}
+ WiFiEvidenceSource2.m
+ WiFiEvidenceSource2.m
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 697
+
+
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.m
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 699
+
+
+
+ {{0, 0}, {450, 402}}
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 701
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 720
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 702
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 703
+
+
+ CF$UID
+ 704
+
+
+ CF$UID
+ 714
+
+
+ CF$UID
+ 707
+
+
+ CF$UID
+ 707
+
+
+ CF$UID
+ 146
+
+
+ CF$UID
+ 718
+
+
+
+ public.c-header
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 713
+
+ DomainIdentifier
+
+ CF$UID
+ 609
+
+ IdentifierPath
+
+ CF$UID
+ 705
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 706
+
+
+ CF$UID
+ 708
+
+
+ CF$UID
+ 709
+
+
+ CF$UID
+ 710
+
+
+ CF$UID
+ 711
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 707
+
+
+ WiFiEvidenceSource2.h
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 71
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 70
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 61
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 712
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 346
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 715
+
+
+ CF$UID
+ 716
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 717
+
+
+
+ 332217407.355147
+ {0, 823}
+ {253, 0}
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 719
+
+
+ file://localhost/Users/dustin/Development/marcopolo/WiFiEvidenceSource2.h
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 721
+
+
+
+ {{0, 0}, {1005, 402}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 723
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 724
+
+
+ CF$UID
+ 726
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 725
+
+
+
+ 428
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 727
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 729
+
+
+ CF$UID
+ 730
+
+
+ CF$UID
+ 731
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 732
+
+
+ CF$UID
+ 733
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 734
+
+
+ NS.objects
+
+
+ CF$UID
+ 735
+
+
+ CF$UID
+ 746
+
+
+ CF$UID
+ 750
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 762
+
+
+ CF$UID
+ 789
+
+
+ CF$UID
+ 796
+
+
+ CF$UID
+ 813
+
+
+
+ Xcode.IDEKit.Navigator.Symbol
+ Xcode.DebuggerKit.ThreadsStacksNavigator
+ Xcode.IDEKit.Navigator.BatchFind
+ Xcode.IDEKit.Navigator.Issues
+ Xcode.IDEKit.Navigator.Breakpoints
+ Xcode.IDEKit.Navigator.Logs
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 736
+
+
+ CF$UID
+ 737
+
+
+ CF$UID
+ 738
+
+
+ CF$UID
+ 739
+
+
+ CF$UID
+ 740
+
+
+ CF$UID
+ 741
+
+
+ CF$UID
+ 742
+
+
+ NS.objects
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 743
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 744
+
+
+ CF$UID
+ 745
+
+
+ CF$UID
+ 179
+
+
+
+ IDESymbolNavigatorShowContainersOnly
+ IDESymbolNavigatorShowHierarchy
+ IDEExpandedItems
+ IDESymbolNavigatorShowClassesOnly
+ IDESymbolNamePatternString
+ IDESymbolNavigatorSelectedSymbols
+ IDESymbolNavigatorShowWorkspaceOnly
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 747
+
+
+ CF$UID
+ 748
+
+
+ CF$UID
+ 749
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 19
+
+
+
+ IDEStackCompressionValue
+ IDEThreadsOrQueuesMode
+ IDEHideAncestorForNonInterestingFrames
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 751
+
+
+ CF$UID
+ 752
+
+
+ CF$UID
+ 753
+
+
+ CF$UID
+ 754
+
+
+ CF$UID
+ 755
+
+
+ CF$UID
+ 756
+
+
+ CF$UID
+ 757
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 744
+
+
+ CF$UID
+ 744
+
+
+ CF$UID
+ 758
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 760
+
+
+
+ IDEBatchFindNavigatorScrollPosition
+ IDEBatchFindNavigatorShowsOptions
+ IDEBatchFindNavigatorReplaceString
+ IDEBatchFindNavigatorFindString
+ IDEBatchFindNavigatorSelectedRowIndexes
+ IDEBatchFindNavigatorFindMode
+ IDEBatchFindNavigatorCollapsedGroups
+
+ $class
+
+ CF$UID
+ 759
+
+ NSRangeCount
+ 0
+
+
+ $classes
+
+ NSIndexSet
+ NSObject
+
+ $classname
+ NSIndexSet
+
+
+ $class
+
+ CF$UID
+ 761
+
+ NSRangeCount
+ 0
+
+
+ $classes
+
+ NSMutableIndexSet
+ NSIndexSet
+ NSObject
+
+ $classname
+ NSMutableIndexSet
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 763
+
+
+ CF$UID
+ 764
+
+
+ CF$UID
+ 765
+
+
+ CF$UID
+ 766
+
+
+ CF$UID
+ 767
+
+
+ CF$UID
+ 768
+
+
+ CF$UID
+ 769
+
+
+ CF$UID
+ 770
+
+
+ CF$UID
+ 771
+
+
+ CF$UID
+ 772
+
+
+ NS.objects
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 773
+
+
+ CF$UID
+ 774
+
+
+ CF$UID
+ 785
+
+
+ CF$UID
+ 786
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 787
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 788
+
+
+
+ IDEErrorFilteringEnabled
+ IDEVisibleRect
+ IDECollapsedFiles
+ IDEExpandedIssues
+ IDESelectedNavigables
+ IDEShowsByType
+ IDESchemeFilteringEnabled
+ IDECollapsedTypes
+ IDERecentFilteringEnabled
+ IDECollapsedGroups
+ {{0, 0}, {259, 586}}
+
+ $class
+
+ CF$UID
+ 784
+
+ NS.objects
+
+
+ CF$UID
+ 775
+
+
+ CF$UID
+ 776
+
+
+ CF$UID
+ 777
+
+
+ CF$UID
+ 778
+
+
+ CF$UID
+ 779
+
+
+ CF$UID
+ 780
+
+
+ CF$UID
+ 781
+
+
+ CF$UID
+ 782
+
+
+ CF$UID
+ 783
+
+
+
+ MarcoPolo/Users/dustin/Development/marcopolo/de.lproj/MainMenu.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/en.lproj/MainMenu.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/da.lproj/MainMenu.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/it.lproj/MainMenu.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/fr.lproj/MainMenu.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/src/DNDArrayController.m
+ MarcoPolo/Users/dustin/Development/marcopolo/pt_BR.lproj/LightRule.nib
+ MarcoPolo/Users/dustin/Development/marcopolo/pt_BR.lproj/MainMenu.nib
+ MarcoPolo/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSTableView.h
+
+ $classes
+
+ NSMutableSet
+ NSSet
+ NSObject
+
+ $classname
+ NSMutableSet
+
+
+ $class
+
+ CF$UID
+ 784
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 784
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 784
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 790
+
+
+ CF$UID
+ 791
+
+
+ CF$UID
+ 792
+
+
+ CF$UID
+ 793
+
+
+ NS.objects
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 794
+
+
+ CF$UID
+ 795
+
+
+
+ IDECollapsedtemsSet
+ IDEBreakpointNavigatorFilterOnEnabled
+ IDESelectedObjects
+ IDEVisibleRect
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ {{0, 0}, {259, 608}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 797
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 798
+
+
+ CF$UID
+ 801
+
+
+
+ {{0, 0}, {259, 608}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 799
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 802
+
+
+ CF$UID
+ 803
+
+
+ CF$UID
+ 805
+
+
+ CF$UID
+ 806
+
+
+ CF$UID
+ 807
+
+
+ CF$UID
+ 808
+
+
+ CF$UID
+ 809
+
+
+ CF$UID
+ 810
+
+
+ CF$UID
+ 811
+
+
+ CF$UID
+ 812
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 804
+
+
+
+ Docs
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 800
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 814
+
+
+ CF$UID
+ 815
+
+
+ CF$UID
+ 816
+
+
+ CF$UID
+ 817
+
+
+ NS.objects
+
+
+ CF$UID
+ 818
+
+
+ CF$UID
+ 819
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 795
+
+
+
+ IDELogNavigatorExpandedItemsStateKey
+ IDELogNavigatorSelectedObjectsStateKey
+ IDELogNavigatorRecentFilterStateKey
+ IDELogNavigatorVisibleRectStateKey
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 821
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 822
+
+
+ CF$UID
+ 824
+
+
+ CF$UID
+ 826
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 823
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 825
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 827
+
+
+
+ 260
+ MarcoPolo.xcodeproj
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 830
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 16
+
+
+ CF$UID
+ 11
+
+
+ NS.objects
+
+
+ CF$UID
+ 831
+
+
+ CF$UID
+ 922
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 830
+
+
+ CF$UID
+ 923
+
+
+ CF$UID
+ 6
+
+
+
+ IDEWorkspaceTabController_7A490579-B7FD-45B0-B628-814CD60D2A4D
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 832
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 833
+
+
+ CF$UID
+ 839
+
+
+ CF$UID
+ 856
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 864
+
+
+
+ GenericRule.nib
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 834
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 835
+
+
+ CF$UID
+ 837
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 836
+
+
+
+ 398
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 838
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 840
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 841
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 842
+
+
+ CF$UID
+ 846
+
+
+
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 843
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+ CF$UID
+ 845
+
+
+
+ MarcoPolo
+ GenericRule.nib (English)
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 847
+
+
+ CF$UID
+ 848
+
+
+ CF$UID
+ 849
+
+
+ CF$UID
+ 850
+
+
+ CF$UID
+ 851
+
+
+ CF$UID
+ 852
+
+
+ CF$UID
+ 853
+
+
+ CF$UID
+ 854
+
+
+ CF$UID
+ 855
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 844
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 857
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 858
+
+
+ CF$UID
+ 860
+
+
+ CF$UID
+ 862
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 859
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 861
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 863
+
+
+
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 865
+
+
+ CF$UID
+ 877
+
+
+ CF$UID
+ 900
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 915
+
+
+ CF$UID
+ 921
+
+
+ CF$UID
+ 19
+
+
+
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 866
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 875
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 867
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 875
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 874
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 868
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 873
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 869
+
+
+ CF$UID
+ 870
+
+
+ CF$UID
+ 871
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 524
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 872
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 213
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 876
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 866
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 878
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 879
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 880
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 898
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 881
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 553
+
+
+ CF$UID
+ 882
+
+
+ CF$UID
+ 890
+
+
+ CF$UID
+ 895
+
+
+ CF$UID
+ 524
+
+
+ CF$UID
+ 570
+
+
+ CF$UID
+ 896
+
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 889
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 883
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 888
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 884
+
+
+ CF$UID
+ 885
+
+
+ CF$UID
+ 886
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 524
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 887
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 213
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 891
+
+
+ CF$UID
+ 892
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 893
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 239
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 244
+
+
+ CF$UID
+ 894
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+ Panel
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 897
+
+
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/GenericRule.nib/
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 899
+
+
+
+ {{0, 0}, {600, 600}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 901
+
+
+ CF$UID
+ 902
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 903
+
+
+ CF$UID
+ 909
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 904
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 905
+
+
+ CF$UID
+ 907
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 906
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 908
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 910
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 911
+
+
+ CF$UID
+ 913
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 912
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 914
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 916
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 917
+
+
+ CF$UID
+ 919
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 918
+
+
+
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 920
+
+
+
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 830
+
+
+
+ {{0, 132}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 11
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 925
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 16
+
+
+ NS.objects
+
+
+ CF$UID
+ 7
+
+
+ CF$UID
+ 926
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 927
+
+
+ CF$UID
+ 925
+
+
+ CF$UID
+ 1015
+
+
+
+ IDEWorkspaceTabController_10C40737-B4A0-48DC-8F63-7A74A8D0DC3E
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 925
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 928
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 929
+
+
+ CF$UID
+ 935
+
+
+ CF$UID
+ 953
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 961
+
+
+
+ HACKING.html
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 930
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 931
+
+
+ CF$UID
+ 933
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 932
+
+
+
+ 398
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 934
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 936
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 937
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 938
+
+
+ CF$UID
+ 942
+
+
+
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 939
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 804
+
+
+ CF$UID
+ 941
+
+
+
+ MarcoPolo
+ HACKING.html
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 943
+
+
+ CF$UID
+ 944
+
+
+ CF$UID
+ 945
+
+
+ CF$UID
+ 946
+
+
+ CF$UID
+ 947
+
+
+ CF$UID
+ 948
+
+
+ CF$UID
+ 949
+
+
+ CF$UID
+ 950
+
+
+ CF$UID
+ 951
+
+
+ CF$UID
+ 952
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 804
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 940
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 954
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 955
+
+
+ CF$UID
+ 957
+
+
+ CF$UID
+ 959
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 956
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 958
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 960
+
+
+
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 962
+
+
+ CF$UID
+ 973
+
+
+ CF$UID
+ 993
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1008
+
+
+ CF$UID
+ 1014
+
+
+ CF$UID
+ 19
+
+
+
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 963
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 971
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 964
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 971
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 970
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 965
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 966
+
+
+ CF$UID
+ 967
+
+
+ CF$UID
+ 968
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 941
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 804
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 969
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 340
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 972
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 963
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 974
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 975
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 976
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 991
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 977
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 978
+
+
+ CF$UID
+ 979
+
+
+ CF$UID
+ 985
+
+
+ CF$UID
+ 988
+
+
+ CF$UID
+ 941
+
+
+ CF$UID
+ 146
+
+
+ CF$UID
+ 989
+
+
+
+ public.html
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 970
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 980
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 30
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 981
+
+
+ CF$UID
+ 982
+
+
+ CF$UID
+ 983
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 941
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 804
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 984
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 138
+
+
+ CF$UID
+ 139
+
+
+ CF$UID
+ 140
+
+
+ CF$UID
+ 141
+
+
+ NS.objects
+
+
+ CF$UID
+ 986
+
+
+ CF$UID
+ 987
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 323
+
+
+
+ 332217387.51588601
+ {1207, 1035}
+ <html>
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 990
+
+
+ file://localhost/Users/dustin/Development/marcopolo/HACKING.html
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 992
+
+
+
+ {{0, 0}, {600, 622}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 994
+
+
+ CF$UID
+ 995
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 996
+
+
+ CF$UID
+ 1002
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 997
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 998
+
+
+ CF$UID
+ 1000
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 999
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1001
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1003
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1004
+
+
+ CF$UID
+ 1006
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 1005
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1007
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1009
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1010
+
+
+ CF$UID
+ 1012
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 1011
+
+
+
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 1013
+
+
+
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ {{32, 98}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 11
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 1017
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 16
+
+
+ NS.objects
+
+
+ CF$UID
+ 8
+
+
+ CF$UID
+ 1018
+
+
+ CF$UID
+ 1019
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1017
+
+
+ CF$UID
+ 1107
+
+
+
+ IDEWorkspaceTabController_B3B60EC1-0856-4CC2-9443-EFDF2B65B1E8
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1017
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 832
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1020
+
+
+ CF$UID
+ 1026
+
+
+ CF$UID
+ 1041
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1049
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1021
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1022
+
+
+ CF$UID
+ 1024
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 1023
+
+
+
+ 398
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 1025
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 1027
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 1028
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1029
+
+
+ CF$UID
+ 1032
+
+
+
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1030
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 524
+
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 1033
+
+
+ CF$UID
+ 1034
+
+
+ CF$UID
+ 1035
+
+
+ CF$UID
+ 1036
+
+
+ CF$UID
+ 1037
+
+
+ CF$UID
+ 1038
+
+
+ CF$UID
+ 1039
+
+
+ CF$UID
+ 1040
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1031
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1042
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1043
+
+
+ CF$UID
+ 1045
+
+
+ CF$UID
+ 1047
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 1044
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 1046
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 1048
+
+
+
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 1050
+
+
+ CF$UID
+ 1062
+
+
+ CF$UID
+ 1085
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1100
+
+
+ CF$UID
+ 1106
+
+
+ CF$UID
+ 19
+
+
+
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 1051
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 1060
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 1052
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 1060
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 1059
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 1053
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 1058
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1054
+
+
+ CF$UID
+ 1055
+
+
+ CF$UID
+ 1056
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 524
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1057
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 213
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 1061
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1051
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 1063
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 1064
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 1065
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1083
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1066
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 553
+
+
+ CF$UID
+ 1067
+
+
+ CF$UID
+ 1075
+
+
+ CF$UID
+ 895
+
+
+ CF$UID
+ 524
+
+
+ CF$UID
+ 570
+
+
+ CF$UID
+ 1081
+
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 1074
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 1068
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 1073
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1069
+
+
+ CF$UID
+ 1070
+
+
+ CF$UID
+ 1071
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 524
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1072
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 213
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 1076
+
+
+ CF$UID
+ 1078
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 1079
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 1077
+
+
+
+ 270
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 244
+
+
+ CF$UID
+ 1080
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 231
+
+
+
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 1082
+
+
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/GenericRule.nib/
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1084
+
+
+
+ {{0, 0}, {600, 600}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 1086
+
+
+ CF$UID
+ 1087
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 1088
+
+
+ CF$UID
+ 1094
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1089
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1090
+
+
+ CF$UID
+ 1092
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 1091
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1093
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1095
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1096
+
+
+ CF$UID
+ 1098
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 1097
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1099
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1101
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1102
+
+
+ CF$UID
+ 1104
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 1103
+
+
+
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 1105
+
+
+
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+ {{0, 132}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 11
+
+
+ CF$UID
+ 12
+
+
+ CF$UID
+ 13
+
+
+ CF$UID
+ 14
+
+
+ CF$UID
+ 16
+
+
+ CF$UID
+ 1109
+
+
+ NS.objects
+
+
+ CF$UID
+ 9
+
+
+ CF$UID
+ 1110
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1109
+
+
+ CF$UID
+ 1111
+
+
+ CF$UID
+ 1112
+
+
+
+ IDEWorkspaceTabController_D60B7F87-9175-4749-A5B3-504C175B1B05
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1109
+
+
+
+ {{0, 132}, {600, 646}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 21
+
+
+ CF$UID
+ 22
+
+
+ CF$UID
+ 23
+
+
+ CF$UID
+ 24
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 26
+
+
+ CF$UID
+ 27
+
+
+ CF$UID
+ 28
+
+
+ NS.objects
+
+
+ CF$UID
+ 1113
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1114
+
+
+ CF$UID
+ 1120
+
+
+ CF$UID
+ 1135
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1143
+
+
+
+ MainMenu.nib
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1115
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1116
+
+
+ CF$UID
+ 1118
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 1117
+
+
+
+ 398
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 37
+
+
+ CF$UID
+ 1119
+
+
+
+ 224
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 45
+
+
+ CF$UID
+ 46
+
+
+ NS.objects
+
+
+ CF$UID
+ 46
+
+
+ CF$UID
+ 1121
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 48
+
+
+ CF$UID
+ 49
+
+
+ CF$UID
+ 50
+
+
+ CF$UID
+ 51
+
+
+ CF$UID
+ 52
+
+
+ CF$UID
+ 53
+
+
+ CF$UID
+ 54
+
+
+ NS.objects
+
+
+ CF$UID
+ 1122
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 56
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 19
+
+
+ CF$UID
+ 1123
+
+
+ CF$UID
+ 1126
+
+
+
+ {{0, 0}, {0, 0}}
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1124
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 514
+
+
+ CF$UID
+ 1113
+
+
+
+ MarcoPolo
+
+ $class
+
+ CF$UID
+ 57
+
+ NS.objects
+
+
+ CF$UID
+ 1127
+
+
+ CF$UID
+ 1128
+
+
+ CF$UID
+ 1129
+
+
+ CF$UID
+ 1130
+
+
+ CF$UID
+ 1131
+
+
+ CF$UID
+ 1132
+
+
+ CF$UID
+ 1133
+
+
+ CF$UID
+ 1134
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 514
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 66
+
+
+ CF$UID
+ 68
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 70
+
+
+ CF$UID
+ 71
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 66
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 61
+
+
+ CF$UID
+ 73
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1125
+
+
+ CF$UID
+ 61
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1136
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1137
+
+
+ CF$UID
+ 1139
+
+
+ CF$UID
+ 1141
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 25
+
+
+ CF$UID
+ 1138
+
+
+
+ 275
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 28
+
+
+ CF$UID
+ 1140
+
+
+
+ 1005
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 83
+
+
+ CF$UID
+ 1142
+
+
+
+ 260
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 86
+
+
+ CF$UID
+ 87
+
+
+ CF$UID
+ 88
+
+
+ CF$UID
+ 89
+
+
+ CF$UID
+ 90
+
+
+ CF$UID
+ 91
+
+
+ CF$UID
+ 92
+
+
+ CF$UID
+ 93
+
+
+ NS.objects
+
+
+ CF$UID
+ 1144
+
+
+ CF$UID
+ 1156
+
+
+ CF$UID
+ 1182
+
+
+ CF$UID
+ 179
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1197
+
+
+ CF$UID
+ 1203
+
+
+ CF$UID
+ 19
+
+
+
+
+ $class
+
+ CF$UID
+ 112
+
+ geniusEditorContextNode
+
+ CF$UID
+ 0
+
+ primaryEditorContextNode
+
+ CF$UID
+ 1145
+
+ rootLayoutTreeNode
+
+ CF$UID
+ 1154
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 0
+
+ contentType
+ 1
+ documentArchivableRepresentation
+
+ CF$UID
+ 1146
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 1154
+
+
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 1153
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 1147
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 1152
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1148
+
+
+ CF$UID
+ 1149
+
+
+ CF$UID
+ 1150
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1113
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1151
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 215
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 111
+
+ children
+
+ CF$UID
+ 1155
+
+ contentType
+ 0
+ documentArchivableRepresentation
+
+ CF$UID
+ 0
+
+ orientation
+ 0
+ parent
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1145
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 114
+
+
+ NS.objects
+
+
+ CF$UID
+ 1157
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 116
+
+
+ NS.objects
+
+
+ CF$UID
+ 1158
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 118
+
+
+ CF$UID
+ 119
+
+
+ CF$UID
+ 120
+
+
+ NS.objects
+
+
+ CF$UID
+ 1159
+
+
+ CF$UID
+ 30
+
+
+ CF$UID
+ 1180
+
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1160
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 123
+
+
+ CF$UID
+ 124
+
+
+ CF$UID
+ 125
+
+
+ CF$UID
+ 126
+
+
+ CF$UID
+ 127
+
+
+ CF$UID
+ 128
+
+
+ CF$UID
+ 129
+
+
+ NS.objects
+
+
+ CF$UID
+ 1161
+
+
+ CF$UID
+ 1162
+
+
+ CF$UID
+ 1170
+
+
+ CF$UID
+ 1177
+
+
+ CF$UID
+ 1113
+
+
+ CF$UID
+ 570
+
+
+ CF$UID
+ 1178
+
+
+
+ com.apple.InterfaceBuilder3.Cocoa.NIB
+
+ $class
+
+ CF$UID
+ 108
+
+ DocumentLocation
+
+ CF$UID
+ 1169
+
+ DomainIdentifier
+
+ CF$UID
+ 97
+
+ IdentifierPath
+
+ CF$UID
+ 1163
+
+ IndexOfDocumentIdentifier
+
+ CF$UID
+ 1168
+
+
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1164
+
+
+ CF$UID
+ 1165
+
+
+ CF$UID
+ 1166
+
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1113
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 514
+
+
+
+ $class
+
+ CF$UID
+ 100
+
+ Identifier
+
+ CF$UID
+ 1167
+
+
+ MarcoPolo
+ 9223372036854775807
+
+ $class
+
+ CF$UID
+ 107
+
+ documentURL
+
+ CF$UID
+ 215
+
+ timestamp
+
+ CF$UID
+ 0
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 233
+
+
+ CF$UID
+ 234
+
+
+ CF$UID
+ 235
+
+
+ CF$UID
+ 236
+
+
+ NS.objects
+
+
+ CF$UID
+ 1171
+
+
+ CF$UID
+ 1172
+
+
+ CF$UID
+ 236
+
+
+ CF$UID
+ 1174
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 238
+
+
+ NS.objects
+
+
+ CF$UID
+ 248
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1173
+
+
+
+ 390
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 242
+
+
+ CF$UID
+ 243
+
+
+ NS.objects
+
+
+ CF$UID
+ 252
+
+
+ CF$UID
+ 1175
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1176
+
+
+
+ 390
+ StatusbarMenu
+
+ $class
+
+ CF$UID
+ 149
+
+ NS.base
+
+ CF$UID
+ 0
+
+ NS.relative
+
+ CF$UID
+ 1179
+
+
+ file://localhost/Users/dustin/Development/marcopolo/en.lproj/MainMenu.nib/
+
+ $class
+
+ CF$UID
+ 18
+
+ NS.objects
+
+
+ CF$UID
+ 1181
+
+
+
+ {{0, 0}, {600, 600}}
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 153
+
+
+ CF$UID
+ 154
+
+
+ CF$UID
+ 155
+
+
+ CF$UID
+ 156
+
+
+ CF$UID
+ 157
+
+
+ CF$UID
+ 158
+
+
+ NS.objects
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 1183
+
+
+ CF$UID
+ 1184
+
+
+ CF$UID
+ 159
+
+
+ CF$UID
+ 1185
+
+
+ CF$UID
+ 1191
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 161
+
+
+ NS.objects
+
+
+ CF$UID
+ 30
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 163
+
+
+ NS.objects
+
+
+ CF$UID
+ 164
+
+
+
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1186
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1187
+
+
+ CF$UID
+ 1189
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 1188
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1190
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1192
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1193
+
+
+ CF$UID
+ 1195
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 168
+
+
+ CF$UID
+ 1194
+
+
+
+ 298
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 171
+
+
+ CF$UID
+ 1196
+
+
+
+ 301
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+
+ CF$UID
+ 32
+
+
+ NS.objects
+
+
+ CF$UID
+ 1198
+
+
+
+
+ $class
+
+ CF$UID
+ 42
+
+ NS.objects
+
+
+ CF$UID
+ 1199
+
+
+ CF$UID
+ 1201
+
+
+
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 183
+
+
+ CF$UID
+ 1200
+
+
+
+ 203
+
+ $class
+
+ CF$UID
+ 39
+
+ NS.keys
+
+
+ CF$UID
+ 35
+
+
+ CF$UID
+ 36
+
+
+ NS.objects
+
+
+ CF$UID
+ 186
+
+
+ CF$UID
+ 1202
+
+
+
+ 115
+
+ $class
+
+ CF$UID
+ 43
+
+ NS.keys
+
+ NS.objects
+
+
+
+ $top
+
+ State
+
+ CF$UID
+ 1
+
+
+ $version
+ 100000
+
+
diff --git a/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/WorkspaceSettings.xcsettings b/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/WorkspaceSettings.xcsettings
new file mode 100644
index 000000000..b7e3b137f
--- /dev/null
+++ b/MarcoPolo.xcodeproj/project.xcworkspace/xcuserdata/dustin.xcuserdatad/WorkspaceSettings.xcsettings
@@ -0,0 +1,18 @@
+
+
+
+
+ IDEWorkspaceUserSettings_BuildLocationStyle
+ 0
+ IDEWorkspaceUserSettings_BuildSubfolderNameStyle
+ 0
+ IDEWorkspaceUserSettings_DerivedDataLocationStyle
+ 0
+ IDEWorkspaceUserSettings_LiveSourceIssuesEnabled
+
+ IDEWorkspaceUserSettings_SnapshotAutomaticallyBeforeSignificantChanges
+
+ IDEWorkspaceUserSettings_SnapshotLocationStyle
+ 0
+
+
diff --git a/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist
new file mode 100644
index 000000000..b7aed03c1
--- /dev/null
+++ b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/MarcoPolo.xcscheme b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/MarcoPolo.xcscheme
new file mode 100644
index 000000000..68014bbc8
--- /dev/null
+++ b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/MarcoPolo.xcscheme
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/xcschememanagement.plist b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/xcschememanagement.plist
new file mode 100644
index 000000000..23cd23319
--- /dev/null
+++ b/MarcoPolo.xcodeproj/xcuserdata/dustin.xcuserdatad/xcschemes/xcschememanagement.plist
@@ -0,0 +1,22 @@
+
+
+
+
+ SchemeUserState
+
+ MarcoPolo.xcscheme
+
+ orderHint
+ 0
+
+
+ SuppressBuildableAutocreation
+
+ 8D1107260486CEB800E47090
+
+ primary
+
+
+
+
+
diff --git a/Sparkle.framework/Versions/A/Headers/SUAppcast.h b/Sparkle.framework/Versions/A/Headers/SUAppcast.h
index 209fe2061..171148a4d 100644
--- a/Sparkle.framework/Versions/A/Headers/SUAppcast.h
+++ b/Sparkle.framework/Versions/A/Headers/SUAppcast.h
@@ -6,22 +6,28 @@
// Copyright 2006 Andy Matuschak. All rights reserved.
//
-#import
+#ifndef SUAPPCAST_H
+#define SUAPPCAST_H
-@class RSS, SUAppcastItem;
+@class SUAppcastItem;
@interface SUAppcast : NSObject {
NSArray *items;
+ NSString *userAgentString;
id delegate;
+ NSMutableData *incrementalData;
}
- (void)fetchAppcastFromURL:(NSURL *)url;
- (void)setDelegate:delegate;
+- (void)setUserAgentString:(NSString *)userAgentString;
-- (SUAppcastItem *)newestItem;
- (NSArray *)items;
@end
@interface NSObject (SUAppcastDelegate)
-- appcastDidFinishLoading:(SUAppcast *)appcast;
-@end
\ No newline at end of file
+- (void)appcastDidFinishLoading:(SUAppcast *)appcast;
+- (void)appcast:(SUAppcast *)appcast failedToLoadWithError:(NSError *)error;
+@end
+
+#endif
diff --git a/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
index c0202e3d9..7f1ca65c0 100644
--- a/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
+++ b/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
@@ -6,52 +6,42 @@
// Copyright 2006 Andy Matuschak. All rights reserved.
//
-#import
-
+#ifndef SUAPPCASTITEM_H
+#define SUAPPCASTITEM_H
@interface SUAppcastItem : NSObject {
NSString *title;
NSDate *date;
- NSString *description;
+ NSString *itemDescription;
NSURL *releaseNotesURL;
- NSString *DSASignature;
- NSString *MD5Sum;
+ NSString *DSASignature;
+ NSString *minimumSystemVersion;
NSURL *fileURL;
- NSString *fileVersion;
NSString *versionString;
+ NSString *displayVersionString;
+
+ NSDictionary *propertiesDictionary;
}
// Initializes with data from a dictionary provided by the RSS class.
- initWithDictionary:(NSDictionary *)dict;
- (NSString *)title;
-- (void)setTitle:(NSString *)aTitle;
-
+- (NSString *)versionString;
+- (NSString *)displayVersionString;
- (NSDate *)date;
-- (void)setDate:(NSDate *)aDate;
-
-- (NSString *)description;
-- (void)setDescription:(NSString *)aDescription;
-
+- (NSString *)itemDescription;
- (NSURL *)releaseNotesURL;
-- (void)setReleaseNotesURL:(NSURL *)aReleaseNotesURL;
-
-- (NSString *)DSASignature;
-- (void)setDSASignature:(NSString *)aDSASignature;
-
-- (NSString *)MD5Sum;
-- (void)setMD5Sum:(NSString *)aMd5Sum;
-
- (NSURL *)fileURL;
-- (void)setFileURL:(NSURL *)aFileURL;
-
-- (NSString *)fileVersion;
-- (void)setFileVersion:(NSString *)aFileVersion;
+- (NSString *)DSASignature;
+- (NSString *)minimumSystemVersion;
-- (NSString *)versionString;
-- (void)setVersionString:(NSString *)versionString;
+// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions.
+- (NSDictionary *)propertiesDictionary;
@end
+
+#endif
diff --git a/Sparkle.framework/Versions/A/Headers/SUUpdater.h b/Sparkle.framework/Versions/A/Headers/SUUpdater.h
index 5f82914bc..e78c4d353 100644
--- a/Sparkle.framework/Versions/A/Headers/SUUpdater.h
+++ b/Sparkle.framework/Versions/A/Headers/SUUpdater.h
@@ -6,50 +6,113 @@
// Copyright 2006 Andy Matuschak. All rights reserved.
//
-#import
+#ifndef SUUPDATER_H
+#define SUUPDATER_H
-// Before you use Sparkle in your app, you must set SUFeedURL in Info.plist to the
-// address of the appcast on your webserver. If you don't already have an
-// appcast, please see the Sparkle documentation to learn about how to set one up.
+#import
-// .zip, .dmg, .tar, .tbz, .tgz archives are supported at this time.
-
-// By default, Sparkle offers to show the user the release notes of the build they'll be
-// getting, which it assumes are in the description (or body) field of the relevant RSS item.
-// Set SUShowReleaseNotes to in Info.plist to hide the button.
-
-@class SUAppcastItem, SUUpdateAlert, SUStatusController;
+@class SUUpdateDriver, SUAppcastItem, SUHost, SUAppcast;
@interface SUUpdater : NSObject {
- SUAppcastItem *updateItem;
-
- SUStatusController *statusController;
- SUUpdateAlert *updateAlert;
-
- NSURLDownload *downloader;
- NSString *downloadPath;
-
NSTimer *checkTimer;
- NSTimeInterval checkInterval;
+ SUUpdateDriver *driver;
- BOOL verbose;
- BOOL updateInProgress;
+ SUHost *host;
+ IBOutlet id delegate;
}
++ (SUUpdater *)sharedUpdater;
++ (SUUpdater *)updaterForBundle:(NSBundle *)bundle;
+- (NSBundle *)hostBundle;
+
+- (void)setDelegate:(id)delegate;
+- delegate;
+
+- (void)setAutomaticallyChecksForUpdates:(BOOL)automaticallyChecks;
+- (BOOL)automaticallyChecksForUpdates;
+
+- (void)setUpdateCheckInterval:(NSTimeInterval)interval;
+- (NSTimeInterval)updateCheckInterval;
+
+- (void)setFeedURL:(NSURL *)feedURL;
+- (NSURL *)feedURL;
+
+- (void)setSendsSystemProfile:(BOOL)sendsSystemProfile;
+- (BOOL)sendsSystemProfile;
+
+- (void)setAutomaticallyDownloadsUpdates:(BOOL)automaticallyDownloadsUpdates;
+- (BOOL)automaticallyDownloadsUpdates;
+
// This IBAction is meant for a main menu item. Hook up any menu item to this action,
// and Sparkle will check for updates and report back its findings verbosely.
- (IBAction)checkForUpdates:sender;
-// This method is similar to the above, but it's intended for updates initiated by
-// the computer instead of by the user. It does not alert the user when he is up to date,
-// and it remains silent about network errors in fetching the feed. This is what you
-// want to call to update programmatically; only use checkForUpdates: with buttons and menu items.
+// This kicks off an update meant to be programmatically initiated. That is, it will display no UI unless it actually finds an update,
+// in which case it proceeds as usual. If the fully automated updating is turned on, however, this will invoke that behavior, and if an
+// update is found, it will be downloaded and prepped for installation.
- (void)checkForUpdatesInBackground;
-// This method allows you to schedule a check to run every time interval. You can
-// pass 0 to this method to cancel a previously scheduled timer. You probably don't want
-// to call this directly: if you set a SUScheduledCheckInterval key in Info.plist or
-// the user defaults, Sparkle will set this up for you automatically on startup. You might
-// just want to call this every time the user changes the setting in the preferences.
-- (void)scheduleCheckWithInterval:(NSTimeInterval)interval;
+// Date of last update check. Returns null if no check has been performed.
+- (NSDate*)lastUpdateCheckDate;
+
+// This begins a "probing" check for updates which will not actually offer to update to that version. The delegate methods, though,
+// (up to updater:didFindValidUpdate: and updaterDidNotFindUpdate:), are called, so you can use that information in your UI.
+- (void)checkForUpdateInformation;
+
+// Call this to appropriately schedule or cancel the update checking timer according to the preferences for time interval and automatic checks. This call does not change the date of the next check, but only the internal NSTimer.
+- (void)resetUpdateCycle;
+
+- (BOOL)updateInProgress;
+@end
+
+@interface NSObject (SUUpdaterDelegateInformalProtocol)
+// This method allows you to add extra parameters to the appcast URL, potentially based on whether or not Sparkle will also be sending along the system profile. This method should return an array of dictionaries with keys: "key", "value", "displayKey", "displayValue", the latter two being specifically for display to the user.
+- (NSArray *)feedParametersForUpdater:(SUUpdater *)updater sendingSystemProfile:(BOOL)sendingProfile;
+
+// Use this to override the default behavior for Sparkle prompting the user about automatic update checks.
+- (BOOL)updaterShouldPromptForPermissionToCheckForUpdates:(SUUpdater *)bundle;
+
+// Implement this if you want to do some special handling with the appcast once it finishes loading.
+- (void)updater:(SUUpdater *)updater didFinishLoadingAppcast:(SUAppcast *)appcast;
+
+// If you're using special logic or extensions in your appcast, implement this to use your own logic for finding
+// a valid update, if any, in the given appcast.
+- (SUAppcastItem *)bestValidUpdateInAppcast:(SUAppcast *)appcast forUpdater:(SUUpdater *)bundle;
+
+// Sent when a valid update is found by the update driver.
+- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update;
+
+// Sent when a valid update is not found.
+- (void)updaterDidNotFindUpdate:(SUUpdater *)update;
+
+// Sent immediately before installing the specified update.
+- (void)updater:(SUUpdater *)updater willInstallUpdate:(SUAppcastItem *)update;
+
+// Return YES to delay the relaunch until you do some processing; invoke the given NSInvocation to continue.
+- (BOOL)updater:(SUUpdater *)updater shouldPostponeRelaunchForUpdate:(SUAppcastItem *)update untilInvoking:(NSInvocation *)invocation;
+
+// Called immediately before relaunching.
+- (void)updaterWillRelaunchApplication:(SUUpdater *)updater;
+
+// This method allows you to provide a custom version comparator.
+// If you don't implement this method or return nil, the standard version comparator will be used.
+- (id )versionComparatorForUpdater:(SUUpdater *)updater;
+
+// Returns the path which is used to relaunch the client after the update is installed. By default, the path of the host bundle.
+- (NSString *)pathToRelaunchForUpdater:(SUUpdater *)updater;
+
+@end
+
+// Define some minimum intervals to avoid DOS-like checking attacks. These are in seconds.
+#ifdef DEBUG
+#define SU_MIN_CHECK_INTERVAL 60
+#else
+#define SU_MIN_CHECK_INTERVAL 60*60
+#endif
+
+#ifdef DEBUG
+#define SU_DEFAULT_CHECK_INTERVAL 60
+#else
+#define SU_DEFAULT_CHECK_INTERVAL 60*60*24
+#endif
-@end
\ No newline at end of file
+#endif
diff --git a/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h b/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h
new file mode 100644
index 000000000..3d11ae873
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h
@@ -0,0 +1,27 @@
+//
+// SUVersionComparisonProtocol.h
+// Sparkle
+//
+// Created by Andy Matuschak on 12/21/07.
+// Copyright 2007 Andy Matuschak. All rights reserved.
+//
+
+#ifndef SUVERSIONCOMPARISONPROTOCOL_H
+#define SUVERSIONCOMPARISONPROTOCOL_H
+
+/*!
+ @protocol
+ @abstract Implement this protocol to provide version comparison facilities for Sparkle.
+*/
+@protocol SUVersionComparison
+
+/*!
+ @method
+ @abstract An abstract method to compare two version strings.
+ @discussion Should return NSOrderedAscending if b > a, NSOrderedDescending if b < a, and NSOrderedSame if they are equivalent.
+*/
+- (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)versionB;
+
+@end
+
+#endif
diff --git a/Sparkle.framework/Versions/A/Headers/Sparkle.h b/Sparkle.framework/Versions/A/Headers/Sparkle.h
index 13e9b2156..08dd57775 100644
--- a/Sparkle.framework/Versions/A/Headers/Sparkle.h
+++ b/Sparkle.framework/Versions/A/Headers/Sparkle.h
@@ -2,21 +2,20 @@
// Sparkle.h
// Sparkle
//
-// Created by Andy Matuschak on 3/16/06.
+// Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07)
// Copyright 2006 Andy Matuschak. All rights reserved.
//
-#import "SUUpdater.h"
-#import "SUUtilities.h"
-#import "SUConstants.h"
-#import "SUAppcast.h"
-#import "SUAppcastItem.h"
-#import "SUUpdateAlert.h"
-#import "SUAutomaticUpdateAlert.h"
-#import "SUStatusController.h"
-#import "SUUnarchiver.h"
-#import "SUStatusChecker.h"
+#ifndef SPARKLE_H
+#define SPARKLE_H
-#import "NSApplication+AppCopies.h"
-#import "NSFileManager+Authentication.h"
-#import "NSFileManager+Verification.h"
\ No newline at end of file
+// This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
+// there are name-space collisions) so we can list all of them to start with:
+
+#import
+
+#import
+#import
+#import
+
+#endif
diff --git a/Sparkle.framework/Versions/A/Resources/Info.plist b/Sparkle.framework/Versions/A/Resources/Info.plist
index c154cb61e..c7f277d04 100644
--- a/Sparkle.framework/Versions/A/Resources/Info.plist
+++ b/Sparkle.framework/Versions/A/Resources/Info.plist
@@ -1,9 +1,9 @@
-
+
CFBundleDevelopmentRegion
- English
+ en
CFBundleExecutable
Sparkle
CFBundleIdentifier
@@ -14,9 +14,11 @@
Sparkle
CFBundlePackageType
FMWK
+ CFBundleShortVersionString
+ 1.5 Beta 6
CFBundleSignature
????
CFBundleVersion
- 1.1
+ 313
diff --git a/Sparkle.framework/Versions/A/Resources/License.txt b/Sparkle.framework/Versions/A/Resources/License.txt
new file mode 100644
index 000000000..20466c417
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/License.txt
@@ -0,0 +1,7 @@
+Copyright (c) 2006 Andy Matuschak
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist b/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist
new file mode 100644
index 000000000..92ef9471e
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist
@@ -0,0 +1,174 @@
+
+
+
+
+ ADP2,1
+ Developer Transition Kit
+ MacBook1,1
+ MacBook (Core Duo)
+ MacBook2,1
+ MacBook (Core 2 Duo)
+ MacBook4,1
+ MacBook (Core 2 Duo Feb 2008)
+ MacBookAir1,1
+ MacBook Air (January 2008)
+ MacBookPro1,1
+ MacBook Pro Core Duo (15-inch)
+ MacBookPro1,2
+ MacBook Pro Core Duo (17-inch)
+ MacBookPro2,1
+ MacBook Pro Core 2 Duo (17-inch)
+ MacBookPro2,2
+ MacBook Pro Core 2 Duo (15-inch)
+ MacBookPro3,1
+ MacBook Pro Core 2 Duo (15-inch LED, Core 2 Duo)
+ MacBookPro3,2
+ MacBook Pro Core 2 Duo (17-inch HD, Core 2 Duo)
+ MacBookPro4,1
+ MacBook Pro (Core 2 Duo Feb 2008)
+ MacPro1,1
+ Mac Pro (four-core)
+ MacPro2,1
+ Mac Pro (eight-core)
+ MacPro3,1
+ Mac Pro (January 2008 4- or 8- core "Harpertown")
+ Macmini1,1
+ Mac Mini (Core Solo/Duo)
+ PowerBook1,1
+ PowerBook G3
+ PowerBook2,1
+ iBook G3
+ PowerBook2,2
+ iBook G3 (FireWire)
+ PowerBook2,3
+ iBook G3
+ PowerBook2,4
+ iBook G3
+ PowerBook3,1
+ PowerBook G3 (FireWire)
+ PowerBook3,2
+ PowerBook G4
+ PowerBook3,3
+ PowerBook G4 (Gigabit Ethernet)
+ PowerBook3,4
+ PowerBook G4 (DVI)
+ PowerBook3,5
+ PowerBook G4 (1GHz / 867MHz)
+ PowerBook4,1
+ iBook G3 (Dual USB, Late 2001)
+ PowerBook4,2
+ iBook G3 (16MB VRAM)
+ PowerBook4,3
+ iBook G3 Opaque 16MB VRAM, 32MB VRAM, Early 2003)
+ PowerBook5,1
+ PowerBook G4 (17 inch)
+ PowerBook5,2
+ PowerBook G4 (15 inch FW 800)
+ PowerBook5,3
+ PowerBook G4 (17-inch 1.33GHz)
+ PowerBook5,4
+ PowerBook G4 (15 inch 1.5/1.33GHz)
+ PowerBook5,5
+ PowerBook G4 (17-inch 1.5GHz)
+ PowerBook5,6
+ PowerBook G4 (15 inch 1.67GHz/1.5GHz)
+ PowerBook5,7
+ PowerBook G4 (17-inch 1.67GHz)
+ PowerBook5,8
+ PowerBook G4 (Double layer SD, 15 inch)
+ PowerBook5,9
+ PowerBook G4 (Double layer SD, 17 inch)
+ PowerBook6,1
+ PowerBook G4 (12 inch)
+ PowerBook6,2
+ PowerBook G4 (12 inch, DVI)
+ PowerBook6,3
+ iBook G4
+ PowerBook6,4
+ PowerBook G4 (12 inch 1.33GHz)
+ PowerBook6,5
+ iBook G4 (Early-Late 2004)
+ PowerBook6,7
+ iBook G4 (Mid 2005)
+ PowerBook6,8
+ PowerBook G4 (12 inch 1.5GHz)
+ PowerMac1,1
+ Power Macintosh G3 (Blue & White)
+ PowerMac1,2
+ Power Macintosh G4 (PCI Graphics)
+ PowerMac10,1
+ Mac Mini G4
+ PowerMac10,2
+ Mac Mini (Late 2005)
+ PowerMac11,2
+ Power Macintosh G5 (Late 2005)
+ PowerMac12,1
+ iMac G5 (iSight)
+ PowerMac2,1
+ iMac G3 (Slot-loading CD-ROM)
+ PowerMac2,2
+ iMac G3 (Summer 2000)
+ PowerMac3,1
+ Power Macintosh G4 (AGP Graphics)
+ PowerMac3,2
+ Power Macintosh G4 (AGP Graphics)
+ PowerMac3,3
+ Power Macintosh G4 (Gigabit Ethernet)
+ PowerMac3,4
+ Power Macintosh G4 (Digital Audio)
+ PowerMac3,5
+ Power Macintosh G4 (Quick Silver)
+ PowerMac3,6
+ Power Macintosh G4 (Mirrored Drive Door)
+ PowerMac4,1
+ iMac G3 (Early/Summer 2001)
+ PowerMac4,2
+ iMac G4 (Flat Panel)
+ PowerMac4,4
+ eMac
+ PowerMac4,5
+ iMac G4 (17-inch Flat Panel)
+ PowerMac5,1
+ Power Macintosh G4 Cube
+ PowerMac6,1
+ iMac G4 (USB 2.0)
+ PowerMac6,3
+ iMac G4 (20-inch Flat Panel)
+ PowerMac6,4
+ eMac (USB 2.0, 2005)
+ PowerMac7,2
+ Power Macintosh G5
+ PowerMac7,3
+ Power Macintosh G5
+ PowerMac8,1
+ iMac G5
+ PowerMac8,2
+ iMac G5 (Ambient Light Sensor)
+ PowerMac9,1
+ Power Macintosh G5 (Late 2005)
+ RackMac1,1
+ Xserve G4
+ RackMac1,2
+ Xserve G4 (slot-loading, cluster node)
+ RackMac3,1
+ Xserve G5
+ Xserve1,1
+ Xserve (Intel Xeon)
+ Xserve2,1
+ Xserve (January 2008 quad-core)
+ iMac1,1
+ iMac G3 (Rev A-D)
+ iMac4,1
+ iMac (Core Duo)
+ iMac4,2
+ iMac for Education (17-inch, Core Duo)
+ iMac5,1
+ iMac (Core 2 Duo, 17 or 20 inch, SuperDrive)
+ iMac5,2
+ iMac (Core 2 Duo, 17 inch, Combo Drive)
+ iMac6,1
+ iMac (Core 2 Duo, 24 inch, SuperDrive)
+ iMac8,1
+ iMac (April 2008)
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib
index ff40c9ddf..22f13f8b6 100644
--- a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib
@@ -1,12 +1,56 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- CLASS = SUStatusController;
- LANGUAGE = ObjC;
- OUTLETS = {actionButton = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ CLASS
+ SUStatusController
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ actionButton
+ NSButton
+ progressBar
+ NSProgressIndicator
+
+ SUPERCLASS
+ SUWindowController
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib
index 99183444c..a9ac8673c 100644
--- a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib
@@ -1,16 +1,20 @@
-
+
- IBDocumentLocation
- 69 10 356 240 0 0 1280 832
IBFramework Version
- 443.0
+ 670
+ IBLastKnownRelativeProjectPath
+ Sparkle.xcodeproj
+ IBOldestOS
+ 5
IBOpenObjects
- 5
+ 6
IBSystem Version
- 8H14
+ 10A96
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib
index 378b22f2a..4f1d59817 100644
Binary files a/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib
index 3e65b1ff5..4b1ab30e5 100644
--- a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -1,12 +1,50 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {relaunchLater = id; relaunchNow = id; };
- CLASS = SUAutomaticUpdateAlert;
- LANGUAGE = ObjC;
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib
index e3255c08d..2e04cfa03 100644
--- a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -1,12 +1,20 @@
-
+
- IBDocumentLocation
- 188 142 356 240 0 0 1280 1002
IBFramework Version
- 446.1
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
IBSystem Version
- 8P135
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
index bdbddc93d..6b926302e 100644
Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib
index 0071ac077..994d4c368 100644
--- a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/classes.nib
@@ -1,21 +1,67 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NSObject; LANGUAGE = ObjC; },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlert;
- LANGUAGE = ObjC;
- OUTLETS = {description = NSTextField; releaseNotesView = WebView; };
- SUPERCLASS = NSWindowController;
- },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlertController;
- LANGUAGE = ObjC;
- OUTLETS = {releaseNotesView = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib
index eb5573220..2e04cfa03 100644
--- a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/info.nib
@@ -1,12 +1,20 @@
-
+
- IBDocumentLocation
- 425 40 356 240 0 0 1280 832
IBFramework Version
- 446.1
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
IBSystem Version
- 8P135
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib
index 46f67f906..b4353d2f7 100644
Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..2e04cfa03
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..b403a3e45
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings
index 458c6827b..b31f928fd 100644
Binary files a/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib
index 3e65b1ff5..4b1ab30e5 100644
--- a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -1,12 +1,50 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {relaunchLater = id; relaunchNow = id; };
- CLASS = SUAutomaticUpdateAlert;
- LANGUAGE = ObjC;
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib
index 2f65f2f49..ab36d3103 100644
--- a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -1,16 +1,20 @@
-
+
- IBDocumentLocation
- 188 142 356 240 0 0 1280 1002
IBFramework Version
- 443.0
+ 658
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
IBOpenObjects
- 5
+ 6
IBSystem Version
- 8H14
+ 9C7010
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
index c4201cf26..7630390c8 100644
Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib
index 0071ac077..994d4c368 100644
--- a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib
@@ -1,21 +1,67 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NSObject; LANGUAGE = ObjC; },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlert;
- LANGUAGE = ObjC;
- OUTLETS = {description = NSTextField; releaseNotesView = WebView; };
- SUPERCLASS = NSWindowController;
- },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlertController;
- LANGUAGE = ObjC;
- OUTLETS = {releaseNotesView = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib
index 2b25ad033..2fb8a8372 100644
--- a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib
@@ -1,16 +1,20 @@
-
+
- IBDocumentLocation
- 425 40 356 240 0 0 1280 832
IBFramework Version
- 446.1
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
IBOpenObjects
- 5
+ 18
IBSystem Version
- 8I127
+ 10A96
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib
index be3dbd906..e7e7497db 100644
Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..b1cd28edd
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,21 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+ 41
+
+ IBSystem Version
+ 10A96
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..e8dc5b880
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings
index e24499532..16e0787b4 100644
Binary files a/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..4b1ab30e5
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -0,0 +1,50 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..2e04cfa03
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..6b2f938f9
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..994d4c368
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/classes.nib
@@ -0,0 +1,67 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..2e04cfa03
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..c9b1e7d88
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..3eb7f818e
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 667
+ IBLastKnownRelativeProjectPath
+ ../../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..8c54c217c
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings
new file mode 100644
index 000000000..f83ea23cd
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib
index 3e65b1ff5..4b1ab30e5 100644
--- a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -1,12 +1,50 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {relaunchLater = id; relaunchNow = id; };
- CLASS = SUAutomaticUpdateAlert;
- LANGUAGE = ObjC;
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib
index 26ef48443..33a60200f 100644
--- a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -1,12 +1,16 @@
-
+
- IBDocumentLocation
- 188 142 356 240 0 0 1280 1002
IBFramework Version
- 439.0
+ 629
+ IBOldestOS
+ 5
+ IBOpenObjects
+
IBSystem Version
- 8J133
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
index 552a5bdd3..4cd529a56 100644
Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib
index 0071ac077..994d4c368 100644
--- a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/classes.nib
@@ -1,21 +1,67 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NSObject; LANGUAGE = ObjC; },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlert;
- LANGUAGE = ObjC;
- OUTLETS = {description = NSTextField; releaseNotesView = WebView; };
- SUPERCLASS = NSWindowController;
- },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlertController;
- LANGUAGE = ObjC;
- OUTLETS = {releaseNotesView = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib
index b0e7f7bd7..d2586ea20 100644
--- a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/info.nib
@@ -1,16 +1,16 @@
-
+
- IBDocumentLocation
- 425 51 356 240 0 0 1280 1002
IBFramework Version
- 439.0
+ 629
+ IBOldestOS
+ 5
IBOpenObjects
-
- 5
-
+
IBSystem Version
- 8J133
+ 9E17
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib
index 0cd65e6c0..65dfc95e3 100644
Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..d2586ea20
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,16 @@
+
+
+
+
+ IBFramework Version
+ 629
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ IBSystem Version
+ 9E17
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..4b7cc9054
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings
index 9cca1c370..ea175ae71 100644
Binary files a/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj b/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj
new file mode 120000
index 000000000..88614fe23
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj
@@ -0,0 +1 @@
+/Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj
\ No newline at end of file
diff --git a/Sparkle.framework/Versions/A/Resources/fr_CA.lproj b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj
new file mode 120000
index 000000000..88614fe23
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj
@@ -0,0 +1 @@
+/Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj
\ No newline at end of file
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib
index 3e65b1ff5..4b1ab30e5 100644
--- a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -1,12 +1,50 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {relaunchLater = id; relaunchNow = id; };
- CLASS = SUAutomaticUpdateAlert;
- LANGUAGE = ObjC;
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib
index 5a7568096..2e04cfa03 100644
--- a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -1,12 +1,20 @@
-
+
- IBDocumentLocation
- 188 142 356 240 0 0 1280 1002
IBFramework Version
- 443.0
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
IBSystem Version
- 8I127
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
index 53fa5b319..15ba8f4c8 100644
Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib
index 0071ac077..994d4c368 100644
--- a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/classes.nib
@@ -1,21 +1,67 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NSObject; LANGUAGE = ObjC; },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlert;
- LANGUAGE = ObjC;
- OUTLETS = {description = NSTextField; releaseNotesView = WebView; };
- SUPERCLASS = NSWindowController;
- },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlertController;
- LANGUAGE = ObjC;
- OUTLETS = {releaseNotesView = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib
index 2b25ad033..2e04cfa03 100644
--- a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/info.nib
@@ -1,16 +1,20 @@
-
+
- IBDocumentLocation
- 425 40 356 240 0 0 1280 832
IBFramework Version
- 446.1
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
IBOpenObjects
- 5
+ 6
IBSystem Version
- 8I127
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib
index 0e8d6a6ae..298406450 100644
Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..c4934850f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 667
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 5
+
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..55cc2c271
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings
index 7a5a38459..5c410d070 100644
Binary files a/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib
index 3e65b1ff5..4b1ab30e5 100644
--- a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -1,12 +1,50 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {
- ACTIONS = {relaunchLater = id; relaunchNow = id; };
- CLASS = SUAutomaticUpdateAlert;
- LANGUAGE = ObjC;
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib
index 5a7568096..3f0979083 100644
--- a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -1,12 +1,18 @@
-
+
- IBDocumentLocation
- 188 142 356 240 0 0 1280 1002
IBFramework Version
- 443.0
+ 629
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
IBSystem Version
- 8I127
+ 9D34
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
index b619eb4ab..aa38f86ba 100644
Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib
index 0071ac077..994d4c368 100644
--- a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/classes.nib
@@ -1,21 +1,67 @@
-{
- IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NSObject; LANGUAGE = ObjC; },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlert;
- LANGUAGE = ObjC;
- OUTLETS = {description = NSTextField; releaseNotesView = WebView; };
- SUPERCLASS = NSWindowController;
- },
- {
- ACTIONS = {installUpdate = id; remindMeLater = id; skipThisVersion = id; };
- CLASS = SUUpdateAlertController;
- LANGUAGE = ObjC;
- OUTLETS = {releaseNotesView = id; };
- SUPERCLASS = NSWindowController;
- }
- );
- IBVersion = 1;
-}
\ No newline at end of file
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib
index 2b25ad033..d2586ea20 100644
--- a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/info.nib
@@ -1,16 +1,16 @@
-
+
- IBDocumentLocation
- 425 40 356 240 0 0 1280 832
IBFramework Version
- 446.1
+ 629
+ IBOldestOS
+ 5
IBOpenObjects
-
- 5
-
+
IBSystem Version
- 8I127
+ 9E17
+ targetFramework
+ IBCocoaFramework
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib
index 26b2e8aff..c82d3581b 100644
Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..d2586ea20
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,16 @@
+
+
+
+
+ IBFramework Version
+ 629
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ IBSystem Version
+ 9E17
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..ac298ce7e
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings
index 08538d327..67cf535ee 100644
Binary files a/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings and b/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/relaunch b/Sparkle.framework/Versions/A/Resources/relaunch
new file mode 100755
index 000000000..e7b96d614
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/relaunch differ
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..4b1ab30e5
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -0,0 +1,50 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..2b3d42576
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9E17
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..1d4655c59
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..994d4c368
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/classes.nib
@@ -0,0 +1,67 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ CLASS
+ NSApplication
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSResponder
+
+
+ ACTIONS
+
+ installUpdate
+ id
+ remindMeLater
+ id
+ skipThisVersion
+ id
+
+ CLASS
+ SUUpdateAlert
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ description
+ NSTextField
+ releaseNotesView
+ WebView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..2b3d42576
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 9E17
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..103b1cf84
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..0f776c895
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..5132e29f2
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,18 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ IBSystem Version
+ 9E17
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..c09d9e70d
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings
new file mode 100644
index 000000000..f3ff9d86c
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..4b1ab30e5
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/classes.nib
@@ -0,0 +1,50 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ doNotInstall
+ id
+ installLater
+ id
+ installNow
+ id
+
+ CLASS
+ SUAutomaticUpdateAlert
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..c5a067e89
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 10A96
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..53cb91a9b
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/classes.nib
new file mode 100644
index 000000000..018710af8
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/classes.nib
@@ -0,0 +1,39 @@
+{
+ IBClasses = (
+ {
+ CLASS = FirstResponder;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSObject;
+ },
+ {
+ CLASS = NSApplication;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSResponder;
+ },
+ {
+ CLASS = NSObject;
+ LANGUAGE = ObjC;
+ },
+ {
+ ACTIONS = {
+ installUpdate = id;
+ remindMeLater = id;
+ skipThisVersion = id;
+ };
+ CLASS = SUUpdateAlert;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ delegate = id;
+ description = NSTextField;
+ releaseNotesView = WebView;
+ };
+ SUPERCLASS = SUWindowController;
+ },
+ {
+ CLASS = SUWindowController;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSWindowController;
+ }
+ );
+ IBVersion = 1;
+}
\ No newline at end of file
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/info.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/info.nib
new file mode 100644
index 000000000..6b787d4b9
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/info.nib
@@ -0,0 +1,18 @@
+
+
+
+
+ IBDocumentLocation
+ 69 14 356 240 0 0 1280 778
+ IBFramework Version
+ 489.0
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBSystem Version
+ 9D34
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib
new file mode 100644
index 000000000..7e6d490e7
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/classes.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/classes.nib
new file mode 100644
index 000000000..5220a221f
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/classes.nib
@@ -0,0 +1,59 @@
+
+
+
+
+ IBClasses
+
+
+ CLASS
+ SUWindowController
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSWindowController
+
+
+ ACTIONS
+
+ finishPrompt
+ id
+ toggleMoreInfo
+ id
+
+ CLASS
+ SUUpdatePermissionPrompt
+ LANGUAGE
+ ObjC
+ OUTLETS
+
+ delegate
+ id
+ descriptionTextField
+ NSTextField
+ moreInfoButton
+ NSButton
+ moreInfoView
+ NSView
+
+ SUPERCLASS
+ SUWindowController
+
+
+ CLASS
+ FirstResponder
+ LANGUAGE
+ ObjC
+ SUPERCLASS
+ NSObject
+
+
+ CLASS
+ NSObject
+ LANGUAGE
+ ObjC
+
+
+ IBVersion
+ 1
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/info.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/info.nib
new file mode 100644
index 000000000..c5a067e89
--- /dev/null
+++ b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/info.nib
@@ -0,0 +1,20 @@
+
+
+
+
+ IBFramework Version
+ 670
+ IBLastKnownRelativeProjectPath
+ ../Sparkle.xcodeproj
+ IBOldestOS
+ 5
+ IBOpenObjects
+
+ 6
+
+ IBSystem Version
+ 10A96
+ targetFramework
+ IBCocoaFramework
+
+
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib
new file mode 100644
index 000000000..64babac12
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib/keyedobjects.nib differ
diff --git a/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings b/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings
new file mode 100644
index 000000000..b676a4f5d
Binary files /dev/null and b/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings differ
diff --git a/Sparkle.framework/Versions/A/Sparkle b/Sparkle.framework/Versions/A/Sparkle
index f329ac517..0db0a8f01 100755
Binary files a/Sparkle.framework/Versions/A/Sparkle and b/Sparkle.framework/Versions/A/Sparkle differ
diff --git a/en.lproj/MainMenu.nib/designable.nib b/en.lproj/MainMenu.nib/designable.nib
new file mode 100644
index 000000000..8d36a0f15
--- /dev/null
+++ b/en.lproj/MainMenu.nib/designable.nib
@@ -0,0 +1,8618 @@
+
+
+
+ 1040
+ 10C540
+ 740
+ 1038.25
+ 458.00
+
+
+
+
+
+ YES
+
+
+ NSApplication
+
+
+
+ FirstResponder
+
+
+ NSApplication
+
+
+
+ YES
+ type
+ parameter
+ confidence
+ description
+ context
+
+ YES
+
+ YES
+ YES
+ YES
+ YES
+
+
+ YES
+
+
+ PrefsWindowController
+
+
+ MPController
+
+
+
+ SUUpdater
+
+
+
+ YES
+ type
+ description
+ parameter
+ delay
+ when
+ context
+ enabled
+
+ YES
+
+ YES
+ YES
+ YES
+ YES
+
+
+
+ 256
+
+ YES
+
+
+ 268
+ {{18, 195}, {86, 18}}
+
+
+ YES
+
+ 604110336
+ 0
+ Use Growl
+
+ LucidaGrande
+ 13
+ 1044
+
+
+ 1211912703
+ 2
+
+ NSImage
+ NSSwitch
+
+
+ NSSwitch
+
+
+
+ 200
+ 25
+
+
+
+
+ 268
+ {{18, 217}, {195, 18}}
+
+
+
+ YES
+
+ 67239424
+ 0
+ Enable automatic switching
+
+ LucidaGrande
+ 13
+ 16
+
+
+ 1211912703
+ 2
+
+
+
+ 200
+ 25
+
+
+
+
+ 266
+ {{218, 37}, {177, 21}}
+
+
+
+ YES
+
+ 67239424
+ 0
+
+
+
+
+ Helvetica
+ 12
+ 16
+
+
+ 1
+ 0.0
+ 0.5
+ 0.0
+ 0
+ 1
+ NO
+ NO
+
+
+
+
+ 264
+ {{17, 41}, {198, 17}}
+
+
+
+ YES
+
+ 67239424
+ 272629760
+ Confidence required to switch:
+
+
+
+ 6
+ System
+ controlColor
+
+ 3
+ MC42NjY2NjY2NjY3AA
+
+
+
+ 6
+ System
+ controlTextColor
+
+ 3
+ MAA
+
+
+
+
+
+
+ 268
+ {{220, 20}, {71, 13}}
+
+
+
+ YES
+
+ 67239424
+ 272629760
+ Not confident
+
+ LucidaGrande
+ 10
+ 2843
+
+
+
+
+
+
+
+
+ 265
+ {{309, 20}, {84, 13}}
+
+
+ YES
+
+ 67239424
+ 71303168
+ Highly confident
+
+
+
+
+
+
+
+
+ 268
+ {{18, 135}, {207, 18}}
+
+
+ YES
+
+ 67239424
+ 0
+ Check for updates on startup
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 268
+ {{18, 155}, {240, 18}}
+
+
+
+ YES
+
+ 67239424
+ 0
+ Show current context in status bar
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 268
+ {{18, 77}, {161, 18}}
+
+
+
+ YES
+
+ 67239424
+ 0
+ Use a default context:
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+
+
+ 265
+ {{313, 134}, {81, 16}}
+
+
+ YES
+
+ 67239424
+ 134479872
+ Check now...
+
+ LucidaGrande
+ 9
+ 3614
+
+
+ -2038284033
+ 1
+
+ LucidaGrande
+ 9
+ 16
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 268
+ {{18, 100}, {161, 18}}
+
+
+ YES
+
+ 67239424
+ 0
+ Use switch smoothing
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 266
+ {{20, 122}, {381, 5}}
+
+
+ {0, 0}
+
+ 67239424
+ 0
+ Box
+
+
+ 6
+ System
+ textBackgroundColor
+
+ 3
+ MQA
+
+
+
+ 3
+ MCAwLjgwMDAwMDAxAA
+
+
+ 3
+ 2
+ 0
+ NO
+
+
+
+ 268
+ {{18, 175}, {153, 18}}
+
+
+ YES
+
+ 67239424
+ 0
+ Hide from status bar
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+ {413, 253}
+
+
+
+ NSView
+
+ NSResponder
+
+
+
+ 256
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 256
+ {435, 198}
+
+ YES
+
+
+
+ -2147483392
+ {{-26, 0}, {16, 17}}
+
+
+
+
+ YES
+
+ type
+ 57
+ 40
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+ 6
+ System
+ controlBackgroundColor
+
+
+
+
+ 3
+ YES
+
+
+
+ description
+ 141.8720703125
+ 40
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+ YES
+
+
+
+ location
+ 82.20263671875
+ 10
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ confidence
+ 126.92529296875
+ 63.92529296875
+ 1000
+
+
+ 130560
+ 0
+
+ 1
+ 0.0
+ 0.0
+ 0.0
+ 0
+ 0
+ NO
+ NO
+
+ 3
+ YES
+ YES
+
+
+
+ 3
+ 2
+
+
+ 6
+ System
+ gridColor
+
+ 3
+ MC41AA
+
+
+ 17
+ -700416000
+
+
+ 1
+ 15
+ 0
+ YES
+ 0
+
+
+ {{1, 17}, {435, 198}}
+
+
+
+
+ 4
+
+
+
+ -2147483392
+ {{-30, 17}, {15, 189}}
+
+
+
+ _doScroller:
+ 0.99473685026168823
+
+
+
+ -2147483392
+ {{1, -30}, {420, 15}}
+
+
+ 1
+
+ _doScroller:
+ 0.96551722288131714
+
+
+
+ 2304
+
+ YES
+
+
+ {{1, 0}, {435, 17}}
+
+
+
+
+ 4
+
+
+
+ {{20, 48}, {437, 216}}
+
+
+ 562
+
+
+
+
+
+ QSAAAEEgAABBmAAAQZgAAA
+
+
+
+ 292
+ {{20, 19}, {29, 22}}
+
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+ NSImage
+ plus-arrow
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 292
+ {{48, 19}, {20, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+ NSImage
+ minus-8
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 292
+ {{67, 19}, {20, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+ NSImage
+ gear
+
+
+
+
+
+ 200
+ 25
+
+
+
+ {477, 284}
+
+ NSView
+
+ NSResponder
+
+
+
+ 256
+
+ YES
+
+
+ 274
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 256
+ {456, 126}
+
+
+ YES
+
+
+
+ -2147483392
+ {{-26, 0}, {16, 17}}
+
+
+
+
+ YES
+
+ 72
+ 40
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 105
+ 40
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 66
+ 10
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 76.20849609375
+ 49.20849609375
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 121.369140625
+ 10
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+ YES
+
+
+
+ 3
+ 2
+
+
+ 17
+ -700448768
+
+
+ 4
+ 15
+ 0
+ YES
+ 0
+
+
+ {{1, 17}, {456, 126}}
+
+
+
+
+ 4
+
+
+
+ -2147483392
+ {{-30, 17}, {15, 126}}
+
+
+
+ _doScroller:
+ 0.6631578803062439
+
+
+
+ -2147483392
+ {{1, -30}, {441, 15}}
+
+
+ 1
+
+ _doScroller:
+ 0.96710526943206787
+
+
+
+ 2304
+
+ YES
+
+
+ {{1, 0}, {456, 17}}
+
+
+
+
+ 4
+
+
+
+ {{20, 249}, {458, 144}}
+
+
+ 562
+
+
+
+
+
+ AAAAAAAAAABBmAAAQZgAAA
+
+
+
+ 256
+ {{48, 219}, {20, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 256
+ {{20, 193}, {388, 19}}
+
+ YES
+
+ 67239424
+ 4194304
+ *ActionType*
+
+ LucidaGrande
+ 15
+ 16
+
+
+
+
+
+
+
+
+ 256
+ {{26, 165}, {72, 17}}
+
+
+ YES
+
+ 67239424
+ 71303168
+ Parameter:
+
+
+
+
+
+
+
+
+ 256
+ {{103, 163}, {375, 22}}
+
+
+ YES
+
+ -1804468671
+ 272630784
+
+
+
+ YES
+
+
+ 6
+ System
+ textColor
+
+
+
+
+
+
+ 256
+ {{103, 131}, {375, 22}}
+
+
+ YES
+
+ -1804468671
+ 272630784
+
+
+
+ YES
+
+
+
+
+
+
+ 256
+ {{17, 133}, {81, 17}}
+
+
+ YES
+
+ 67239424
+ 272629760
+ Description:
+
+
+
+
+
+
+
+
+ 256
+ {{38, 98}, {59, 17}}
+
+ YES
+
+ 67239424
+ 272629760
+ Context:
+
+
+
+
+
+
+
+
+ 256
+ {{17, 20}, {464, 42}}
+
+ YES
+
+ 67239424
+ 205651968
+ KkludGVyZXN0aW5nIGRlc2NyaXB0aXZlIHRleHQgaGVyZS4qCipJdCBzaG91bGQgb25seSBiZSBvbiB0
+d28gbGluZXMsIC4uLioKKmJ1dCBpdCBtYXkgc3BhbiB0aHJlZS4qA
+
+ LucidaGrande-Bold
+ 11
+ 3357
+
+
+
+
+
+
+
+
+ 256
+ {{54, 71}, {43, 17}}
+
+
+ YES
+
+ 67239424
+ 272629760
+ Delay:
+
+
+
+
+
+
+
+
+
+
+ 292
+ {{20, 219}, {29, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+
+ 256
+ {{326, 68}, {72, 18}}
+
+ YES
+
+ 67239424
+ 0
+ Enabled
+
+
+ 1211912703
+ 2
+
+
+
+ 200
+ 25
+
+
+
+ {498, 413}
+
+
+ NSView
+
+ NSResponder
+
+
+ 4107
+ 2
+ {{238, 414}, {477, 323}}
+ 1886912512
+ *Preferences - XXX*
+ NSPanel
+
+ View
+
+ {1.79769e+308, 1.79769e+308}
+ {243, 167}
+
+
+ 256
+ {477, 323}
+
+
+
+ {{0, 0}, {1440, 878}}
+ {243, 189}
+ {1.79769e+308, 1.79769e+308}
+
+
+
+
+ ActionSetController
+
+
+
+ 256
+
+ YES
+
+
+ 256
+ {{18, 311}, {106, 18}}
+
+ YES
+
+ 67239424
+ 0
+ I understand.
+
+
+ 1211912703
+ 2
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 256
+ {{17, 335}, {431, 34}}
+
+ YES
+
+ 67239424
+ 4194304
+ Changing these options may have a detrimental effect on your computer's performance. Consult the manual for details.
+
+
+
+
+
+
+
+
+ 256
+
+ YES
+
+
+ 256
+
+ YES
+
+
+ 256
+ {{13, 9}, {239, 16}}
+
+ YES
+
+ 67239424
+ 131072
+ WiFi always scans, even when associated
+
+
+ 1211912703
+ 2
+
+
+
+ 200
+ 25
+
+
+
+
+ 256
+ {{16, 31}, {210, 13}}
+
+ YES
+
+ 67239424
+ 272629760
+ Time interval between re-evaluating rules:
+
+
+
+
+
+
+
+
+ 256
+ {{232, 27}, {110, 21}}
+
+ YES
+
+ 67501824
+ 0
+
+
+
+
+
+ 20
+ 1
+ 5
+ 0.0
+ 0
+ 1
+ NO
+ NO
+
+
+
+
+ 256
+ {{348, 31}, {63, 13}}
+
+ YES
+
+ 67239424
+ 272629760
+ 20 seconds
+
+
+
+
+
+
+
+ {{2, 2}, {427, 57}}
+
+
+
+ {{17, 246}, {431, 61}}
+
+ {0, 0}
+
+ 67239424
+ 0
+
+
+
+
+ 3
+ MCAwLjgwMDAwMDAxAA
+
+
+
+ 3
+ 0
+ 0
+ NO
+
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 2322
+ {{0, -2}, {408, 14}}
+
+
+
+
+
+
+
+
+
+
+ YES
+
+
+ 6
+
+
+
+ 408
+ 1
+
+
+ 2913
+ 0
+
+
+
+ YES
+
+ YES
+ NSBackgroundColor
+ NSColor
+
+
+ YES
+
+ 6
+ System
+ selectedTextBackgroundColor
+
+
+
+ 6
+ System
+ selectedTextColor
+
+
+
+
+
+
+ YES
+
+ YES
+ NSColor
+ NSUnderline
+
+
+ YES
+
+ 1
+ MCAwIDEAA
+
+
+
+
+
+
+ 6
+ {423, 1e+07}
+ {114, 0}
+
+
+
+ {{1, 1}, {408, 192}}
+
+
+
+
+
+ {4, -5}
+ 1
+
+ 4
+
+
+
+ 256
+ {{409, 1}, {15, 192}}
+
+
+ _doScroller:
+ 1
+
+
+
+ 256
+ {{-100, -100}, {87, 18}}
+
+ 1
+
+ _doScroller:
+ 1
+ 0.94565218687057495
+
+
+ {{20, 48}, {425, 194}}
+
+
+ 18
+
+
+
+
+
+
+ 256
+ {{20, 19}, {20, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ 918831359
+ 34
+
+ NSImage
+ pause
+
+
+
+ 400
+ 75
+
+
+
+ {465, 389}
+
+ NSView
+
+ NSResponder
+
+
+
+ YES
+ description
+ option
+
+ NSDictionary
+
+ YES
+ YES
+ YES
+ YES
+
+
+
+ YES
+ option
+ description
+
+ YES
+
+ YES
+ YES
+ YES
+ YES
+
+
+ EvidenceSourceSetController
+
+
+
+ 256
+
+ YES
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 256
+ {332, 228}
+
+ YES
+
+
+
+ 256
+ {{333, 0}, {16, 17}}
+
+
+
+ YES
+
+ enabled
+ 49
+ 40
+ 1000
+
+
+ 67239424
+ 0
+
+
+ LucidaGrande
+ 12
+ 16
+
+
+ 1211912703
+ 2
+
+
+
+ 400
+ 75
+
+ 3
+ YES
+ YES
+
+
+
+ name
+ 277
+ 100
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 3
+ 2
+
+
+ 17
+ 1447034880
+
+
+ 4
+ 15
+ 0
+ YES
+ 0
+
+
+ {{1, 17}, {332, 228}}
+
+
+
+
+ 4
+
+
+
+ 256
+ {{333, 17}, {15, 228}}
+
+
+ _doScroller:
+ 0.98947370052337646
+
+
+
+ 256
+ {{1, 245}, {332, 15}}
+
+ 1
+
+ _doScroller:
+ 0.99047619104385376
+
+
+
+ 2304
+
+ YES
+
+
+ {{1, 0}, {332, 17}}
+
+
+
+
+ 4
+
+
+
+ {{20, 20}, {349, 261}}
+
+
+ 50
+
+
+
+
+ QSAAAEEgAABBmAAAQZgAAA
+
+
+ {389, 301}
+
+ NSView
+
+ NSResponder
+
+
+ 3
+ 2
+ {{459, 547}, {273, 189}}
+ 1886912512
+ *New XYZ Action*
+
+ NSWindow
+
+
+ View
+
+ {1.79769e+308, 1.79769e+308}
+ {213, 107}
+
+
+ 256
+
+ YES
+
+
+ 266
+ {{17, 152}, {239, 17}}
+
+ YES
+
+ 67239424
+ 272629760
+ *Do blah blah blah*
+
+
+
+
+
+
+
+
+ 256
+ {{20, 118}, {233, 26}}
+
+
+ NSView
+
+ NSResponder
+
+
+
+ 256
+ {{17, 92}, {68, 17}}
+
+ YES
+
+ 67239424
+ 272629760
+ at context
+
+
+
+
+
+
+
+
+
+ 256
+ {{177, 12}, {82, 32}}
+
+ YES
+
+ 67239424
+ 134217728
+ OK
+
+
+ -2038284033
+ 1
+
+
+ DQ
+ 200
+ 25
+
+
+
+
+ 256
+ {{95, 12}, {82, 32}}
+
+ YES
+
+ 67239424
+ 134217728
+ Cancel
+
+
+ -2038284033
+ 1
+
+
+ Gw
+ 200
+ 25
+
+
+
+
+ {{1, 9}, {273, 189}}
+
+ {{0, 0}, {1440, 878}}
+ {213, 129}
+ {1.79769e+308, 1.79769e+308}
+
+
+
+ 256
+
+ YES
+
+
+ 256
+
+ YES
+
+
+ 2304
+
+ YES
+
+
+ 256
+ {351, 245}
+
+ YES
+
+
+ -2147483392
+ {{-26, 0}, {16, 17}}
+
+
+ YES
+
+ context
+ 267
+ 16
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+ YES
+
+
+
+ confidence
+ 78
+ 10
+ 1000
+
+
+ 337772096
+ 2048
+
+
+
+
+
+ 3
+ YES
+
+
+
+ 3
+ 2
+
+
+ 17
+ 306184192
+
+
+ 4
+ 15
+ 0
+ YES
+ 0
+
+
+ {{1, 1}, {351, 245}}
+
+
+
+
+ 4
+
+
+
+ -2147483392
+ {{-30, 1}, {15, 245}}
+
+
+ _doScroller:
+ 0.92105263471603394
+
+
+
+ -2147483392
+ {{1, -30}, {336, 15}}
+
+ 1
+
+ _doScroller:
+ 0.95726495981216431
+
+
+ {{20, 48}, {353, 247}}
+
+
+ 562
+
+
+
+ QSAAAEEgAABBmAAAQZgAAA
+
+
+
+ 292
+ {{20, 19}, {20, 22}}
+
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+ NSImage
+ plus-8
+
+
+
+
+
+ 200
+ 25
+
+
+
+
+ 292
+ {{39, 19}, {20, 22}}
+
+ YES
+
+ 67239424
+ 134217728
+
+
+
+ -2033958657
+ 34
+
+
+
+
+
+ 200
+ 25
+
+
+
+ {393, 315}
+
+ NSView
+
+ NSResponder
+
+
+ ContextsDataSource
+
+
+ 3
+ 2
+ {{469, 551}, {241, 137}}
+ 1886912512
+ *New Context*
+
+ NSPanel
+
+
+ View
+
+ {1.79769e+308, 1.79769e+308}
+ {213, 107}
+
+
+ 256
+
+ YES
+
+
+ 256
+ {{17, 100}, {174, 17}}
+
+ YES
+
+ 67239424
+ 272629760
+ Enter name of new context
+
+
+
+
+
+
+
+
+ 256
+ {{20, 70}, {201, 22}}
+
+ YES
+
+ -1804468671
+ 272630784
+ New context
+
+
+ YES
+
+
+
+
+
+
+ 256
+ {{145, 22}, {82, 32}}
+
+ YES
+
+ 67239424
+ 134217728
+ OK
+
+
+ -2038284033
+ 1
+
+
+ DQ
+ 200
+ 25
+
+
+
+
+ 256
+ {{63, 22}, {82, 32}}
+
+ YES
+
+ 67239424
+ 134217728
+ Cancel
+
+
+ -2038284033
+ 1
+
+
+ Gw
+ 200
+ 25
+
+
+
+ {{1, 1}, {241, 137}}
+
+ {{0, 0}, {1440, 878}}
+ {213, 129}
+ {1.79769e+308, 1.79769e+308}
+
+
+
+
+
+ YES
+
+
+ contentArray: values.Rules
+
+
+
+
+
+ contentArray: values.Rules
+ contentArray
+ values.Rules
+
+ NSHandlesContentAsCompoundValue
+
+
+ 2
+
+
+ 306
+
+
+
+ rulesController
+
+
+
+ 380
+
+
+
+ sbMenu
+
+
+
+ 393
+
+
+
+ terminate:
+
+
+
+ 395
+
+
+
+ rulesController
+
+
+
+ 462
+
+
+
+ checkForUpdates:
+
+
+
+ 478
+
+
+
+ actionsController
+
+
+
+ 537
+
+
+
+ mpController
+
+
+
+ 538
+
+
+
+ contentArray: values.Actions
+
+
+
+
+
+ contentArray: values.Actions
+ contentArray
+ values.Actions
+
+ NSHandlesContentAsCompoundValue
+
+
+ 2
+
+
+ 670
+
+
+
+ showHelp:
+
+
+
+ 693
+
+
+
+ runPreferences:
+
+
+
+ 821
+
+
+
+ runAbout:
+
+
+
+ 889
+
+
+
+ generalPrefsView
+
+
+
+ 923
+
+
+
+ rulesPrefsView
+
+
+
+ 924
+
+
+
+ actionsPrefsView
+
+
+
+ 925
+
+
+
+ delegate
+
+
+
+ 927
+
+
+
+ value: values.Enabled
+
+
+
+
+
+ value: values.Enabled
+ value
+ values.Enabled
+ 2
+
+
+ 954
+
+
+
+ value: values.ShowGuess
+
+
+
+
+
+ value: values.ShowGuess
+ value
+ values.ShowGuess
+ 2
+
+
+ 956
+
+
+
+ value: values.SUCheckAtStartup
+
+
+
+
+
+ value: values.SUCheckAtStartup
+ value
+ values.SUCheckAtStartup
+ 2
+
+
+ 958
+
+
+
+ value: values.MinimumConfidenceRequired
+
+
+
+
+
+ value: values.MinimumConfidenceRequired
+ value
+ values.MinimumConfidenceRequired
+ 2
+
+
+ 967
+
+
+
+ value: arrangedObjects.type
+
+
+
+
+
+ value: arrangedObjects.type
+ value
+ arrangedObjects.type
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 984
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+ 2
+
+
+ 986
+
+
+
+ value: arrangedObjects.confidence
+
+
+
+
+
+ value: arrangedObjects.confidence
+ value
+ arrangedObjects.confidence
+ 2
+
+
+ 990
+
+
+
+ value: arrangedObjects.description
+
+
+
+
+
+ value: arrangedObjects.description
+ value
+ arrangedObjects.description
+
+ NSConditionallySetsEditable
+
+
+ 2
+
+
+ 1047
+
+
+
+ value: arrangedObjects.delay
+
+
+
+
+
+ value: arrangedObjects.delay
+ value
+ arrangedObjects.delay
+
+ NSValueTransformerName
+ DelayValueTransformer
+
+ 2
+
+
+ 1054
+
+
+
+ enabled: canRemove
+
+
+
+
+
+ enabled: canRemove
+ enabled
+ canRemove
+ 2
+
+
+ 1058
+
+
+
+ remove:
+
+
+
+ 1060
+
+
+
+ prefsWindow
+
+
+
+ 1077
+
+
+
+ actionsController
+
+
+
+ 1078
+
+
+
+ enabled: canRemove
+
+
+
+
+
+ enabled: canRemove
+ enabled
+ canRemove
+ 2
+
+
+ 1118
+
+
+
+ remove:
+
+
+
+ 1119
+
+
+
+ menu
+
+
+
+ 1133
+
+
+
+ value: selection.parameter
+
+
+
+
+
+ value: selection.parameter
+ value
+ selection.parameter
+ 2
+
+
+ 1344
+
+
+
+ value: selection.description
+
+
+
+
+
+ value: selection.description
+ value
+ selection.description
+ 2
+
+
+ 1346
+
+
+
+ selectedValue: selection.delay
+
+
+
+
+
+ selectedValue: selection.delay
+ selectedValue
+ selection.delay
+
+ YES
+
+ YES
+ NSNoSelectionPlaceholder
+ NSValueTransformerName
+
+
+ YES
+ None
+ DelayValueTransformer
+
+
+ 2
+
+
+ 1353
+
+
+
+ value: selection.type
+
+
+
+
+
+ value: selection.type
+ value
+ selection.type
+
+ YES
+
+ YES
+ NSNoSelectionPlaceholder
+ NSValueTransformerName
+
+
+ YES
+ IA
+ ActionTypeHelpTransformer
+
+
+ 2
+
+
+ 1360
+
+
+
+ checkForUpdates:
+
+
+
+ 1363
+
+
+
+ value: values.EnableSwitchSmoothing
+
+
+
+
+
+ value: values.EnableSwitchSmoothing
+ value
+ values.EnableSwitchSmoothing
+
+ YES
+
+ YES
+ NSNoSelectionPlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 1370
+
+
+
+ menu
+
+
+
+ 1377
+
+
+
+ delegate
+
+
+
+ 1379
+
+
+
+ prefsWindowController
+
+
+
+ 1383
+
+
+
+ delegate
+
+
+
+ 1384
+
+
+
+ value: values.HideStatusBarIcon
+
+
+
+
+
+ value: values.HideStatusBarIcon
+ value
+ values.HideStatusBarIcon
+
+ NSNullPlaceholder
+
+
+ 2
+
+
+ 1391
+
+
+
+ value: selection.type
+
+
+
+
+
+ value: selection.type
+ value
+ selection.type
+
+ NSValueTransformerName
+ LocalizeTransformer
+
+ 2
+
+
+ 1392
+
+
+
+ advancedPrefsView
+
+
+
+ 1395
+
+
+
+ value: values.ShowAdvancedPreferences
+
+
+
+
+
+ value: values.ShowAdvancedPreferences
+ value
+ values.ShowAdvancedPreferences
+
+ YES
+
+ YES
+ NSNoSelectionPlaceholder
+ NSNullPlaceholder
+
+
+ YES
+
+
+
+
+ 2
+
+
+ 1420
+
+
+
+ hidden: values.ShowAdvancedPreferences
+
+
+
+
+
+ hidden: values.ShowAdvancedPreferences
+ hidden
+ values.ShowAdvancedPreferences
+
+ YES
+
+ YES
+ NSNoSelectionPlaceholder
+ NSNullPlaceholder
+ NSValueTransformerName
+
+
+ YES
+
+
+ NSNegateBoolean
+
+
+ 2
+
+
+ 1423
+
+
+
+ value: values.WiFiAlwaysScans
+
+
+
+
+
+ value: values.WiFiAlwaysScans
+ value
+ values.WiFiAlwaysScans
+ 2
+
+
+ 1427
+
+
+
+ value: values.UpdateInterval
+
+
+
+
+
+ value: values.UpdateInterval
+ value
+ values.UpdateInterval
+ 2
+
+
+ 1433
+
+
+
+ value: values.UpdateInterval
+
+
+
+
+
+ value: values.UpdateInterval
+ value
+ values.UpdateInterval
+
+ NSValueTransformerName
+ DelayValueTransformer
+
+ 2
+
+
+ 1442
+
+
+
+ newActionLimitedOptionsController
+
+
+
+ 1461
+
+
+
+ whenActionController
+
+
+
+ 1489
+
+
+
+ content: arrangedObjects
+
+
+
+
+
+ content: arrangedObjects
+ content
+ arrangedObjects
+ 2
+
+
+ 1496
+
+
+
+ contentObjects: arrangedObjects.option
+
+
+
+
+
+ contentObjects: arrangedObjects.option
+ contentObjects
+ arrangedObjects.option
+
+ 2
+
+
+ 1508
+
+
+
+ contentValues: arrangedObjects.description
+
+
+
+
+
+ contentValues: arrangedObjects.description
+ contentValues
+ arrangedObjects.description
+
+ 2
+
+
+ 1509
+
+
+
+ selectedObject: selection.when
+
+
+
+
+
+ selectedObject: selection.when
+ selectedObject
+ selection.when
+
+ 2
+
+
+ 1510
+
+
+
+ prefsWindowController
+
+
+
+ 1512
+
+
+
+ evidenceSources
+
+
+
+ 1513
+
+
+
+ delegate
+
+
+
+ 1514
+
+
+
+ evidenceSourcesPrefsView
+
+
+
+ 1519
+
+
+
+ dataSource
+
+
+
+ 1550
+
+
+
+ tableView
+
+
+
+ 1551
+
+
+
+ dataSource
+
+
+
+ 1552
+
+
+
+ delegate
+
+
+
+ 1553
+
+
+
+ tableView
+
+
+
+ 1554
+
+
+
+ dataSource
+
+
+
+ 1555
+
+
+
+ delegate
+
+
+
+ 1556
+
+
+
+ value: arrangedObjects.when
+
+
+
+
+
+ value: arrangedObjects.when
+ value
+ arrangedObjects.when
+
+ YES
+
+ YES
+ NSConditionallySetsEditable
+ NSValueTransformerName
+
+
+ YES
+
+ WhenLocalizeTransformer
+
+
+ 2
+
+
+ 1562
+
+
+
+ value: arrangedObjects.type
+
+
+
+
+
+ value: arrangedObjects.type
+ value
+ arrangedObjects.type
+
+ YES
+
+ YES
+ NSConditionallySetsEditable
+ NSValueTransformerName
+
+
+ YES
+
+ LocalizeTransformer
+
+
+ 2
+
+
+ 1563
+
+
+
+ performClose:
+
+
+
+ 1604
+
+
+
+ newActionWindow
+
+
+
+ 1605
+
+
+
+ doAddAction:
+
+
+
+ 1606
+
+
+
+ newActionWindowParameterView
+
+
+
+ 1610
+
+
+
+ value: newActionWindowHelpText
+
+
+
+
+
+ value: newActionWindowHelpText
+ value
+ newActionWindowHelpText
+ 2
+
+
+ 1611
+
+
+
+ content: arrangedObjects
+
+
+
+
+
+ content: arrangedObjects
+ content
+ arrangedObjects
+ 2
+
+
+ 1620
+
+
+
+ contentObjects: arrangedObjects.option
+
+
+
+
+
+ contentObjects: arrangedObjects.option
+ contentObjects
+ arrangedObjects.option
+
+ 2
+
+
+ 1624
+
+
+
+ contentValues: arrangedObjects.description
+
+
+
+
+
+ contentValues: arrangedObjects.description
+ contentValues
+ arrangedObjects.description
+
+ 2
+
+
+ 1625
+
+
+
+ selectedObject: newActionWindowWhen
+
+
+
+
+
+ selectedObject: newActionWindowWhen
+ selectedObject
+ newActionWindowWhen
+
+ 2
+
+
+ 1626
+
+
+
+ contextsPrefsView
+
+
+
+ 1634
+
+
+
+ dataSource
+
+
+
+ 1636
+
+
+
+ delegate
+
+
+
+ 1637
+
+
+
+ outlineView
+
+
+
+ 1638
+
+
+
+ removeContext:
+
+
+
+ 1642
+
+
+
+ enabled: selection
+
+
+
+
+
+ enabled: selection
+ enabled
+ selection
+
+ NSValueTransformerName
+ NSIsNotNil
+
+ 2
+
+
+ 1645
+
+
+
+ contextsDataSource
+
+
+
+ 1649
+
+
+
+ forceContextMenuItem
+
+
+
+ 1650
+
+
+
+ title: currentContextName
+
+
+
+
+
+ title: currentContextName
+ title
+ currentContextName
+ 2
+
+
+ 1651
+
+
+
+ newActionContext
+
+
+
+ 1662
+
+
+
+ contextsDataSource
+
+
+
+ 1663
+
+
+
+ selectedObject: selection.context
+
+
+
+
+
+ selectedObject: selection.context
+ selectedObject
+ selection.context
+ 2
+
+
+ 1676
+
+
+
+ value: arrangedObjects.context
+
+
+
+
+
+ value: arrangedObjects.context
+ value
+ arrangedObjects.context
+
+ YES
+
+ YES
+ NSConditionallySetsEditable
+ NSValueTransformerName
+
+
+ YES
+
+ ContextNameTransformer
+
+
+ 2
+
+
+ 1677
+
+
+
+ prefsWindow
+
+
+
+ 1678
+
+
+
+ newContextSheet
+
+
+
+ 1681
+
+
+
+ newContextPromptingForName:
+
+
+
+ 1686
+
+
+
+ newContextSheetAccepted:
+
+
+
+ 1687
+
+
+
+ newContextSheetRejected:
+
+
+
+ 1688
+
+
+
+ newContextSheetName
+
+
+
+ 1689
+
+
+
+ runWebPage:
+
+
+
+ 1692
+
+
+
+ value: arrangedObjects.context
+
+
+
+
+
+ value: arrangedObjects.context
+ value
+ arrangedObjects.context
+
+ YES
+
+ YES
+ NSConditionallySetsEditable
+ NSValueTransformerName
+
+
+ YES
+
+ ContextNameTransformer
+
+
+ 2
+
+
+ 1695
+
+
+
+ enabled: values.UseDefaultContext
+
+
+
+
+
+ enabled: values.UseDefaultContext
+ enabled
+ values.UseDefaultContext
+ 2
+
+
+ 1700
+
+
+
+ value: values.UseDefaultContext
+
+
+
+
+
+ value: values.UseDefaultContext
+ value
+ values.UseDefaultContext
+ 2
+
+
+ 1701
+
+
+
+ selectedObject: values.DefaultContext
+
+
+
+
+
+ selectedObject: values.DefaultContext
+ selectedObject
+ values.DefaultContext
+ 2
+
+
+ 1705
+
+
+
+ defaultContextButton
+
+
+
+ 1707
+
+
+
+ editActionContextButton
+
+
+
+ 1717
+
+
+
+ value: selection.enabled
+
+
+
+
+
+ value: selection.enabled
+ value
+ selection.enabled
+ 2
+
+
+ 1722
+
+
+
+ evidenceSources
+
+
+
+ 1724
+
+
+
+ editRule:
+
+
+
+ 1725
+
+
+
+ logBufferView
+
+
+
+ 1738
+
+
+
+ value: logBufferPaused
+
+
+
+
+
+ value: logBufferPaused
+ value
+ logBufferPaused
+ 2
+
+
+ 1741
+
+
+
+ prefsWindow
+
+
+
+ 1742
+
+
+
+ copy:
+
+
+
+ 1818
+
+
+
+ runPageLayout:
+
+
+
+ 1819
+
+
+
+ redo:
+
+
+
+ 1820
+
+
+
+ showGuessPanel:
+
+
+
+ 1821
+
+
+
+ undo:
+
+
+
+ 1822
+
+
+
+ selectAll:
+
+
+
+ 1823
+
+
+
+ performClose:
+
+
+
+ 1824
+
+
+
+ cut:
+
+
+
+ 1826
+
+
+
+ clearRecentDocuments:
+
+
+
+ 1827
+
+
+
+ delete:
+
+
+
+ 1829
+
+
+
+ print:
+
+
+
+ 1830
+
+
+
+ paste:
+
+
+
+ 1831
+
+
+
+ toggleContinuousSpellChecking:
+
+
+
+ 1832
+
+
+
+ checkSpelling:
+
+
+
+ 1833
+
+
+
+
+ YES
+
+ 0
+
+
+
+
+
+ -2
+
+
+ File's Owner
+
+
+ -1
+
+
+ First Responder
+
+
+ 231
+
+
+ RulesController
+
+
+ 288
+
+
+ Shared Defaults
+
+
+ 320
+
+
+ PrefsWindowController
+
+
+ 389
+
+
+ MPController
+
+
+ 390
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+ StatusbarMenu
+
+
+ 391
+
+
+
+
+ 392
+
+
+
+
+ 394
+
+
+
+
+ 468
+
+
+
+
+ 477
+
+
+
+
+ 528
+
+
+
+
+ 529
+
+
+
+
+ 692
+
+
+
+
+ 1560
+
+
+
+
+ 1690
+
+
+
+
+ 1718
+
+
+
+
+ 476
+
+
+ SUUpdater
+
+
+ 513
+
+
+ ActionsController
+
+
+ 901
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ GeneralPrefs
+
+
+ 928
+
+
+ YES
+
+
+
+
+
+ 929
+
+
+ YES
+
+
+
+
+
+ 930
+
+
+ YES
+
+
+
+
+
+ 931
+
+
+ YES
+
+
+
+
+
+ 932
+
+
+ YES
+
+
+
+
+
+ 933
+
+
+ YES
+
+
+
+
+
+ 936
+
+
+ YES
+
+
+
+
+
+ 937
+
+
+ YES
+
+
+
+
+
+ 938
+
+
+ YES
+
+
+
+
+
+ 1362
+
+
+ YES
+
+
+
+
+
+ 1366
+
+
+ YES
+
+
+
+
+
+ 1385
+
+
+ YES
+
+
+ 256
+ {{2, 2}, {125, 1}}
+
+
+
+
+
+ 1386
+
+
+
+
+ 1387
+
+
+ YES
+
+
+
+
+
+ 902
+
+
+ YES
+
+
+
+
+
+
+ RulesPrefs
+
+
+ 976
+
+
+ YES
+
+
+
+
+
+
+
+
+ 977
+
+
+ YES
+
+
+
+
+
+
+
+
+ 978
+
+
+ YES
+
+
+
+
+
+ 979
+
+
+ YES
+
+
+
+
+
+ 980
+
+
+
+
+ 981
+
+
+ YES
+
+
+
+
+
+ 982
+
+
+ YES
+
+
+
+
+
+ 1116
+
+
+ YES
+
+
+
+
+
+ 1117
+
+
+ YES
+
+
+
+
+
+ 1158
+
+
+ YES
+
+
+
+
+
+ 903
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ActionsPrefs
+
+
+ 1006
+
+
+ YES
+
+
+
+
+
+
+
+
+ 1007
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1008
+
+
+ YES
+
+
+
+
+
+ 1009
+
+
+ YES
+
+
+
+
+
+ 1010
+
+
+ YES
+
+
+
+
+
+ 1011
+
+
+ YES
+
+
+
+
+
+ 1012
+
+
+ YES
+
+
+
+
+
+ 1014
+
+
+ YES
+
+
+
+
+
+ 1313
+
+
+ YES
+
+
+
+
+
+ 1314
+
+
+ YES
+
+
+
+
+
+ 1315
+
+
+ YES
+
+
+
+
+
+ 1316
+
+
+ YES
+
+
+
+
+
+ 1317
+
+
+ YES
+
+
+
+
+
+ 1319
+
+
+ YES
+
+
+
+
+
+ 1320
+
+
+ YES
+
+
+
+
+
+ 1321
+
+
+ YES
+
+
+
+
+
+ 1322
+
+
+ YES
+
+
+
+
+
+ 1328
+
+
+ YES
+
+
+
+
+
+ 1373
+
+
+ YES
+
+
+
+
+
+ 1665
+
+
+ YES
+
+
+
+
+
+ 1719
+
+
+ YES
+
+
+
+
+
+ 910
+
+
+ YES
+
+
+
+ PrefsWindow
+
+
+ 911
+
+
+
+
+ 1120
+
+
+ NewRuleMenu
+
+
+ 1374
+
+
+ NewActionMenu
+
+
+ 1378
+
+
+ ActionSetController
+
+
+ 1394
+
+
+ YES
+
+
+
+
+
+
+
+ AdvancedPrefs
+
+
+ 1396
+
+
+ YES
+
+
+
+
+
+ 1397
+
+
+ YES
+
+
+
+
+
+ 1398
+
+
+ YES
+
+
+
+
+
+
+
+
+ 1735
+
+
+ YES
+
+
+
+
+
+
+
+ 1736
+
+
+
+
+ 1740
+
+
+ YES
+
+
+
+
+
+ 1460
+
+
+ NewActionLimitedOptions
+
+
+ 1488
+
+
+ WhenActionController
+
+
+ 1511
+
+
+ EvidenceSourceSetController
+
+
+ 1515
+
+
+ YES
+
+
+
+ EvidenceSourcePrefs
+
+
+ 1545
+
+
+ YES
+
+
+
+
+
+
+
+
+ 1546
+
+
+ YES
+
+
+
+
+
+
+ 1547
+
+
+ YES
+
+
+
+
+
+ 1549
+
+
+
+
+ 1548
+
+
+ YES
+
+
+
+
+
+ 1588
+
+
+ YES
+
+
+
+ NewActionWindow
+
+
+ 1589
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+ 1590
+
+
+ YES
+
+
+
+
+
+ 1591
+
+
+
+
+ 1592
+
+
+ YES
+
+
+
+
+
+ 1593
+
+
+ YES
+
+
+
+
+
+ 1598
+
+
+ YES
+
+
+
+
+
+ 1599
+
+
+ YES
+
+
+
+
+
+ 1612
+
+
+ YES
+
+
+
+
+
+ 1627
+
+
+ YES
+
+
+
+
+
+ ContextsPrefs
+
+
+ 1628
+
+
+ YES
+
+
+
+
+
+
+
+ 1629
+
+
+ YES
+
+
+
+
+
+
+ 1631
+
+
+ YES
+
+
+
+
+
+ 1743
+
+
+ YES
+
+
+
+
+
+ 1632
+
+
+ YES
+
+
+
+
+
+ 1633
+
+
+ YES
+
+
+
+
+
+ 1635
+
+
+ ContextsDataSource
+
+
+ 1679
+
+
+ YES
+
+
+
+ NewContextSheet
+
+
+ 1680
+
+
+ YES
+
+
+
+
+
+
+
+
+ 1682
+
+
+ YES
+
+
+
+
+
+ 1683
+
+
+ YES
+
+
+
+
+
+ 1684
+
+
+ YES
+
+
+
+
+
+ 1685
+
+
+ YES
+
+
+
+
+
+ 1744
+
+
+ YES
+
+
+
+
+
+ *MainMenu*
+
+
+ 1748
+
+
+ YES
+
+
+
+
+
+ 1749
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1750
+
+
+
+
+ 1751
+
+
+
+
+ 1752
+
+
+
+
+ 1753
+
+
+
+
+ 1754
+
+
+
+
+ 1755
+
+
+
+
+ 1756
+
+
+
+
+ 1757
+
+
+
+
+ 1758
+
+
+ YES
+
+
+
+
+
+ 1759
+
+
+ YES
+
+
+
+
+
+
+
+ 1760
+
+
+
+
+ 1761
+
+
+
+
+ 1762
+
+
+
+
+ 1763
+
+
+
+
+ 1764
+
+
+ YES
+
+
+
+
+
+ 1765
+
+
+ YES
+
+
+
+
+
+
+
+
+
+ 1766
+
+
+
+
+ 1767
+
+
+
+
+ 1768
+
+
+
+
+ 1769
+
+
+
+
+ 1770
+
+
+
+
+ 1773
+
+
+ YES
+
+
+
+
+
+ 1774
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1775
+
+
+
+
+ 1776
+
+
+
+
+ 1777
+
+
+
+
+ 1778
+
+
+
+
+ 1779
+
+
+
+
+ 1780
+
+
+
+
+ 1781
+
+
+
+
+ 1782
+
+
+
+
+ 1783
+
+
+
+
+ 1784
+
+
+
+
+ 1785
+
+
+
+
+ 1786
+
+
+ YES
+
+
+
+
+
+ 1787
+
+
+
+
+ 1802
+
+
+ YES
+
+
+
+
+
+ 1803
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1804
+
+
+
+
+ 1805
+
+
+
+
+ 1806
+
+
+
+
+ 1807
+
+
+
+
+ 1808
+
+
+
+
+ 1809
+
+
+
+
+ 1810
+
+
+
+
+ 1811
+
+
+
+
+ 1812
+
+
+
+
+ 1813
+
+
+ YES
+
+
+
+
+
+ 1814
+
+
+ YES
+
+
+
+
+
+ 1815
+
+
+
+
+ 1816
+
+
+
+
+ 1835
+
+
+
+
+ 1836
+
+
+
+
+ 1837
+
+
+
+
+ 1838
+
+
+
+
+ 1839
+
+
+
+
+ 1840
+
+
+
+
+ 1841
+
+
+
+
+ 1842
+
+
+
+
+ 1843
+
+
+ YES
+
+
+
+
+
+ 1844
+
+
+
+
+ 1845
+
+
+
+
+ 1846
+
+
+
+
+ 1847
+
+
+
+
+ 1848
+
+
+
+
+ 1849
+
+
+
+
+ 1850
+
+
+
+
+ 1851
+
+
+
+
+ 1852
+
+
+
+
+ 1853
+
+
+
+
+ 1854
+
+
+
+
+ 1855
+
+
+
+
+ 1856
+
+
+
+
+ 1857
+
+
+
+
+ 1858
+
+
+
+
+ 1859
+
+
+ YES
+
+
+
+
+
+ 1860
+
+
+ YES
+
+
+
+
+
+ 1861
+
+
+
+
+ 1862
+
+
+ YES
+
+
+
+
+
+ 1863
+
+
+
+
+ 1864
+
+
+
+
+ 1865
+
+
+
+
+ 1870
+
+
+
+
+ 1871
+
+
+
+
+ 1872
+
+
+
+
+ 1873
+
+
+ YES
+
+
+
+
+
+ 1874
+
+
+
+
+ 1875
+
+
+
+
+ 1876
+
+
+ YES
+
+
+
+
+
+ 1877
+
+
+
+
+ 1878
+
+
+
+
+ 1879
+
+
+
+
+ 1880
+
+
+
+
+ 1881
+
+
+
+
+ 1882
+
+
+
+
+ 1883
+
+
+
+
+ 1884
+
+
+
+
+ 1885
+
+
+
+
+ 1886
+
+
+
+
+ 1887
+
+
+
+
+ 1888
+
+
+
+
+ 1889
+
+
+
+
+ 1890
+
+
+
+
+ 1891
+
+
+
+
+ 1892
+
+
+
+
+ 1893
+
+
+
+
+ 939
+
+
+ YES
+
+
+
+
+
+ 941
+
+
+
+
+ 1323
+
+
+ YES
+
+
+
+
+
+
+
+
+
+
+ 1365
+
+
+
+
+ 1364
+
+
+
+
+ 1327
+
+
+
+
+ 1326
+
+
+
+
+ 1325
+
+
+
+
+ 1324
+
+
+
+
+ 1329
+
+
+ YES
+
+
+
+
+
+ 1330
+
+
+
+
+ 1666
+
+
+ YES
+
+
+
+
+
+ 1668
+
+
+
+
+ 1594
+
+
+ YES
+
+
+
+
+
+ 1596
+
+
+
+
+ 1613
+
+
+ YES
+
+
+
+
+
+ 1616
+
+
+
+
+ 1894
+
+
+
+
+ 1895
+
+
+
+
+ 1896
+
+
+
+
+ 1897
+
+
+
+
+ 1898
+
+
+
+
+ 1899
+
+
+
+
+ 1900
+
+
+
+
+ 1901
+
+
+
+
+ 1902
+
+
+
+
+ 1903
+
+
+
+
+ 1904
+
+
+
+
+ 1905
+
+
+
+
+ 1906
+
+
+
+
+ -3
+
+
+ Application
+
+
+ 1425
+
+
+ YES
+
+
+
+
+
+ 1866
+
+
+
+
+ 1429
+
+
+ YES
+
+
+
+
+
+ 1867
+
+
+
+
+ 1430
+
+
+ YES
+
+
+
+
+
+ 1868
+
+
+
+
+ 1431
+
+
+ YES
+
+
+
+
+
+ 1869
+
+
+
+
+ 1907
+
+
+ YES
+
+
+
+
+
+ 1908
+
+
+
+
+
+
+ YES
+
+ YES
+ 1006.IBPluginDependency
+ 1006.ImportedFromIB2
+ 1007.IBPluginDependency
+ 1007.ImportedFromIB2
+ 1008.IBPluginDependency
+ 1008.ImportedFromIB2
+ 1009.IBPluginDependency
+ 1009.ImportedFromIB2
+ 1010.IBPluginDependency
+ 1010.ImportedFromIB2
+ 1011.IBPluginDependency
+ 1011.ImportedFromIB2
+ 1012.IBPluginDependency
+ 1012.ImportedFromIB2
+ 1014.IBPluginDependency
+ 1014.ImportedFromIB2
+ 1116.CustomClassName
+ 1116.IBPluginDependency
+ 1116.ImportedFromIB2
+ 1117.IBPluginDependency
+ 1117.ImportedFromIB2
+ 1120.IBPluginDependency
+ 1120.ImportedFromIB2
+ 1158.IBPluginDependency
+ 1158.ImportedFromIB2
+ 1313.IBPluginDependency
+ 1313.ImportedFromIB2
+ 1314.IBPluginDependency
+ 1314.ImportedFromIB2
+ 1315.IBPluginDependency
+ 1315.ImportedFromIB2
+ 1316.IBPluginDependency
+ 1316.ImportedFromIB2
+ 1317.IBPluginDependency
+ 1317.ImportedFromIB2
+ 1319.IBPluginDependency
+ 1319.ImportedFromIB2
+ 1320.IBPluginDependency
+ 1320.ImportedFromIB2
+ 1321.IBPluginDependency
+ 1321.ImportedFromIB2
+ 1322.IBPluginDependency
+ 1322.ImportedFromIB2
+ 1323.IBPluginDependency
+ 1323.ImportedFromIB2
+ 1324.IBPluginDependency
+ 1324.ImportedFromIB2
+ 1325.IBPluginDependency
+ 1325.ImportedFromIB2
+ 1326.IBPluginDependency
+ 1326.ImportedFromIB2
+ 1327.IBPluginDependency
+ 1327.ImportedFromIB2
+ 1328.IBPluginDependency
+ 1328.ImportedFromIB2
+ 1329.IBPluginDependency
+ 1329.ImportedFromIB2
+ 1330.IBPluginDependency
+ 1330.ImportedFromIB2
+ 1362.IBPluginDependency
+ 1362.ImportedFromIB2
+ 1364.IBPluginDependency
+ 1364.ImportedFromIB2
+ 1365.IBPluginDependency
+ 1365.ImportedFromIB2
+ 1366.IBAttributePlaceholdersKey
+ 1366.IBPluginDependency
+ 1366.ImportedFromIB2
+ 1373.CustomClassName
+ 1373.IBPluginDependency
+ 1373.ImportedFromIB2
+ 1374.IBPluginDependency
+ 1374.ImportedFromIB2
+ 1378.ImportedFromIB2
+ 1385.IBPluginDependency
+ 1385.ImportedFromIB2
+ 1386.IBPluginDependency
+ 1386.ImportedFromIB2
+ 1387.IBPluginDependency
+ 1387.ImportedFromIB2
+ 1394.IBPluginDependency
+ 1394.ImportedFromIB2
+ 1396.IBPluginDependency
+ 1396.ImportedFromIB2
+ 1397.IBPluginDependency
+ 1397.ImportedFromIB2
+ 1398.IBPluginDependency
+ 1398.ImportedFromIB2
+ 1425.IBPluginDependency
+ 1425.ImportedFromIB2
+ 1429.IBPluginDependency
+ 1429.ImportedFromIB2
+ 1430.IBPluginDependency
+ 1430.ImportedFromIB2
+ 1431.IBPluginDependency
+ 1431.ImportedFromIB2
+ 1460.IBPluginDependency
+ 1460.ImportedFromIB2
+ 1488.IBPluginDependency
+ 1488.ImportedFromIB2
+ 1511.ImportedFromIB2
+ 1515.IBPluginDependency
+ 1515.ImportedFromIB2
+ 1545.IBPluginDependency
+ 1545.ImportedFromIB2
+ 1546.IBPluginDependency
+ 1546.ImportedFromIB2
+ 1547.IBPluginDependency
+ 1547.ImportedFromIB2
+ 1548.IBPluginDependency
+ 1548.ImportedFromIB2
+ 1549.IBPluginDependency
+ 1549.ImportedFromIB2
+ 1560.IBPluginDependency
+ 1560.ImportedFromIB2
+ 1588.IBPluginDependency
+ 1588.ImportedFromIB2
+ 1588.windowTemplate.hasMinSize
+ 1588.windowTemplate.minSize
+ 1589.IBPluginDependency
+ 1589.ImportedFromIB2
+ 1590.IBPluginDependency
+ 1590.ImportedFromIB2
+ 1591.IBPluginDependency
+ 1591.ImportedFromIB2
+ 1592.IBPluginDependency
+ 1592.ImportedFromIB2
+ 1593.IBPluginDependency
+ 1593.ImportedFromIB2
+ 1594.IBPluginDependency
+ 1594.ImportedFromIB2
+ 1596.IBPluginDependency
+ 1596.ImportedFromIB2
+ 1598.IBPluginDependency
+ 1598.ImportedFromIB2
+ 1599.IBPluginDependency
+ 1599.ImportedFromIB2
+ 1612.IBPluginDependency
+ 1612.ImportedFromIB2
+ 1613.IBPluginDependency
+ 1613.ImportedFromIB2
+ 1616.IBPluginDependency
+ 1616.ImportedFromIB2
+ 1627.IBPluginDependency
+ 1627.ImportedFromIB2
+ 1628.IBPluginDependency
+ 1628.ImportedFromIB2
+ 1629.IBPluginDependency
+ 1629.ImportedFromIB2
+ 1631.IBPluginDependency
+ 1631.ImportedFromIB2
+ 1632.IBPluginDependency
+ 1632.ImportedFromIB2
+ 1633.IBPluginDependency
+ 1633.ImportedFromIB2
+ 1635.ImportedFromIB2
+ 1665.CustomClassName
+ 1665.IBPluginDependency
+ 1665.ImportedFromIB2
+ 1666.IBPluginDependency
+ 1666.ImportedFromIB2
+ 1668.IBPluginDependency
+ 1668.ImportedFromIB2
+ 1679.IBPluginDependency
+ 1679.ImportedFromIB2
+ 1679.windowTemplate.hasMinSize
+ 1679.windowTemplate.minSize
+ 1680.IBPluginDependency
+ 1680.ImportedFromIB2
+ 1682.IBPluginDependency
+ 1682.ImportedFromIB2
+ 1683.IBPluginDependency
+ 1683.ImportedFromIB2
+ 1684.IBPluginDependency
+ 1684.ImportedFromIB2
+ 1685.IBPluginDependency
+ 1685.ImportedFromIB2
+ 1690.IBPluginDependency
+ 1690.ImportedFromIB2
+ 1718.IBPluginDependency
+ 1718.ImportedFromIB2
+ 1719.IBPluginDependency
+ 1719.ImportedFromIB2
+ 1735.IBPluginDependency
+ 1735.ImportedFromIB2
+ 1736.IBPluginDependency
+ 1736.ImportedFromIB2
+ 1740.IBPluginDependency
+ 1740.ImportedFromIB2
+ 1743.IBPluginDependency
+ 1743.ImportedFromIB2
+ 1744.IBPluginDependency
+ 1744.ImportedFromIB2
+ 1748.IBPluginDependency
+ 1748.ImportedFromIB2
+ 1749.IBPluginDependency
+ 1749.ImportedFromIB2
+ 1750.IBPluginDependency
+ 1750.ImportedFromIB2
+ 1751.IBPluginDependency
+ 1751.ImportedFromIB2
+ 1752.IBPluginDependency
+ 1752.ImportedFromIB2
+ 1753.IBPluginDependency
+ 1753.ImportedFromIB2
+ 1754.IBPluginDependency
+ 1754.ImportedFromIB2
+ 1755.IBPluginDependency
+ 1755.ImportedFromIB2
+ 1756.IBPluginDependency
+ 1756.ImportedFromIB2
+ 1757.IBPluginDependency
+ 1757.ImportedFromIB2
+ 1758.IBPluginDependency
+ 1758.ImportedFromIB2
+ 1759.IBPluginDependency
+ 1759.ImportedFromIB2
+ 1760.IBPluginDependency
+ 1760.ImportedFromIB2
+ 1761.IBPluginDependency
+ 1761.ImportedFromIB2
+ 1762.IBPluginDependency
+ 1762.ImportedFromIB2
+ 1763.IBPluginDependency
+ 1763.ImportedFromIB2
+ 1764.IBPluginDependency
+ 1764.ImportedFromIB2
+ 1765.IBPluginDependency
+ 1765.ImportedFromIB2
+ 1766.IBPluginDependency
+ 1766.ImportedFromIB2
+ 1767.IBPluginDependency
+ 1767.ImportedFromIB2
+ 1768.IBPluginDependency
+ 1768.ImportedFromIB2
+ 1769.IBPluginDependency
+ 1769.ImportedFromIB2
+ 1770.IBPluginDependency
+ 1770.ImportedFromIB2
+ 1773.IBPluginDependency
+ 1773.ImportedFromIB2
+ 1774.IBPluginDependency
+ 1774.ImportedFromIB2
+ 1775.IBPluginDependency
+ 1775.ImportedFromIB2
+ 1776.IBPluginDependency
+ 1776.ImportedFromIB2
+ 1777.IBPluginDependency
+ 1777.ImportedFromIB2
+ 1778.IBPluginDependency
+ 1778.ImportedFromIB2
+ 1779.IBPluginDependency
+ 1779.ImportedFromIB2
+ 1780.IBPluginDependency
+ 1780.ImportedFromIB2
+ 1781.IBPluginDependency
+ 1781.ImportedFromIB2
+ 1782.IBPluginDependency
+ 1782.ImportedFromIB2
+ 1783.IBPluginDependency
+ 1783.ImportedFromIB2
+ 1784.IBPluginDependency
+ 1784.ImportedFromIB2
+ 1785.IBPluginDependency
+ 1785.ImportedFromIB2
+ 1786.IBPluginDependency
+ 1786.ImportedFromIB2
+ 1787.IBPluginDependency
+ 1787.ImportedFromIB2
+ 1802.IBPluginDependency
+ 1802.ImportedFromIB2
+ 1803.IBPluginDependency
+ 1803.ImportedFromIB2
+ 1804.IBPluginDependency
+ 1804.ImportedFromIB2
+ 1805.IBPluginDependency
+ 1805.ImportedFromIB2
+ 1806.IBPluginDependency
+ 1806.ImportedFromIB2
+ 1807.IBPluginDependency
+ 1807.ImportedFromIB2
+ 1808.IBPluginDependency
+ 1808.ImportedFromIB2
+ 1809.IBPluginDependency
+ 1809.ImportedFromIB2
+ 1810.IBPluginDependency
+ 1810.ImportedFromIB2
+ 1811.IBPluginDependency
+ 1811.ImportedFromIB2
+ 1812.IBPluginDependency
+ 1812.ImportedFromIB2
+ 1813.IBPluginDependency
+ 1813.ImportedFromIB2
+ 1814.IBPluginDependency
+ 1814.ImportedFromIB2
+ 1815.IBPluginDependency
+ 1815.ImportedFromIB2
+ 1816.IBPluginDependency
+ 1816.ImportedFromIB2
+ 1883.IBShouldRemoveOnLegacySave
+ 1884.IBShouldRemoveOnLegacySave
+ 1885.IBShouldRemoveOnLegacySave
+ 1886.IBShouldRemoveOnLegacySave
+ 1887.IBShouldRemoveOnLegacySave
+ 1888.IBShouldRemoveOnLegacySave
+ 1889.IBShouldRemoveOnLegacySave
+ 1890.IBShouldRemoveOnLegacySave
+ 1891.IBShouldRemoveOnLegacySave
+ 1892.IBShouldRemoveOnLegacySave
+ 1893.IBShouldRemoveOnLegacySave
+ 1894.IBShouldRemoveOnLegacySave
+ 1895.IBShouldRemoveOnLegacySave
+ 1896.IBShouldRemoveOnLegacySave
+ 1897.IBShouldRemoveOnLegacySave
+ 1898.IBShouldRemoveOnLegacySave
+ 1899.IBShouldRemoveOnLegacySave
+ 1900.IBShouldRemoveOnLegacySave
+ 1901.IBShouldRemoveOnLegacySave
+ 1902.IBShouldRemoveOnLegacySave
+ 1903.IBShouldRemoveOnLegacySave
+ 1904.IBShouldRemoveOnLegacySave
+ 1905.IBShouldRemoveOnLegacySave
+ 1906.IBShouldRemoveOnLegacySave
+ 1907.IBPluginDependency
+ 1908.IBPluginDependency
+ 231.CustomClassName
+ 231.IBPluginDependency
+ 231.ImportedFromIB2
+ 288.IBPluginDependency
+ 288.ImportedFromIB2
+ 320.ImportedFromIB2
+ 389.ImportedFromIB2
+ 390.IBPluginDependency
+ 390.ImportedFromIB2
+ 391.IBPluginDependency
+ 391.ImportedFromIB2
+ 392.IBPluginDependency
+ 392.ImportedFromIB2
+ 394.IBPluginDependency
+ 394.ImportedFromIB2
+ 468.IBPluginDependency
+ 468.ImportedFromIB2
+ 476.ImportedFromIB2
+ 477.IBPluginDependency
+ 477.ImportedFromIB2
+ 513.CustomClassName
+ 513.IBPluginDependency
+ 513.ImportedFromIB2
+ 528.IBPluginDependency
+ 528.ImportedFromIB2
+ 529.IBPluginDependency
+ 529.ImportedFromIB2
+ 692.IBPluginDependency
+ 692.ImportedFromIB2
+ 901.IBEditorWindowLastContentRect
+ 901.IBPluginDependency
+ 901.ImportedFromIB2
+ 902.IBPluginDependency
+ 902.ImportedFromIB2
+ 903.IBEditorWindowLastContentRect
+ 903.IBPluginDependency
+ 903.ImportedFromIB2
+ 910.IBEditorWindowLastContentRect
+ 910.IBPluginDependency
+ 910.IBWindowTemplateEditedContentRect
+ 910.ImportedFromIB2
+ 910.windowTemplate.hasMinSize
+ 910.windowTemplate.minSize
+ 911.IBPluginDependency
+ 911.ImportedFromIB2
+ 928.IBPluginDependency
+ 928.ImportedFromIB2
+ 929.CustomClassName
+ 929.IBPluginDependency
+ 929.ImportedFromIB2
+ 930.IBPluginDependency
+ 930.ImportedFromIB2
+ 931.IBPluginDependency
+ 931.ImportedFromIB2
+ 932.IBPluginDependency
+ 932.ImportedFromIB2
+ 933.IBPluginDependency
+ 933.ImportedFromIB2
+ 936.IBPluginDependency
+ 936.ImportedFromIB2
+ 937.IBPluginDependency
+ 937.ImportedFromIB2
+ 938.CustomClassName
+ 938.IBPluginDependency
+ 938.ImportedFromIB2
+ 939.IBPluginDependency
+ 939.ImportedFromIB2
+ 941.IBPluginDependency
+ 941.ImportedFromIB2
+ 976.IBPluginDependency
+ 976.ImportedFromIB2
+ 977.IBPluginDependency
+ 977.ImportedFromIB2
+ 978.IBPluginDependency
+ 978.ImportedFromIB2
+ 979.IBPluginDependency
+ 979.ImportedFromIB2
+ 980.CustomClassName
+ 980.IBPluginDependency
+ 980.ImportedFromIB2
+ 981.IBPluginDependency
+ 981.ImportedFromIB2
+ 982.IBPluginDependency
+ 982.ImportedFromIB2
+
+
+ YES
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ PopButton
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ ToolTip
+
+ ToolTip
+
+ Delays switching locations until the same place is guessed twice in a row
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ PopButton
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ {213, 107}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ ContextSelectionButton
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ {213, 107}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+ com.apple.InterfaceBuilder.CocoaPlugin
+ DNDArrayController
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ DNDArrayController
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{329, 492}, {413, 253}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{304, 247}, {498, 413}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ {{451, 357}, {477, 323}}
+ com.apple.InterfaceBuilder.CocoaPlugin
+ {{451, 357}, {477, 323}}
+
+
+ {243, 167}
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ SliderWithValue
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ ContextSelectionButton
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ SliderCellWithValue
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+ com.apple.InterfaceBuilder.CocoaPlugin
+
+
+
+
+ YES
+
+
+ YES
+
+
+
+
+ YES
+
+
+ YES
+
+
+
+ 1908
+
+
+
+ YES
+
+ ActionSetController
+ NSObject
+
+ prefsWindowController
+ NSWindowController
+
+
+ IBProjectSource
+ src/Action.h
+
+
+
+ ActionSetController
+ NSObject
+
+ IBUserSource
+
+
+
+
+ ContextSelectionButton
+ NSPopUpButton
+
+ IBProjectSource
+ src/ContextSelectionButton.h
+
+
+
+ ContextSelectionButton
+ NSPopUpButton
+
+ IBUserSource
+
+
+
+
+ ContextsDataSource
+ NSObject
+
+ YES
+
+ YES
+ newContextPromptingForName:
+ newContextSheetAccepted:
+ newContextSheetRejected:
+ removeContext:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ newContextSheet
+ newContextSheetName
+ outlineView
+ prefsWindow
+
+
+ YES
+ NSPanel
+ NSTextField
+ NSOutlineView
+ NSWindow
+
+
+
+ IBProjectSource
+ src/ContextsDataSource.h
+
+
+
+ ContextsDataSource
+ NSObject
+
+ IBUserSource
+
+
+
+
+ DNDArrayController
+ NSArrayController
+
+ tableView
+ NSTableView
+
+
+ IBProjectSource
+ src/DNDArrayController.h
+
+
+
+ DNDArrayController
+ NSArrayController
+
+ IBUserSource
+
+
+
+
+ EvidenceSourceSetController
+ NSObject
+
+ prefsWindowController
+ NSWindowController
+
+
+ IBProjectSource
+ src/EvidenceSource.h
+
+
+
+ EvidenceSourceSetController
+ NSObject
+
+ IBUserSource
+
+
+
+
+ FirstResponder
+
+ :
+ id
+
+
+ IBUserSource
+
+
+
+
+ MPController
+ NSObject
+
+ YES
+
+ YES
+ actionsController
+ contextsDataSource
+ evidenceSources
+ forceContextMenuItem
+ prefsWindow
+ rulesController
+ sbMenu
+
+
+ YES
+ NSArrayController
+ ContextsDataSource
+ EvidenceSourceSetController
+ NSMenuItem
+ NSWindow
+ NSArrayController
+ NSMenu
+
+
+
+ IBProjectSource
+ src/MPController.h
+
+
+
+ MPController
+ NSObject
+
+ IBUserSource
+
+
+
+
+ PopButton
+ NSButton
+
+ IBProjectSource
+ src/PopButton.h
+
+
+
+ PopButton
+ NSButton
+
+ IBUserSource
+
+
+
+
+ PrefsWindowController
+ NSWindowController
+
+ YES
+
+ YES
+ addAction:
+ addRule:
+ doAddAction:
+ editRule:
+ runAbout:
+ runPreferences:
+ runWebPage:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ YES
+
+ YES
+ actionsController
+ actionsPrefsView
+ advancedPrefsView
+ contextsDataSource
+ contextsPrefsView
+ defaultContextButton
+ editActionContextButton
+ evidenceSources
+ evidenceSourcesPrefsView
+ generalPrefsView
+ logBufferView
+ mpController
+ newActionContext
+ newActionLimitedOptionsController
+ newActionWindow
+ newActionWindowParameterView
+ prefsWindow
+ rulesController
+ rulesPrefsView
+ whenActionController
+
+
+ YES
+ NSArrayController
+ NSView
+ NSView
+ ContextsDataSource
+ NSView
+ ContextSelectionButton
+ ContextSelectionButton
+ EvidenceSourceSetController
+ NSView
+ NSView
+ NSTextView
+ MPController
+ NSPopUpButton
+ NSArrayController
+ NSWindow
+ NSView
+ NSWindow
+ NSArrayController
+ NSView
+ NSArrayController
+
+
+
+ IBProjectSource
+ src/PrefsWindowController.h
+
+
+
+ PrefsWindowController
+ NSWindowController
+
+ IBUserSource
+
+
+
+
+ SUUpdater
+ NSObject
+
+ IBUserSource
+
+
+
+
+ SliderCellWithValue
+ NSSliderCell
+
+ IBProjectSource
+ src/SliderWithValue.h
+
+
+
+ SliderCellWithValue
+ NSSliderCell
+
+ IBUserSource
+
+
+
+
+ SliderWithValue
+ NSSlider
+
+
+
+ SliderWithValue
+ NSSlider
+
+ IBUserSource
+
+
+
+
+
+ YES
+
+ NSActionCell
+ NSCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSActionCell.h
+
+
+
+ NSApplication
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplication.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSApplicationScripting.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSColorPanel.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSHelpManager.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPageLayout.h
+
+
+
+ NSApplication
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserInterfaceItemSearching.h
+
+
+
+ NSArrayController
+ NSObjectController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSArrayController.h
+
+
+
+ NSBox
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBox.h
+
+
+
+ NSBrowser
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSBrowser.h
+
+
+
+ NSButton
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButton.h
+
+
+
+ NSButtonCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSButtonCell.h
+
+
+
+ NSCell
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSCell.h
+
+
+
+ NSControl
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSControl.h
+
+
+
+ NSController
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSController.h
+
+
+
+ NSDocument
+ NSObject
+
+ YES
+
+ YES
+ printDocument:
+ revertDocumentToSaved:
+ runPageLayout:
+ saveDocument:
+ saveDocumentAs:
+ saveDocumentTo:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDocument.h
+
+
+
+ NSDocument
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDocumentScripting.h
+
+
+
+ NSDocumentController
+ NSObject
+
+ YES
+
+ YES
+ clearRecentDocuments:
+ newDocument:
+ openDocument:
+ saveAllDocuments:
+
+
+ YES
+ id
+ id
+ id
+ id
+
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDocumentController.h
+
+
+
+ NSFormatter
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFormatter.h
+
+
+
+ NSManagedObjectContext
+ NSObject
+
+ IBFrameworkSource
+ CoreData.framework/Headers/NSManagedObjectContext.h
+
+
+
+ NSMatrix
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMatrix.h
+
+
+
+ NSMenu
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenu.h
+
+
+
+ NSMenuItem
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItem.h
+
+
+
+ NSMenuItemCell
+ NSButtonCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMenuItemCell.h
+
+
+
+ NSMovieView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSMovieView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSAccessibility.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDictionaryController.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDragging.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSFontPanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSKeyValueBinding.h
+
+
+
+ NSObject
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSNibLoading.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSOutlineView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPasteboard.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSavePanel.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSToolbarItem.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSView.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSError.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSFileManager.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyValueObserving.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSKeyedArchiver.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObject.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSObjectScripting.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSPortCoder.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSRunLoop.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptClassDescription.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptKeyValueCoding.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptObjectSpecifiers.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSScriptWhoseTests.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSThread.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURL.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLConnection.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Foundation.framework/Headers/NSURLDownload.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Growl.framework/Headers/GrowlApplicationBridge.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Sparkle.framework/Headers/SUAppcast.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ Sparkle.framework/Headers/SUUpdater.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebDownload.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebEditingDelegate.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebFrameLoadDelegate.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebJavaPlugIn.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebPlugin.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebPluginContainer.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebPolicyDelegate.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebResourceLoadDelegate.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebScriptObject.h
+
+
+
+ NSObject
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebUIDelegate.h
+
+
+
+ NSObjectController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSObjectController.h
+
+
+
+ NSOutlineView
+ NSTableView
+
+
+
+ NSPanel
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPanel.h
+
+
+
+ NSPopUpButton
+ NSButton
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButton.h
+
+
+
+ NSPopUpButtonCell
+ NSMenuItemCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSPopUpButtonCell.h
+
+
+
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSInterfaceStyle.h
+
+
+
+ NSResponder
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSResponder.h
+
+
+
+ NSScrollView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScrollView.h
+
+
+
+ NSScroller
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSScroller.h
+
+
+
+ NSSlider
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSlider.h
+
+
+
+ NSSliderCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSSliderCell.h
+
+
+
+ NSTableColumn
+ NSObject
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableColumn.h
+
+
+
+ NSTableHeaderView
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTableHeaderView.h
+
+
+
+ NSTableView
+ NSControl
+
+
+
+ NSText
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSText.h
+
+
+
+ NSTextField
+ NSControl
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextField.h
+
+
+
+ NSTextFieldCell
+ NSActionCell
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextFieldCell.h
+
+
+
+ NSTextView
+ NSText
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSTextView.h
+
+
+
+ NSUserDefaultsController
+ NSController
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSUserDefaultsController.h
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSClipView.h
+
+
+
+ NSView
+
+
+
+ NSView
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSRulerView.h
+
+
+
+ NSView
+ NSResponder
+
+
+
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSDrawer.h
+
+
+
+ NSWindow
+ NSResponder
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindow.h
+
+
+
+ NSWindow
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowScripting.h
+
+
+
+ NSWindowController
+ NSResponder
+
+ showWindow:
+ id
+
+
+ IBFrameworkSource
+ AppKit.framework/Headers/NSWindowController.h
+
+
+
+ SUUpdater
+ NSObject
+
+ checkForUpdates:
+ id
+
+
+ delegate
+ id
+
+
+
+
+ WebView
+ NSView
+
+ YES
+
+ YES
+ goBack:
+ goForward:
+ makeTextLarger:
+ makeTextSmaller:
+ makeTextStandardSize:
+ reload:
+ reloadFromOrigin:
+ stopLoading:
+ takeStringURLFrom:
+ toggleContinuousSpellChecking:
+ toggleSmartInsertDelete:
+
+
+ YES
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+ id
+
+
+
+ IBFrameworkSource
+ WebKit.framework/Headers/WebView.h
+
+
+
+
+ 0
+
+ com.apple.InterfaceBuilder.CocoaPlugin.macosx
+
+
+
+ com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3
+
+
+ YES
+ ../MarcoPolo.xcodeproj
+ 3
+
+