terminal-notifier 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/terminal-notifier.rb +1 -1
- data/vendor/terminal-notifier/README.markdown +53 -12
- data/vendor/terminal-notifier/Ruby/Gemfile +2 -0
- data/vendor/terminal-notifier/Ruby/Gemfile.lock +23 -0
- data/vendor/terminal-notifier/Ruby/LICENSE +23 -0
- data/vendor/terminal-notifier/Ruby/README.markdown +48 -0
- data/vendor/terminal-notifier/Ruby/Rakefile +44 -0
- data/vendor/terminal-notifier/Ruby/bin/terminal-notifier +13 -0
- data/vendor/terminal-notifier/Ruby/lib/terminal-notifier.rb +87 -0
- data/vendor/terminal-notifier/Ruby/spec/terminal-notifier_spec.rb +72 -0
- data/vendor/terminal-notifier/Ruby/terminal-notifier.gemspec +26 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.pbxproj +311 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/xcshareddata/xcschemes/Terminal Notifier.xcscheme +140 -0
- data/vendor/terminal-notifier/Terminal Notifier/AppDelegate.h +4 -0
- data/vendor/terminal-notifier/Terminal Notifier/AppDelegate.m +339 -0
- data/vendor/terminal-notifier/Terminal Notifier/Terminal Notifier-Info.plist +36 -0
- data/vendor/terminal-notifier/Terminal Notifier/Terminal Notifier-Prefix.pch +7 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/Credits.rtf +29 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/InfoPlist.strings +2 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/MainMenu.xib +3191 -0
- data/vendor/terminal-notifier/Terminal Notifier/main.m +6 -0
- data/vendor/terminal-notifier/Terminal.icns +0 -0
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Info.plist +10 -10
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier +0 -0
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
- metadata +35 -14
@@ -0,0 +1,339 @@
|
|
1
|
+
#import "AppDelegate.h"
|
2
|
+
#import <ScriptingBridge/ScriptingBridge.h>
|
3
|
+
#import <objc/runtime.h>
|
4
|
+
|
5
|
+
NSString * const TerminalNotifierBundleID = @"nl.superalloy.oss.terminal-notifier";
|
6
|
+
NSString * const NotificationCenterUIBundleID = @"com.apple.notificationcenterui";
|
7
|
+
|
8
|
+
// Set OS Params
|
9
|
+
#define NSAppKitVersionNumber10_8 1187
|
10
|
+
#define NSAppKitVersionNumber10_9 1265
|
11
|
+
|
12
|
+
NSString *_fakeBundleIdentifier = nil;
|
13
|
+
|
14
|
+
@implementation NSBundle (FakeBundleIdentifier)
|
15
|
+
|
16
|
+
// Overriding bundleIdentifier works, but overriding NSUserNotificationAlertStyle does not work.
|
17
|
+
|
18
|
+
- (NSString *)__bundleIdentifier;
|
19
|
+
{
|
20
|
+
if (self == [NSBundle mainBundle]) {
|
21
|
+
return _fakeBundleIdentifier ? _fakeBundleIdentifier : TerminalNotifierBundleID;
|
22
|
+
} else {
|
23
|
+
return [self __bundleIdentifier];
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
@end
|
28
|
+
|
29
|
+
static BOOL
|
30
|
+
InstallFakeBundleIdentifierHook()
|
31
|
+
{
|
32
|
+
Class class = objc_getClass("NSBundle");
|
33
|
+
if (class) {
|
34
|
+
method_exchangeImplementations(class_getInstanceMethod(class, @selector(bundleIdentifier)),
|
35
|
+
class_getInstanceMethod(class, @selector(__bundleIdentifier)));
|
36
|
+
return YES;
|
37
|
+
}
|
38
|
+
return NO;
|
39
|
+
}
|
40
|
+
|
41
|
+
static BOOL
|
42
|
+
isMavericks()
|
43
|
+
{
|
44
|
+
if (floor(NSAppKitVersionNumber) <= NSAppKitVersionNumber10_8) {
|
45
|
+
/* On a 10.8 - 10.8.x system */
|
46
|
+
return NO;
|
47
|
+
} else {
|
48
|
+
/* 10.9 or later system */
|
49
|
+
return YES;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
@implementation NSUserDefaults (SubscriptAndUnescape)
|
54
|
+
- (id)objectForKeyedSubscript:(id)key;
|
55
|
+
{
|
56
|
+
id obj = [self objectForKey:key];
|
57
|
+
if ([obj isKindOfClass:[NSString class]] && [(NSString *)obj hasPrefix:@"\\"]) {
|
58
|
+
obj = [(NSString *)obj substringFromIndex:1];
|
59
|
+
}
|
60
|
+
return obj;
|
61
|
+
}
|
62
|
+
@end
|
63
|
+
|
64
|
+
|
65
|
+
@implementation AppDelegate
|
66
|
+
|
67
|
+
+(void)initializeUserDefaults
|
68
|
+
{
|
69
|
+
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
70
|
+
|
71
|
+
// initialize the dictionary with default values depending on OS level
|
72
|
+
NSDictionary *appDefaults;
|
73
|
+
|
74
|
+
if (isMavericks())
|
75
|
+
{
|
76
|
+
//10.9
|
77
|
+
appDefaults = @{@"sender": @"com.apple.Terminal"};
|
78
|
+
}
|
79
|
+
else
|
80
|
+
{
|
81
|
+
//10.8
|
82
|
+
appDefaults = @{@"": @"message"};
|
83
|
+
}
|
84
|
+
|
85
|
+
// and set them appropriately
|
86
|
+
[defaults registerDefaults:appDefaults];
|
87
|
+
}
|
88
|
+
|
89
|
+
- (void)printHelpBanner;
|
90
|
+
{
|
91
|
+
const char *appName = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleExecutable"] UTF8String];
|
92
|
+
const char *appVersion = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"] UTF8String];
|
93
|
+
printf("%s (%s) is a command-line tool to send OS X User Notifications.\n" \
|
94
|
+
"\n" \
|
95
|
+
"Usage: %s -[message|list|remove] [VALUE|ID|ID] [options]\n" \
|
96
|
+
"\n" \
|
97
|
+
" Either of these is required (unless message data is piped to the tool):\n" \
|
98
|
+
"\n" \
|
99
|
+
" -help Display this help banner.\n" \
|
100
|
+
" -message VALUE The notification message.\n" \
|
101
|
+
" -remove ID Removes a notification with the specified ‘group’ ID.\n" \
|
102
|
+
" -list ID If the specified ‘group’ ID exists show when it was delivered,\n" \
|
103
|
+
" or use ‘ALL’ as ID to see all notifications.\n" \
|
104
|
+
" The output is a tab-separated list.\n"
|
105
|
+
"\n" \
|
106
|
+
" Optional:\n" \
|
107
|
+
"\n" \
|
108
|
+
" -title VALUE The notification title. Defaults to ‘Terminal’.\n" \
|
109
|
+
" -subtitle VALUE The notification subtitle.\n" \
|
110
|
+
" -sound NAME The name of a sound to play when the notification appears. The names are listed\n" \
|
111
|
+
" in Sound Preferences. Use 'default' for the default notification sound.\n" \
|
112
|
+
" -group ID A string which identifies the group the notifications belong to.\n" \
|
113
|
+
" Old notifications with the same ID will be removed.\n" \
|
114
|
+
" -activate ID The bundle identifier of the application to activate when the user clicks the notification.\n" \
|
115
|
+
" -sender ID The bundle identifier of the application that should be shown as the sender, including its icon.\n" \
|
116
|
+
" -open URL The URL of a resource to open when the user clicks the notification.\n" \
|
117
|
+
" -execute COMMAND A shell command to perform when the user clicks the notification.\n" \
|
118
|
+
"\n" \
|
119
|
+
"When the user activates a notification, the results are logged to the system logs.\n" \
|
120
|
+
"Use Console.app to view these logs.\n" \
|
121
|
+
"\n" \
|
122
|
+
"Note that in some circumstances the first character of a message has to be escaped in order to be recognized.\n" \
|
123
|
+
"An example of this is when using an open bracket, which has to be escaped like so: ‘\\[’.\n" \
|
124
|
+
"\n" \
|
125
|
+
"For more information see https://github.com/alloy/terminal-notifier.\n",
|
126
|
+
appName, appVersion, appName);
|
127
|
+
}
|
128
|
+
|
129
|
+
- (void)applicationDidFinishLaunching:(NSNotification *)notification;
|
130
|
+
{
|
131
|
+
NSUserNotification *userNotification = notification.userInfo[NSApplicationLaunchUserNotificationKey];
|
132
|
+
if (userNotification) {
|
133
|
+
[self userActivatedNotification:userNotification];
|
134
|
+
|
135
|
+
} else {
|
136
|
+
if ([[[NSProcessInfo processInfo] arguments] indexOfObject:@"-help"] != NSNotFound) {
|
137
|
+
[self printHelpBanner];
|
138
|
+
exit(0);
|
139
|
+
}
|
140
|
+
|
141
|
+
NSArray *runningProcesses = [[[NSWorkspace sharedWorkspace] runningApplications] valueForKey:@"bundleIdentifier"];
|
142
|
+
if ([runningProcesses indexOfObject:NotificationCenterUIBundleID] == NSNotFound) {
|
143
|
+
NSLog(@"[!] Unable to post a notification for the current user (%@), as it has no running NotificationCenter instance.", NSUserName());
|
144
|
+
exit(1);
|
145
|
+
}
|
146
|
+
|
147
|
+
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
|
148
|
+
|
149
|
+
NSString *subtitle = defaults[@"subtitle"];
|
150
|
+
NSString *message = defaults[@"message"];
|
151
|
+
NSString *remove = defaults[@"remove"];
|
152
|
+
NSString *list = defaults[@"list"];
|
153
|
+
NSString *sound = defaults[@"sound"];
|
154
|
+
|
155
|
+
// If there is no message and data is piped to the application, use that
|
156
|
+
// instead.
|
157
|
+
if (message == nil && !isatty(STDIN_FILENO)) {
|
158
|
+
NSData *inputData = [NSData dataWithData:[[NSFileHandle fileHandleWithStandardInput] readDataToEndOfFile]];
|
159
|
+
message = [[NSString alloc] initWithData:inputData encoding:NSUTF8StringEncoding];
|
160
|
+
}
|
161
|
+
|
162
|
+
if (message == nil && remove == nil && list == nil) {
|
163
|
+
[self printHelpBanner];
|
164
|
+
exit(1);
|
165
|
+
}
|
166
|
+
|
167
|
+
if (list) {
|
168
|
+
[self listNotificationWithGroupID:list];
|
169
|
+
exit(0);
|
170
|
+
}
|
171
|
+
|
172
|
+
// Install the fake bundle ID hook so we can fake the sender. This also
|
173
|
+
// needs to be done to be able to remove a message.
|
174
|
+
if (defaults[@"sender"]) {
|
175
|
+
@autoreleasepool {
|
176
|
+
if (InstallFakeBundleIdentifierHook()) {
|
177
|
+
_fakeBundleIdentifier = defaults[@"sender"];
|
178
|
+
}
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
if (remove) {
|
183
|
+
[self removeNotificationWithGroupID:remove];
|
184
|
+
if (message == nil) exit(0);
|
185
|
+
}
|
186
|
+
|
187
|
+
if (message) {
|
188
|
+
NSMutableDictionary *options = [NSMutableDictionary dictionary];
|
189
|
+
if (defaults[@"activate"]) options[@"bundleID"] = defaults[@"activate"];
|
190
|
+
if (defaults[@"group"]) options[@"groupID"] = defaults[@"group"];
|
191
|
+
if (defaults[@"execute"]) options[@"command"] = defaults[@"execute"];
|
192
|
+
if (defaults[@"open"]) options[@"open"] = [defaults[@"open"] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
|
193
|
+
|
194
|
+
[self deliverNotificationWithTitle:defaults[@"title"] ?: @"Terminal"
|
195
|
+
subtitle:subtitle
|
196
|
+
message:message
|
197
|
+
options:options
|
198
|
+
sound:sound];
|
199
|
+
}
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
- (void)deliverNotificationWithTitle:(NSString *)title
|
204
|
+
subtitle:(NSString *)subtitle
|
205
|
+
message:(NSString *)message
|
206
|
+
options:(NSDictionary *)options
|
207
|
+
sound:(NSString *)sound;
|
208
|
+
{
|
209
|
+
// First remove earlier notification with the same group ID.
|
210
|
+
if (options[@"groupID"]) [self removeNotificationWithGroupID:options[@"groupID"]];
|
211
|
+
|
212
|
+
NSUserNotification *userNotification = [NSUserNotification new];
|
213
|
+
userNotification.title = title;
|
214
|
+
userNotification.subtitle = subtitle;
|
215
|
+
userNotification.informativeText = message;
|
216
|
+
userNotification.userInfo = options;
|
217
|
+
|
218
|
+
if (sound != nil) {
|
219
|
+
userNotification.soundName = [sound isEqualToString: @"default"] ? NSUserNotificationDefaultSoundName : sound ;
|
220
|
+
}
|
221
|
+
|
222
|
+
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
|
223
|
+
center.delegate = self;
|
224
|
+
[center scheduleNotification:userNotification];
|
225
|
+
}
|
226
|
+
|
227
|
+
- (void)removeNotificationWithGroupID:(NSString *)groupID;
|
228
|
+
{
|
229
|
+
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
|
230
|
+
for (NSUserNotification *userNotification in center.deliveredNotifications) {
|
231
|
+
if ([@"ALL" isEqualToString:groupID] || [userNotification.userInfo[@"groupID"] isEqualToString:groupID]) {
|
232
|
+
NSString *deliveredAt = [userNotification.actualDeliveryDate description];
|
233
|
+
printf("* Removing previously sent notification, which was sent on: %s\n", [deliveredAt UTF8String]);
|
234
|
+
[center removeDeliveredNotification:userNotification];
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
- (void)listNotificationWithGroupID:(NSString *)listGroupID;
|
240
|
+
{
|
241
|
+
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
|
242
|
+
|
243
|
+
NSMutableArray *lines = [NSMutableArray array];
|
244
|
+
for (NSUserNotification *userNotification in center.deliveredNotifications) {
|
245
|
+
NSString *deliveredgroupID = userNotification.userInfo[@"groupID"];
|
246
|
+
NSString *title = userNotification.title;
|
247
|
+
NSString *subtitle = userNotification.subtitle;
|
248
|
+
NSString *message = userNotification.informativeText;
|
249
|
+
NSString *deliveredAt = [userNotification.actualDeliveryDate description];
|
250
|
+
if ([@"ALL" isEqualToString:listGroupID] || [deliveredgroupID isEqualToString:listGroupID]) {
|
251
|
+
[lines addObject:[NSString stringWithFormat:@"%@\t%@\t%@\t%@\t%@", deliveredgroupID, title, subtitle, message, deliveredAt]];
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
if (lines.count > 0) {
|
256
|
+
printf("GroupID\tTitle\tSubtitle\tMessage\tDelivered At\n");
|
257
|
+
for (NSString *line in lines) {
|
258
|
+
printf("%s\n", [line UTF8String]);
|
259
|
+
}
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
|
264
|
+
- (void)userActivatedNotification:(NSUserNotification *)userNotification;
|
265
|
+
{
|
266
|
+
[[NSUserNotificationCenter defaultUserNotificationCenter] removeDeliveredNotification:userNotification];
|
267
|
+
|
268
|
+
NSString *groupID = userNotification.userInfo[@"groupID"];
|
269
|
+
NSString *bundleID = userNotification.userInfo[@"bundleID"];
|
270
|
+
NSString *command = userNotification.userInfo[@"command"];
|
271
|
+
NSString *open = userNotification.userInfo[@"open"];
|
272
|
+
|
273
|
+
NSLog(@"User activated notification:");
|
274
|
+
NSLog(@" group ID: %@", groupID);
|
275
|
+
NSLog(@" title: %@", userNotification.title);
|
276
|
+
NSLog(@" subtitle: %@", userNotification.subtitle);
|
277
|
+
NSLog(@" message: %@", userNotification.informativeText);
|
278
|
+
NSLog(@"bundle ID: %@", bundleID);
|
279
|
+
NSLog(@" command: %@", command);
|
280
|
+
NSLog(@" open: %@", open);
|
281
|
+
|
282
|
+
BOOL success = YES;
|
283
|
+
if (bundleID) success &= [self activateAppWithBundleID:bundleID];
|
284
|
+
if (command) success &= [self executeShellCommand:command];
|
285
|
+
if (open) success &= [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:open]];
|
286
|
+
|
287
|
+
exit(success ? 0 : 1);
|
288
|
+
}
|
289
|
+
|
290
|
+
- (BOOL)activateAppWithBundleID:(NSString *)bundleID;
|
291
|
+
{
|
292
|
+
id app = [SBApplication applicationWithBundleIdentifier:bundleID];
|
293
|
+
if (app) {
|
294
|
+
[app activate];
|
295
|
+
return YES;
|
296
|
+
|
297
|
+
} else {
|
298
|
+
NSLog(@"Unable to find an application with the specified bundle indentifier.");
|
299
|
+
return NO;
|
300
|
+
}
|
301
|
+
}
|
302
|
+
|
303
|
+
- (BOOL)executeShellCommand:(NSString *)command;
|
304
|
+
{
|
305
|
+
NSPipe *pipe = [NSPipe pipe];
|
306
|
+
NSFileHandle *fileHandle = [pipe fileHandleForReading];
|
307
|
+
|
308
|
+
NSTask *task = [NSTask new];
|
309
|
+
task.launchPath = @"/bin/sh";
|
310
|
+
task.arguments = @[@"-c", command];
|
311
|
+
task.standardOutput = pipe;
|
312
|
+
task.standardError = pipe;
|
313
|
+
[task launch];
|
314
|
+
|
315
|
+
NSData *data = nil;
|
316
|
+
NSMutableData *accumulatedData = [NSMutableData data];
|
317
|
+
while ((data = [fileHandle availableData]) && [data length]) {
|
318
|
+
[accumulatedData appendData:data];
|
319
|
+
}
|
320
|
+
|
321
|
+
[task waitUntilExit];
|
322
|
+
NSLog(@"command output:\n%@", [[NSString alloc] initWithData:accumulatedData encoding:NSUTF8StringEncoding]);
|
323
|
+
return [task terminationStatus] == 0;
|
324
|
+
}
|
325
|
+
|
326
|
+
- (BOOL)userNotificationCenter:(NSUserNotificationCenter *)center
|
327
|
+
shouldPresentNotification:(NSUserNotification *)userNotification;
|
328
|
+
{
|
329
|
+
return YES;
|
330
|
+
}
|
331
|
+
|
332
|
+
// Once the notification is delivered we can exit.
|
333
|
+
- (void)userNotificationCenter:(NSUserNotificationCenter *)center
|
334
|
+
didDeliverNotification:(NSUserNotification *)userNotification;
|
335
|
+
{
|
336
|
+
exit(0);
|
337
|
+
}
|
338
|
+
|
339
|
+
@end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>en</string>
|
7
|
+
<key>CFBundleExecutable</key>
|
8
|
+
<string>${EXECUTABLE_NAME}</string>
|
9
|
+
<key>CFBundleIconFile</key>
|
10
|
+
<string>Terminal</string>
|
11
|
+
<key>CFBundleIdentifier</key>
|
12
|
+
<string>nl.superalloy.oss.${PRODUCT_NAME:rfc1034identifier}</string>
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
14
|
+
<string>6.0</string>
|
15
|
+
<key>CFBundleName</key>
|
16
|
+
<string>${PRODUCT_NAME}</string>
|
17
|
+
<key>CFBundlePackageType</key>
|
18
|
+
<string>APPL</string>
|
19
|
+
<key>CFBundleShortVersionString</key>
|
20
|
+
<string>1.5.2</string>
|
21
|
+
<key>CFBundleSignature</key>
|
22
|
+
<string>????</string>
|
23
|
+
<key>CFBundleVersion</key>
|
24
|
+
<string>10</string>
|
25
|
+
<key>LSMinimumSystemVersion</key>
|
26
|
+
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
27
|
+
<key>LSUIElement</key>
|
28
|
+
<true/>
|
29
|
+
<key>NSHumanReadableCopyright</key>
|
30
|
+
<string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
|
31
|
+
<key>NSMainNibFile</key>
|
32
|
+
<string>MainMenu</string>
|
33
|
+
<key>NSPrincipalClass</key>
|
34
|
+
<string>NSApplication</string>
|
35
|
+
</dict>
|
36
|
+
</plist>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
|
2
|
+
{\colortbl;\red255\green255\blue255;}
|
3
|
+
\paperw9840\paperh8400
|
4
|
+
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
|
5
|
+
|
6
|
+
\f0\b\fs24 \cf0 Engineering:
|
7
|
+
\b0 \
|
8
|
+
Some people\
|
9
|
+
\
|
10
|
+
|
11
|
+
\b Human Interface Design:
|
12
|
+
\b0 \
|
13
|
+
Some other people\
|
14
|
+
\
|
15
|
+
|
16
|
+
\b Testing:
|
17
|
+
\b0 \
|
18
|
+
Hopefully not nobody\
|
19
|
+
\
|
20
|
+
|
21
|
+
\b Documentation:
|
22
|
+
\b0 \
|
23
|
+
Whoever\
|
24
|
+
\
|
25
|
+
|
26
|
+
\b With special thanks to:
|
27
|
+
\b0 \
|
28
|
+
Mom\
|
29
|
+
}
|
@@ -0,0 +1,3191 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
|
3
|
+
<data>
|
4
|
+
<int key="IBDocument.SystemTarget">1080</int>
|
5
|
+
<string key="IBDocument.SystemVersion">12A269</string>
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">2549</string>
|
7
|
+
<string key="IBDocument.AppKitVersion">1187</string>
|
8
|
+
<string key="IBDocument.HIToolboxVersion">624.00</string>
|
9
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
10
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
11
|
+
<string key="NS.object.0">2549</string>
|
12
|
+
</object>
|
13
|
+
<array key="IBDocument.IntegratedClassDependencies">
|
14
|
+
<string>NSCustomObject</string>
|
15
|
+
<string>NSMenu</string>
|
16
|
+
<string>NSMenuItem</string>
|
17
|
+
</array>
|
18
|
+
<array key="IBDocument.PluginDependencies">
|
19
|
+
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
|
20
|
+
</array>
|
21
|
+
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
22
|
+
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
23
|
+
<integer value="1" key="NS.object.0"/>
|
24
|
+
</object>
|
25
|
+
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1048">
|
26
|
+
<object class="NSCustomObject" id="1021">
|
27
|
+
<string key="NSClassName">NSApplication</string>
|
28
|
+
</object>
|
29
|
+
<object class="NSCustomObject" id="1014">
|
30
|
+
<string key="NSClassName">FirstResponder</string>
|
31
|
+
</object>
|
32
|
+
<object class="NSCustomObject" id="1050">
|
33
|
+
<string key="NSClassName">NSApplication</string>
|
34
|
+
</object>
|
35
|
+
<object class="NSMenu" id="649796088">
|
36
|
+
<string key="NSTitle">AMainMenu</string>
|
37
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
38
|
+
<object class="NSMenuItem" id="694149608">
|
39
|
+
<reference key="NSMenu" ref="649796088"/>
|
40
|
+
<string key="NSTitle">Terminal Notifier</string>
|
41
|
+
<string key="NSKeyEquiv"/>
|
42
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
43
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
44
|
+
<object class="NSCustomResource" key="NSOnImage" id="35465992">
|
45
|
+
<string key="NSClassName">NSImage</string>
|
46
|
+
<string key="NSResourceName">NSMenuCheckmark</string>
|
47
|
+
</object>
|
48
|
+
<object class="NSCustomResource" key="NSMixedImage" id="502551668">
|
49
|
+
<string key="NSClassName">NSImage</string>
|
50
|
+
<string key="NSResourceName">NSMenuMixedState</string>
|
51
|
+
</object>
|
52
|
+
<string key="NSAction">submenuAction:</string>
|
53
|
+
<object class="NSMenu" key="NSSubmenu" id="110575045">
|
54
|
+
<string key="NSTitle">Terminal Notifier</string>
|
55
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
56
|
+
<object class="NSMenuItem" id="238522557">
|
57
|
+
<reference key="NSMenu" ref="110575045"/>
|
58
|
+
<string key="NSTitle">About Terminal Notifier</string>
|
59
|
+
<string key="NSKeyEquiv"/>
|
60
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
61
|
+
<reference key="NSOnImage" ref="35465992"/>
|
62
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
63
|
+
</object>
|
64
|
+
<object class="NSMenuItem" id="304266470">
|
65
|
+
<reference key="NSMenu" ref="110575045"/>
|
66
|
+
<bool key="NSIsDisabled">YES</bool>
|
67
|
+
<bool key="NSIsSeparator">YES</bool>
|
68
|
+
<string key="NSTitle"/>
|
69
|
+
<string key="NSKeyEquiv"/>
|
70
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
71
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
72
|
+
<reference key="NSOnImage" ref="35465992"/>
|
73
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
74
|
+
</object>
|
75
|
+
<object class="NSMenuItem" id="609285721">
|
76
|
+
<reference key="NSMenu" ref="110575045"/>
|
77
|
+
<string key="NSTitle">Preferences…</string>
|
78
|
+
<string key="NSKeyEquiv">,</string>
|
79
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
80
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
81
|
+
<reference key="NSOnImage" ref="35465992"/>
|
82
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
83
|
+
</object>
|
84
|
+
<object class="NSMenuItem" id="481834944">
|
85
|
+
<reference key="NSMenu" ref="110575045"/>
|
86
|
+
<bool key="NSIsDisabled">YES</bool>
|
87
|
+
<bool key="NSIsSeparator">YES</bool>
|
88
|
+
<string key="NSTitle"/>
|
89
|
+
<string key="NSKeyEquiv"/>
|
90
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
91
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
92
|
+
<reference key="NSOnImage" ref="35465992"/>
|
93
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
94
|
+
</object>
|
95
|
+
<object class="NSMenuItem" id="1046388886">
|
96
|
+
<reference key="NSMenu" ref="110575045"/>
|
97
|
+
<string key="NSTitle">Services</string>
|
98
|
+
<string key="NSKeyEquiv"/>
|
99
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
100
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
101
|
+
<reference key="NSOnImage" ref="35465992"/>
|
102
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
103
|
+
<string key="NSAction">submenuAction:</string>
|
104
|
+
<object class="NSMenu" key="NSSubmenu" id="752062318">
|
105
|
+
<string key="NSTitle">Services</string>
|
106
|
+
<array class="NSMutableArray" key="NSMenuItems"/>
|
107
|
+
<string key="NSName">_NSServicesMenu</string>
|
108
|
+
</object>
|
109
|
+
</object>
|
110
|
+
<object class="NSMenuItem" id="646227648">
|
111
|
+
<reference key="NSMenu" ref="110575045"/>
|
112
|
+
<bool key="NSIsDisabled">YES</bool>
|
113
|
+
<bool key="NSIsSeparator">YES</bool>
|
114
|
+
<string key="NSTitle"/>
|
115
|
+
<string key="NSKeyEquiv"/>
|
116
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
117
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
118
|
+
<reference key="NSOnImage" ref="35465992"/>
|
119
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
120
|
+
</object>
|
121
|
+
<object class="NSMenuItem" id="755159360">
|
122
|
+
<reference key="NSMenu" ref="110575045"/>
|
123
|
+
<string key="NSTitle">Hide Terminal Notifier</string>
|
124
|
+
<string key="NSKeyEquiv">h</string>
|
125
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
126
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
127
|
+
<reference key="NSOnImage" ref="35465992"/>
|
128
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
129
|
+
</object>
|
130
|
+
<object class="NSMenuItem" id="342932134">
|
131
|
+
<reference key="NSMenu" ref="110575045"/>
|
132
|
+
<string key="NSTitle">Hide Others</string>
|
133
|
+
<string key="NSKeyEquiv">h</string>
|
134
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
135
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
136
|
+
<reference key="NSOnImage" ref="35465992"/>
|
137
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
138
|
+
</object>
|
139
|
+
<object class="NSMenuItem" id="908899353">
|
140
|
+
<reference key="NSMenu" ref="110575045"/>
|
141
|
+
<string key="NSTitle">Show All</string>
|
142
|
+
<string key="NSKeyEquiv"/>
|
143
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
144
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
145
|
+
<reference key="NSOnImage" ref="35465992"/>
|
146
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
147
|
+
</object>
|
148
|
+
<object class="NSMenuItem" id="1056857174">
|
149
|
+
<reference key="NSMenu" ref="110575045"/>
|
150
|
+
<bool key="NSIsDisabled">YES</bool>
|
151
|
+
<bool key="NSIsSeparator">YES</bool>
|
152
|
+
<string key="NSTitle"/>
|
153
|
+
<string key="NSKeyEquiv"/>
|
154
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
155
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
156
|
+
<reference key="NSOnImage" ref="35465992"/>
|
157
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
158
|
+
</object>
|
159
|
+
<object class="NSMenuItem" id="632727374">
|
160
|
+
<reference key="NSMenu" ref="110575045"/>
|
161
|
+
<string key="NSTitle">Quit Terminal Notifier</string>
|
162
|
+
<string key="NSKeyEquiv">q</string>
|
163
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
164
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
165
|
+
<reference key="NSOnImage" ref="35465992"/>
|
166
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
167
|
+
</object>
|
168
|
+
</array>
|
169
|
+
<string key="NSName">_NSAppleMenu</string>
|
170
|
+
</object>
|
171
|
+
</object>
|
172
|
+
<object class="NSMenuItem" id="379814623">
|
173
|
+
<reference key="NSMenu" ref="649796088"/>
|
174
|
+
<string key="NSTitle">File</string>
|
175
|
+
<string key="NSKeyEquiv"/>
|
176
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
177
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
178
|
+
<reference key="NSOnImage" ref="35465992"/>
|
179
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
180
|
+
<string key="NSAction">submenuAction:</string>
|
181
|
+
<object class="NSMenu" key="NSSubmenu" id="720053764">
|
182
|
+
<string key="NSTitle">File</string>
|
183
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
184
|
+
<object class="NSMenuItem" id="705341025">
|
185
|
+
<reference key="NSMenu" ref="720053764"/>
|
186
|
+
<string key="NSTitle">New</string>
|
187
|
+
<string key="NSKeyEquiv">n</string>
|
188
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
189
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
190
|
+
<reference key="NSOnImage" ref="35465992"/>
|
191
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
192
|
+
</object>
|
193
|
+
<object class="NSMenuItem" id="722745758">
|
194
|
+
<reference key="NSMenu" ref="720053764"/>
|
195
|
+
<string key="NSTitle">Open…</string>
|
196
|
+
<string key="NSKeyEquiv">o</string>
|
197
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
198
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
199
|
+
<reference key="NSOnImage" ref="35465992"/>
|
200
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
201
|
+
</object>
|
202
|
+
<object class="NSMenuItem" id="1025936716">
|
203
|
+
<reference key="NSMenu" ref="720053764"/>
|
204
|
+
<string key="NSTitle">Open Recent</string>
|
205
|
+
<string key="NSKeyEquiv"/>
|
206
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
207
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
208
|
+
<reference key="NSOnImage" ref="35465992"/>
|
209
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
210
|
+
<string key="NSAction">submenuAction:</string>
|
211
|
+
<object class="NSMenu" key="NSSubmenu" id="1065607017">
|
212
|
+
<string key="NSTitle">Open Recent</string>
|
213
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
214
|
+
<object class="NSMenuItem" id="759406840">
|
215
|
+
<reference key="NSMenu" ref="1065607017"/>
|
216
|
+
<string key="NSTitle">Clear Menu</string>
|
217
|
+
<string key="NSKeyEquiv"/>
|
218
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
219
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
220
|
+
<reference key="NSOnImage" ref="35465992"/>
|
221
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
222
|
+
</object>
|
223
|
+
</array>
|
224
|
+
<string key="NSName">_NSRecentDocumentsMenu</string>
|
225
|
+
</object>
|
226
|
+
</object>
|
227
|
+
<object class="NSMenuItem" id="425164168">
|
228
|
+
<reference key="NSMenu" ref="720053764"/>
|
229
|
+
<bool key="NSIsDisabled">YES</bool>
|
230
|
+
<bool key="NSIsSeparator">YES</bool>
|
231
|
+
<string key="NSTitle"/>
|
232
|
+
<string key="NSKeyEquiv"/>
|
233
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
234
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
235
|
+
<reference key="NSOnImage" ref="35465992"/>
|
236
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
237
|
+
</object>
|
238
|
+
<object class="NSMenuItem" id="776162233">
|
239
|
+
<reference key="NSMenu" ref="720053764"/>
|
240
|
+
<string key="NSTitle">Close</string>
|
241
|
+
<string key="NSKeyEquiv">w</string>
|
242
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
243
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
244
|
+
<reference key="NSOnImage" ref="35465992"/>
|
245
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
246
|
+
</object>
|
247
|
+
<object class="NSMenuItem" id="1023925487">
|
248
|
+
<reference key="NSMenu" ref="720053764"/>
|
249
|
+
<string key="NSTitle">Save…</string>
|
250
|
+
<string key="NSKeyEquiv">s</string>
|
251
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
252
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
253
|
+
<reference key="NSOnImage" ref="35465992"/>
|
254
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
255
|
+
</object>
|
256
|
+
<object class="NSMenuItem" id="579971712">
|
257
|
+
<reference key="NSMenu" ref="720053764"/>
|
258
|
+
<string key="NSTitle">Revert to Saved</string>
|
259
|
+
<string key="NSKeyEquiv"/>
|
260
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
261
|
+
<reference key="NSOnImage" ref="35465992"/>
|
262
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
263
|
+
</object>
|
264
|
+
<object class="NSMenuItem" id="1010469920">
|
265
|
+
<reference key="NSMenu" ref="720053764"/>
|
266
|
+
<bool key="NSIsDisabled">YES</bool>
|
267
|
+
<bool key="NSIsSeparator">YES</bool>
|
268
|
+
<string key="NSTitle"/>
|
269
|
+
<string key="NSKeyEquiv"/>
|
270
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
271
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
272
|
+
<reference key="NSOnImage" ref="35465992"/>
|
273
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
274
|
+
</object>
|
275
|
+
<object class="NSMenuItem" id="294629803">
|
276
|
+
<reference key="NSMenu" ref="720053764"/>
|
277
|
+
<string key="NSTitle">Page Setup...</string>
|
278
|
+
<string key="NSKeyEquiv">P</string>
|
279
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
280
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
281
|
+
<reference key="NSOnImage" ref="35465992"/>
|
282
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
283
|
+
<string key="NSToolTip"/>
|
284
|
+
</object>
|
285
|
+
<object class="NSMenuItem" id="49223823">
|
286
|
+
<reference key="NSMenu" ref="720053764"/>
|
287
|
+
<string key="NSTitle">Print…</string>
|
288
|
+
<string key="NSKeyEquiv">p</string>
|
289
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
290
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
291
|
+
<reference key="NSOnImage" ref="35465992"/>
|
292
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
293
|
+
</object>
|
294
|
+
</array>
|
295
|
+
</object>
|
296
|
+
</object>
|
297
|
+
<object class="NSMenuItem" id="952259628">
|
298
|
+
<reference key="NSMenu" ref="649796088"/>
|
299
|
+
<string key="NSTitle">Edit</string>
|
300
|
+
<string key="NSKeyEquiv"/>
|
301
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
302
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
303
|
+
<reference key="NSOnImage" ref="35465992"/>
|
304
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
305
|
+
<string key="NSAction">submenuAction:</string>
|
306
|
+
<object class="NSMenu" key="NSSubmenu" id="789758025">
|
307
|
+
<string key="NSTitle">Edit</string>
|
308
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
309
|
+
<object class="NSMenuItem" id="1058277027">
|
310
|
+
<reference key="NSMenu" ref="789758025"/>
|
311
|
+
<string key="NSTitle">Undo</string>
|
312
|
+
<string key="NSKeyEquiv">z</string>
|
313
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
314
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
315
|
+
<reference key="NSOnImage" ref="35465992"/>
|
316
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
317
|
+
</object>
|
318
|
+
<object class="NSMenuItem" id="790794224">
|
319
|
+
<reference key="NSMenu" ref="789758025"/>
|
320
|
+
<string key="NSTitle">Redo</string>
|
321
|
+
<string key="NSKeyEquiv">Z</string>
|
322
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
323
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
324
|
+
<reference key="NSOnImage" ref="35465992"/>
|
325
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
326
|
+
</object>
|
327
|
+
<object class="NSMenuItem" id="1040322652">
|
328
|
+
<reference key="NSMenu" ref="789758025"/>
|
329
|
+
<bool key="NSIsDisabled">YES</bool>
|
330
|
+
<bool key="NSIsSeparator">YES</bool>
|
331
|
+
<string key="NSTitle"/>
|
332
|
+
<string key="NSKeyEquiv"/>
|
333
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
334
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
335
|
+
<reference key="NSOnImage" ref="35465992"/>
|
336
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
337
|
+
</object>
|
338
|
+
<object class="NSMenuItem" id="296257095">
|
339
|
+
<reference key="NSMenu" ref="789758025"/>
|
340
|
+
<string key="NSTitle">Cut</string>
|
341
|
+
<string key="NSKeyEquiv">x</string>
|
342
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
343
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
344
|
+
<reference key="NSOnImage" ref="35465992"/>
|
345
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
346
|
+
</object>
|
347
|
+
<object class="NSMenuItem" id="860595796">
|
348
|
+
<reference key="NSMenu" ref="789758025"/>
|
349
|
+
<string key="NSTitle">Copy</string>
|
350
|
+
<string key="NSKeyEquiv">c</string>
|
351
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
352
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
353
|
+
<reference key="NSOnImage" ref="35465992"/>
|
354
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
355
|
+
</object>
|
356
|
+
<object class="NSMenuItem" id="29853731">
|
357
|
+
<reference key="NSMenu" ref="789758025"/>
|
358
|
+
<string key="NSTitle">Paste</string>
|
359
|
+
<string key="NSKeyEquiv">v</string>
|
360
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
361
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
362
|
+
<reference key="NSOnImage" ref="35465992"/>
|
363
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
364
|
+
</object>
|
365
|
+
<object class="NSMenuItem" id="82994268">
|
366
|
+
<reference key="NSMenu" ref="789758025"/>
|
367
|
+
<string key="NSTitle">Paste and Match Style</string>
|
368
|
+
<string key="NSKeyEquiv">V</string>
|
369
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
370
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
371
|
+
<reference key="NSOnImage" ref="35465992"/>
|
372
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
373
|
+
</object>
|
374
|
+
<object class="NSMenuItem" id="437104165">
|
375
|
+
<reference key="NSMenu" ref="789758025"/>
|
376
|
+
<string key="NSTitle">Delete</string>
|
377
|
+
<string key="NSKeyEquiv"/>
|
378
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
379
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
380
|
+
<reference key="NSOnImage" ref="35465992"/>
|
381
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
382
|
+
</object>
|
383
|
+
<object class="NSMenuItem" id="583158037">
|
384
|
+
<reference key="NSMenu" ref="789758025"/>
|
385
|
+
<string key="NSTitle">Select All</string>
|
386
|
+
<string key="NSKeyEquiv">a</string>
|
387
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
388
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
389
|
+
<reference key="NSOnImage" ref="35465992"/>
|
390
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
391
|
+
</object>
|
392
|
+
<object class="NSMenuItem" id="212016141">
|
393
|
+
<reference key="NSMenu" ref="789758025"/>
|
394
|
+
<bool key="NSIsDisabled">YES</bool>
|
395
|
+
<bool key="NSIsSeparator">YES</bool>
|
396
|
+
<string key="NSTitle"/>
|
397
|
+
<string key="NSKeyEquiv"/>
|
398
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
399
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
400
|
+
<reference key="NSOnImage" ref="35465992"/>
|
401
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
402
|
+
</object>
|
403
|
+
<object class="NSMenuItem" id="892235320">
|
404
|
+
<reference key="NSMenu" ref="789758025"/>
|
405
|
+
<string key="NSTitle">Find</string>
|
406
|
+
<string key="NSKeyEquiv"/>
|
407
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
408
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
409
|
+
<reference key="NSOnImage" ref="35465992"/>
|
410
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
411
|
+
<string key="NSAction">submenuAction:</string>
|
412
|
+
<object class="NSMenu" key="NSSubmenu" id="963351320">
|
413
|
+
<string key="NSTitle">Find</string>
|
414
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
415
|
+
<object class="NSMenuItem" id="447796847">
|
416
|
+
<reference key="NSMenu" ref="963351320"/>
|
417
|
+
<string key="NSTitle">Find…</string>
|
418
|
+
<string key="NSKeyEquiv">f</string>
|
419
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
420
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
421
|
+
<reference key="NSOnImage" ref="35465992"/>
|
422
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
423
|
+
<int key="NSTag">1</int>
|
424
|
+
</object>
|
425
|
+
<object class="NSMenuItem" id="738670835">
|
426
|
+
<reference key="NSMenu" ref="963351320"/>
|
427
|
+
<string key="NSTitle">Find and Replace…</string>
|
428
|
+
<string key="NSKeyEquiv">f</string>
|
429
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
430
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
431
|
+
<reference key="NSOnImage" ref="35465992"/>
|
432
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
433
|
+
<int key="NSTag">12</int>
|
434
|
+
</object>
|
435
|
+
<object class="NSMenuItem" id="326711663">
|
436
|
+
<reference key="NSMenu" ref="963351320"/>
|
437
|
+
<string key="NSTitle">Find Next</string>
|
438
|
+
<string key="NSKeyEquiv">g</string>
|
439
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
440
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
441
|
+
<reference key="NSOnImage" ref="35465992"/>
|
442
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
443
|
+
<int key="NSTag">2</int>
|
444
|
+
</object>
|
445
|
+
<object class="NSMenuItem" id="270902937">
|
446
|
+
<reference key="NSMenu" ref="963351320"/>
|
447
|
+
<string key="NSTitle">Find Previous</string>
|
448
|
+
<string key="NSKeyEquiv">G</string>
|
449
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
450
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
451
|
+
<reference key="NSOnImage" ref="35465992"/>
|
452
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
453
|
+
<int key="NSTag">3</int>
|
454
|
+
</object>
|
455
|
+
<object class="NSMenuItem" id="159080638">
|
456
|
+
<reference key="NSMenu" ref="963351320"/>
|
457
|
+
<string key="NSTitle">Use Selection for Find</string>
|
458
|
+
<string key="NSKeyEquiv">e</string>
|
459
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
460
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
461
|
+
<reference key="NSOnImage" ref="35465992"/>
|
462
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
463
|
+
<int key="NSTag">7</int>
|
464
|
+
</object>
|
465
|
+
<object class="NSMenuItem" id="88285865">
|
466
|
+
<reference key="NSMenu" ref="963351320"/>
|
467
|
+
<string key="NSTitle">Jump to Selection</string>
|
468
|
+
<string key="NSKeyEquiv">j</string>
|
469
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
470
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
471
|
+
<reference key="NSOnImage" ref="35465992"/>
|
472
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
473
|
+
</object>
|
474
|
+
</array>
|
475
|
+
</object>
|
476
|
+
</object>
|
477
|
+
<object class="NSMenuItem" id="972420730">
|
478
|
+
<reference key="NSMenu" ref="789758025"/>
|
479
|
+
<string key="NSTitle">Spelling and Grammar</string>
|
480
|
+
<string key="NSKeyEquiv"/>
|
481
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
482
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
483
|
+
<reference key="NSOnImage" ref="35465992"/>
|
484
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
485
|
+
<string key="NSAction">submenuAction:</string>
|
486
|
+
<object class="NSMenu" key="NSSubmenu" id="769623530">
|
487
|
+
<string key="NSTitle">Spelling and Grammar</string>
|
488
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
489
|
+
<object class="NSMenuItem" id="679648819">
|
490
|
+
<reference key="NSMenu" ref="769623530"/>
|
491
|
+
<string key="NSTitle">Show Spelling and Grammar</string>
|
492
|
+
<string key="NSKeyEquiv">:</string>
|
493
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
494
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
495
|
+
<reference key="NSOnImage" ref="35465992"/>
|
496
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
497
|
+
</object>
|
498
|
+
<object class="NSMenuItem" id="96193923">
|
499
|
+
<reference key="NSMenu" ref="769623530"/>
|
500
|
+
<string key="NSTitle">Check Document Now</string>
|
501
|
+
<string key="NSKeyEquiv">;</string>
|
502
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
503
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
504
|
+
<reference key="NSOnImage" ref="35465992"/>
|
505
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
506
|
+
</object>
|
507
|
+
<object class="NSMenuItem" id="859480356">
|
508
|
+
<reference key="NSMenu" ref="769623530"/>
|
509
|
+
<bool key="NSIsDisabled">YES</bool>
|
510
|
+
<bool key="NSIsSeparator">YES</bool>
|
511
|
+
<string key="NSTitle"/>
|
512
|
+
<string key="NSKeyEquiv"/>
|
513
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
514
|
+
<reference key="NSOnImage" ref="35465992"/>
|
515
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
516
|
+
</object>
|
517
|
+
<object class="NSMenuItem" id="948374510">
|
518
|
+
<reference key="NSMenu" ref="769623530"/>
|
519
|
+
<string key="NSTitle">Check Spelling While Typing</string>
|
520
|
+
<string key="NSKeyEquiv"/>
|
521
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
522
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
523
|
+
<reference key="NSOnImage" ref="35465992"/>
|
524
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
525
|
+
</object>
|
526
|
+
<object class="NSMenuItem" id="967646866">
|
527
|
+
<reference key="NSMenu" ref="769623530"/>
|
528
|
+
<string key="NSTitle">Check Grammar With Spelling</string>
|
529
|
+
<string key="NSKeyEquiv"/>
|
530
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
531
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
532
|
+
<reference key="NSOnImage" ref="35465992"/>
|
533
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
534
|
+
</object>
|
535
|
+
<object class="NSMenuItem" id="795346622">
|
536
|
+
<reference key="NSMenu" ref="769623530"/>
|
537
|
+
<string key="NSTitle">Correct Spelling Automatically</string>
|
538
|
+
<string key="NSKeyEquiv"/>
|
539
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
540
|
+
<reference key="NSOnImage" ref="35465992"/>
|
541
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
542
|
+
</object>
|
543
|
+
</array>
|
544
|
+
</object>
|
545
|
+
</object>
|
546
|
+
<object class="NSMenuItem" id="507821607">
|
547
|
+
<reference key="NSMenu" ref="789758025"/>
|
548
|
+
<string key="NSTitle">Substitutions</string>
|
549
|
+
<string key="NSKeyEquiv"/>
|
550
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
551
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
552
|
+
<reference key="NSOnImage" ref="35465992"/>
|
553
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
554
|
+
<string key="NSAction">submenuAction:</string>
|
555
|
+
<object class="NSMenu" key="NSSubmenu" id="698887838">
|
556
|
+
<string key="NSTitle">Substitutions</string>
|
557
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
558
|
+
<object class="NSMenuItem" id="65139061">
|
559
|
+
<reference key="NSMenu" ref="698887838"/>
|
560
|
+
<string key="NSTitle">Show Substitutions</string>
|
561
|
+
<string key="NSKeyEquiv"/>
|
562
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
563
|
+
<reference key="NSOnImage" ref="35465992"/>
|
564
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
565
|
+
</object>
|
566
|
+
<object class="NSMenuItem" id="19036812">
|
567
|
+
<reference key="NSMenu" ref="698887838"/>
|
568
|
+
<bool key="NSIsDisabled">YES</bool>
|
569
|
+
<bool key="NSIsSeparator">YES</bool>
|
570
|
+
<string key="NSTitle"/>
|
571
|
+
<string key="NSKeyEquiv"/>
|
572
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
573
|
+
<reference key="NSOnImage" ref="35465992"/>
|
574
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
575
|
+
</object>
|
576
|
+
<object class="NSMenuItem" id="605118523">
|
577
|
+
<reference key="NSMenu" ref="698887838"/>
|
578
|
+
<string key="NSTitle">Smart Copy/Paste</string>
|
579
|
+
<string key="NSKeyEquiv">f</string>
|
580
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
581
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
582
|
+
<reference key="NSOnImage" ref="35465992"/>
|
583
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
584
|
+
<int key="NSTag">1</int>
|
585
|
+
</object>
|
586
|
+
<object class="NSMenuItem" id="197661976">
|
587
|
+
<reference key="NSMenu" ref="698887838"/>
|
588
|
+
<string key="NSTitle">Smart Quotes</string>
|
589
|
+
<string key="NSKeyEquiv">g</string>
|
590
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
591
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
592
|
+
<reference key="NSOnImage" ref="35465992"/>
|
593
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
594
|
+
<int key="NSTag">2</int>
|
595
|
+
</object>
|
596
|
+
<object class="NSMenuItem" id="672708820">
|
597
|
+
<reference key="NSMenu" ref="698887838"/>
|
598
|
+
<string key="NSTitle">Smart Dashes</string>
|
599
|
+
<string key="NSKeyEquiv"/>
|
600
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
601
|
+
<reference key="NSOnImage" ref="35465992"/>
|
602
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
603
|
+
</object>
|
604
|
+
<object class="NSMenuItem" id="708854459">
|
605
|
+
<reference key="NSMenu" ref="698887838"/>
|
606
|
+
<string key="NSTitle">Smart Links</string>
|
607
|
+
<string key="NSKeyEquiv">G</string>
|
608
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
609
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
610
|
+
<reference key="NSOnImage" ref="35465992"/>
|
611
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
612
|
+
<int key="NSTag">3</int>
|
613
|
+
</object>
|
614
|
+
<object class="NSMenuItem" id="537092702">
|
615
|
+
<reference key="NSMenu" ref="698887838"/>
|
616
|
+
<string key="NSTitle">Text Replacement</string>
|
617
|
+
<string key="NSKeyEquiv"/>
|
618
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
619
|
+
<reference key="NSOnImage" ref="35465992"/>
|
620
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
621
|
+
</object>
|
622
|
+
</array>
|
623
|
+
</object>
|
624
|
+
</object>
|
625
|
+
<object class="NSMenuItem" id="288088188">
|
626
|
+
<reference key="NSMenu" ref="789758025"/>
|
627
|
+
<string key="NSTitle">Transformations</string>
|
628
|
+
<string key="NSKeyEquiv"/>
|
629
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
630
|
+
<reference key="NSOnImage" ref="35465992"/>
|
631
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
632
|
+
<string key="NSAction">submenuAction:</string>
|
633
|
+
<object class="NSMenu" key="NSSubmenu" id="579392910">
|
634
|
+
<string key="NSTitle">Transformations</string>
|
635
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
636
|
+
<object class="NSMenuItem" id="1060694897">
|
637
|
+
<reference key="NSMenu" ref="579392910"/>
|
638
|
+
<string key="NSTitle">Make Upper Case</string>
|
639
|
+
<string key="NSKeyEquiv"/>
|
640
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
641
|
+
<reference key="NSOnImage" ref="35465992"/>
|
642
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
643
|
+
</object>
|
644
|
+
<object class="NSMenuItem" id="879586729">
|
645
|
+
<reference key="NSMenu" ref="579392910"/>
|
646
|
+
<string key="NSTitle">Make Lower Case</string>
|
647
|
+
<string key="NSKeyEquiv"/>
|
648
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
649
|
+
<reference key="NSOnImage" ref="35465992"/>
|
650
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
651
|
+
</object>
|
652
|
+
<object class="NSMenuItem" id="56570060">
|
653
|
+
<reference key="NSMenu" ref="579392910"/>
|
654
|
+
<string key="NSTitle">Capitalize</string>
|
655
|
+
<string key="NSKeyEquiv"/>
|
656
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
657
|
+
<reference key="NSOnImage" ref="35465992"/>
|
658
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
659
|
+
</object>
|
660
|
+
</array>
|
661
|
+
</object>
|
662
|
+
</object>
|
663
|
+
<object class="NSMenuItem" id="676164635">
|
664
|
+
<reference key="NSMenu" ref="789758025"/>
|
665
|
+
<string key="NSTitle">Speech</string>
|
666
|
+
<string key="NSKeyEquiv"/>
|
667
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
668
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
669
|
+
<reference key="NSOnImage" ref="35465992"/>
|
670
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
671
|
+
<string key="NSAction">submenuAction:</string>
|
672
|
+
<object class="NSMenu" key="NSSubmenu" id="785027613">
|
673
|
+
<string key="NSTitle">Speech</string>
|
674
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
675
|
+
<object class="NSMenuItem" id="731782645">
|
676
|
+
<reference key="NSMenu" ref="785027613"/>
|
677
|
+
<string key="NSTitle">Start Speaking</string>
|
678
|
+
<string key="NSKeyEquiv"/>
|
679
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
680
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
681
|
+
<reference key="NSOnImage" ref="35465992"/>
|
682
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
683
|
+
</object>
|
684
|
+
<object class="NSMenuItem" id="680220178">
|
685
|
+
<reference key="NSMenu" ref="785027613"/>
|
686
|
+
<string key="NSTitle">Stop Speaking</string>
|
687
|
+
<string key="NSKeyEquiv"/>
|
688
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
689
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
690
|
+
<reference key="NSOnImage" ref="35465992"/>
|
691
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
692
|
+
</object>
|
693
|
+
</array>
|
694
|
+
</object>
|
695
|
+
</object>
|
696
|
+
</array>
|
697
|
+
</object>
|
698
|
+
</object>
|
699
|
+
<object class="NSMenuItem" id="302598603">
|
700
|
+
<reference key="NSMenu" ref="649796088"/>
|
701
|
+
<string key="NSTitle">Format</string>
|
702
|
+
<string key="NSKeyEquiv"/>
|
703
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
704
|
+
<reference key="NSOnImage" ref="35465992"/>
|
705
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
706
|
+
<string key="NSAction">submenuAction:</string>
|
707
|
+
<object class="NSMenu" key="NSSubmenu" id="941447902">
|
708
|
+
<string key="NSTitle">Format</string>
|
709
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
710
|
+
<object class="NSMenuItem" id="792887677">
|
711
|
+
<reference key="NSMenu" ref="941447902"/>
|
712
|
+
<string key="NSTitle">Font</string>
|
713
|
+
<string key="NSKeyEquiv"/>
|
714
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
715
|
+
<reference key="NSOnImage" ref="35465992"/>
|
716
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
717
|
+
<string key="NSAction">submenuAction:</string>
|
718
|
+
<object class="NSMenu" key="NSSubmenu" id="786677654">
|
719
|
+
<string key="NSTitle">Font</string>
|
720
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
721
|
+
<object class="NSMenuItem" id="159677712">
|
722
|
+
<reference key="NSMenu" ref="786677654"/>
|
723
|
+
<string key="NSTitle">Show Fonts</string>
|
724
|
+
<string key="NSKeyEquiv">t</string>
|
725
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
726
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
727
|
+
<reference key="NSOnImage" ref="35465992"/>
|
728
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
729
|
+
</object>
|
730
|
+
<object class="NSMenuItem" id="305399458">
|
731
|
+
<reference key="NSMenu" ref="786677654"/>
|
732
|
+
<string key="NSTitle">Bold</string>
|
733
|
+
<string key="NSKeyEquiv">b</string>
|
734
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
735
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
736
|
+
<reference key="NSOnImage" ref="35465992"/>
|
737
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
738
|
+
<int key="NSTag">2</int>
|
739
|
+
</object>
|
740
|
+
<object class="NSMenuItem" id="814362025">
|
741
|
+
<reference key="NSMenu" ref="786677654"/>
|
742
|
+
<string key="NSTitle">Italic</string>
|
743
|
+
<string key="NSKeyEquiv">i</string>
|
744
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
745
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
746
|
+
<reference key="NSOnImage" ref="35465992"/>
|
747
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
748
|
+
<int key="NSTag">1</int>
|
749
|
+
</object>
|
750
|
+
<object class="NSMenuItem" id="330926929">
|
751
|
+
<reference key="NSMenu" ref="786677654"/>
|
752
|
+
<string key="NSTitle">Underline</string>
|
753
|
+
<string key="NSKeyEquiv">u</string>
|
754
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
755
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
756
|
+
<reference key="NSOnImage" ref="35465992"/>
|
757
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
758
|
+
</object>
|
759
|
+
<object class="NSMenuItem" id="533507878">
|
760
|
+
<reference key="NSMenu" ref="786677654"/>
|
761
|
+
<bool key="NSIsDisabled">YES</bool>
|
762
|
+
<bool key="NSIsSeparator">YES</bool>
|
763
|
+
<string key="NSTitle"/>
|
764
|
+
<string key="NSKeyEquiv"/>
|
765
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
766
|
+
<reference key="NSOnImage" ref="35465992"/>
|
767
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
768
|
+
</object>
|
769
|
+
<object class="NSMenuItem" id="158063935">
|
770
|
+
<reference key="NSMenu" ref="786677654"/>
|
771
|
+
<string key="NSTitle">Bigger</string>
|
772
|
+
<string key="NSKeyEquiv">+</string>
|
773
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
774
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
775
|
+
<reference key="NSOnImage" ref="35465992"/>
|
776
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
777
|
+
<int key="NSTag">3</int>
|
778
|
+
</object>
|
779
|
+
<object class="NSMenuItem" id="885547335">
|
780
|
+
<reference key="NSMenu" ref="786677654"/>
|
781
|
+
<string key="NSTitle">Smaller</string>
|
782
|
+
<string key="NSKeyEquiv">-</string>
|
783
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
784
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
785
|
+
<reference key="NSOnImage" ref="35465992"/>
|
786
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
787
|
+
<int key="NSTag">4</int>
|
788
|
+
</object>
|
789
|
+
<object class="NSMenuItem" id="901062459">
|
790
|
+
<reference key="NSMenu" ref="786677654"/>
|
791
|
+
<bool key="NSIsDisabled">YES</bool>
|
792
|
+
<bool key="NSIsSeparator">YES</bool>
|
793
|
+
<string key="NSTitle"/>
|
794
|
+
<string key="NSKeyEquiv"/>
|
795
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
796
|
+
<reference key="NSOnImage" ref="35465992"/>
|
797
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
798
|
+
</object>
|
799
|
+
<object class="NSMenuItem" id="767671776">
|
800
|
+
<reference key="NSMenu" ref="786677654"/>
|
801
|
+
<string key="NSTitle">Kern</string>
|
802
|
+
<string key="NSKeyEquiv"/>
|
803
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
804
|
+
<reference key="NSOnImage" ref="35465992"/>
|
805
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
806
|
+
<string key="NSAction">submenuAction:</string>
|
807
|
+
<object class="NSMenu" key="NSSubmenu" id="175441468">
|
808
|
+
<string key="NSTitle">Kern</string>
|
809
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
810
|
+
<object class="NSMenuItem" id="252969304">
|
811
|
+
<reference key="NSMenu" ref="175441468"/>
|
812
|
+
<string key="NSTitle">Use Default</string>
|
813
|
+
<string key="NSKeyEquiv"/>
|
814
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
815
|
+
<reference key="NSOnImage" ref="35465992"/>
|
816
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
817
|
+
</object>
|
818
|
+
<object class="NSMenuItem" id="766922938">
|
819
|
+
<reference key="NSMenu" ref="175441468"/>
|
820
|
+
<string key="NSTitle">Use None</string>
|
821
|
+
<string key="NSKeyEquiv"/>
|
822
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
823
|
+
<reference key="NSOnImage" ref="35465992"/>
|
824
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
825
|
+
</object>
|
826
|
+
<object class="NSMenuItem" id="677519740">
|
827
|
+
<reference key="NSMenu" ref="175441468"/>
|
828
|
+
<string key="NSTitle">Tighten</string>
|
829
|
+
<string key="NSKeyEquiv"/>
|
830
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
831
|
+
<reference key="NSOnImage" ref="35465992"/>
|
832
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
833
|
+
</object>
|
834
|
+
<object class="NSMenuItem" id="238351151">
|
835
|
+
<reference key="NSMenu" ref="175441468"/>
|
836
|
+
<string key="NSTitle">Loosen</string>
|
837
|
+
<string key="NSKeyEquiv"/>
|
838
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
839
|
+
<reference key="NSOnImage" ref="35465992"/>
|
840
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
841
|
+
</object>
|
842
|
+
</array>
|
843
|
+
</object>
|
844
|
+
</object>
|
845
|
+
<object class="NSMenuItem" id="691570813">
|
846
|
+
<reference key="NSMenu" ref="786677654"/>
|
847
|
+
<string key="NSTitle">Ligatures</string>
|
848
|
+
<string key="NSKeyEquiv"/>
|
849
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
850
|
+
<reference key="NSOnImage" ref="35465992"/>
|
851
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
852
|
+
<string key="NSAction">submenuAction:</string>
|
853
|
+
<object class="NSMenu" key="NSSubmenu" id="1058217995">
|
854
|
+
<string key="NSTitle">Ligatures</string>
|
855
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
856
|
+
<object class="NSMenuItem" id="706297211">
|
857
|
+
<reference key="NSMenu" ref="1058217995"/>
|
858
|
+
<string key="NSTitle">Use Default</string>
|
859
|
+
<string key="NSKeyEquiv"/>
|
860
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
861
|
+
<reference key="NSOnImage" ref="35465992"/>
|
862
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
863
|
+
</object>
|
864
|
+
<object class="NSMenuItem" id="568384683">
|
865
|
+
<reference key="NSMenu" ref="1058217995"/>
|
866
|
+
<string key="NSTitle">Use None</string>
|
867
|
+
<string key="NSKeyEquiv"/>
|
868
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
869
|
+
<reference key="NSOnImage" ref="35465992"/>
|
870
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
871
|
+
</object>
|
872
|
+
<object class="NSMenuItem" id="663508465">
|
873
|
+
<reference key="NSMenu" ref="1058217995"/>
|
874
|
+
<string key="NSTitle">Use All</string>
|
875
|
+
<string key="NSKeyEquiv"/>
|
876
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
877
|
+
<reference key="NSOnImage" ref="35465992"/>
|
878
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
879
|
+
</object>
|
880
|
+
</array>
|
881
|
+
</object>
|
882
|
+
</object>
|
883
|
+
<object class="NSMenuItem" id="769124883">
|
884
|
+
<reference key="NSMenu" ref="786677654"/>
|
885
|
+
<string key="NSTitle">Baseline</string>
|
886
|
+
<string key="NSKeyEquiv"/>
|
887
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
888
|
+
<reference key="NSOnImage" ref="35465992"/>
|
889
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
890
|
+
<string key="NSAction">submenuAction:</string>
|
891
|
+
<object class="NSMenu" key="NSSubmenu" id="18263474">
|
892
|
+
<string key="NSTitle">Baseline</string>
|
893
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
894
|
+
<object class="NSMenuItem" id="257962622">
|
895
|
+
<reference key="NSMenu" ref="18263474"/>
|
896
|
+
<string key="NSTitle">Use Default</string>
|
897
|
+
<string key="NSKeyEquiv"/>
|
898
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
899
|
+
<reference key="NSOnImage" ref="35465992"/>
|
900
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
901
|
+
</object>
|
902
|
+
<object class="NSMenuItem" id="644725453">
|
903
|
+
<reference key="NSMenu" ref="18263474"/>
|
904
|
+
<string key="NSTitle">Superscript</string>
|
905
|
+
<string key="NSKeyEquiv"/>
|
906
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
907
|
+
<reference key="NSOnImage" ref="35465992"/>
|
908
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
909
|
+
</object>
|
910
|
+
<object class="NSMenuItem" id="1037576581">
|
911
|
+
<reference key="NSMenu" ref="18263474"/>
|
912
|
+
<string key="NSTitle">Subscript</string>
|
913
|
+
<string key="NSKeyEquiv"/>
|
914
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
915
|
+
<reference key="NSOnImage" ref="35465992"/>
|
916
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
917
|
+
</object>
|
918
|
+
<object class="NSMenuItem" id="941806246">
|
919
|
+
<reference key="NSMenu" ref="18263474"/>
|
920
|
+
<string key="NSTitle">Raise</string>
|
921
|
+
<string key="NSKeyEquiv"/>
|
922
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
923
|
+
<reference key="NSOnImage" ref="35465992"/>
|
924
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
925
|
+
</object>
|
926
|
+
<object class="NSMenuItem" id="1045724900">
|
927
|
+
<reference key="NSMenu" ref="18263474"/>
|
928
|
+
<string key="NSTitle">Lower</string>
|
929
|
+
<string key="NSKeyEquiv"/>
|
930
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
931
|
+
<reference key="NSOnImage" ref="35465992"/>
|
932
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
933
|
+
</object>
|
934
|
+
</array>
|
935
|
+
</object>
|
936
|
+
</object>
|
937
|
+
<object class="NSMenuItem" id="739652853">
|
938
|
+
<reference key="NSMenu" ref="786677654"/>
|
939
|
+
<bool key="NSIsDisabled">YES</bool>
|
940
|
+
<bool key="NSIsSeparator">YES</bool>
|
941
|
+
<string key="NSTitle"/>
|
942
|
+
<string key="NSKeyEquiv"/>
|
943
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
944
|
+
<reference key="NSOnImage" ref="35465992"/>
|
945
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
946
|
+
</object>
|
947
|
+
<object class="NSMenuItem" id="1012600125">
|
948
|
+
<reference key="NSMenu" ref="786677654"/>
|
949
|
+
<string key="NSTitle">Show Colors</string>
|
950
|
+
<string key="NSKeyEquiv">C</string>
|
951
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
952
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
953
|
+
<reference key="NSOnImage" ref="35465992"/>
|
954
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
955
|
+
</object>
|
956
|
+
<object class="NSMenuItem" id="214559597">
|
957
|
+
<reference key="NSMenu" ref="786677654"/>
|
958
|
+
<bool key="NSIsDisabled">YES</bool>
|
959
|
+
<bool key="NSIsSeparator">YES</bool>
|
960
|
+
<string key="NSTitle"/>
|
961
|
+
<string key="NSKeyEquiv"/>
|
962
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
963
|
+
<reference key="NSOnImage" ref="35465992"/>
|
964
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
965
|
+
</object>
|
966
|
+
<object class="NSMenuItem" id="596732606">
|
967
|
+
<reference key="NSMenu" ref="786677654"/>
|
968
|
+
<string key="NSTitle">Copy Style</string>
|
969
|
+
<string key="NSKeyEquiv">c</string>
|
970
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
971
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
972
|
+
<reference key="NSOnImage" ref="35465992"/>
|
973
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
974
|
+
</object>
|
975
|
+
<object class="NSMenuItem" id="393423671">
|
976
|
+
<reference key="NSMenu" ref="786677654"/>
|
977
|
+
<string key="NSTitle">Paste Style</string>
|
978
|
+
<string key="NSKeyEquiv">v</string>
|
979
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
980
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
981
|
+
<reference key="NSOnImage" ref="35465992"/>
|
982
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
983
|
+
</object>
|
984
|
+
</array>
|
985
|
+
<string key="NSName">_NSFontMenu</string>
|
986
|
+
</object>
|
987
|
+
</object>
|
988
|
+
<object class="NSMenuItem" id="215659978">
|
989
|
+
<reference key="NSMenu" ref="941447902"/>
|
990
|
+
<string key="NSTitle">Text</string>
|
991
|
+
<string key="NSKeyEquiv"/>
|
992
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
993
|
+
<reference key="NSOnImage" ref="35465992"/>
|
994
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
995
|
+
<string key="NSAction">submenuAction:</string>
|
996
|
+
<object class="NSMenu" key="NSSubmenu" id="446991534">
|
997
|
+
<string key="NSTitle">Text</string>
|
998
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
999
|
+
<object class="NSMenuItem" id="875092757">
|
1000
|
+
<reference key="NSMenu" ref="446991534"/>
|
1001
|
+
<string key="NSTitle">Align Left</string>
|
1002
|
+
<string key="NSKeyEquiv">{</string>
|
1003
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1004
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1005
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1006
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1007
|
+
</object>
|
1008
|
+
<object class="NSMenuItem" id="630155264">
|
1009
|
+
<reference key="NSMenu" ref="446991534"/>
|
1010
|
+
<string key="NSTitle">Center</string>
|
1011
|
+
<string key="NSKeyEquiv">|</string>
|
1012
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1013
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1014
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1015
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1016
|
+
</object>
|
1017
|
+
<object class="NSMenuItem" id="945678886">
|
1018
|
+
<reference key="NSMenu" ref="446991534"/>
|
1019
|
+
<string key="NSTitle">Justify</string>
|
1020
|
+
<string key="NSKeyEquiv"/>
|
1021
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1022
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1023
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1024
|
+
</object>
|
1025
|
+
<object class="NSMenuItem" id="512868991">
|
1026
|
+
<reference key="NSMenu" ref="446991534"/>
|
1027
|
+
<string key="NSTitle">Align Right</string>
|
1028
|
+
<string key="NSKeyEquiv">}</string>
|
1029
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1030
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1031
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1032
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1033
|
+
</object>
|
1034
|
+
<object class="NSMenuItem" id="163117631">
|
1035
|
+
<reference key="NSMenu" ref="446991534"/>
|
1036
|
+
<bool key="NSIsDisabled">YES</bool>
|
1037
|
+
<bool key="NSIsSeparator">YES</bool>
|
1038
|
+
<string key="NSTitle"/>
|
1039
|
+
<string key="NSKeyEquiv"/>
|
1040
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1041
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1042
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1043
|
+
</object>
|
1044
|
+
<object class="NSMenuItem" id="31516759">
|
1045
|
+
<reference key="NSMenu" ref="446991534"/>
|
1046
|
+
<string key="NSTitle">Writing Direction</string>
|
1047
|
+
<string key="NSKeyEquiv"/>
|
1048
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1049
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1050
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1051
|
+
<string key="NSAction">submenuAction:</string>
|
1052
|
+
<object class="NSMenu" key="NSSubmenu" id="956096989">
|
1053
|
+
<string key="NSTitle">Writing Direction</string>
|
1054
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
1055
|
+
<object class="NSMenuItem" id="257099033">
|
1056
|
+
<reference key="NSMenu" ref="956096989"/>
|
1057
|
+
<bool key="NSIsDisabled">YES</bool>
|
1058
|
+
<string key="NSTitle">Paragraph</string>
|
1059
|
+
<string key="NSKeyEquiv"/>
|
1060
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1061
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1062
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1063
|
+
</object>
|
1064
|
+
<object class="NSMenuItem" id="551969625">
|
1065
|
+
<reference key="NSMenu" ref="956096989"/>
|
1066
|
+
<string type="base64-UTF8" key="NSTitle">CURlZmF1bHQ</string>
|
1067
|
+
<string key="NSKeyEquiv"/>
|
1068
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1069
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1070
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1071
|
+
</object>
|
1072
|
+
<object class="NSMenuItem" id="249532473">
|
1073
|
+
<reference key="NSMenu" ref="956096989"/>
|
1074
|
+
<string type="base64-UTF8" key="NSTitle">CUxlZnQgdG8gUmlnaHQ</string>
|
1075
|
+
<string key="NSKeyEquiv"/>
|
1076
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1077
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1078
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1079
|
+
</object>
|
1080
|
+
<object class="NSMenuItem" id="607364498">
|
1081
|
+
<reference key="NSMenu" ref="956096989"/>
|
1082
|
+
<string type="base64-UTF8" key="NSTitle">CVJpZ2h0IHRvIExlZnQ</string>
|
1083
|
+
<string key="NSKeyEquiv"/>
|
1084
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1085
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1086
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1087
|
+
</object>
|
1088
|
+
<object class="NSMenuItem" id="508151438">
|
1089
|
+
<reference key="NSMenu" ref="956096989"/>
|
1090
|
+
<bool key="NSIsDisabled">YES</bool>
|
1091
|
+
<bool key="NSIsSeparator">YES</bool>
|
1092
|
+
<string key="NSTitle"/>
|
1093
|
+
<string key="NSKeyEquiv"/>
|
1094
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1095
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1096
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1097
|
+
</object>
|
1098
|
+
<object class="NSMenuItem" id="981751889">
|
1099
|
+
<reference key="NSMenu" ref="956096989"/>
|
1100
|
+
<bool key="NSIsDisabled">YES</bool>
|
1101
|
+
<string key="NSTitle">Selection</string>
|
1102
|
+
<string key="NSKeyEquiv"/>
|
1103
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1104
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1105
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1106
|
+
</object>
|
1107
|
+
<object class="NSMenuItem" id="380031999">
|
1108
|
+
<reference key="NSMenu" ref="956096989"/>
|
1109
|
+
<string type="base64-UTF8" key="NSTitle">CURlZmF1bHQ</string>
|
1110
|
+
<string key="NSKeyEquiv"/>
|
1111
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1112
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1113
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1114
|
+
</object>
|
1115
|
+
<object class="NSMenuItem" id="825984362">
|
1116
|
+
<reference key="NSMenu" ref="956096989"/>
|
1117
|
+
<string type="base64-UTF8" key="NSTitle">CUxlZnQgdG8gUmlnaHQ</string>
|
1118
|
+
<string key="NSKeyEquiv"/>
|
1119
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1120
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1121
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1122
|
+
</object>
|
1123
|
+
<object class="NSMenuItem" id="560145579">
|
1124
|
+
<reference key="NSMenu" ref="956096989"/>
|
1125
|
+
<string type="base64-UTF8" key="NSTitle">CVJpZ2h0IHRvIExlZnQ</string>
|
1126
|
+
<string key="NSKeyEquiv"/>
|
1127
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1128
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1129
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1130
|
+
</object>
|
1131
|
+
</array>
|
1132
|
+
</object>
|
1133
|
+
</object>
|
1134
|
+
<object class="NSMenuItem" id="908105787">
|
1135
|
+
<reference key="NSMenu" ref="446991534"/>
|
1136
|
+
<bool key="NSIsDisabled">YES</bool>
|
1137
|
+
<bool key="NSIsSeparator">YES</bool>
|
1138
|
+
<string key="NSTitle"/>
|
1139
|
+
<string key="NSKeyEquiv"/>
|
1140
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1141
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1142
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1143
|
+
</object>
|
1144
|
+
<object class="NSMenuItem" id="644046920">
|
1145
|
+
<reference key="NSMenu" ref="446991534"/>
|
1146
|
+
<string key="NSTitle">Show Ruler</string>
|
1147
|
+
<string key="NSKeyEquiv"/>
|
1148
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1149
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1150
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1151
|
+
</object>
|
1152
|
+
<object class="NSMenuItem" id="231811626">
|
1153
|
+
<reference key="NSMenu" ref="446991534"/>
|
1154
|
+
<string key="NSTitle">Copy Ruler</string>
|
1155
|
+
<string key="NSKeyEquiv">c</string>
|
1156
|
+
<int key="NSKeyEquivModMask">1310720</int>
|
1157
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1158
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1159
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1160
|
+
</object>
|
1161
|
+
<object class="NSMenuItem" id="883618387">
|
1162
|
+
<reference key="NSMenu" ref="446991534"/>
|
1163
|
+
<string key="NSTitle">Paste Ruler</string>
|
1164
|
+
<string key="NSKeyEquiv">v</string>
|
1165
|
+
<int key="NSKeyEquivModMask">1310720</int>
|
1166
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1167
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1168
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1169
|
+
</object>
|
1170
|
+
</array>
|
1171
|
+
</object>
|
1172
|
+
</object>
|
1173
|
+
</array>
|
1174
|
+
</object>
|
1175
|
+
</object>
|
1176
|
+
<object class="NSMenuItem" id="586577488">
|
1177
|
+
<reference key="NSMenu" ref="649796088"/>
|
1178
|
+
<string key="NSTitle">View</string>
|
1179
|
+
<string key="NSKeyEquiv"/>
|
1180
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1181
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1182
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1183
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1184
|
+
<string key="NSAction">submenuAction:</string>
|
1185
|
+
<object class="NSMenu" key="NSSubmenu" id="466310130">
|
1186
|
+
<string key="NSTitle">View</string>
|
1187
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
1188
|
+
<object class="NSMenuItem" id="102151532">
|
1189
|
+
<reference key="NSMenu" ref="466310130"/>
|
1190
|
+
<string key="NSTitle">Show Toolbar</string>
|
1191
|
+
<string key="NSKeyEquiv">t</string>
|
1192
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
1193
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1194
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1195
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1196
|
+
</object>
|
1197
|
+
<object class="NSMenuItem" id="237841660">
|
1198
|
+
<reference key="NSMenu" ref="466310130"/>
|
1199
|
+
<string key="NSTitle">Customize Toolbar…</string>
|
1200
|
+
<string key="NSKeyEquiv"/>
|
1201
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1202
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1203
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1204
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1205
|
+
</object>
|
1206
|
+
</array>
|
1207
|
+
</object>
|
1208
|
+
</object>
|
1209
|
+
<object class="NSMenuItem" id="713487014">
|
1210
|
+
<reference key="NSMenu" ref="649796088"/>
|
1211
|
+
<string key="NSTitle">Window</string>
|
1212
|
+
<string key="NSKeyEquiv"/>
|
1213
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1214
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1215
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1216
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1217
|
+
<string key="NSAction">submenuAction:</string>
|
1218
|
+
<object class="NSMenu" key="NSSubmenu" id="835318025">
|
1219
|
+
<string key="NSTitle">Window</string>
|
1220
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
1221
|
+
<object class="NSMenuItem" id="1011231497">
|
1222
|
+
<reference key="NSMenu" ref="835318025"/>
|
1223
|
+
<string key="NSTitle">Minimize</string>
|
1224
|
+
<string key="NSKeyEquiv">m</string>
|
1225
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1226
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1227
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1228
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1229
|
+
</object>
|
1230
|
+
<object class="NSMenuItem" id="575023229">
|
1231
|
+
<reference key="NSMenu" ref="835318025"/>
|
1232
|
+
<string key="NSTitle">Zoom</string>
|
1233
|
+
<string key="NSKeyEquiv"/>
|
1234
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1235
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1236
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1237
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1238
|
+
</object>
|
1239
|
+
<object class="NSMenuItem" id="299356726">
|
1240
|
+
<reference key="NSMenu" ref="835318025"/>
|
1241
|
+
<bool key="NSIsDisabled">YES</bool>
|
1242
|
+
<bool key="NSIsSeparator">YES</bool>
|
1243
|
+
<string key="NSTitle"/>
|
1244
|
+
<string key="NSKeyEquiv"/>
|
1245
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1246
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1247
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1248
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1249
|
+
</object>
|
1250
|
+
<object class="NSMenuItem" id="625202149">
|
1251
|
+
<reference key="NSMenu" ref="835318025"/>
|
1252
|
+
<string key="NSTitle">Bring All to Front</string>
|
1253
|
+
<string key="NSKeyEquiv"/>
|
1254
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1255
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1256
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1257
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1258
|
+
</object>
|
1259
|
+
</array>
|
1260
|
+
<string key="NSName">_NSWindowsMenu</string>
|
1261
|
+
</object>
|
1262
|
+
</object>
|
1263
|
+
<object class="NSMenuItem" id="448692316">
|
1264
|
+
<reference key="NSMenu" ref="649796088"/>
|
1265
|
+
<string key="NSTitle">Help</string>
|
1266
|
+
<string key="NSKeyEquiv"/>
|
1267
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1268
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1269
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1270
|
+
<string key="NSAction">submenuAction:</string>
|
1271
|
+
<object class="NSMenu" key="NSSubmenu" id="992780483">
|
1272
|
+
<string key="NSTitle">Help</string>
|
1273
|
+
<array class="NSMutableArray" key="NSMenuItems">
|
1274
|
+
<object class="NSMenuItem" id="105068016">
|
1275
|
+
<reference key="NSMenu" ref="992780483"/>
|
1276
|
+
<string key="NSTitle">Terminal Notifier Help</string>
|
1277
|
+
<string key="NSKeyEquiv">?</string>
|
1278
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
1279
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
1280
|
+
<reference key="NSOnImage" ref="35465992"/>
|
1281
|
+
<reference key="NSMixedImage" ref="502551668"/>
|
1282
|
+
</object>
|
1283
|
+
</array>
|
1284
|
+
<string key="NSName">_NSHelpMenu</string>
|
1285
|
+
</object>
|
1286
|
+
</object>
|
1287
|
+
</array>
|
1288
|
+
<string key="NSName">_NSMainMenu</string>
|
1289
|
+
</object>
|
1290
|
+
<object class="NSCustomObject" id="976324537">
|
1291
|
+
<string key="NSClassName">AppDelegate</string>
|
1292
|
+
</object>
|
1293
|
+
<object class="NSCustomObject" id="755631768">
|
1294
|
+
<string key="NSClassName">NSFontManager</string>
|
1295
|
+
</object>
|
1296
|
+
</array>
|
1297
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
1298
|
+
<array class="NSMutableArray" key="connectionRecords">
|
1299
|
+
<object class="IBConnectionRecord">
|
1300
|
+
<object class="IBActionConnection" key="connection">
|
1301
|
+
<string key="label">terminate:</string>
|
1302
|
+
<reference key="source" ref="1050"/>
|
1303
|
+
<reference key="destination" ref="632727374"/>
|
1304
|
+
</object>
|
1305
|
+
<int key="connectionID">449</int>
|
1306
|
+
</object>
|
1307
|
+
<object class="IBConnectionRecord">
|
1308
|
+
<object class="IBActionConnection" key="connection">
|
1309
|
+
<string key="label">orderFrontStandardAboutPanel:</string>
|
1310
|
+
<reference key="source" ref="1021"/>
|
1311
|
+
<reference key="destination" ref="238522557"/>
|
1312
|
+
</object>
|
1313
|
+
<int key="connectionID">142</int>
|
1314
|
+
</object>
|
1315
|
+
<object class="IBConnectionRecord">
|
1316
|
+
<object class="IBOutletConnection" key="connection">
|
1317
|
+
<string key="label">delegate</string>
|
1318
|
+
<reference key="source" ref="1021"/>
|
1319
|
+
<reference key="destination" ref="976324537"/>
|
1320
|
+
</object>
|
1321
|
+
<int key="connectionID">495</int>
|
1322
|
+
</object>
|
1323
|
+
<object class="IBConnectionRecord">
|
1324
|
+
<object class="IBActionConnection" key="connection">
|
1325
|
+
<string key="label">performMiniaturize:</string>
|
1326
|
+
<reference key="source" ref="1014"/>
|
1327
|
+
<reference key="destination" ref="1011231497"/>
|
1328
|
+
</object>
|
1329
|
+
<int key="connectionID">37</int>
|
1330
|
+
</object>
|
1331
|
+
<object class="IBConnectionRecord">
|
1332
|
+
<object class="IBActionConnection" key="connection">
|
1333
|
+
<string key="label">arrangeInFront:</string>
|
1334
|
+
<reference key="source" ref="1014"/>
|
1335
|
+
<reference key="destination" ref="625202149"/>
|
1336
|
+
</object>
|
1337
|
+
<int key="connectionID">39</int>
|
1338
|
+
</object>
|
1339
|
+
<object class="IBConnectionRecord">
|
1340
|
+
<object class="IBActionConnection" key="connection">
|
1341
|
+
<string key="label">print:</string>
|
1342
|
+
<reference key="source" ref="1014"/>
|
1343
|
+
<reference key="destination" ref="49223823"/>
|
1344
|
+
</object>
|
1345
|
+
<int key="connectionID">86</int>
|
1346
|
+
</object>
|
1347
|
+
<object class="IBConnectionRecord">
|
1348
|
+
<object class="IBActionConnection" key="connection">
|
1349
|
+
<string key="label">runPageLayout:</string>
|
1350
|
+
<reference key="source" ref="1014"/>
|
1351
|
+
<reference key="destination" ref="294629803"/>
|
1352
|
+
</object>
|
1353
|
+
<int key="connectionID">87</int>
|
1354
|
+
</object>
|
1355
|
+
<object class="IBConnectionRecord">
|
1356
|
+
<object class="IBActionConnection" key="connection">
|
1357
|
+
<string key="label">clearRecentDocuments:</string>
|
1358
|
+
<reference key="source" ref="1014"/>
|
1359
|
+
<reference key="destination" ref="759406840"/>
|
1360
|
+
</object>
|
1361
|
+
<int key="connectionID">127</int>
|
1362
|
+
</object>
|
1363
|
+
<object class="IBConnectionRecord">
|
1364
|
+
<object class="IBActionConnection" key="connection">
|
1365
|
+
<string key="label">performClose:</string>
|
1366
|
+
<reference key="source" ref="1014"/>
|
1367
|
+
<reference key="destination" ref="776162233"/>
|
1368
|
+
</object>
|
1369
|
+
<int key="connectionID">193</int>
|
1370
|
+
</object>
|
1371
|
+
<object class="IBConnectionRecord">
|
1372
|
+
<object class="IBActionConnection" key="connection">
|
1373
|
+
<string key="label">toggleContinuousSpellChecking:</string>
|
1374
|
+
<reference key="source" ref="1014"/>
|
1375
|
+
<reference key="destination" ref="948374510"/>
|
1376
|
+
</object>
|
1377
|
+
<int key="connectionID">222</int>
|
1378
|
+
</object>
|
1379
|
+
<object class="IBConnectionRecord">
|
1380
|
+
<object class="IBActionConnection" key="connection">
|
1381
|
+
<string key="label">undo:</string>
|
1382
|
+
<reference key="source" ref="1014"/>
|
1383
|
+
<reference key="destination" ref="1058277027"/>
|
1384
|
+
</object>
|
1385
|
+
<int key="connectionID">223</int>
|
1386
|
+
</object>
|
1387
|
+
<object class="IBConnectionRecord">
|
1388
|
+
<object class="IBActionConnection" key="connection">
|
1389
|
+
<string key="label">copy:</string>
|
1390
|
+
<reference key="source" ref="1014"/>
|
1391
|
+
<reference key="destination" ref="860595796"/>
|
1392
|
+
</object>
|
1393
|
+
<int key="connectionID">224</int>
|
1394
|
+
</object>
|
1395
|
+
<object class="IBConnectionRecord">
|
1396
|
+
<object class="IBActionConnection" key="connection">
|
1397
|
+
<string key="label">checkSpelling:</string>
|
1398
|
+
<reference key="source" ref="1014"/>
|
1399
|
+
<reference key="destination" ref="96193923"/>
|
1400
|
+
</object>
|
1401
|
+
<int key="connectionID">225</int>
|
1402
|
+
</object>
|
1403
|
+
<object class="IBConnectionRecord">
|
1404
|
+
<object class="IBActionConnection" key="connection">
|
1405
|
+
<string key="label">paste:</string>
|
1406
|
+
<reference key="source" ref="1014"/>
|
1407
|
+
<reference key="destination" ref="29853731"/>
|
1408
|
+
</object>
|
1409
|
+
<int key="connectionID">226</int>
|
1410
|
+
</object>
|
1411
|
+
<object class="IBConnectionRecord">
|
1412
|
+
<object class="IBActionConnection" key="connection">
|
1413
|
+
<string key="label">stopSpeaking:</string>
|
1414
|
+
<reference key="source" ref="1014"/>
|
1415
|
+
<reference key="destination" ref="680220178"/>
|
1416
|
+
</object>
|
1417
|
+
<int key="connectionID">227</int>
|
1418
|
+
</object>
|
1419
|
+
<object class="IBConnectionRecord">
|
1420
|
+
<object class="IBActionConnection" key="connection">
|
1421
|
+
<string key="label">cut:</string>
|
1422
|
+
<reference key="source" ref="1014"/>
|
1423
|
+
<reference key="destination" ref="296257095"/>
|
1424
|
+
</object>
|
1425
|
+
<int key="connectionID">228</int>
|
1426
|
+
</object>
|
1427
|
+
<object class="IBConnectionRecord">
|
1428
|
+
<object class="IBActionConnection" key="connection">
|
1429
|
+
<string key="label">showGuessPanel:</string>
|
1430
|
+
<reference key="source" ref="1014"/>
|
1431
|
+
<reference key="destination" ref="679648819"/>
|
1432
|
+
</object>
|
1433
|
+
<int key="connectionID">230</int>
|
1434
|
+
</object>
|
1435
|
+
<object class="IBConnectionRecord">
|
1436
|
+
<object class="IBActionConnection" key="connection">
|
1437
|
+
<string key="label">redo:</string>
|
1438
|
+
<reference key="source" ref="1014"/>
|
1439
|
+
<reference key="destination" ref="790794224"/>
|
1440
|
+
</object>
|
1441
|
+
<int key="connectionID">231</int>
|
1442
|
+
</object>
|
1443
|
+
<object class="IBConnectionRecord">
|
1444
|
+
<object class="IBActionConnection" key="connection">
|
1445
|
+
<string key="label">selectAll:</string>
|
1446
|
+
<reference key="source" ref="1014"/>
|
1447
|
+
<reference key="destination" ref="583158037"/>
|
1448
|
+
</object>
|
1449
|
+
<int key="connectionID">232</int>
|
1450
|
+
</object>
|
1451
|
+
<object class="IBConnectionRecord">
|
1452
|
+
<object class="IBActionConnection" key="connection">
|
1453
|
+
<string key="label">startSpeaking:</string>
|
1454
|
+
<reference key="source" ref="1014"/>
|
1455
|
+
<reference key="destination" ref="731782645"/>
|
1456
|
+
</object>
|
1457
|
+
<int key="connectionID">233</int>
|
1458
|
+
</object>
|
1459
|
+
<object class="IBConnectionRecord">
|
1460
|
+
<object class="IBActionConnection" key="connection">
|
1461
|
+
<string key="label">delete:</string>
|
1462
|
+
<reference key="source" ref="1014"/>
|
1463
|
+
<reference key="destination" ref="437104165"/>
|
1464
|
+
</object>
|
1465
|
+
<int key="connectionID">235</int>
|
1466
|
+
</object>
|
1467
|
+
<object class="IBConnectionRecord">
|
1468
|
+
<object class="IBActionConnection" key="connection">
|
1469
|
+
<string key="label">performZoom:</string>
|
1470
|
+
<reference key="source" ref="1014"/>
|
1471
|
+
<reference key="destination" ref="575023229"/>
|
1472
|
+
</object>
|
1473
|
+
<int key="connectionID">240</int>
|
1474
|
+
</object>
|
1475
|
+
<object class="IBConnectionRecord">
|
1476
|
+
<object class="IBActionConnection" key="connection">
|
1477
|
+
<string key="label">performFindPanelAction:</string>
|
1478
|
+
<reference key="source" ref="1014"/>
|
1479
|
+
<reference key="destination" ref="447796847"/>
|
1480
|
+
</object>
|
1481
|
+
<int key="connectionID">241</int>
|
1482
|
+
</object>
|
1483
|
+
<object class="IBConnectionRecord">
|
1484
|
+
<object class="IBActionConnection" key="connection">
|
1485
|
+
<string key="label">centerSelectionInVisibleArea:</string>
|
1486
|
+
<reference key="source" ref="1014"/>
|
1487
|
+
<reference key="destination" ref="88285865"/>
|
1488
|
+
</object>
|
1489
|
+
<int key="connectionID">245</int>
|
1490
|
+
</object>
|
1491
|
+
<object class="IBConnectionRecord">
|
1492
|
+
<object class="IBActionConnection" key="connection">
|
1493
|
+
<string key="label">toggleGrammarChecking:</string>
|
1494
|
+
<reference key="source" ref="1014"/>
|
1495
|
+
<reference key="destination" ref="967646866"/>
|
1496
|
+
</object>
|
1497
|
+
<int key="connectionID">347</int>
|
1498
|
+
</object>
|
1499
|
+
<object class="IBConnectionRecord">
|
1500
|
+
<object class="IBActionConnection" key="connection">
|
1501
|
+
<string key="label">toggleSmartInsertDelete:</string>
|
1502
|
+
<reference key="source" ref="1014"/>
|
1503
|
+
<reference key="destination" ref="605118523"/>
|
1504
|
+
</object>
|
1505
|
+
<int key="connectionID">355</int>
|
1506
|
+
</object>
|
1507
|
+
<object class="IBConnectionRecord">
|
1508
|
+
<object class="IBActionConnection" key="connection">
|
1509
|
+
<string key="label">toggleAutomaticQuoteSubstitution:</string>
|
1510
|
+
<reference key="source" ref="1014"/>
|
1511
|
+
<reference key="destination" ref="197661976"/>
|
1512
|
+
</object>
|
1513
|
+
<int key="connectionID">356</int>
|
1514
|
+
</object>
|
1515
|
+
<object class="IBConnectionRecord">
|
1516
|
+
<object class="IBActionConnection" key="connection">
|
1517
|
+
<string key="label">toggleAutomaticLinkDetection:</string>
|
1518
|
+
<reference key="source" ref="1014"/>
|
1519
|
+
<reference key="destination" ref="708854459"/>
|
1520
|
+
</object>
|
1521
|
+
<int key="connectionID">357</int>
|
1522
|
+
</object>
|
1523
|
+
<object class="IBConnectionRecord">
|
1524
|
+
<object class="IBActionConnection" key="connection">
|
1525
|
+
<string key="label">saveDocument:</string>
|
1526
|
+
<reference key="source" ref="1014"/>
|
1527
|
+
<reference key="destination" ref="1023925487"/>
|
1528
|
+
</object>
|
1529
|
+
<int key="connectionID">362</int>
|
1530
|
+
</object>
|
1531
|
+
<object class="IBConnectionRecord">
|
1532
|
+
<object class="IBActionConnection" key="connection">
|
1533
|
+
<string key="label">revertDocumentToSaved:</string>
|
1534
|
+
<reference key="source" ref="1014"/>
|
1535
|
+
<reference key="destination" ref="579971712"/>
|
1536
|
+
</object>
|
1537
|
+
<int key="connectionID">364</int>
|
1538
|
+
</object>
|
1539
|
+
<object class="IBConnectionRecord">
|
1540
|
+
<object class="IBActionConnection" key="connection">
|
1541
|
+
<string key="label">runToolbarCustomizationPalette:</string>
|
1542
|
+
<reference key="source" ref="1014"/>
|
1543
|
+
<reference key="destination" ref="237841660"/>
|
1544
|
+
</object>
|
1545
|
+
<int key="connectionID">365</int>
|
1546
|
+
</object>
|
1547
|
+
<object class="IBConnectionRecord">
|
1548
|
+
<object class="IBActionConnection" key="connection">
|
1549
|
+
<string key="label">toggleToolbarShown:</string>
|
1550
|
+
<reference key="source" ref="1014"/>
|
1551
|
+
<reference key="destination" ref="102151532"/>
|
1552
|
+
</object>
|
1553
|
+
<int key="connectionID">366</int>
|
1554
|
+
</object>
|
1555
|
+
<object class="IBConnectionRecord">
|
1556
|
+
<object class="IBActionConnection" key="connection">
|
1557
|
+
<string key="label">hide:</string>
|
1558
|
+
<reference key="source" ref="1014"/>
|
1559
|
+
<reference key="destination" ref="755159360"/>
|
1560
|
+
</object>
|
1561
|
+
<int key="connectionID">367</int>
|
1562
|
+
</object>
|
1563
|
+
<object class="IBConnectionRecord">
|
1564
|
+
<object class="IBActionConnection" key="connection">
|
1565
|
+
<string key="label">hideOtherApplications:</string>
|
1566
|
+
<reference key="source" ref="1014"/>
|
1567
|
+
<reference key="destination" ref="342932134"/>
|
1568
|
+
</object>
|
1569
|
+
<int key="connectionID">368</int>
|
1570
|
+
</object>
|
1571
|
+
<object class="IBConnectionRecord">
|
1572
|
+
<object class="IBActionConnection" key="connection">
|
1573
|
+
<string key="label">unhideAllApplications:</string>
|
1574
|
+
<reference key="source" ref="1014"/>
|
1575
|
+
<reference key="destination" ref="908899353"/>
|
1576
|
+
</object>
|
1577
|
+
<int key="connectionID">370</int>
|
1578
|
+
</object>
|
1579
|
+
<object class="IBConnectionRecord">
|
1580
|
+
<object class="IBActionConnection" key="connection">
|
1581
|
+
<string key="label">newDocument:</string>
|
1582
|
+
<reference key="source" ref="1014"/>
|
1583
|
+
<reference key="destination" ref="705341025"/>
|
1584
|
+
</object>
|
1585
|
+
<int key="connectionID">373</int>
|
1586
|
+
</object>
|
1587
|
+
<object class="IBConnectionRecord">
|
1588
|
+
<object class="IBActionConnection" key="connection">
|
1589
|
+
<string key="label">openDocument:</string>
|
1590
|
+
<reference key="source" ref="1014"/>
|
1591
|
+
<reference key="destination" ref="722745758"/>
|
1592
|
+
</object>
|
1593
|
+
<int key="connectionID">374</int>
|
1594
|
+
</object>
|
1595
|
+
<object class="IBConnectionRecord">
|
1596
|
+
<object class="IBActionConnection" key="connection">
|
1597
|
+
<string key="label">raiseBaseline:</string>
|
1598
|
+
<reference key="source" ref="1014"/>
|
1599
|
+
<reference key="destination" ref="941806246"/>
|
1600
|
+
</object>
|
1601
|
+
<int key="connectionID">426</int>
|
1602
|
+
</object>
|
1603
|
+
<object class="IBConnectionRecord">
|
1604
|
+
<object class="IBActionConnection" key="connection">
|
1605
|
+
<string key="label">lowerBaseline:</string>
|
1606
|
+
<reference key="source" ref="1014"/>
|
1607
|
+
<reference key="destination" ref="1045724900"/>
|
1608
|
+
</object>
|
1609
|
+
<int key="connectionID">427</int>
|
1610
|
+
</object>
|
1611
|
+
<object class="IBConnectionRecord">
|
1612
|
+
<object class="IBActionConnection" key="connection">
|
1613
|
+
<string key="label">copyFont:</string>
|
1614
|
+
<reference key="source" ref="1014"/>
|
1615
|
+
<reference key="destination" ref="596732606"/>
|
1616
|
+
</object>
|
1617
|
+
<int key="connectionID">428</int>
|
1618
|
+
</object>
|
1619
|
+
<object class="IBConnectionRecord">
|
1620
|
+
<object class="IBActionConnection" key="connection">
|
1621
|
+
<string key="label">subscript:</string>
|
1622
|
+
<reference key="source" ref="1014"/>
|
1623
|
+
<reference key="destination" ref="1037576581"/>
|
1624
|
+
</object>
|
1625
|
+
<int key="connectionID">429</int>
|
1626
|
+
</object>
|
1627
|
+
<object class="IBConnectionRecord">
|
1628
|
+
<object class="IBActionConnection" key="connection">
|
1629
|
+
<string key="label">superscript:</string>
|
1630
|
+
<reference key="source" ref="1014"/>
|
1631
|
+
<reference key="destination" ref="644725453"/>
|
1632
|
+
</object>
|
1633
|
+
<int key="connectionID">430</int>
|
1634
|
+
</object>
|
1635
|
+
<object class="IBConnectionRecord">
|
1636
|
+
<object class="IBActionConnection" key="connection">
|
1637
|
+
<string key="label">tightenKerning:</string>
|
1638
|
+
<reference key="source" ref="1014"/>
|
1639
|
+
<reference key="destination" ref="677519740"/>
|
1640
|
+
</object>
|
1641
|
+
<int key="connectionID">431</int>
|
1642
|
+
</object>
|
1643
|
+
<object class="IBConnectionRecord">
|
1644
|
+
<object class="IBActionConnection" key="connection">
|
1645
|
+
<string key="label">underline:</string>
|
1646
|
+
<reference key="source" ref="1014"/>
|
1647
|
+
<reference key="destination" ref="330926929"/>
|
1648
|
+
</object>
|
1649
|
+
<int key="connectionID">432</int>
|
1650
|
+
</object>
|
1651
|
+
<object class="IBConnectionRecord">
|
1652
|
+
<object class="IBActionConnection" key="connection">
|
1653
|
+
<string key="label">orderFrontColorPanel:</string>
|
1654
|
+
<reference key="source" ref="1014"/>
|
1655
|
+
<reference key="destination" ref="1012600125"/>
|
1656
|
+
</object>
|
1657
|
+
<int key="connectionID">433</int>
|
1658
|
+
</object>
|
1659
|
+
<object class="IBConnectionRecord">
|
1660
|
+
<object class="IBActionConnection" key="connection">
|
1661
|
+
<string key="label">useAllLigatures:</string>
|
1662
|
+
<reference key="source" ref="1014"/>
|
1663
|
+
<reference key="destination" ref="663508465"/>
|
1664
|
+
</object>
|
1665
|
+
<int key="connectionID">434</int>
|
1666
|
+
</object>
|
1667
|
+
<object class="IBConnectionRecord">
|
1668
|
+
<object class="IBActionConnection" key="connection">
|
1669
|
+
<string key="label">loosenKerning:</string>
|
1670
|
+
<reference key="source" ref="1014"/>
|
1671
|
+
<reference key="destination" ref="238351151"/>
|
1672
|
+
</object>
|
1673
|
+
<int key="connectionID">435</int>
|
1674
|
+
</object>
|
1675
|
+
<object class="IBConnectionRecord">
|
1676
|
+
<object class="IBActionConnection" key="connection">
|
1677
|
+
<string key="label">pasteFont:</string>
|
1678
|
+
<reference key="source" ref="1014"/>
|
1679
|
+
<reference key="destination" ref="393423671"/>
|
1680
|
+
</object>
|
1681
|
+
<int key="connectionID">436</int>
|
1682
|
+
</object>
|
1683
|
+
<object class="IBConnectionRecord">
|
1684
|
+
<object class="IBActionConnection" key="connection">
|
1685
|
+
<string key="label">unscript:</string>
|
1686
|
+
<reference key="source" ref="1014"/>
|
1687
|
+
<reference key="destination" ref="257962622"/>
|
1688
|
+
</object>
|
1689
|
+
<int key="connectionID">437</int>
|
1690
|
+
</object>
|
1691
|
+
<object class="IBConnectionRecord">
|
1692
|
+
<object class="IBActionConnection" key="connection">
|
1693
|
+
<string key="label">useStandardKerning:</string>
|
1694
|
+
<reference key="source" ref="1014"/>
|
1695
|
+
<reference key="destination" ref="252969304"/>
|
1696
|
+
</object>
|
1697
|
+
<int key="connectionID">438</int>
|
1698
|
+
</object>
|
1699
|
+
<object class="IBConnectionRecord">
|
1700
|
+
<object class="IBActionConnection" key="connection">
|
1701
|
+
<string key="label">useStandardLigatures:</string>
|
1702
|
+
<reference key="source" ref="1014"/>
|
1703
|
+
<reference key="destination" ref="706297211"/>
|
1704
|
+
</object>
|
1705
|
+
<int key="connectionID">439</int>
|
1706
|
+
</object>
|
1707
|
+
<object class="IBConnectionRecord">
|
1708
|
+
<object class="IBActionConnection" key="connection">
|
1709
|
+
<string key="label">turnOffLigatures:</string>
|
1710
|
+
<reference key="source" ref="1014"/>
|
1711
|
+
<reference key="destination" ref="568384683"/>
|
1712
|
+
</object>
|
1713
|
+
<int key="connectionID">440</int>
|
1714
|
+
</object>
|
1715
|
+
<object class="IBConnectionRecord">
|
1716
|
+
<object class="IBActionConnection" key="connection">
|
1717
|
+
<string key="label">turnOffKerning:</string>
|
1718
|
+
<reference key="source" ref="1014"/>
|
1719
|
+
<reference key="destination" ref="766922938"/>
|
1720
|
+
</object>
|
1721
|
+
<int key="connectionID">441</int>
|
1722
|
+
</object>
|
1723
|
+
<object class="IBConnectionRecord">
|
1724
|
+
<object class="IBActionConnection" key="connection">
|
1725
|
+
<string key="label">toggleAutomaticSpellingCorrection:</string>
|
1726
|
+
<reference key="source" ref="1014"/>
|
1727
|
+
<reference key="destination" ref="795346622"/>
|
1728
|
+
</object>
|
1729
|
+
<int key="connectionID">456</int>
|
1730
|
+
</object>
|
1731
|
+
<object class="IBConnectionRecord">
|
1732
|
+
<object class="IBActionConnection" key="connection">
|
1733
|
+
<string key="label">orderFrontSubstitutionsPanel:</string>
|
1734
|
+
<reference key="source" ref="1014"/>
|
1735
|
+
<reference key="destination" ref="65139061"/>
|
1736
|
+
</object>
|
1737
|
+
<int key="connectionID">458</int>
|
1738
|
+
</object>
|
1739
|
+
<object class="IBConnectionRecord">
|
1740
|
+
<object class="IBActionConnection" key="connection">
|
1741
|
+
<string key="label">toggleAutomaticDashSubstitution:</string>
|
1742
|
+
<reference key="source" ref="1014"/>
|
1743
|
+
<reference key="destination" ref="672708820"/>
|
1744
|
+
</object>
|
1745
|
+
<int key="connectionID">461</int>
|
1746
|
+
</object>
|
1747
|
+
<object class="IBConnectionRecord">
|
1748
|
+
<object class="IBActionConnection" key="connection">
|
1749
|
+
<string key="label">toggleAutomaticTextReplacement:</string>
|
1750
|
+
<reference key="source" ref="1014"/>
|
1751
|
+
<reference key="destination" ref="537092702"/>
|
1752
|
+
</object>
|
1753
|
+
<int key="connectionID">463</int>
|
1754
|
+
</object>
|
1755
|
+
<object class="IBConnectionRecord">
|
1756
|
+
<object class="IBActionConnection" key="connection">
|
1757
|
+
<string key="label">uppercaseWord:</string>
|
1758
|
+
<reference key="source" ref="1014"/>
|
1759
|
+
<reference key="destination" ref="1060694897"/>
|
1760
|
+
</object>
|
1761
|
+
<int key="connectionID">464</int>
|
1762
|
+
</object>
|
1763
|
+
<object class="IBConnectionRecord">
|
1764
|
+
<object class="IBActionConnection" key="connection">
|
1765
|
+
<string key="label">capitalizeWord:</string>
|
1766
|
+
<reference key="source" ref="1014"/>
|
1767
|
+
<reference key="destination" ref="56570060"/>
|
1768
|
+
</object>
|
1769
|
+
<int key="connectionID">467</int>
|
1770
|
+
</object>
|
1771
|
+
<object class="IBConnectionRecord">
|
1772
|
+
<object class="IBActionConnection" key="connection">
|
1773
|
+
<string key="label">lowercaseWord:</string>
|
1774
|
+
<reference key="source" ref="1014"/>
|
1775
|
+
<reference key="destination" ref="879586729"/>
|
1776
|
+
</object>
|
1777
|
+
<int key="connectionID">468</int>
|
1778
|
+
</object>
|
1779
|
+
<object class="IBConnectionRecord">
|
1780
|
+
<object class="IBActionConnection" key="connection">
|
1781
|
+
<string key="label">pasteAsPlainText:</string>
|
1782
|
+
<reference key="source" ref="1014"/>
|
1783
|
+
<reference key="destination" ref="82994268"/>
|
1784
|
+
</object>
|
1785
|
+
<int key="connectionID">486</int>
|
1786
|
+
</object>
|
1787
|
+
<object class="IBConnectionRecord">
|
1788
|
+
<object class="IBActionConnection" key="connection">
|
1789
|
+
<string key="label">performFindPanelAction:</string>
|
1790
|
+
<reference key="source" ref="1014"/>
|
1791
|
+
<reference key="destination" ref="326711663"/>
|
1792
|
+
</object>
|
1793
|
+
<int key="connectionID">487</int>
|
1794
|
+
</object>
|
1795
|
+
<object class="IBConnectionRecord">
|
1796
|
+
<object class="IBActionConnection" key="connection">
|
1797
|
+
<string key="label">performFindPanelAction:</string>
|
1798
|
+
<reference key="source" ref="1014"/>
|
1799
|
+
<reference key="destination" ref="270902937"/>
|
1800
|
+
</object>
|
1801
|
+
<int key="connectionID">488</int>
|
1802
|
+
</object>
|
1803
|
+
<object class="IBConnectionRecord">
|
1804
|
+
<object class="IBActionConnection" key="connection">
|
1805
|
+
<string key="label">performFindPanelAction:</string>
|
1806
|
+
<reference key="source" ref="1014"/>
|
1807
|
+
<reference key="destination" ref="159080638"/>
|
1808
|
+
</object>
|
1809
|
+
<int key="connectionID">489</int>
|
1810
|
+
</object>
|
1811
|
+
<object class="IBConnectionRecord">
|
1812
|
+
<object class="IBActionConnection" key="connection">
|
1813
|
+
<string key="label">showHelp:</string>
|
1814
|
+
<reference key="source" ref="1014"/>
|
1815
|
+
<reference key="destination" ref="105068016"/>
|
1816
|
+
</object>
|
1817
|
+
<int key="connectionID">493</int>
|
1818
|
+
</object>
|
1819
|
+
<object class="IBConnectionRecord">
|
1820
|
+
<object class="IBActionConnection" key="connection">
|
1821
|
+
<string key="label">alignCenter:</string>
|
1822
|
+
<reference key="source" ref="1014"/>
|
1823
|
+
<reference key="destination" ref="630155264"/>
|
1824
|
+
</object>
|
1825
|
+
<int key="connectionID">518</int>
|
1826
|
+
</object>
|
1827
|
+
<object class="IBConnectionRecord">
|
1828
|
+
<object class="IBActionConnection" key="connection">
|
1829
|
+
<string key="label">pasteRuler:</string>
|
1830
|
+
<reference key="source" ref="1014"/>
|
1831
|
+
<reference key="destination" ref="883618387"/>
|
1832
|
+
</object>
|
1833
|
+
<int key="connectionID">519</int>
|
1834
|
+
</object>
|
1835
|
+
<object class="IBConnectionRecord">
|
1836
|
+
<object class="IBActionConnection" key="connection">
|
1837
|
+
<string key="label">toggleRuler:</string>
|
1838
|
+
<reference key="source" ref="1014"/>
|
1839
|
+
<reference key="destination" ref="644046920"/>
|
1840
|
+
</object>
|
1841
|
+
<int key="connectionID">520</int>
|
1842
|
+
</object>
|
1843
|
+
<object class="IBConnectionRecord">
|
1844
|
+
<object class="IBActionConnection" key="connection">
|
1845
|
+
<string key="label">alignRight:</string>
|
1846
|
+
<reference key="source" ref="1014"/>
|
1847
|
+
<reference key="destination" ref="512868991"/>
|
1848
|
+
</object>
|
1849
|
+
<int key="connectionID">521</int>
|
1850
|
+
</object>
|
1851
|
+
<object class="IBConnectionRecord">
|
1852
|
+
<object class="IBActionConnection" key="connection">
|
1853
|
+
<string key="label">copyRuler:</string>
|
1854
|
+
<reference key="source" ref="1014"/>
|
1855
|
+
<reference key="destination" ref="231811626"/>
|
1856
|
+
</object>
|
1857
|
+
<int key="connectionID">522</int>
|
1858
|
+
</object>
|
1859
|
+
<object class="IBConnectionRecord">
|
1860
|
+
<object class="IBActionConnection" key="connection">
|
1861
|
+
<string key="label">alignJustified:</string>
|
1862
|
+
<reference key="source" ref="1014"/>
|
1863
|
+
<reference key="destination" ref="945678886"/>
|
1864
|
+
</object>
|
1865
|
+
<int key="connectionID">523</int>
|
1866
|
+
</object>
|
1867
|
+
<object class="IBConnectionRecord">
|
1868
|
+
<object class="IBActionConnection" key="connection">
|
1869
|
+
<string key="label">alignLeft:</string>
|
1870
|
+
<reference key="source" ref="1014"/>
|
1871
|
+
<reference key="destination" ref="875092757"/>
|
1872
|
+
</object>
|
1873
|
+
<int key="connectionID">524</int>
|
1874
|
+
</object>
|
1875
|
+
<object class="IBConnectionRecord">
|
1876
|
+
<object class="IBActionConnection" key="connection">
|
1877
|
+
<string key="label">makeBaseWritingDirectionNatural:</string>
|
1878
|
+
<reference key="source" ref="1014"/>
|
1879
|
+
<reference key="destination" ref="551969625"/>
|
1880
|
+
</object>
|
1881
|
+
<int key="connectionID">525</int>
|
1882
|
+
</object>
|
1883
|
+
<object class="IBConnectionRecord">
|
1884
|
+
<object class="IBActionConnection" key="connection">
|
1885
|
+
<string key="label">makeBaseWritingDirectionLeftToRight:</string>
|
1886
|
+
<reference key="source" ref="1014"/>
|
1887
|
+
<reference key="destination" ref="249532473"/>
|
1888
|
+
</object>
|
1889
|
+
<int key="connectionID">526</int>
|
1890
|
+
</object>
|
1891
|
+
<object class="IBConnectionRecord">
|
1892
|
+
<object class="IBActionConnection" key="connection">
|
1893
|
+
<string key="label">makeBaseWritingDirectionRightToLeft:</string>
|
1894
|
+
<reference key="source" ref="1014"/>
|
1895
|
+
<reference key="destination" ref="607364498"/>
|
1896
|
+
</object>
|
1897
|
+
<int key="connectionID">527</int>
|
1898
|
+
</object>
|
1899
|
+
<object class="IBConnectionRecord">
|
1900
|
+
<object class="IBActionConnection" key="connection">
|
1901
|
+
<string key="label">makeTextWritingDirectionNatural:</string>
|
1902
|
+
<reference key="source" ref="1014"/>
|
1903
|
+
<reference key="destination" ref="380031999"/>
|
1904
|
+
</object>
|
1905
|
+
<int key="connectionID">528</int>
|
1906
|
+
</object>
|
1907
|
+
<object class="IBConnectionRecord">
|
1908
|
+
<object class="IBActionConnection" key="connection">
|
1909
|
+
<string key="label">makeTextWritingDirectionLeftToRight:</string>
|
1910
|
+
<reference key="source" ref="1014"/>
|
1911
|
+
<reference key="destination" ref="825984362"/>
|
1912
|
+
</object>
|
1913
|
+
<int key="connectionID">529</int>
|
1914
|
+
</object>
|
1915
|
+
<object class="IBConnectionRecord">
|
1916
|
+
<object class="IBActionConnection" key="connection">
|
1917
|
+
<string key="label">makeTextWritingDirectionRightToLeft:</string>
|
1918
|
+
<reference key="source" ref="1014"/>
|
1919
|
+
<reference key="destination" ref="560145579"/>
|
1920
|
+
</object>
|
1921
|
+
<int key="connectionID">530</int>
|
1922
|
+
</object>
|
1923
|
+
<object class="IBConnectionRecord">
|
1924
|
+
<object class="IBActionConnection" key="connection">
|
1925
|
+
<string key="label">performFindPanelAction:</string>
|
1926
|
+
<reference key="source" ref="1014"/>
|
1927
|
+
<reference key="destination" ref="738670835"/>
|
1928
|
+
</object>
|
1929
|
+
<int key="connectionID">535</int>
|
1930
|
+
</object>
|
1931
|
+
<object class="IBConnectionRecord">
|
1932
|
+
<object class="IBActionConnection" key="connection">
|
1933
|
+
<string key="label">addFontTrait:</string>
|
1934
|
+
<reference key="source" ref="755631768"/>
|
1935
|
+
<reference key="destination" ref="305399458"/>
|
1936
|
+
</object>
|
1937
|
+
<int key="connectionID">421</int>
|
1938
|
+
</object>
|
1939
|
+
<object class="IBConnectionRecord">
|
1940
|
+
<object class="IBActionConnection" key="connection">
|
1941
|
+
<string key="label">addFontTrait:</string>
|
1942
|
+
<reference key="source" ref="755631768"/>
|
1943
|
+
<reference key="destination" ref="814362025"/>
|
1944
|
+
</object>
|
1945
|
+
<int key="connectionID">422</int>
|
1946
|
+
</object>
|
1947
|
+
<object class="IBConnectionRecord">
|
1948
|
+
<object class="IBActionConnection" key="connection">
|
1949
|
+
<string key="label">modifyFont:</string>
|
1950
|
+
<reference key="source" ref="755631768"/>
|
1951
|
+
<reference key="destination" ref="885547335"/>
|
1952
|
+
</object>
|
1953
|
+
<int key="connectionID">423</int>
|
1954
|
+
</object>
|
1955
|
+
<object class="IBConnectionRecord">
|
1956
|
+
<object class="IBActionConnection" key="connection">
|
1957
|
+
<string key="label">orderFrontFontPanel:</string>
|
1958
|
+
<reference key="source" ref="755631768"/>
|
1959
|
+
<reference key="destination" ref="159677712"/>
|
1960
|
+
</object>
|
1961
|
+
<int key="connectionID">424</int>
|
1962
|
+
</object>
|
1963
|
+
<object class="IBConnectionRecord">
|
1964
|
+
<object class="IBActionConnection" key="connection">
|
1965
|
+
<string key="label">modifyFont:</string>
|
1966
|
+
<reference key="source" ref="755631768"/>
|
1967
|
+
<reference key="destination" ref="158063935"/>
|
1968
|
+
</object>
|
1969
|
+
<int key="connectionID">425</int>
|
1970
|
+
</object>
|
1971
|
+
</array>
|
1972
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
1973
|
+
<array key="orderedObjects">
|
1974
|
+
<object class="IBObjectRecord">
|
1975
|
+
<int key="objectID">0</int>
|
1976
|
+
<array key="object" id="0"/>
|
1977
|
+
<reference key="children" ref="1048"/>
|
1978
|
+
<nil key="parent"/>
|
1979
|
+
</object>
|
1980
|
+
<object class="IBObjectRecord">
|
1981
|
+
<int key="objectID">-2</int>
|
1982
|
+
<reference key="object" ref="1021"/>
|
1983
|
+
<reference key="parent" ref="0"/>
|
1984
|
+
<string key="objectName">File's Owner</string>
|
1985
|
+
</object>
|
1986
|
+
<object class="IBObjectRecord">
|
1987
|
+
<int key="objectID">-1</int>
|
1988
|
+
<reference key="object" ref="1014"/>
|
1989
|
+
<reference key="parent" ref="0"/>
|
1990
|
+
<string key="objectName">First Responder</string>
|
1991
|
+
</object>
|
1992
|
+
<object class="IBObjectRecord">
|
1993
|
+
<int key="objectID">-3</int>
|
1994
|
+
<reference key="object" ref="1050"/>
|
1995
|
+
<reference key="parent" ref="0"/>
|
1996
|
+
<string key="objectName">Application</string>
|
1997
|
+
</object>
|
1998
|
+
<object class="IBObjectRecord">
|
1999
|
+
<int key="objectID">29</int>
|
2000
|
+
<reference key="object" ref="649796088"/>
|
2001
|
+
<array class="NSMutableArray" key="children">
|
2002
|
+
<reference ref="713487014"/>
|
2003
|
+
<reference ref="694149608"/>
|
2004
|
+
<reference ref="952259628"/>
|
2005
|
+
<reference ref="379814623"/>
|
2006
|
+
<reference ref="586577488"/>
|
2007
|
+
<reference ref="302598603"/>
|
2008
|
+
<reference ref="448692316"/>
|
2009
|
+
</array>
|
2010
|
+
<reference key="parent" ref="0"/>
|
2011
|
+
</object>
|
2012
|
+
<object class="IBObjectRecord">
|
2013
|
+
<int key="objectID">19</int>
|
2014
|
+
<reference key="object" ref="713487014"/>
|
2015
|
+
<array class="NSMutableArray" key="children">
|
2016
|
+
<reference ref="835318025"/>
|
2017
|
+
</array>
|
2018
|
+
<reference key="parent" ref="649796088"/>
|
2019
|
+
</object>
|
2020
|
+
<object class="IBObjectRecord">
|
2021
|
+
<int key="objectID">56</int>
|
2022
|
+
<reference key="object" ref="694149608"/>
|
2023
|
+
<array class="NSMutableArray" key="children">
|
2024
|
+
<reference ref="110575045"/>
|
2025
|
+
</array>
|
2026
|
+
<reference key="parent" ref="649796088"/>
|
2027
|
+
</object>
|
2028
|
+
<object class="IBObjectRecord">
|
2029
|
+
<int key="objectID">217</int>
|
2030
|
+
<reference key="object" ref="952259628"/>
|
2031
|
+
<array class="NSMutableArray" key="children">
|
2032
|
+
<reference ref="789758025"/>
|
2033
|
+
</array>
|
2034
|
+
<reference key="parent" ref="649796088"/>
|
2035
|
+
</object>
|
2036
|
+
<object class="IBObjectRecord">
|
2037
|
+
<int key="objectID">83</int>
|
2038
|
+
<reference key="object" ref="379814623"/>
|
2039
|
+
<array class="NSMutableArray" key="children">
|
2040
|
+
<reference ref="720053764"/>
|
2041
|
+
</array>
|
2042
|
+
<reference key="parent" ref="649796088"/>
|
2043
|
+
</object>
|
2044
|
+
<object class="IBObjectRecord">
|
2045
|
+
<int key="objectID">81</int>
|
2046
|
+
<reference key="object" ref="720053764"/>
|
2047
|
+
<array class="NSMutableArray" key="children">
|
2048
|
+
<reference ref="1023925487"/>
|
2049
|
+
<reference ref="49223823"/>
|
2050
|
+
<reference ref="722745758"/>
|
2051
|
+
<reference ref="705341025"/>
|
2052
|
+
<reference ref="1025936716"/>
|
2053
|
+
<reference ref="294629803"/>
|
2054
|
+
<reference ref="776162233"/>
|
2055
|
+
<reference ref="425164168"/>
|
2056
|
+
<reference ref="579971712"/>
|
2057
|
+
<reference ref="1010469920"/>
|
2058
|
+
</array>
|
2059
|
+
<reference key="parent" ref="379814623"/>
|
2060
|
+
</object>
|
2061
|
+
<object class="IBObjectRecord">
|
2062
|
+
<int key="objectID">75</int>
|
2063
|
+
<reference key="object" ref="1023925487"/>
|
2064
|
+
<reference key="parent" ref="720053764"/>
|
2065
|
+
</object>
|
2066
|
+
<object class="IBObjectRecord">
|
2067
|
+
<int key="objectID">78</int>
|
2068
|
+
<reference key="object" ref="49223823"/>
|
2069
|
+
<reference key="parent" ref="720053764"/>
|
2070
|
+
</object>
|
2071
|
+
<object class="IBObjectRecord">
|
2072
|
+
<int key="objectID">72</int>
|
2073
|
+
<reference key="object" ref="722745758"/>
|
2074
|
+
<reference key="parent" ref="720053764"/>
|
2075
|
+
</object>
|
2076
|
+
<object class="IBObjectRecord">
|
2077
|
+
<int key="objectID">82</int>
|
2078
|
+
<reference key="object" ref="705341025"/>
|
2079
|
+
<reference key="parent" ref="720053764"/>
|
2080
|
+
</object>
|
2081
|
+
<object class="IBObjectRecord">
|
2082
|
+
<int key="objectID">124</int>
|
2083
|
+
<reference key="object" ref="1025936716"/>
|
2084
|
+
<array class="NSMutableArray" key="children">
|
2085
|
+
<reference ref="1065607017"/>
|
2086
|
+
</array>
|
2087
|
+
<reference key="parent" ref="720053764"/>
|
2088
|
+
</object>
|
2089
|
+
<object class="IBObjectRecord">
|
2090
|
+
<int key="objectID">77</int>
|
2091
|
+
<reference key="object" ref="294629803"/>
|
2092
|
+
<reference key="parent" ref="720053764"/>
|
2093
|
+
</object>
|
2094
|
+
<object class="IBObjectRecord">
|
2095
|
+
<int key="objectID">73</int>
|
2096
|
+
<reference key="object" ref="776162233"/>
|
2097
|
+
<reference key="parent" ref="720053764"/>
|
2098
|
+
</object>
|
2099
|
+
<object class="IBObjectRecord">
|
2100
|
+
<int key="objectID">79</int>
|
2101
|
+
<reference key="object" ref="425164168"/>
|
2102
|
+
<reference key="parent" ref="720053764"/>
|
2103
|
+
</object>
|
2104
|
+
<object class="IBObjectRecord">
|
2105
|
+
<int key="objectID">112</int>
|
2106
|
+
<reference key="object" ref="579971712"/>
|
2107
|
+
<reference key="parent" ref="720053764"/>
|
2108
|
+
</object>
|
2109
|
+
<object class="IBObjectRecord">
|
2110
|
+
<int key="objectID">74</int>
|
2111
|
+
<reference key="object" ref="1010469920"/>
|
2112
|
+
<reference key="parent" ref="720053764"/>
|
2113
|
+
</object>
|
2114
|
+
<object class="IBObjectRecord">
|
2115
|
+
<int key="objectID">125</int>
|
2116
|
+
<reference key="object" ref="1065607017"/>
|
2117
|
+
<array class="NSMutableArray" key="children">
|
2118
|
+
<reference ref="759406840"/>
|
2119
|
+
</array>
|
2120
|
+
<reference key="parent" ref="1025936716"/>
|
2121
|
+
</object>
|
2122
|
+
<object class="IBObjectRecord">
|
2123
|
+
<int key="objectID">126</int>
|
2124
|
+
<reference key="object" ref="759406840"/>
|
2125
|
+
<reference key="parent" ref="1065607017"/>
|
2126
|
+
</object>
|
2127
|
+
<object class="IBObjectRecord">
|
2128
|
+
<int key="objectID">205</int>
|
2129
|
+
<reference key="object" ref="789758025"/>
|
2130
|
+
<array class="NSMutableArray" key="children">
|
2131
|
+
<reference ref="437104165"/>
|
2132
|
+
<reference ref="583158037"/>
|
2133
|
+
<reference ref="1058277027"/>
|
2134
|
+
<reference ref="212016141"/>
|
2135
|
+
<reference ref="296257095"/>
|
2136
|
+
<reference ref="29853731"/>
|
2137
|
+
<reference ref="860595796"/>
|
2138
|
+
<reference ref="1040322652"/>
|
2139
|
+
<reference ref="790794224"/>
|
2140
|
+
<reference ref="892235320"/>
|
2141
|
+
<reference ref="972420730"/>
|
2142
|
+
<reference ref="676164635"/>
|
2143
|
+
<reference ref="507821607"/>
|
2144
|
+
<reference ref="288088188"/>
|
2145
|
+
<reference ref="82994268"/>
|
2146
|
+
</array>
|
2147
|
+
<reference key="parent" ref="952259628"/>
|
2148
|
+
</object>
|
2149
|
+
<object class="IBObjectRecord">
|
2150
|
+
<int key="objectID">202</int>
|
2151
|
+
<reference key="object" ref="437104165"/>
|
2152
|
+
<reference key="parent" ref="789758025"/>
|
2153
|
+
</object>
|
2154
|
+
<object class="IBObjectRecord">
|
2155
|
+
<int key="objectID">198</int>
|
2156
|
+
<reference key="object" ref="583158037"/>
|
2157
|
+
<reference key="parent" ref="789758025"/>
|
2158
|
+
</object>
|
2159
|
+
<object class="IBObjectRecord">
|
2160
|
+
<int key="objectID">207</int>
|
2161
|
+
<reference key="object" ref="1058277027"/>
|
2162
|
+
<reference key="parent" ref="789758025"/>
|
2163
|
+
</object>
|
2164
|
+
<object class="IBObjectRecord">
|
2165
|
+
<int key="objectID">214</int>
|
2166
|
+
<reference key="object" ref="212016141"/>
|
2167
|
+
<reference key="parent" ref="789758025"/>
|
2168
|
+
</object>
|
2169
|
+
<object class="IBObjectRecord">
|
2170
|
+
<int key="objectID">199</int>
|
2171
|
+
<reference key="object" ref="296257095"/>
|
2172
|
+
<reference key="parent" ref="789758025"/>
|
2173
|
+
</object>
|
2174
|
+
<object class="IBObjectRecord">
|
2175
|
+
<int key="objectID">203</int>
|
2176
|
+
<reference key="object" ref="29853731"/>
|
2177
|
+
<reference key="parent" ref="789758025"/>
|
2178
|
+
</object>
|
2179
|
+
<object class="IBObjectRecord">
|
2180
|
+
<int key="objectID">197</int>
|
2181
|
+
<reference key="object" ref="860595796"/>
|
2182
|
+
<reference key="parent" ref="789758025"/>
|
2183
|
+
</object>
|
2184
|
+
<object class="IBObjectRecord">
|
2185
|
+
<int key="objectID">206</int>
|
2186
|
+
<reference key="object" ref="1040322652"/>
|
2187
|
+
<reference key="parent" ref="789758025"/>
|
2188
|
+
</object>
|
2189
|
+
<object class="IBObjectRecord">
|
2190
|
+
<int key="objectID">215</int>
|
2191
|
+
<reference key="object" ref="790794224"/>
|
2192
|
+
<reference key="parent" ref="789758025"/>
|
2193
|
+
</object>
|
2194
|
+
<object class="IBObjectRecord">
|
2195
|
+
<int key="objectID">218</int>
|
2196
|
+
<reference key="object" ref="892235320"/>
|
2197
|
+
<array class="NSMutableArray" key="children">
|
2198
|
+
<reference ref="963351320"/>
|
2199
|
+
</array>
|
2200
|
+
<reference key="parent" ref="789758025"/>
|
2201
|
+
</object>
|
2202
|
+
<object class="IBObjectRecord">
|
2203
|
+
<int key="objectID">216</int>
|
2204
|
+
<reference key="object" ref="972420730"/>
|
2205
|
+
<array class="NSMutableArray" key="children">
|
2206
|
+
<reference ref="769623530"/>
|
2207
|
+
</array>
|
2208
|
+
<reference key="parent" ref="789758025"/>
|
2209
|
+
</object>
|
2210
|
+
<object class="IBObjectRecord">
|
2211
|
+
<int key="objectID">200</int>
|
2212
|
+
<reference key="object" ref="769623530"/>
|
2213
|
+
<array class="NSMutableArray" key="children">
|
2214
|
+
<reference ref="948374510"/>
|
2215
|
+
<reference ref="96193923"/>
|
2216
|
+
<reference ref="679648819"/>
|
2217
|
+
<reference ref="967646866"/>
|
2218
|
+
<reference ref="859480356"/>
|
2219
|
+
<reference ref="795346622"/>
|
2220
|
+
</array>
|
2221
|
+
<reference key="parent" ref="972420730"/>
|
2222
|
+
</object>
|
2223
|
+
<object class="IBObjectRecord">
|
2224
|
+
<int key="objectID">219</int>
|
2225
|
+
<reference key="object" ref="948374510"/>
|
2226
|
+
<reference key="parent" ref="769623530"/>
|
2227
|
+
</object>
|
2228
|
+
<object class="IBObjectRecord">
|
2229
|
+
<int key="objectID">201</int>
|
2230
|
+
<reference key="object" ref="96193923"/>
|
2231
|
+
<reference key="parent" ref="769623530"/>
|
2232
|
+
</object>
|
2233
|
+
<object class="IBObjectRecord">
|
2234
|
+
<int key="objectID">204</int>
|
2235
|
+
<reference key="object" ref="679648819"/>
|
2236
|
+
<reference key="parent" ref="769623530"/>
|
2237
|
+
</object>
|
2238
|
+
<object class="IBObjectRecord">
|
2239
|
+
<int key="objectID">220</int>
|
2240
|
+
<reference key="object" ref="963351320"/>
|
2241
|
+
<array class="NSMutableArray" key="children">
|
2242
|
+
<reference ref="270902937"/>
|
2243
|
+
<reference ref="88285865"/>
|
2244
|
+
<reference ref="159080638"/>
|
2245
|
+
<reference ref="326711663"/>
|
2246
|
+
<reference ref="447796847"/>
|
2247
|
+
<reference ref="738670835"/>
|
2248
|
+
</array>
|
2249
|
+
<reference key="parent" ref="892235320"/>
|
2250
|
+
</object>
|
2251
|
+
<object class="IBObjectRecord">
|
2252
|
+
<int key="objectID">213</int>
|
2253
|
+
<reference key="object" ref="270902937"/>
|
2254
|
+
<reference key="parent" ref="963351320"/>
|
2255
|
+
</object>
|
2256
|
+
<object class="IBObjectRecord">
|
2257
|
+
<int key="objectID">210</int>
|
2258
|
+
<reference key="object" ref="88285865"/>
|
2259
|
+
<reference key="parent" ref="963351320"/>
|
2260
|
+
</object>
|
2261
|
+
<object class="IBObjectRecord">
|
2262
|
+
<int key="objectID">221</int>
|
2263
|
+
<reference key="object" ref="159080638"/>
|
2264
|
+
<reference key="parent" ref="963351320"/>
|
2265
|
+
</object>
|
2266
|
+
<object class="IBObjectRecord">
|
2267
|
+
<int key="objectID">208</int>
|
2268
|
+
<reference key="object" ref="326711663"/>
|
2269
|
+
<reference key="parent" ref="963351320"/>
|
2270
|
+
</object>
|
2271
|
+
<object class="IBObjectRecord">
|
2272
|
+
<int key="objectID">209</int>
|
2273
|
+
<reference key="object" ref="447796847"/>
|
2274
|
+
<reference key="parent" ref="963351320"/>
|
2275
|
+
</object>
|
2276
|
+
<object class="IBObjectRecord">
|
2277
|
+
<int key="objectID">57</int>
|
2278
|
+
<reference key="object" ref="110575045"/>
|
2279
|
+
<array class="NSMutableArray" key="children">
|
2280
|
+
<reference ref="238522557"/>
|
2281
|
+
<reference ref="755159360"/>
|
2282
|
+
<reference ref="908899353"/>
|
2283
|
+
<reference ref="632727374"/>
|
2284
|
+
<reference ref="646227648"/>
|
2285
|
+
<reference ref="609285721"/>
|
2286
|
+
<reference ref="481834944"/>
|
2287
|
+
<reference ref="304266470"/>
|
2288
|
+
<reference ref="1046388886"/>
|
2289
|
+
<reference ref="1056857174"/>
|
2290
|
+
<reference ref="342932134"/>
|
2291
|
+
</array>
|
2292
|
+
<reference key="parent" ref="694149608"/>
|
2293
|
+
</object>
|
2294
|
+
<object class="IBObjectRecord">
|
2295
|
+
<int key="objectID">58</int>
|
2296
|
+
<reference key="object" ref="238522557"/>
|
2297
|
+
<reference key="parent" ref="110575045"/>
|
2298
|
+
</object>
|
2299
|
+
<object class="IBObjectRecord">
|
2300
|
+
<int key="objectID">134</int>
|
2301
|
+
<reference key="object" ref="755159360"/>
|
2302
|
+
<reference key="parent" ref="110575045"/>
|
2303
|
+
</object>
|
2304
|
+
<object class="IBObjectRecord">
|
2305
|
+
<int key="objectID">150</int>
|
2306
|
+
<reference key="object" ref="908899353"/>
|
2307
|
+
<reference key="parent" ref="110575045"/>
|
2308
|
+
</object>
|
2309
|
+
<object class="IBObjectRecord">
|
2310
|
+
<int key="objectID">136</int>
|
2311
|
+
<reference key="object" ref="632727374"/>
|
2312
|
+
<reference key="parent" ref="110575045"/>
|
2313
|
+
</object>
|
2314
|
+
<object class="IBObjectRecord">
|
2315
|
+
<int key="objectID">144</int>
|
2316
|
+
<reference key="object" ref="646227648"/>
|
2317
|
+
<reference key="parent" ref="110575045"/>
|
2318
|
+
</object>
|
2319
|
+
<object class="IBObjectRecord">
|
2320
|
+
<int key="objectID">129</int>
|
2321
|
+
<reference key="object" ref="609285721"/>
|
2322
|
+
<reference key="parent" ref="110575045"/>
|
2323
|
+
</object>
|
2324
|
+
<object class="IBObjectRecord">
|
2325
|
+
<int key="objectID">143</int>
|
2326
|
+
<reference key="object" ref="481834944"/>
|
2327
|
+
<reference key="parent" ref="110575045"/>
|
2328
|
+
</object>
|
2329
|
+
<object class="IBObjectRecord">
|
2330
|
+
<int key="objectID">236</int>
|
2331
|
+
<reference key="object" ref="304266470"/>
|
2332
|
+
<reference key="parent" ref="110575045"/>
|
2333
|
+
</object>
|
2334
|
+
<object class="IBObjectRecord">
|
2335
|
+
<int key="objectID">131</int>
|
2336
|
+
<reference key="object" ref="1046388886"/>
|
2337
|
+
<array class="NSMutableArray" key="children">
|
2338
|
+
<reference ref="752062318"/>
|
2339
|
+
</array>
|
2340
|
+
<reference key="parent" ref="110575045"/>
|
2341
|
+
</object>
|
2342
|
+
<object class="IBObjectRecord">
|
2343
|
+
<int key="objectID">149</int>
|
2344
|
+
<reference key="object" ref="1056857174"/>
|
2345
|
+
<reference key="parent" ref="110575045"/>
|
2346
|
+
</object>
|
2347
|
+
<object class="IBObjectRecord">
|
2348
|
+
<int key="objectID">145</int>
|
2349
|
+
<reference key="object" ref="342932134"/>
|
2350
|
+
<reference key="parent" ref="110575045"/>
|
2351
|
+
</object>
|
2352
|
+
<object class="IBObjectRecord">
|
2353
|
+
<int key="objectID">130</int>
|
2354
|
+
<reference key="object" ref="752062318"/>
|
2355
|
+
<reference key="parent" ref="1046388886"/>
|
2356
|
+
</object>
|
2357
|
+
<object class="IBObjectRecord">
|
2358
|
+
<int key="objectID">24</int>
|
2359
|
+
<reference key="object" ref="835318025"/>
|
2360
|
+
<array class="NSMutableArray" key="children">
|
2361
|
+
<reference ref="299356726"/>
|
2362
|
+
<reference ref="625202149"/>
|
2363
|
+
<reference ref="575023229"/>
|
2364
|
+
<reference ref="1011231497"/>
|
2365
|
+
</array>
|
2366
|
+
<reference key="parent" ref="713487014"/>
|
2367
|
+
</object>
|
2368
|
+
<object class="IBObjectRecord">
|
2369
|
+
<int key="objectID">92</int>
|
2370
|
+
<reference key="object" ref="299356726"/>
|
2371
|
+
<reference key="parent" ref="835318025"/>
|
2372
|
+
</object>
|
2373
|
+
<object class="IBObjectRecord">
|
2374
|
+
<int key="objectID">5</int>
|
2375
|
+
<reference key="object" ref="625202149"/>
|
2376
|
+
<reference key="parent" ref="835318025"/>
|
2377
|
+
</object>
|
2378
|
+
<object class="IBObjectRecord">
|
2379
|
+
<int key="objectID">239</int>
|
2380
|
+
<reference key="object" ref="575023229"/>
|
2381
|
+
<reference key="parent" ref="835318025"/>
|
2382
|
+
</object>
|
2383
|
+
<object class="IBObjectRecord">
|
2384
|
+
<int key="objectID">23</int>
|
2385
|
+
<reference key="object" ref="1011231497"/>
|
2386
|
+
<reference key="parent" ref="835318025"/>
|
2387
|
+
</object>
|
2388
|
+
<object class="IBObjectRecord">
|
2389
|
+
<int key="objectID">295</int>
|
2390
|
+
<reference key="object" ref="586577488"/>
|
2391
|
+
<array class="NSMutableArray" key="children">
|
2392
|
+
<reference ref="466310130"/>
|
2393
|
+
</array>
|
2394
|
+
<reference key="parent" ref="649796088"/>
|
2395
|
+
</object>
|
2396
|
+
<object class="IBObjectRecord">
|
2397
|
+
<int key="objectID">296</int>
|
2398
|
+
<reference key="object" ref="466310130"/>
|
2399
|
+
<array class="NSMutableArray" key="children">
|
2400
|
+
<reference ref="102151532"/>
|
2401
|
+
<reference ref="237841660"/>
|
2402
|
+
</array>
|
2403
|
+
<reference key="parent" ref="586577488"/>
|
2404
|
+
</object>
|
2405
|
+
<object class="IBObjectRecord">
|
2406
|
+
<int key="objectID">297</int>
|
2407
|
+
<reference key="object" ref="102151532"/>
|
2408
|
+
<reference key="parent" ref="466310130"/>
|
2409
|
+
</object>
|
2410
|
+
<object class="IBObjectRecord">
|
2411
|
+
<int key="objectID">298</int>
|
2412
|
+
<reference key="object" ref="237841660"/>
|
2413
|
+
<reference key="parent" ref="466310130"/>
|
2414
|
+
</object>
|
2415
|
+
<object class="IBObjectRecord">
|
2416
|
+
<int key="objectID">211</int>
|
2417
|
+
<reference key="object" ref="676164635"/>
|
2418
|
+
<array class="NSMutableArray" key="children">
|
2419
|
+
<reference ref="785027613"/>
|
2420
|
+
</array>
|
2421
|
+
<reference key="parent" ref="789758025"/>
|
2422
|
+
</object>
|
2423
|
+
<object class="IBObjectRecord">
|
2424
|
+
<int key="objectID">212</int>
|
2425
|
+
<reference key="object" ref="785027613"/>
|
2426
|
+
<array class="NSMutableArray" key="children">
|
2427
|
+
<reference ref="680220178"/>
|
2428
|
+
<reference ref="731782645"/>
|
2429
|
+
</array>
|
2430
|
+
<reference key="parent" ref="676164635"/>
|
2431
|
+
</object>
|
2432
|
+
<object class="IBObjectRecord">
|
2433
|
+
<int key="objectID">195</int>
|
2434
|
+
<reference key="object" ref="680220178"/>
|
2435
|
+
<reference key="parent" ref="785027613"/>
|
2436
|
+
</object>
|
2437
|
+
<object class="IBObjectRecord">
|
2438
|
+
<int key="objectID">196</int>
|
2439
|
+
<reference key="object" ref="731782645"/>
|
2440
|
+
<reference key="parent" ref="785027613"/>
|
2441
|
+
</object>
|
2442
|
+
<object class="IBObjectRecord">
|
2443
|
+
<int key="objectID">346</int>
|
2444
|
+
<reference key="object" ref="967646866"/>
|
2445
|
+
<reference key="parent" ref="769623530"/>
|
2446
|
+
</object>
|
2447
|
+
<object class="IBObjectRecord">
|
2448
|
+
<int key="objectID">348</int>
|
2449
|
+
<reference key="object" ref="507821607"/>
|
2450
|
+
<array class="NSMutableArray" key="children">
|
2451
|
+
<reference ref="698887838"/>
|
2452
|
+
</array>
|
2453
|
+
<reference key="parent" ref="789758025"/>
|
2454
|
+
</object>
|
2455
|
+
<object class="IBObjectRecord">
|
2456
|
+
<int key="objectID">349</int>
|
2457
|
+
<reference key="object" ref="698887838"/>
|
2458
|
+
<array class="NSMutableArray" key="children">
|
2459
|
+
<reference ref="605118523"/>
|
2460
|
+
<reference ref="197661976"/>
|
2461
|
+
<reference ref="708854459"/>
|
2462
|
+
<reference ref="65139061"/>
|
2463
|
+
<reference ref="19036812"/>
|
2464
|
+
<reference ref="672708820"/>
|
2465
|
+
<reference ref="537092702"/>
|
2466
|
+
</array>
|
2467
|
+
<reference key="parent" ref="507821607"/>
|
2468
|
+
</object>
|
2469
|
+
<object class="IBObjectRecord">
|
2470
|
+
<int key="objectID">350</int>
|
2471
|
+
<reference key="object" ref="605118523"/>
|
2472
|
+
<reference key="parent" ref="698887838"/>
|
2473
|
+
</object>
|
2474
|
+
<object class="IBObjectRecord">
|
2475
|
+
<int key="objectID">351</int>
|
2476
|
+
<reference key="object" ref="197661976"/>
|
2477
|
+
<reference key="parent" ref="698887838"/>
|
2478
|
+
</object>
|
2479
|
+
<object class="IBObjectRecord">
|
2480
|
+
<int key="objectID">354</int>
|
2481
|
+
<reference key="object" ref="708854459"/>
|
2482
|
+
<reference key="parent" ref="698887838"/>
|
2483
|
+
</object>
|
2484
|
+
<object class="IBObjectRecord">
|
2485
|
+
<int key="objectID">375</int>
|
2486
|
+
<reference key="object" ref="302598603"/>
|
2487
|
+
<array class="NSMutableArray" key="children">
|
2488
|
+
<reference ref="941447902"/>
|
2489
|
+
</array>
|
2490
|
+
<reference key="parent" ref="649796088"/>
|
2491
|
+
</object>
|
2492
|
+
<object class="IBObjectRecord">
|
2493
|
+
<int key="objectID">376</int>
|
2494
|
+
<reference key="object" ref="941447902"/>
|
2495
|
+
<array class="NSMutableArray" key="children">
|
2496
|
+
<reference ref="792887677"/>
|
2497
|
+
<reference ref="215659978"/>
|
2498
|
+
</array>
|
2499
|
+
<reference key="parent" ref="302598603"/>
|
2500
|
+
</object>
|
2501
|
+
<object class="IBObjectRecord">
|
2502
|
+
<int key="objectID">377</int>
|
2503
|
+
<reference key="object" ref="792887677"/>
|
2504
|
+
<array class="NSMutableArray" key="children">
|
2505
|
+
<reference ref="786677654"/>
|
2506
|
+
</array>
|
2507
|
+
<reference key="parent" ref="941447902"/>
|
2508
|
+
</object>
|
2509
|
+
<object class="IBObjectRecord">
|
2510
|
+
<int key="objectID">388</int>
|
2511
|
+
<reference key="object" ref="786677654"/>
|
2512
|
+
<array class="NSMutableArray" key="children">
|
2513
|
+
<reference ref="159677712"/>
|
2514
|
+
<reference ref="305399458"/>
|
2515
|
+
<reference ref="814362025"/>
|
2516
|
+
<reference ref="330926929"/>
|
2517
|
+
<reference ref="533507878"/>
|
2518
|
+
<reference ref="158063935"/>
|
2519
|
+
<reference ref="885547335"/>
|
2520
|
+
<reference ref="901062459"/>
|
2521
|
+
<reference ref="767671776"/>
|
2522
|
+
<reference ref="691570813"/>
|
2523
|
+
<reference ref="769124883"/>
|
2524
|
+
<reference ref="739652853"/>
|
2525
|
+
<reference ref="1012600125"/>
|
2526
|
+
<reference ref="214559597"/>
|
2527
|
+
<reference ref="596732606"/>
|
2528
|
+
<reference ref="393423671"/>
|
2529
|
+
</array>
|
2530
|
+
<reference key="parent" ref="792887677"/>
|
2531
|
+
</object>
|
2532
|
+
<object class="IBObjectRecord">
|
2533
|
+
<int key="objectID">389</int>
|
2534
|
+
<reference key="object" ref="159677712"/>
|
2535
|
+
<reference key="parent" ref="786677654"/>
|
2536
|
+
</object>
|
2537
|
+
<object class="IBObjectRecord">
|
2538
|
+
<int key="objectID">390</int>
|
2539
|
+
<reference key="object" ref="305399458"/>
|
2540
|
+
<reference key="parent" ref="786677654"/>
|
2541
|
+
</object>
|
2542
|
+
<object class="IBObjectRecord">
|
2543
|
+
<int key="objectID">391</int>
|
2544
|
+
<reference key="object" ref="814362025"/>
|
2545
|
+
<reference key="parent" ref="786677654"/>
|
2546
|
+
</object>
|
2547
|
+
<object class="IBObjectRecord">
|
2548
|
+
<int key="objectID">392</int>
|
2549
|
+
<reference key="object" ref="330926929"/>
|
2550
|
+
<reference key="parent" ref="786677654"/>
|
2551
|
+
</object>
|
2552
|
+
<object class="IBObjectRecord">
|
2553
|
+
<int key="objectID">393</int>
|
2554
|
+
<reference key="object" ref="533507878"/>
|
2555
|
+
<reference key="parent" ref="786677654"/>
|
2556
|
+
</object>
|
2557
|
+
<object class="IBObjectRecord">
|
2558
|
+
<int key="objectID">394</int>
|
2559
|
+
<reference key="object" ref="158063935"/>
|
2560
|
+
<reference key="parent" ref="786677654"/>
|
2561
|
+
</object>
|
2562
|
+
<object class="IBObjectRecord">
|
2563
|
+
<int key="objectID">395</int>
|
2564
|
+
<reference key="object" ref="885547335"/>
|
2565
|
+
<reference key="parent" ref="786677654"/>
|
2566
|
+
</object>
|
2567
|
+
<object class="IBObjectRecord">
|
2568
|
+
<int key="objectID">396</int>
|
2569
|
+
<reference key="object" ref="901062459"/>
|
2570
|
+
<reference key="parent" ref="786677654"/>
|
2571
|
+
</object>
|
2572
|
+
<object class="IBObjectRecord">
|
2573
|
+
<int key="objectID">397</int>
|
2574
|
+
<reference key="object" ref="767671776"/>
|
2575
|
+
<array class="NSMutableArray" key="children">
|
2576
|
+
<reference ref="175441468"/>
|
2577
|
+
</array>
|
2578
|
+
<reference key="parent" ref="786677654"/>
|
2579
|
+
</object>
|
2580
|
+
<object class="IBObjectRecord">
|
2581
|
+
<int key="objectID">398</int>
|
2582
|
+
<reference key="object" ref="691570813"/>
|
2583
|
+
<array class="NSMutableArray" key="children">
|
2584
|
+
<reference ref="1058217995"/>
|
2585
|
+
</array>
|
2586
|
+
<reference key="parent" ref="786677654"/>
|
2587
|
+
</object>
|
2588
|
+
<object class="IBObjectRecord">
|
2589
|
+
<int key="objectID">399</int>
|
2590
|
+
<reference key="object" ref="769124883"/>
|
2591
|
+
<array class="NSMutableArray" key="children">
|
2592
|
+
<reference ref="18263474"/>
|
2593
|
+
</array>
|
2594
|
+
<reference key="parent" ref="786677654"/>
|
2595
|
+
</object>
|
2596
|
+
<object class="IBObjectRecord">
|
2597
|
+
<int key="objectID">400</int>
|
2598
|
+
<reference key="object" ref="739652853"/>
|
2599
|
+
<reference key="parent" ref="786677654"/>
|
2600
|
+
</object>
|
2601
|
+
<object class="IBObjectRecord">
|
2602
|
+
<int key="objectID">401</int>
|
2603
|
+
<reference key="object" ref="1012600125"/>
|
2604
|
+
<reference key="parent" ref="786677654"/>
|
2605
|
+
</object>
|
2606
|
+
<object class="IBObjectRecord">
|
2607
|
+
<int key="objectID">402</int>
|
2608
|
+
<reference key="object" ref="214559597"/>
|
2609
|
+
<reference key="parent" ref="786677654"/>
|
2610
|
+
</object>
|
2611
|
+
<object class="IBObjectRecord">
|
2612
|
+
<int key="objectID">403</int>
|
2613
|
+
<reference key="object" ref="596732606"/>
|
2614
|
+
<reference key="parent" ref="786677654"/>
|
2615
|
+
</object>
|
2616
|
+
<object class="IBObjectRecord">
|
2617
|
+
<int key="objectID">404</int>
|
2618
|
+
<reference key="object" ref="393423671"/>
|
2619
|
+
<reference key="parent" ref="786677654"/>
|
2620
|
+
</object>
|
2621
|
+
<object class="IBObjectRecord">
|
2622
|
+
<int key="objectID">405</int>
|
2623
|
+
<reference key="object" ref="18263474"/>
|
2624
|
+
<array class="NSMutableArray" key="children">
|
2625
|
+
<reference ref="257962622"/>
|
2626
|
+
<reference ref="644725453"/>
|
2627
|
+
<reference ref="1037576581"/>
|
2628
|
+
<reference ref="941806246"/>
|
2629
|
+
<reference ref="1045724900"/>
|
2630
|
+
</array>
|
2631
|
+
<reference key="parent" ref="769124883"/>
|
2632
|
+
</object>
|
2633
|
+
<object class="IBObjectRecord">
|
2634
|
+
<int key="objectID">406</int>
|
2635
|
+
<reference key="object" ref="257962622"/>
|
2636
|
+
<reference key="parent" ref="18263474"/>
|
2637
|
+
</object>
|
2638
|
+
<object class="IBObjectRecord">
|
2639
|
+
<int key="objectID">407</int>
|
2640
|
+
<reference key="object" ref="644725453"/>
|
2641
|
+
<reference key="parent" ref="18263474"/>
|
2642
|
+
</object>
|
2643
|
+
<object class="IBObjectRecord">
|
2644
|
+
<int key="objectID">408</int>
|
2645
|
+
<reference key="object" ref="1037576581"/>
|
2646
|
+
<reference key="parent" ref="18263474"/>
|
2647
|
+
</object>
|
2648
|
+
<object class="IBObjectRecord">
|
2649
|
+
<int key="objectID">409</int>
|
2650
|
+
<reference key="object" ref="941806246"/>
|
2651
|
+
<reference key="parent" ref="18263474"/>
|
2652
|
+
</object>
|
2653
|
+
<object class="IBObjectRecord">
|
2654
|
+
<int key="objectID">410</int>
|
2655
|
+
<reference key="object" ref="1045724900"/>
|
2656
|
+
<reference key="parent" ref="18263474"/>
|
2657
|
+
</object>
|
2658
|
+
<object class="IBObjectRecord">
|
2659
|
+
<int key="objectID">411</int>
|
2660
|
+
<reference key="object" ref="1058217995"/>
|
2661
|
+
<array class="NSMutableArray" key="children">
|
2662
|
+
<reference ref="706297211"/>
|
2663
|
+
<reference ref="568384683"/>
|
2664
|
+
<reference ref="663508465"/>
|
2665
|
+
</array>
|
2666
|
+
<reference key="parent" ref="691570813"/>
|
2667
|
+
</object>
|
2668
|
+
<object class="IBObjectRecord">
|
2669
|
+
<int key="objectID">412</int>
|
2670
|
+
<reference key="object" ref="706297211"/>
|
2671
|
+
<reference key="parent" ref="1058217995"/>
|
2672
|
+
</object>
|
2673
|
+
<object class="IBObjectRecord">
|
2674
|
+
<int key="objectID">413</int>
|
2675
|
+
<reference key="object" ref="568384683"/>
|
2676
|
+
<reference key="parent" ref="1058217995"/>
|
2677
|
+
</object>
|
2678
|
+
<object class="IBObjectRecord">
|
2679
|
+
<int key="objectID">414</int>
|
2680
|
+
<reference key="object" ref="663508465"/>
|
2681
|
+
<reference key="parent" ref="1058217995"/>
|
2682
|
+
</object>
|
2683
|
+
<object class="IBObjectRecord">
|
2684
|
+
<int key="objectID">415</int>
|
2685
|
+
<reference key="object" ref="175441468"/>
|
2686
|
+
<array class="NSMutableArray" key="children">
|
2687
|
+
<reference ref="252969304"/>
|
2688
|
+
<reference ref="766922938"/>
|
2689
|
+
<reference ref="677519740"/>
|
2690
|
+
<reference ref="238351151"/>
|
2691
|
+
</array>
|
2692
|
+
<reference key="parent" ref="767671776"/>
|
2693
|
+
</object>
|
2694
|
+
<object class="IBObjectRecord">
|
2695
|
+
<int key="objectID">416</int>
|
2696
|
+
<reference key="object" ref="252969304"/>
|
2697
|
+
<reference key="parent" ref="175441468"/>
|
2698
|
+
</object>
|
2699
|
+
<object class="IBObjectRecord">
|
2700
|
+
<int key="objectID">417</int>
|
2701
|
+
<reference key="object" ref="766922938"/>
|
2702
|
+
<reference key="parent" ref="175441468"/>
|
2703
|
+
</object>
|
2704
|
+
<object class="IBObjectRecord">
|
2705
|
+
<int key="objectID">418</int>
|
2706
|
+
<reference key="object" ref="677519740"/>
|
2707
|
+
<reference key="parent" ref="175441468"/>
|
2708
|
+
</object>
|
2709
|
+
<object class="IBObjectRecord">
|
2710
|
+
<int key="objectID">419</int>
|
2711
|
+
<reference key="object" ref="238351151"/>
|
2712
|
+
<reference key="parent" ref="175441468"/>
|
2713
|
+
</object>
|
2714
|
+
<object class="IBObjectRecord">
|
2715
|
+
<int key="objectID">420</int>
|
2716
|
+
<reference key="object" ref="755631768"/>
|
2717
|
+
<reference key="parent" ref="0"/>
|
2718
|
+
</object>
|
2719
|
+
<object class="IBObjectRecord">
|
2720
|
+
<int key="objectID">450</int>
|
2721
|
+
<reference key="object" ref="288088188"/>
|
2722
|
+
<array class="NSMutableArray" key="children">
|
2723
|
+
<reference ref="579392910"/>
|
2724
|
+
</array>
|
2725
|
+
<reference key="parent" ref="789758025"/>
|
2726
|
+
</object>
|
2727
|
+
<object class="IBObjectRecord">
|
2728
|
+
<int key="objectID">451</int>
|
2729
|
+
<reference key="object" ref="579392910"/>
|
2730
|
+
<array class="NSMutableArray" key="children">
|
2731
|
+
<reference ref="1060694897"/>
|
2732
|
+
<reference ref="879586729"/>
|
2733
|
+
<reference ref="56570060"/>
|
2734
|
+
</array>
|
2735
|
+
<reference key="parent" ref="288088188"/>
|
2736
|
+
</object>
|
2737
|
+
<object class="IBObjectRecord">
|
2738
|
+
<int key="objectID">452</int>
|
2739
|
+
<reference key="object" ref="1060694897"/>
|
2740
|
+
<reference key="parent" ref="579392910"/>
|
2741
|
+
</object>
|
2742
|
+
<object class="IBObjectRecord">
|
2743
|
+
<int key="objectID">453</int>
|
2744
|
+
<reference key="object" ref="859480356"/>
|
2745
|
+
<reference key="parent" ref="769623530"/>
|
2746
|
+
</object>
|
2747
|
+
<object class="IBObjectRecord">
|
2748
|
+
<int key="objectID">454</int>
|
2749
|
+
<reference key="object" ref="795346622"/>
|
2750
|
+
<reference key="parent" ref="769623530"/>
|
2751
|
+
</object>
|
2752
|
+
<object class="IBObjectRecord">
|
2753
|
+
<int key="objectID">457</int>
|
2754
|
+
<reference key="object" ref="65139061"/>
|
2755
|
+
<reference key="parent" ref="698887838"/>
|
2756
|
+
</object>
|
2757
|
+
<object class="IBObjectRecord">
|
2758
|
+
<int key="objectID">459</int>
|
2759
|
+
<reference key="object" ref="19036812"/>
|
2760
|
+
<reference key="parent" ref="698887838"/>
|
2761
|
+
</object>
|
2762
|
+
<object class="IBObjectRecord">
|
2763
|
+
<int key="objectID">460</int>
|
2764
|
+
<reference key="object" ref="672708820"/>
|
2765
|
+
<reference key="parent" ref="698887838"/>
|
2766
|
+
</object>
|
2767
|
+
<object class="IBObjectRecord">
|
2768
|
+
<int key="objectID">462</int>
|
2769
|
+
<reference key="object" ref="537092702"/>
|
2770
|
+
<reference key="parent" ref="698887838"/>
|
2771
|
+
</object>
|
2772
|
+
<object class="IBObjectRecord">
|
2773
|
+
<int key="objectID">465</int>
|
2774
|
+
<reference key="object" ref="879586729"/>
|
2775
|
+
<reference key="parent" ref="579392910"/>
|
2776
|
+
</object>
|
2777
|
+
<object class="IBObjectRecord">
|
2778
|
+
<int key="objectID">466</int>
|
2779
|
+
<reference key="object" ref="56570060"/>
|
2780
|
+
<reference key="parent" ref="579392910"/>
|
2781
|
+
</object>
|
2782
|
+
<object class="IBObjectRecord">
|
2783
|
+
<int key="objectID">485</int>
|
2784
|
+
<reference key="object" ref="82994268"/>
|
2785
|
+
<reference key="parent" ref="789758025"/>
|
2786
|
+
</object>
|
2787
|
+
<object class="IBObjectRecord">
|
2788
|
+
<int key="objectID">490</int>
|
2789
|
+
<reference key="object" ref="448692316"/>
|
2790
|
+
<array class="NSMutableArray" key="children">
|
2791
|
+
<reference ref="992780483"/>
|
2792
|
+
</array>
|
2793
|
+
<reference key="parent" ref="649796088"/>
|
2794
|
+
</object>
|
2795
|
+
<object class="IBObjectRecord">
|
2796
|
+
<int key="objectID">491</int>
|
2797
|
+
<reference key="object" ref="992780483"/>
|
2798
|
+
<array class="NSMutableArray" key="children">
|
2799
|
+
<reference ref="105068016"/>
|
2800
|
+
</array>
|
2801
|
+
<reference key="parent" ref="448692316"/>
|
2802
|
+
</object>
|
2803
|
+
<object class="IBObjectRecord">
|
2804
|
+
<int key="objectID">492</int>
|
2805
|
+
<reference key="object" ref="105068016"/>
|
2806
|
+
<reference key="parent" ref="992780483"/>
|
2807
|
+
</object>
|
2808
|
+
<object class="IBObjectRecord">
|
2809
|
+
<int key="objectID">494</int>
|
2810
|
+
<reference key="object" ref="976324537"/>
|
2811
|
+
<reference key="parent" ref="0"/>
|
2812
|
+
</object>
|
2813
|
+
<object class="IBObjectRecord">
|
2814
|
+
<int key="objectID">496</int>
|
2815
|
+
<reference key="object" ref="215659978"/>
|
2816
|
+
<array class="NSMutableArray" key="children">
|
2817
|
+
<reference ref="446991534"/>
|
2818
|
+
</array>
|
2819
|
+
<reference key="parent" ref="941447902"/>
|
2820
|
+
</object>
|
2821
|
+
<object class="IBObjectRecord">
|
2822
|
+
<int key="objectID">497</int>
|
2823
|
+
<reference key="object" ref="446991534"/>
|
2824
|
+
<array class="NSMutableArray" key="children">
|
2825
|
+
<reference ref="875092757"/>
|
2826
|
+
<reference ref="630155264"/>
|
2827
|
+
<reference ref="945678886"/>
|
2828
|
+
<reference ref="512868991"/>
|
2829
|
+
<reference ref="163117631"/>
|
2830
|
+
<reference ref="31516759"/>
|
2831
|
+
<reference ref="908105787"/>
|
2832
|
+
<reference ref="644046920"/>
|
2833
|
+
<reference ref="231811626"/>
|
2834
|
+
<reference ref="883618387"/>
|
2835
|
+
</array>
|
2836
|
+
<reference key="parent" ref="215659978"/>
|
2837
|
+
</object>
|
2838
|
+
<object class="IBObjectRecord">
|
2839
|
+
<int key="objectID">498</int>
|
2840
|
+
<reference key="object" ref="875092757"/>
|
2841
|
+
<reference key="parent" ref="446991534"/>
|
2842
|
+
</object>
|
2843
|
+
<object class="IBObjectRecord">
|
2844
|
+
<int key="objectID">499</int>
|
2845
|
+
<reference key="object" ref="630155264"/>
|
2846
|
+
<reference key="parent" ref="446991534"/>
|
2847
|
+
</object>
|
2848
|
+
<object class="IBObjectRecord">
|
2849
|
+
<int key="objectID">500</int>
|
2850
|
+
<reference key="object" ref="945678886"/>
|
2851
|
+
<reference key="parent" ref="446991534"/>
|
2852
|
+
</object>
|
2853
|
+
<object class="IBObjectRecord">
|
2854
|
+
<int key="objectID">501</int>
|
2855
|
+
<reference key="object" ref="512868991"/>
|
2856
|
+
<reference key="parent" ref="446991534"/>
|
2857
|
+
</object>
|
2858
|
+
<object class="IBObjectRecord">
|
2859
|
+
<int key="objectID">502</int>
|
2860
|
+
<reference key="object" ref="163117631"/>
|
2861
|
+
<reference key="parent" ref="446991534"/>
|
2862
|
+
</object>
|
2863
|
+
<object class="IBObjectRecord">
|
2864
|
+
<int key="objectID">503</int>
|
2865
|
+
<reference key="object" ref="31516759"/>
|
2866
|
+
<array class="NSMutableArray" key="children">
|
2867
|
+
<reference ref="956096989"/>
|
2868
|
+
</array>
|
2869
|
+
<reference key="parent" ref="446991534"/>
|
2870
|
+
</object>
|
2871
|
+
<object class="IBObjectRecord">
|
2872
|
+
<int key="objectID">504</int>
|
2873
|
+
<reference key="object" ref="908105787"/>
|
2874
|
+
<reference key="parent" ref="446991534"/>
|
2875
|
+
</object>
|
2876
|
+
<object class="IBObjectRecord">
|
2877
|
+
<int key="objectID">505</int>
|
2878
|
+
<reference key="object" ref="644046920"/>
|
2879
|
+
<reference key="parent" ref="446991534"/>
|
2880
|
+
</object>
|
2881
|
+
<object class="IBObjectRecord">
|
2882
|
+
<int key="objectID">506</int>
|
2883
|
+
<reference key="object" ref="231811626"/>
|
2884
|
+
<reference key="parent" ref="446991534"/>
|
2885
|
+
</object>
|
2886
|
+
<object class="IBObjectRecord">
|
2887
|
+
<int key="objectID">507</int>
|
2888
|
+
<reference key="object" ref="883618387"/>
|
2889
|
+
<reference key="parent" ref="446991534"/>
|
2890
|
+
</object>
|
2891
|
+
<object class="IBObjectRecord">
|
2892
|
+
<int key="objectID">508</int>
|
2893
|
+
<reference key="object" ref="956096989"/>
|
2894
|
+
<array class="NSMutableArray" key="children">
|
2895
|
+
<reference ref="257099033"/>
|
2896
|
+
<reference ref="551969625"/>
|
2897
|
+
<reference ref="249532473"/>
|
2898
|
+
<reference ref="607364498"/>
|
2899
|
+
<reference ref="508151438"/>
|
2900
|
+
<reference ref="981751889"/>
|
2901
|
+
<reference ref="380031999"/>
|
2902
|
+
<reference ref="825984362"/>
|
2903
|
+
<reference ref="560145579"/>
|
2904
|
+
</array>
|
2905
|
+
<reference key="parent" ref="31516759"/>
|
2906
|
+
</object>
|
2907
|
+
<object class="IBObjectRecord">
|
2908
|
+
<int key="objectID">509</int>
|
2909
|
+
<reference key="object" ref="257099033"/>
|
2910
|
+
<reference key="parent" ref="956096989"/>
|
2911
|
+
</object>
|
2912
|
+
<object class="IBObjectRecord">
|
2913
|
+
<int key="objectID">510</int>
|
2914
|
+
<reference key="object" ref="551969625"/>
|
2915
|
+
<reference key="parent" ref="956096989"/>
|
2916
|
+
</object>
|
2917
|
+
<object class="IBObjectRecord">
|
2918
|
+
<int key="objectID">511</int>
|
2919
|
+
<reference key="object" ref="249532473"/>
|
2920
|
+
<reference key="parent" ref="956096989"/>
|
2921
|
+
</object>
|
2922
|
+
<object class="IBObjectRecord">
|
2923
|
+
<int key="objectID">512</int>
|
2924
|
+
<reference key="object" ref="607364498"/>
|
2925
|
+
<reference key="parent" ref="956096989"/>
|
2926
|
+
</object>
|
2927
|
+
<object class="IBObjectRecord">
|
2928
|
+
<int key="objectID">513</int>
|
2929
|
+
<reference key="object" ref="508151438"/>
|
2930
|
+
<reference key="parent" ref="956096989"/>
|
2931
|
+
</object>
|
2932
|
+
<object class="IBObjectRecord">
|
2933
|
+
<int key="objectID">514</int>
|
2934
|
+
<reference key="object" ref="981751889"/>
|
2935
|
+
<reference key="parent" ref="956096989"/>
|
2936
|
+
</object>
|
2937
|
+
<object class="IBObjectRecord">
|
2938
|
+
<int key="objectID">515</int>
|
2939
|
+
<reference key="object" ref="380031999"/>
|
2940
|
+
<reference key="parent" ref="956096989"/>
|
2941
|
+
</object>
|
2942
|
+
<object class="IBObjectRecord">
|
2943
|
+
<int key="objectID">516</int>
|
2944
|
+
<reference key="object" ref="825984362"/>
|
2945
|
+
<reference key="parent" ref="956096989"/>
|
2946
|
+
</object>
|
2947
|
+
<object class="IBObjectRecord">
|
2948
|
+
<int key="objectID">517</int>
|
2949
|
+
<reference key="object" ref="560145579"/>
|
2950
|
+
<reference key="parent" ref="956096989"/>
|
2951
|
+
</object>
|
2952
|
+
<object class="IBObjectRecord">
|
2953
|
+
<int key="objectID">534</int>
|
2954
|
+
<reference key="object" ref="738670835"/>
|
2955
|
+
<reference key="parent" ref="963351320"/>
|
2956
|
+
</object>
|
2957
|
+
</array>
|
2958
|
+
</object>
|
2959
|
+
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
2960
|
+
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2961
|
+
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2962
|
+
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2963
|
+
<string key="112.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2964
|
+
<string key="124.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2965
|
+
<string key="125.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2966
|
+
<string key="126.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2967
|
+
<string key="129.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2968
|
+
<string key="130.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2969
|
+
<string key="131.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2970
|
+
<string key="134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2971
|
+
<string key="136.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2972
|
+
<string key="143.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2973
|
+
<string key="144.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2974
|
+
<string key="145.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2975
|
+
<string key="149.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2976
|
+
<string key="150.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2977
|
+
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2978
|
+
<string key="195.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2979
|
+
<string key="196.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2980
|
+
<string key="197.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2981
|
+
<string key="198.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2982
|
+
<string key="199.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2983
|
+
<string key="200.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2984
|
+
<string key="201.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2985
|
+
<string key="202.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2986
|
+
<string key="203.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2987
|
+
<string key="204.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2988
|
+
<string key="205.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2989
|
+
<string key="206.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2990
|
+
<string key="207.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2991
|
+
<string key="208.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2992
|
+
<string key="209.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2993
|
+
<string key="210.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2994
|
+
<string key="211.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2995
|
+
<string key="212.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2996
|
+
<string key="213.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2997
|
+
<string key="214.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2998
|
+
<string key="215.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
2999
|
+
<string key="216.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3000
|
+
<string key="217.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3001
|
+
<string key="218.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3002
|
+
<string key="219.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3003
|
+
<string key="220.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3004
|
+
<string key="221.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3005
|
+
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3006
|
+
<string key="236.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3007
|
+
<string key="239.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3008
|
+
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3009
|
+
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3010
|
+
<string key="295.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3011
|
+
<string key="296.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3012
|
+
<string key="297.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3013
|
+
<string key="298.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3014
|
+
<string key="346.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3015
|
+
<string key="348.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3016
|
+
<string key="349.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3017
|
+
<string key="350.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3018
|
+
<string key="351.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3019
|
+
<string key="354.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3020
|
+
<string key="375.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3021
|
+
<string key="376.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3022
|
+
<string key="377.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3023
|
+
<string key="388.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3024
|
+
<string key="389.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3025
|
+
<string key="390.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3026
|
+
<string key="391.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3027
|
+
<string key="392.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3028
|
+
<string key="393.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3029
|
+
<string key="394.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3030
|
+
<string key="395.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3031
|
+
<string key="396.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3032
|
+
<string key="397.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3033
|
+
<string key="398.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3034
|
+
<string key="399.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3035
|
+
<string key="400.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3036
|
+
<string key="401.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3037
|
+
<string key="402.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3038
|
+
<string key="403.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3039
|
+
<string key="404.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3040
|
+
<string key="405.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3041
|
+
<string key="406.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3042
|
+
<string key="407.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3043
|
+
<string key="408.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3044
|
+
<string key="409.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3045
|
+
<string key="410.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3046
|
+
<string key="411.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3047
|
+
<string key="412.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3048
|
+
<string key="413.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3049
|
+
<string key="414.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3050
|
+
<string key="415.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3051
|
+
<string key="416.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3052
|
+
<string key="417.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3053
|
+
<string key="418.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3054
|
+
<string key="419.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3055
|
+
<string key="420.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3056
|
+
<string key="450.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3057
|
+
<string key="451.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3058
|
+
<string key="452.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3059
|
+
<string key="453.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3060
|
+
<string key="454.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3061
|
+
<string key="457.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3062
|
+
<string key="459.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3063
|
+
<string key="460.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3064
|
+
<string key="462.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3065
|
+
<string key="465.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3066
|
+
<string key="466.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3067
|
+
<string key="485.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3068
|
+
<string key="490.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3069
|
+
<string key="491.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3070
|
+
<string key="492.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3071
|
+
<string key="494.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3072
|
+
<string key="496.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3073
|
+
<string key="497.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3074
|
+
<string key="498.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3075
|
+
<string key="499.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3076
|
+
<string key="5.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3077
|
+
<string key="500.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3078
|
+
<string key="501.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3079
|
+
<string key="502.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3080
|
+
<string key="503.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3081
|
+
<string key="504.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3082
|
+
<string key="505.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3083
|
+
<string key="506.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3084
|
+
<string key="507.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3085
|
+
<string key="508.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3086
|
+
<string key="509.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3087
|
+
<string key="510.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3088
|
+
<string key="511.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3089
|
+
<string key="512.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3090
|
+
<string key="513.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3091
|
+
<string key="514.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3092
|
+
<string key="515.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3093
|
+
<string key="516.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3094
|
+
<string key="517.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3095
|
+
<string key="534.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3096
|
+
<string key="56.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3097
|
+
<string key="57.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3098
|
+
<string key="58.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3099
|
+
<string key="72.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3100
|
+
<string key="73.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3101
|
+
<string key="74.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3102
|
+
<string key="75.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3103
|
+
<string key="77.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3104
|
+
<string key="78.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3105
|
+
<string key="79.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3106
|
+
<string key="81.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3107
|
+
<string key="82.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3108
|
+
<string key="83.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3109
|
+
<string key="92.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
|
3110
|
+
</dictionary>
|
3111
|
+
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
3112
|
+
<nil key="activeLocalization"/>
|
3113
|
+
<dictionary class="NSMutableDictionary" key="localizations"/>
|
3114
|
+
<nil key="sourceID"/>
|
3115
|
+
<int key="maxID">535</int>
|
3116
|
+
</object>
|
3117
|
+
<object class="IBClassDescriber" key="IBDocument.Classes">
|
3118
|
+
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
3119
|
+
<object class="IBPartialClassDescription">
|
3120
|
+
<string key="className">AppDelegate</string>
|
3121
|
+
<string key="superclassName">NSObject</string>
|
3122
|
+
<object class="NSMutableDictionary" key="outlets">
|
3123
|
+
<string key="NS.key.0">window</string>
|
3124
|
+
<string key="NS.object.0">NSWindow</string>
|
3125
|
+
</object>
|
3126
|
+
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
3127
|
+
<string key="NS.key.0">window</string>
|
3128
|
+
<object class="IBToOneOutletInfo" key="NS.object.0">
|
3129
|
+
<string key="name">window</string>
|
3130
|
+
<string key="candidateClassName">NSWindow</string>
|
3131
|
+
</object>
|
3132
|
+
</object>
|
3133
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3134
|
+
<string key="majorKey">IBProjectSource</string>
|
3135
|
+
<string key="minorKey">./Classes/AppDelegate.h</string>
|
3136
|
+
</object>
|
3137
|
+
</object>
|
3138
|
+
<object class="IBPartialClassDescription">
|
3139
|
+
<string key="className">NSDocument</string>
|
3140
|
+
<dictionary class="NSMutableDictionary" key="actions">
|
3141
|
+
<string key="printDocument:">id</string>
|
3142
|
+
<string key="revertDocumentToSaved:">id</string>
|
3143
|
+
<string key="runPageLayout:">id</string>
|
3144
|
+
<string key="saveDocument:">id</string>
|
3145
|
+
<string key="saveDocumentAs:">id</string>
|
3146
|
+
<string key="saveDocumentTo:">id</string>
|
3147
|
+
</dictionary>
|
3148
|
+
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
3149
|
+
<object class="IBActionInfo" key="printDocument:">
|
3150
|
+
<string key="name">printDocument:</string>
|
3151
|
+
<string key="candidateClassName">id</string>
|
3152
|
+
</object>
|
3153
|
+
<object class="IBActionInfo" key="revertDocumentToSaved:">
|
3154
|
+
<string key="name">revertDocumentToSaved:</string>
|
3155
|
+
<string key="candidateClassName">id</string>
|
3156
|
+
</object>
|
3157
|
+
<object class="IBActionInfo" key="runPageLayout:">
|
3158
|
+
<string key="name">runPageLayout:</string>
|
3159
|
+
<string key="candidateClassName">id</string>
|
3160
|
+
</object>
|
3161
|
+
<object class="IBActionInfo" key="saveDocument:">
|
3162
|
+
<string key="name">saveDocument:</string>
|
3163
|
+
<string key="candidateClassName">id</string>
|
3164
|
+
</object>
|
3165
|
+
<object class="IBActionInfo" key="saveDocumentAs:">
|
3166
|
+
<string key="name">saveDocumentAs:</string>
|
3167
|
+
<string key="candidateClassName">id</string>
|
3168
|
+
</object>
|
3169
|
+
<object class="IBActionInfo" key="saveDocumentTo:">
|
3170
|
+
<string key="name">saveDocumentTo:</string>
|
3171
|
+
<string key="candidateClassName">id</string>
|
3172
|
+
</object>
|
3173
|
+
</dictionary>
|
3174
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
3175
|
+
<string key="majorKey">IBProjectSource</string>
|
3176
|
+
<string key="minorKey">./Classes/NSDocument.h</string>
|
3177
|
+
</object>
|
3178
|
+
</object>
|
3179
|
+
</array>
|
3180
|
+
</object>
|
3181
|
+
<int key="IBDocument.localizationMode">0</int>
|
3182
|
+
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
|
3183
|
+
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
3184
|
+
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
3185
|
+
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
3186
|
+
<string key="NSMenuCheckmark">{11, 11}</string>
|
3187
|
+
<string key="NSMenuMixedState">{10, 3}</string>
|
3188
|
+
</dictionary>
|
3189
|
+
<bool key="IBDocument.UseAutolayout">YES</bool>
|
3190
|
+
</data>
|
3191
|
+
</archive>
|