choctop 0.12.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.bundle/config +2 -0
- data/.bundle/environment.rb +276 -0
- data/{spec/spec.opts → .rspec} +0 -0
- data/Gemfile +26 -0
- data/Gemfile.lock +89 -0
- data/History.txt +5 -0
- data/Manifest.txt +27 -2
- data/README.rdoc +15 -2
- data/Rakefile +7 -15
- data/choctop.gemspec +71 -0
- data/features/dmg.feature +10 -0
- data/features/fixtures/App With Whitespace/App With Whitespace.xcodeproj/TemplateIcon.icns +0 -0
- data/features/fixtures/App With Whitespace/App With Whitespace.xcodeproj/project.pbxproj +276 -0
- data/features/fixtures/App With Whitespace/App With Whitespace_Prefix.pch +7 -0
- data/features/fixtures/App With Whitespace/English.lproj/InfoPlist.strings +0 -0
- data/features/fixtures/App With Whitespace/English.lproj/MainMenu.xib +3034 -0
- data/features/fixtures/App With Whitespace/Info.plist +30 -0
- data/features/fixtures/App With Whitespace/main.m +14 -0
- data/features/fixtures/MyBundle.tmbundle/Snippets/hello world.tmSnippet +16 -0
- data/features/fixtures/MyBundle.tmbundle/info.plist +10 -0
- data/features/fixtures/SampleApp/English.lproj/InfoPlist.strings +0 -0
- data/features/fixtures/SampleApp/English.lproj/MainMenu.xib +3034 -0
- data/features/fixtures/SampleApp/Info.plist +30 -0
- data/features/fixtures/SampleApp/README.txt +1 -0
- data/features/fixtures/SampleApp/SampleApp.xcodeproj/TemplateIcon.icns +0 -0
- data/features/fixtures/SampleApp/SampleApp.xcodeproj/project.pbxproj +284 -0
- data/features/fixtures/SampleApp/SampleApp_Prefix.pch +7 -0
- data/features/fixtures/SampleApp/main.m +14 -0
- data/features/step_definitions/generator_steps.rb +14 -0
- data/features/support/dmg_helpers.rb +14 -0
- data/features/support/env.rb +3 -5
- data/features/support/matchers.rb +7 -9
- data/lib/choctop.rb +26 -5
- data/lib/choctop/appcast.rb +2 -3
- data/lib/choctop/dmg.rb +19 -6
- data/lib/choctop/rake_tasks.rb +4 -0
- data/spec/dmg_spec.rb +37 -0
- data/spec/fixtures/Info.plist +30 -0
- data/spec/spec_helper.rb +3 -2
- data/spec/version_helper_spec.rb +26 -0
- metadata +108 -36
- data/tasks/rspec.rake +0 -21
| @@ -0,0 +1,30 @@ | |
| 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>English</string>
         | 
| 7 | 
            +
            	<key>CFBundleExecutable</key>
         | 
| 8 | 
            +
            	<string>${EXECUTABLE_NAME}</string>
         | 
| 9 | 
            +
            	<key>CFBundleIconFile</key>
         | 
| 10 | 
            +
            	<string></string>
         | 
| 11 | 
            +
            	<key>CFBundleIdentifier</key>
         | 
| 12 | 
            +
            	<string>com.yourcompany.${PRODUCT_NAME:identifier}</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>CFBundleSignature</key>
         | 
| 20 | 
            +
            	<string>????</string>
         | 
| 21 | 
            +
            	<key>CFBundleVersion</key>
         | 
| 22 | 
            +
            	<string>1.0</string>
         | 
| 23 | 
            +
            	<key>NSMainNibFile</key>
         | 
| 24 | 
            +
            	<string>MainMenu</string>
         | 
| 25 | 
            +
            	<key>NSPrincipalClass</key>
         | 
| 26 | 
            +
            	<string>NSApplication</string>
         | 
| 27 | 
            +
            	<key>SUFeedURL</key>
         | 
| 28 | 
            +
            	<string>http://mocra.com/some/url.xml</string>
         | 
| 29 | 
            +
            </dict>
         | 
| 30 | 
            +
            </plist>
         | 
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            //
         | 
| 2 | 
            +
            //  main.m
         | 
| 3 | 
            +
            //  App With Whitespace
         | 
| 4 | 
            +
            //
         | 
| 5 | 
            +
            //  Created by Dr Nic on 3/02/09.
         | 
| 6 | 
            +
            //  Copyright Mocra 2009. All rights reserved.
         | 
| 7 | 
            +
            //
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            #import <Cocoa/Cocoa.h>
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            int main(int argc, char *argv[])
         | 
| 12 | 
            +
            {
         | 
| 13 | 
            +
                return NSApplicationMain(argc,  (const char **) argv);
         | 
| 14 | 
            +
            }
         | 
| @@ -0,0 +1,16 @@ | |
| 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>content</key>
         | 
| 6 | 
            +
            	<string>hello world</string>
         | 
| 7 | 
            +
            	<key>name</key>
         | 
| 8 | 
            +
            	<string>hello world</string>
         | 
| 9 | 
            +
            	<key>scope</key>
         | 
| 10 | 
            +
            	<string>source.fake</string>
         | 
| 11 | 
            +
            	<key>tabTrigger</key>
         | 
| 12 | 
            +
            	<string>hw</string>
         | 
| 13 | 
            +
            	<key>uuid</key>
         | 
| 14 | 
            +
            	<string>FC174733-BA2B-4C84-8872-9F5FF6BEA6AE</string>
         | 
| 15 | 
            +
            </dict>
         | 
| 16 | 
            +
            </plist>
         | 
| @@ -0,0 +1,10 @@ | |
| 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>name</key>
         | 
| 6 | 
            +
            	<string>My Bundle</string>
         | 
| 7 | 
            +
            	<key>uuid</key>
         | 
| 8 | 
            +
            	<string>033772CF-17CE-44D2-A59A-8A90DACB6419</string>
         | 
| 9 | 
            +
            </dict>
         | 
| 10 | 
            +
            </plist>
         | 
| Binary file | 
| @@ -0,0 +1,3034 @@ | |
| 1 | 
            +
            <?xml version="1.0" encoding="UTF-8"?>
         | 
| 2 | 
            +
            <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.02">
         | 
| 3 | 
            +
            	<data>
         | 
| 4 | 
            +
            		<int key="IBDocument.SystemTarget">1050</int>
         | 
| 5 | 
            +
            		<string key="IBDocument.SystemVersion">9D29</string>
         | 
| 6 | 
            +
            		<string key="IBDocument.InterfaceBuilderVersion">664</string>
         | 
| 7 | 
            +
            		<string key="IBDocument.AppKitVersion">949.33</string>
         | 
| 8 | 
            +
            		<string key="IBDocument.HIToolboxVersion">352.00</string>
         | 
| 9 | 
            +
            		<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
         | 
| 10 | 
            +
            			<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 11 | 
            +
            			<integer value="57"/>
         | 
| 12 | 
            +
            			<integer value="371"/>
         | 
| 13 | 
            +
            		</object>
         | 
| 14 | 
            +
            		<object class="NSArray" key="IBDocument.PluginDependencies">
         | 
| 15 | 
            +
            			<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 16 | 
            +
            			<string>com.apple.InterfaceBuilderKit</string>
         | 
| 17 | 
            +
            			<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 18 | 
            +
            		</object>
         | 
| 19 | 
            +
            		<object class="NSMutableArray" key="IBDocument.RootObjects" id="1048">
         | 
| 20 | 
            +
            			<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 21 | 
            +
            			<object class="NSCustomObject" id="1021">
         | 
| 22 | 
            +
            				<string key="NSClassName">NSApplication</string>
         | 
| 23 | 
            +
            			</object>
         | 
| 24 | 
            +
            			<object class="NSCustomObject" id="1014">
         | 
| 25 | 
            +
            				<string key="NSClassName">FirstResponder</string>
         | 
| 26 | 
            +
            			</object>
         | 
| 27 | 
            +
            			<object class="NSCustomObject" id="1050">
         | 
| 28 | 
            +
            				<string key="NSClassName">NSApplication</string>
         | 
| 29 | 
            +
            			</object>
         | 
| 30 | 
            +
            			<object class="NSMenu" id="649796088">
         | 
| 31 | 
            +
            				<string key="NSTitle">AMainMenu</string>
         | 
| 32 | 
            +
            				<object class="NSMutableArray" key="NSMenuItems">
         | 
| 33 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 34 | 
            +
            					<object class="NSMenuItem" id="694149608">
         | 
| 35 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 36 | 
            +
            						<string key="NSTitle">NewApplication</string>
         | 
| 37 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 38 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 39 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 40 | 
            +
            						<object class="NSCustomResource" key="NSOnImage" id="35465992">
         | 
| 41 | 
            +
            							<string key="NSClassName">NSImage</string>
         | 
| 42 | 
            +
            							<string key="NSResourceName">NSMenuCheckmark</string>
         | 
| 43 | 
            +
            						</object>
         | 
| 44 | 
            +
            						<object class="NSCustomResource" key="NSMixedImage" id="502551668">
         | 
| 45 | 
            +
            							<string key="NSClassName">NSImage</string>
         | 
| 46 | 
            +
            							<string key="NSResourceName">NSMenuMixedState</string>
         | 
| 47 | 
            +
            						</object>
         | 
| 48 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 49 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="110575045">
         | 
| 50 | 
            +
            							<string key="NSTitle">NewApplication</string>
         | 
| 51 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 52 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 53 | 
            +
            								<object class="NSMenuItem" id="238522557">
         | 
| 54 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 55 | 
            +
            									<string key="NSTitle">About NewApplication</string>
         | 
| 56 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 57 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 58 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 59 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 60 | 
            +
            								</object>
         | 
| 61 | 
            +
            								<object class="NSMenuItem" id="304266470">
         | 
| 62 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 63 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 64 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 65 | 
            +
            									<string key="NSTitle"/>
         | 
| 66 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 67 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 68 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 69 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 70 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 71 | 
            +
            								</object>
         | 
| 72 | 
            +
            								<object class="NSMenuItem" id="609285721">
         | 
| 73 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 74 | 
            +
            									<string type="base64-UTF8" key="NSTitle">UHJlZmVyZW5jZXPigKY</string>
         | 
| 75 | 
            +
            									<string key="NSKeyEquiv">,</string>
         | 
| 76 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 77 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 78 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 79 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 80 | 
            +
            								</object>
         | 
| 81 | 
            +
            								<object class="NSMenuItem" id="481834944">
         | 
| 82 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 83 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 84 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 85 | 
            +
            									<string key="NSTitle"/>
         | 
| 86 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 87 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 88 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 89 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 90 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 91 | 
            +
            								</object>
         | 
| 92 | 
            +
            								<object class="NSMenuItem" id="1046388886">
         | 
| 93 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 94 | 
            +
            									<string key="NSTitle">Services</string>
         | 
| 95 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 96 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 97 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 98 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 99 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 100 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 101 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="752062318">
         | 
| 102 | 
            +
            										<string key="NSTitle">Services</string>
         | 
| 103 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 104 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 105 | 
            +
            										</object>
         | 
| 106 | 
            +
            										<string key="NSName">_NSServicesMenu</string>
         | 
| 107 | 
            +
            									</object>
         | 
| 108 | 
            +
            								</object>
         | 
| 109 | 
            +
            								<object class="NSMenuItem" id="646227648">
         | 
| 110 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 111 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 112 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 113 | 
            +
            									<string key="NSTitle"/>
         | 
| 114 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 115 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 116 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 117 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 118 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 119 | 
            +
            								</object>
         | 
| 120 | 
            +
            								<object class="NSMenuItem" id="755159360">
         | 
| 121 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 122 | 
            +
            									<string key="NSTitle">Hide NewApplication</string>
         | 
| 123 | 
            +
            									<string key="NSKeyEquiv">h</string>
         | 
| 124 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 125 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 126 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 127 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 128 | 
            +
            								</object>
         | 
| 129 | 
            +
            								<object class="NSMenuItem" id="342932134">
         | 
| 130 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 131 | 
            +
            									<string key="NSTitle">Hide Others</string>
         | 
| 132 | 
            +
            									<string key="NSKeyEquiv">h</string>
         | 
| 133 | 
            +
            									<int key="NSKeyEquivModMask">1572864</int>
         | 
| 134 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 135 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 136 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 137 | 
            +
            								</object>
         | 
| 138 | 
            +
            								<object class="NSMenuItem" id="908899353">
         | 
| 139 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 140 | 
            +
            									<string key="NSTitle">Show All</string>
         | 
| 141 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 142 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 143 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 144 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 145 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 146 | 
            +
            								</object>
         | 
| 147 | 
            +
            								<object class="NSMenuItem" id="1056857174">
         | 
| 148 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 149 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 150 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 151 | 
            +
            									<string key="NSTitle"/>
         | 
| 152 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 153 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 154 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 155 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 156 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 157 | 
            +
            								</object>
         | 
| 158 | 
            +
            								<object class="NSMenuItem" id="632727374">
         | 
| 159 | 
            +
            									<reference key="NSMenu" ref="110575045"/>
         | 
| 160 | 
            +
            									<string key="NSTitle">Quit NewApplication</string>
         | 
| 161 | 
            +
            									<string key="NSKeyEquiv">q</string>
         | 
| 162 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 163 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 164 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 165 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 166 | 
            +
            								</object>
         | 
| 167 | 
            +
            							</object>
         | 
| 168 | 
            +
            							<string key="NSName">_NSAppleMenu</string>
         | 
| 169 | 
            +
            						</object>
         | 
| 170 | 
            +
            					</object>
         | 
| 171 | 
            +
            					<object class="NSMenuItem" id="379814623">
         | 
| 172 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 173 | 
            +
            						<string key="NSTitle">File</string>
         | 
| 174 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 175 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 176 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 177 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 178 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 179 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 180 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="720053764">
         | 
| 181 | 
            +
            							<string key="NSTitle">File</string>
         | 
| 182 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 183 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 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 type="base64-UTF8" key="NSTitle">T3BlbuKApg</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 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 214 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 215 | 
            +
            											<object class="NSMenuItem" id="759406840">
         | 
| 216 | 
            +
            												<reference key="NSMenu" ref="1065607017"/>
         | 
| 217 | 
            +
            												<string key="NSTitle">Clear Menu</string>
         | 
| 218 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 219 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 220 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 221 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 222 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 223 | 
            +
            											</object>
         | 
| 224 | 
            +
            										</object>
         | 
| 225 | 
            +
            										<string key="NSName">_NSRecentDocumentsMenu</string>
         | 
| 226 | 
            +
            									</object>
         | 
| 227 | 
            +
            								</object>
         | 
| 228 | 
            +
            								<object class="NSMenuItem" id="425164168">
         | 
| 229 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 230 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 231 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 232 | 
            +
            									<string key="NSTitle"/>
         | 
| 233 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 234 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 235 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 236 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 237 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 238 | 
            +
            								</object>
         | 
| 239 | 
            +
            								<object class="NSMenuItem" id="776162233">
         | 
| 240 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 241 | 
            +
            									<string key="NSTitle">Close</string>
         | 
| 242 | 
            +
            									<string key="NSKeyEquiv">w</string>
         | 
| 243 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 244 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 245 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 246 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 247 | 
            +
            								</object>
         | 
| 248 | 
            +
            								<object class="NSMenuItem" id="1023925487">
         | 
| 249 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 250 | 
            +
            									<string key="NSTitle">Save</string>
         | 
| 251 | 
            +
            									<string key="NSKeyEquiv">s</string>
         | 
| 252 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 253 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 254 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 255 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 256 | 
            +
            								</object>
         | 
| 257 | 
            +
            								<object class="NSMenuItem" id="117038363">
         | 
| 258 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 259 | 
            +
            									<string type="base64-UTF8" key="NSTitle">U2F2ZSBBc+KApg</string>
         | 
| 260 | 
            +
            									<string key="NSKeyEquiv">S</string>
         | 
| 261 | 
            +
            									<int key="NSKeyEquivModMask">1179648</int>
         | 
| 262 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 263 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 264 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 265 | 
            +
            								</object>
         | 
| 266 | 
            +
            								<object class="NSMenuItem" id="579971712">
         | 
| 267 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 268 | 
            +
            									<string key="NSTitle">Revert to Saved</string>
         | 
| 269 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 270 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 271 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 272 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 273 | 
            +
            								</object>
         | 
| 274 | 
            +
            								<object class="NSMenuItem" id="1010469920">
         | 
| 275 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 276 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 277 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 278 | 
            +
            									<string key="NSTitle"/>
         | 
| 279 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 280 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 281 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 282 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 283 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 284 | 
            +
            								</object>
         | 
| 285 | 
            +
            								<object class="NSMenuItem" id="294629803">
         | 
| 286 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 287 | 
            +
            									<string key="NSTitle">Page Setup...</string>
         | 
| 288 | 
            +
            									<string key="NSKeyEquiv">P</string>
         | 
| 289 | 
            +
            									<int key="NSKeyEquivModMask">1179648</int>
         | 
| 290 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 291 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 292 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 293 | 
            +
            									<string key="NSToolTip"/>
         | 
| 294 | 
            +
            								</object>
         | 
| 295 | 
            +
            								<object class="NSMenuItem" id="49223823">
         | 
| 296 | 
            +
            									<reference key="NSMenu" ref="720053764"/>
         | 
| 297 | 
            +
            									<string type="base64-UTF8" key="NSTitle">UHJpbnTigKY</string>
         | 
| 298 | 
            +
            									<string key="NSKeyEquiv">p</string>
         | 
| 299 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 300 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 301 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 302 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 303 | 
            +
            								</object>
         | 
| 304 | 
            +
            							</object>
         | 
| 305 | 
            +
            						</object>
         | 
| 306 | 
            +
            					</object>
         | 
| 307 | 
            +
            					<object class="NSMenuItem" id="952259628">
         | 
| 308 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 309 | 
            +
            						<string key="NSTitle">Edit</string>
         | 
| 310 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 311 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 312 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 313 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 314 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 315 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 316 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="789758025">
         | 
| 317 | 
            +
            							<string key="NSTitle">Edit</string>
         | 
| 318 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 319 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 320 | 
            +
            								<object class="NSMenuItem" id="1058277027">
         | 
| 321 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 322 | 
            +
            									<string key="NSTitle">Undo</string>
         | 
| 323 | 
            +
            									<string key="NSKeyEquiv">z</string>
         | 
| 324 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 325 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 326 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 327 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 328 | 
            +
            								</object>
         | 
| 329 | 
            +
            								<object class="NSMenuItem" id="790794224">
         | 
| 330 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 331 | 
            +
            									<string key="NSTitle">Redo</string>
         | 
| 332 | 
            +
            									<string key="NSKeyEquiv">Z</string>
         | 
| 333 | 
            +
            									<int key="NSKeyEquivModMask">1179648</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="1040322652">
         | 
| 339 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 340 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 341 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 342 | 
            +
            									<string key="NSTitle"/>
         | 
| 343 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 344 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 345 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 346 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 347 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 348 | 
            +
            								</object>
         | 
| 349 | 
            +
            								<object class="NSMenuItem" id="296257095">
         | 
| 350 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 351 | 
            +
            									<string key="NSTitle">Cut</string>
         | 
| 352 | 
            +
            									<string key="NSKeyEquiv">x</string>
         | 
| 353 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 354 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 355 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 356 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 357 | 
            +
            								</object>
         | 
| 358 | 
            +
            								<object class="NSMenuItem" id="860595796">
         | 
| 359 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 360 | 
            +
            									<string key="NSTitle">Copy</string>
         | 
| 361 | 
            +
            									<string key="NSKeyEquiv">c</string>
         | 
| 362 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 363 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 364 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 365 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 366 | 
            +
            								</object>
         | 
| 367 | 
            +
            								<object class="NSMenuItem" id="29853731">
         | 
| 368 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 369 | 
            +
            									<string key="NSTitle">Paste</string>
         | 
| 370 | 
            +
            									<string key="NSKeyEquiv">v</string>
         | 
| 371 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 372 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 373 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 374 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 375 | 
            +
            								</object>
         | 
| 376 | 
            +
            								<object class="NSMenuItem" id="437104165">
         | 
| 377 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 378 | 
            +
            									<string key="NSTitle">Delete</string>
         | 
| 379 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 380 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 381 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 382 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 383 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 384 | 
            +
            								</object>
         | 
| 385 | 
            +
            								<object class="NSMenuItem" id="583158037">
         | 
| 386 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 387 | 
            +
            									<string key="NSTitle">Select All</string>
         | 
| 388 | 
            +
            									<string key="NSKeyEquiv">a</string>
         | 
| 389 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 390 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 391 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 392 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 393 | 
            +
            								</object>
         | 
| 394 | 
            +
            								<object class="NSMenuItem" id="212016141">
         | 
| 395 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 396 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 397 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 398 | 
            +
            									<string key="NSTitle"/>
         | 
| 399 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 400 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 401 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 402 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 403 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 404 | 
            +
            								</object>
         | 
| 405 | 
            +
            								<object class="NSMenuItem" id="892235320">
         | 
| 406 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 407 | 
            +
            									<string key="NSTitle">Find</string>
         | 
| 408 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 409 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 410 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 411 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 412 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 413 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 414 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="963351320">
         | 
| 415 | 
            +
            										<string key="NSTitle">Find</string>
         | 
| 416 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 417 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 418 | 
            +
            											<object class="NSMenuItem" id="447796847">
         | 
| 419 | 
            +
            												<reference key="NSMenu" ref="963351320"/>
         | 
| 420 | 
            +
            												<string type="base64-UTF8" key="NSTitle">RmluZOKApg</string>
         | 
| 421 | 
            +
            												<string key="NSKeyEquiv">f</string>
         | 
| 422 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 423 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 424 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 425 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 426 | 
            +
            												<int key="NSTag">1</int>
         | 
| 427 | 
            +
            											</object>
         | 
| 428 | 
            +
            											<object class="NSMenuItem" id="326711663">
         | 
| 429 | 
            +
            												<reference key="NSMenu" ref="963351320"/>
         | 
| 430 | 
            +
            												<string key="NSTitle">Find Next</string>
         | 
| 431 | 
            +
            												<string key="NSKeyEquiv">g</string>
         | 
| 432 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 433 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 434 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 435 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 436 | 
            +
            												<int key="NSTag">2</int>
         | 
| 437 | 
            +
            											</object>
         | 
| 438 | 
            +
            											<object class="NSMenuItem" id="270902937">
         | 
| 439 | 
            +
            												<reference key="NSMenu" ref="963351320"/>
         | 
| 440 | 
            +
            												<string key="NSTitle">Find Previous</string>
         | 
| 441 | 
            +
            												<string key="NSKeyEquiv">G</string>
         | 
| 442 | 
            +
            												<int key="NSKeyEquivModMask">1179648</int>
         | 
| 443 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 444 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 445 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 446 | 
            +
            												<int key="NSTag">3</int>
         | 
| 447 | 
            +
            											</object>
         | 
| 448 | 
            +
            											<object class="NSMenuItem" id="159080638">
         | 
| 449 | 
            +
            												<reference key="NSMenu" ref="963351320"/>
         | 
| 450 | 
            +
            												<string key="NSTitle">Use Selection for Find</string>
         | 
| 451 | 
            +
            												<string key="NSKeyEquiv">e</string>
         | 
| 452 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 453 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 454 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 455 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 456 | 
            +
            												<int key="NSTag">7</int>
         | 
| 457 | 
            +
            											</object>
         | 
| 458 | 
            +
            											<object class="NSMenuItem" id="88285865">
         | 
| 459 | 
            +
            												<reference key="NSMenu" ref="963351320"/>
         | 
| 460 | 
            +
            												<string key="NSTitle">Jump to Selection</string>
         | 
| 461 | 
            +
            												<string key="NSKeyEquiv">j</string>
         | 
| 462 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 463 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 464 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 465 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 466 | 
            +
            											</object>
         | 
| 467 | 
            +
            										</object>
         | 
| 468 | 
            +
            									</object>
         | 
| 469 | 
            +
            								</object>
         | 
| 470 | 
            +
            								<object class="NSMenuItem" id="972420730">
         | 
| 471 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 472 | 
            +
            									<string key="NSTitle">Spelling and Grammar</string>
         | 
| 473 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 474 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 475 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 476 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 477 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 478 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 479 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="769623530">
         | 
| 480 | 
            +
            										<string key="NSTitle">Spelling and Grammar</string>
         | 
| 481 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 482 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 483 | 
            +
            											<object class="NSMenuItem" id="679648819">
         | 
| 484 | 
            +
            												<reference key="NSMenu" ref="769623530"/>
         | 
| 485 | 
            +
            												<string type="base64-UTF8" key="NSTitle">U2hvdyBTcGVsbGluZ+KApg</string>
         | 
| 486 | 
            +
            												<string key="NSKeyEquiv">:</string>
         | 
| 487 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 488 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 489 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 490 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 491 | 
            +
            											</object>
         | 
| 492 | 
            +
            											<object class="NSMenuItem" id="96193923">
         | 
| 493 | 
            +
            												<reference key="NSMenu" ref="769623530"/>
         | 
| 494 | 
            +
            												<string key="NSTitle">Check Spelling</string>
         | 
| 495 | 
            +
            												<string key="NSKeyEquiv">;</string>
         | 
| 496 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 497 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 498 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 499 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 500 | 
            +
            											</object>
         | 
| 501 | 
            +
            											<object class="NSMenuItem" id="948374510">
         | 
| 502 | 
            +
            												<reference key="NSMenu" ref="769623530"/>
         | 
| 503 | 
            +
            												<string key="NSTitle">Check Spelling While Typing</string>
         | 
| 504 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 505 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 506 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 507 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 508 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 509 | 
            +
            											</object>
         | 
| 510 | 
            +
            											<object class="NSMenuItem" id="967646866">
         | 
| 511 | 
            +
            												<reference key="NSMenu" ref="769623530"/>
         | 
| 512 | 
            +
            												<string key="NSTitle">Check Grammar With Spelling</string>
         | 
| 513 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 514 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 515 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 516 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 517 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 518 | 
            +
            											</object>
         | 
| 519 | 
            +
            										</object>
         | 
| 520 | 
            +
            									</object>
         | 
| 521 | 
            +
            								</object>
         | 
| 522 | 
            +
            								<object class="NSMenuItem" id="507821607">
         | 
| 523 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 524 | 
            +
            									<string key="NSTitle">Substitutions</string>
         | 
| 525 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 526 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 527 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 528 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 529 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 530 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 531 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="698887838">
         | 
| 532 | 
            +
            										<string key="NSTitle">Substitutions</string>
         | 
| 533 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 534 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 535 | 
            +
            											<object class="NSMenuItem" id="605118523">
         | 
| 536 | 
            +
            												<reference key="NSMenu" ref="698887838"/>
         | 
| 537 | 
            +
            												<string key="NSTitle">Smart Copy/Paste</string>
         | 
| 538 | 
            +
            												<string key="NSKeyEquiv">f</string>
         | 
| 539 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 540 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 541 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 542 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 543 | 
            +
            												<int key="NSTag">1</int>
         | 
| 544 | 
            +
            											</object>
         | 
| 545 | 
            +
            											<object class="NSMenuItem" id="197661976">
         | 
| 546 | 
            +
            												<reference key="NSMenu" ref="698887838"/>
         | 
| 547 | 
            +
            												<string key="NSTitle">Smart Quotes</string>
         | 
| 548 | 
            +
            												<string key="NSKeyEquiv">g</string>
         | 
| 549 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 550 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 551 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 552 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 553 | 
            +
            												<int key="NSTag">2</int>
         | 
| 554 | 
            +
            											</object>
         | 
| 555 | 
            +
            											<object class="NSMenuItem" id="708854459">
         | 
| 556 | 
            +
            												<reference key="NSMenu" ref="698887838"/>
         | 
| 557 | 
            +
            												<string key="NSTitle">Smart Links</string>
         | 
| 558 | 
            +
            												<string key="NSKeyEquiv">G</string>
         | 
| 559 | 
            +
            												<int key="NSKeyEquivModMask">1179648</int>
         | 
| 560 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 561 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 562 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 563 | 
            +
            												<int key="NSTag">3</int>
         | 
| 564 | 
            +
            											</object>
         | 
| 565 | 
            +
            										</object>
         | 
| 566 | 
            +
            									</object>
         | 
| 567 | 
            +
            								</object>
         | 
| 568 | 
            +
            								<object class="NSMenuItem" id="676164635">
         | 
| 569 | 
            +
            									<reference key="NSMenu" ref="789758025"/>
         | 
| 570 | 
            +
            									<string key="NSTitle">Speech</string>
         | 
| 571 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 572 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 573 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 574 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 575 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 576 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 577 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="785027613">
         | 
| 578 | 
            +
            										<string key="NSTitle">Speech</string>
         | 
| 579 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 580 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 581 | 
            +
            											<object class="NSMenuItem" id="731782645">
         | 
| 582 | 
            +
            												<reference key="NSMenu" ref="785027613"/>
         | 
| 583 | 
            +
            												<string key="NSTitle">Start Speaking</string>
         | 
| 584 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 585 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 586 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 587 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 588 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 589 | 
            +
            											</object>
         | 
| 590 | 
            +
            											<object class="NSMenuItem" id="680220178">
         | 
| 591 | 
            +
            												<reference key="NSMenu" ref="785027613"/>
         | 
| 592 | 
            +
            												<string key="NSTitle">Stop Speaking</string>
         | 
| 593 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 594 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 595 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 596 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 597 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 598 | 
            +
            											</object>
         | 
| 599 | 
            +
            										</object>
         | 
| 600 | 
            +
            									</object>
         | 
| 601 | 
            +
            								</object>
         | 
| 602 | 
            +
            							</object>
         | 
| 603 | 
            +
            						</object>
         | 
| 604 | 
            +
            					</object>
         | 
| 605 | 
            +
            					<object class="NSMenuItem" id="302598603">
         | 
| 606 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 607 | 
            +
            						<string key="NSTitle">Format</string>
         | 
| 608 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 609 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 610 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 611 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 612 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 613 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="941447902">
         | 
| 614 | 
            +
            							<string key="NSTitle">Format</string>
         | 
| 615 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 616 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 617 | 
            +
            								<object class="NSMenuItem" id="792887677">
         | 
| 618 | 
            +
            									<reference key="NSMenu" ref="941447902"/>
         | 
| 619 | 
            +
            									<string key="NSTitle">Font</string>
         | 
| 620 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 621 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 622 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 623 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 624 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 625 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="786677654">
         | 
| 626 | 
            +
            										<string key="NSTitle">Font</string>
         | 
| 627 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 628 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 629 | 
            +
            											<object class="NSMenuItem" id="159677712">
         | 
| 630 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 631 | 
            +
            												<string key="NSTitle">Show Fonts</string>
         | 
| 632 | 
            +
            												<string key="NSKeyEquiv">t</string>
         | 
| 633 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 634 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 635 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 636 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 637 | 
            +
            											</object>
         | 
| 638 | 
            +
            											<object class="NSMenuItem" id="305399458">
         | 
| 639 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 640 | 
            +
            												<string key="NSTitle">Bold</string>
         | 
| 641 | 
            +
            												<string key="NSKeyEquiv">b</string>
         | 
| 642 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 643 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 644 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 645 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 646 | 
            +
            												<int key="NSTag">2</int>
         | 
| 647 | 
            +
            											</object>
         | 
| 648 | 
            +
            											<object class="NSMenuItem" id="814362025">
         | 
| 649 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 650 | 
            +
            												<string key="NSTitle">Italic</string>
         | 
| 651 | 
            +
            												<string key="NSKeyEquiv">i</string>
         | 
| 652 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 653 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 654 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 655 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 656 | 
            +
            												<int key="NSTag">1</int>
         | 
| 657 | 
            +
            											</object>
         | 
| 658 | 
            +
            											<object class="NSMenuItem" id="330926929">
         | 
| 659 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 660 | 
            +
            												<string key="NSTitle">Underline</string>
         | 
| 661 | 
            +
            												<string key="NSKeyEquiv">u</string>
         | 
| 662 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 663 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 664 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 665 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 666 | 
            +
            											</object>
         | 
| 667 | 
            +
            											<object class="NSMenuItem" id="533507878">
         | 
| 668 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 669 | 
            +
            												<bool key="NSIsDisabled">YES</bool>
         | 
| 670 | 
            +
            												<bool key="NSIsSeparator">YES</bool>
         | 
| 671 | 
            +
            												<string key="NSTitle"/>
         | 
| 672 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 673 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 674 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 675 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 676 | 
            +
            											</object>
         | 
| 677 | 
            +
            											<object class="NSMenuItem" id="158063935">
         | 
| 678 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 679 | 
            +
            												<string key="NSTitle">Bigger</string>
         | 
| 680 | 
            +
            												<string key="NSKeyEquiv">+</string>
         | 
| 681 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 682 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 683 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 684 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 685 | 
            +
            												<int key="NSTag">3</int>
         | 
| 686 | 
            +
            											</object>
         | 
| 687 | 
            +
            											<object class="NSMenuItem" id="885547335">
         | 
| 688 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 689 | 
            +
            												<string key="NSTitle">Smaller</string>
         | 
| 690 | 
            +
            												<string key="NSKeyEquiv">-</string>
         | 
| 691 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 692 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 693 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 694 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 695 | 
            +
            												<int key="NSTag">4</int>
         | 
| 696 | 
            +
            											</object>
         | 
| 697 | 
            +
            											<object class="NSMenuItem" id="901062459">
         | 
| 698 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 699 | 
            +
            												<bool key="NSIsDisabled">YES</bool>
         | 
| 700 | 
            +
            												<bool key="NSIsSeparator">YES</bool>
         | 
| 701 | 
            +
            												<string key="NSTitle"/>
         | 
| 702 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 703 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 704 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 705 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 706 | 
            +
            											</object>
         | 
| 707 | 
            +
            											<object class="NSMenuItem" id="767671776">
         | 
| 708 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 709 | 
            +
            												<string key="NSTitle">Kern</string>
         | 
| 710 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 711 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 712 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 713 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 714 | 
            +
            												<string key="NSAction">submenuAction:</string>
         | 
| 715 | 
            +
            												<object class="NSMenu" key="NSSubmenu" id="175441468">
         | 
| 716 | 
            +
            													<string key="NSTitle">Kern</string>
         | 
| 717 | 
            +
            													<object class="NSMutableArray" key="NSMenuItems">
         | 
| 718 | 
            +
            														<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 719 | 
            +
            														<object class="NSMenuItem" id="252969304">
         | 
| 720 | 
            +
            															<reference key="NSMenu" ref="175441468"/>
         | 
| 721 | 
            +
            															<string key="NSTitle">Use Default</string>
         | 
| 722 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 723 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 724 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 725 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 726 | 
            +
            														</object>
         | 
| 727 | 
            +
            														<object class="NSMenuItem" id="766922938">
         | 
| 728 | 
            +
            															<reference key="NSMenu" ref="175441468"/>
         | 
| 729 | 
            +
            															<string key="NSTitle">Use None</string>
         | 
| 730 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 731 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 732 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 733 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 734 | 
            +
            														</object>
         | 
| 735 | 
            +
            														<object class="NSMenuItem" id="677519740">
         | 
| 736 | 
            +
            															<reference key="NSMenu" ref="175441468"/>
         | 
| 737 | 
            +
            															<string key="NSTitle">Tighten</string>
         | 
| 738 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 739 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 740 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 741 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 742 | 
            +
            														</object>
         | 
| 743 | 
            +
            														<object class="NSMenuItem" id="238351151">
         | 
| 744 | 
            +
            															<reference key="NSMenu" ref="175441468"/>
         | 
| 745 | 
            +
            															<string key="NSTitle">Loosen</string>
         | 
| 746 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 747 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 748 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 749 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 750 | 
            +
            														</object>
         | 
| 751 | 
            +
            													</object>
         | 
| 752 | 
            +
            												</object>
         | 
| 753 | 
            +
            											</object>
         | 
| 754 | 
            +
            											<object class="NSMenuItem" id="691570813">
         | 
| 755 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 756 | 
            +
            												<string key="NSTitle">Ligature</string>
         | 
| 757 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 758 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 759 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 760 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 761 | 
            +
            												<string key="NSAction">submenuAction:</string>
         | 
| 762 | 
            +
            												<object class="NSMenu" key="NSSubmenu" id="1058217995">
         | 
| 763 | 
            +
            													<string key="NSTitle">Ligature</string>
         | 
| 764 | 
            +
            													<object class="NSMutableArray" key="NSMenuItems">
         | 
| 765 | 
            +
            														<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 766 | 
            +
            														<object class="NSMenuItem" id="706297211">
         | 
| 767 | 
            +
            															<reference key="NSMenu" ref="1058217995"/>
         | 
| 768 | 
            +
            															<string key="NSTitle">Use Default</string>
         | 
| 769 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 770 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 771 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 772 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 773 | 
            +
            														</object>
         | 
| 774 | 
            +
            														<object class="NSMenuItem" id="568384683">
         | 
| 775 | 
            +
            															<reference key="NSMenu" ref="1058217995"/>
         | 
| 776 | 
            +
            															<string key="NSTitle">Use None</string>
         | 
| 777 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 778 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 779 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 780 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 781 | 
            +
            														</object>
         | 
| 782 | 
            +
            														<object class="NSMenuItem" id="663508465">
         | 
| 783 | 
            +
            															<reference key="NSMenu" ref="1058217995"/>
         | 
| 784 | 
            +
            															<string key="NSTitle">Use All</string>
         | 
| 785 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 786 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 787 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 788 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 789 | 
            +
            														</object>
         | 
| 790 | 
            +
            													</object>
         | 
| 791 | 
            +
            												</object>
         | 
| 792 | 
            +
            											</object>
         | 
| 793 | 
            +
            											<object class="NSMenuItem" id="769124883">
         | 
| 794 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 795 | 
            +
            												<string key="NSTitle">Baseline</string>
         | 
| 796 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 797 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 798 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 799 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 800 | 
            +
            												<string key="NSAction">submenuAction:</string>
         | 
| 801 | 
            +
            												<object class="NSMenu" key="NSSubmenu" id="18263474">
         | 
| 802 | 
            +
            													<string key="NSTitle">Baseline</string>
         | 
| 803 | 
            +
            													<object class="NSMutableArray" key="NSMenuItems">
         | 
| 804 | 
            +
            														<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 805 | 
            +
            														<object class="NSMenuItem" id="257962622">
         | 
| 806 | 
            +
            															<reference key="NSMenu" ref="18263474"/>
         | 
| 807 | 
            +
            															<string key="NSTitle">Use Default</string>
         | 
| 808 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 809 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 810 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 811 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 812 | 
            +
            														</object>
         | 
| 813 | 
            +
            														<object class="NSMenuItem" id="644725453">
         | 
| 814 | 
            +
            															<reference key="NSMenu" ref="18263474"/>
         | 
| 815 | 
            +
            															<string key="NSTitle">Superscript</string>
         | 
| 816 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 817 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 818 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 819 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 820 | 
            +
            														</object>
         | 
| 821 | 
            +
            														<object class="NSMenuItem" id="1037576581">
         | 
| 822 | 
            +
            															<reference key="NSMenu" ref="18263474"/>
         | 
| 823 | 
            +
            															<string key="NSTitle">Subscript</string>
         | 
| 824 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 825 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 826 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 827 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 828 | 
            +
            														</object>
         | 
| 829 | 
            +
            														<object class="NSMenuItem" id="941806246">
         | 
| 830 | 
            +
            															<reference key="NSMenu" ref="18263474"/>
         | 
| 831 | 
            +
            															<string key="NSTitle">Raise</string>
         | 
| 832 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 833 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 834 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 835 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 836 | 
            +
            														</object>
         | 
| 837 | 
            +
            														<object class="NSMenuItem" id="1045724900">
         | 
| 838 | 
            +
            															<reference key="NSMenu" ref="18263474"/>
         | 
| 839 | 
            +
            															<string key="NSTitle">Lower</string>
         | 
| 840 | 
            +
            															<string key="NSKeyEquiv"/>
         | 
| 841 | 
            +
            															<int key="NSMnemonicLoc">2147483647</int>
         | 
| 842 | 
            +
            															<reference key="NSOnImage" ref="35465992"/>
         | 
| 843 | 
            +
            															<reference key="NSMixedImage" ref="502551668"/>
         | 
| 844 | 
            +
            														</object>
         | 
| 845 | 
            +
            													</object>
         | 
| 846 | 
            +
            												</object>
         | 
| 847 | 
            +
            											</object>
         | 
| 848 | 
            +
            											<object class="NSMenuItem" id="739652853">
         | 
| 849 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 850 | 
            +
            												<bool key="NSIsDisabled">YES</bool>
         | 
| 851 | 
            +
            												<bool key="NSIsSeparator">YES</bool>
         | 
| 852 | 
            +
            												<string key="NSTitle"/>
         | 
| 853 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 854 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 855 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 856 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 857 | 
            +
            											</object>
         | 
| 858 | 
            +
            											<object class="NSMenuItem" id="1012600125">
         | 
| 859 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 860 | 
            +
            												<string key="NSTitle">Show Colors</string>
         | 
| 861 | 
            +
            												<string key="NSKeyEquiv">C</string>
         | 
| 862 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 863 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 864 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 865 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 866 | 
            +
            											</object>
         | 
| 867 | 
            +
            											<object class="NSMenuItem" id="214559597">
         | 
| 868 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 869 | 
            +
            												<bool key="NSIsDisabled">YES</bool>
         | 
| 870 | 
            +
            												<bool key="NSIsSeparator">YES</bool>
         | 
| 871 | 
            +
            												<string key="NSTitle"/>
         | 
| 872 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 873 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 874 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 875 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 876 | 
            +
            											</object>
         | 
| 877 | 
            +
            											<object class="NSMenuItem" id="596732606">
         | 
| 878 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 879 | 
            +
            												<string key="NSTitle">Copy Style</string>
         | 
| 880 | 
            +
            												<string key="NSKeyEquiv">c</string>
         | 
| 881 | 
            +
            												<int key="NSKeyEquivModMask">1572864</int>
         | 
| 882 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 883 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 884 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 885 | 
            +
            											</object>
         | 
| 886 | 
            +
            											<object class="NSMenuItem" id="393423671">
         | 
| 887 | 
            +
            												<reference key="NSMenu" ref="786677654"/>
         | 
| 888 | 
            +
            												<string key="NSTitle">Paste Style</string>
         | 
| 889 | 
            +
            												<string key="NSKeyEquiv">v</string>
         | 
| 890 | 
            +
            												<int key="NSKeyEquivModMask">1572864</int>
         | 
| 891 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 892 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 893 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 894 | 
            +
            											</object>
         | 
| 895 | 
            +
            										</object>
         | 
| 896 | 
            +
            										<string key="NSName">_NSFontMenu</string>
         | 
| 897 | 
            +
            									</object>
         | 
| 898 | 
            +
            								</object>
         | 
| 899 | 
            +
            								<object class="NSMenuItem" id="15516124">
         | 
| 900 | 
            +
            									<reference key="NSMenu" ref="941447902"/>
         | 
| 901 | 
            +
            									<string key="NSTitle">Text</string>
         | 
| 902 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 903 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 904 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 905 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 906 | 
            +
            									<string key="NSAction">submenuAction:</string>
         | 
| 907 | 
            +
            									<object class="NSMenu" key="NSSubmenu" id="23081656">
         | 
| 908 | 
            +
            										<string key="NSTitle">Text</string>
         | 
| 909 | 
            +
            										<object class="NSMutableArray" key="NSMenuItems">
         | 
| 910 | 
            +
            											<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 911 | 
            +
            											<object class="NSMenuItem" id="135107054">
         | 
| 912 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 913 | 
            +
            												<string key="NSTitle">Align Left</string>
         | 
| 914 | 
            +
            												<string key="NSKeyEquiv">{</string>
         | 
| 915 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 916 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 917 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 918 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 919 | 
            +
            											</object>
         | 
| 920 | 
            +
            											<object class="NSMenuItem" id="310547522">
         | 
| 921 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 922 | 
            +
            												<string key="NSTitle">Center</string>
         | 
| 923 | 
            +
            												<string key="NSKeyEquiv">|</string>
         | 
| 924 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 925 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 926 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 927 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 928 | 
            +
            											</object>
         | 
| 929 | 
            +
            											<object class="NSMenuItem" id="436088763">
         | 
| 930 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 931 | 
            +
            												<string key="NSTitle">Justify</string>
         | 
| 932 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 933 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 934 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 935 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 936 | 
            +
            											</object>
         | 
| 937 | 
            +
            											<object class="NSMenuItem" id="498119243">
         | 
| 938 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 939 | 
            +
            												<string key="NSTitle">Align Right</string>
         | 
| 940 | 
            +
            												<string key="NSKeyEquiv">}</string>
         | 
| 941 | 
            +
            												<int key="NSKeyEquivModMask">1048576</int>
         | 
| 942 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 943 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 944 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 945 | 
            +
            											</object>
         | 
| 946 | 
            +
            											<object class="NSMenuItem" id="607995063">
         | 
| 947 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 948 | 
            +
            												<bool key="NSIsDisabled">YES</bool>
         | 
| 949 | 
            +
            												<bool key="NSIsSeparator">YES</bool>
         | 
| 950 | 
            +
            												<string key="NSTitle"/>
         | 
| 951 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 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="420564933">
         | 
| 957 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 958 | 
            +
            												<string key="NSTitle">Show Ruler</string>
         | 
| 959 | 
            +
            												<string key="NSKeyEquiv"/>
         | 
| 960 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 961 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 962 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 963 | 
            +
            											</object>
         | 
| 964 | 
            +
            											<object class="NSMenuItem" id="479856769">
         | 
| 965 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 966 | 
            +
            												<string key="NSTitle">Copy Ruler</string>
         | 
| 967 | 
            +
            												<string key="NSKeyEquiv">c</string>
         | 
| 968 | 
            +
            												<int key="NSKeyEquivModMask">1310720</int>
         | 
| 969 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 970 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 971 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 972 | 
            +
            											</object>
         | 
| 973 | 
            +
            											<object class="NSMenuItem" id="333628178">
         | 
| 974 | 
            +
            												<reference key="NSMenu" ref="23081656"/>
         | 
| 975 | 
            +
            												<string key="NSTitle">Paste Ruler</string>
         | 
| 976 | 
            +
            												<string key="NSKeyEquiv">v</string>
         | 
| 977 | 
            +
            												<int key="NSKeyEquivModMask">1310720</int>
         | 
| 978 | 
            +
            												<int key="NSMnemonicLoc">2147483647</int>
         | 
| 979 | 
            +
            												<reference key="NSOnImage" ref="35465992"/>
         | 
| 980 | 
            +
            												<reference key="NSMixedImage" ref="502551668"/>
         | 
| 981 | 
            +
            											</object>
         | 
| 982 | 
            +
            										</object>
         | 
| 983 | 
            +
            									</object>
         | 
| 984 | 
            +
            								</object>
         | 
| 985 | 
            +
            							</object>
         | 
| 986 | 
            +
            						</object>
         | 
| 987 | 
            +
            					</object>
         | 
| 988 | 
            +
            					<object class="NSMenuItem" id="586577488">
         | 
| 989 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 990 | 
            +
            						<string key="NSTitle">View</string>
         | 
| 991 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 992 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 993 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 994 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 995 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 996 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 997 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="466310130">
         | 
| 998 | 
            +
            							<string key="NSTitle">View</string>
         | 
| 999 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 1000 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1001 | 
            +
            								<object class="NSMenuItem" id="102151532">
         | 
| 1002 | 
            +
            									<reference key="NSMenu" ref="466310130"/>
         | 
| 1003 | 
            +
            									<string key="NSTitle">Show Toolbar</string>
         | 
| 1004 | 
            +
            									<string key="NSKeyEquiv">t</string>
         | 
| 1005 | 
            +
            									<int key="NSKeyEquivModMask">1572864</int>
         | 
| 1006 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1007 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 1008 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1009 | 
            +
            								</object>
         | 
| 1010 | 
            +
            								<object class="NSMenuItem" id="237841660">
         | 
| 1011 | 
            +
            									<reference key="NSMenu" ref="466310130"/>
         | 
| 1012 | 
            +
            									<string type="base64-UTF8" key="NSTitle">Q3VzdG9taXplIFRvb2xiYXLigKY</string>
         | 
| 1013 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 1014 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1015 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1016 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 1017 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1018 | 
            +
            								</object>
         | 
| 1019 | 
            +
            							</object>
         | 
| 1020 | 
            +
            						</object>
         | 
| 1021 | 
            +
            					</object>
         | 
| 1022 | 
            +
            					<object class="NSMenuItem" id="713487014">
         | 
| 1023 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 1024 | 
            +
            						<string key="NSTitle">Window</string>
         | 
| 1025 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 1026 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1027 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1028 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 1029 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1030 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 1031 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="835318025">
         | 
| 1032 | 
            +
            							<string key="NSTitle">Window</string>
         | 
| 1033 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 1034 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1035 | 
            +
            								<object class="NSMenuItem" id="1011231497">
         | 
| 1036 | 
            +
            									<reference key="NSMenu" ref="835318025"/>
         | 
| 1037 | 
            +
            									<string key="NSTitle">Minimize</string>
         | 
| 1038 | 
            +
            									<string key="NSKeyEquiv">m</string>
         | 
| 1039 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 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="575023229">
         | 
| 1045 | 
            +
            									<reference key="NSMenu" ref="835318025"/>
         | 
| 1046 | 
            +
            									<string key="NSTitle">Zoom</string>
         | 
| 1047 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 1048 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1049 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1050 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 1051 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1052 | 
            +
            								</object>
         | 
| 1053 | 
            +
            								<object class="NSMenuItem" id="299356726">
         | 
| 1054 | 
            +
            									<reference key="NSMenu" ref="835318025"/>
         | 
| 1055 | 
            +
            									<bool key="NSIsDisabled">YES</bool>
         | 
| 1056 | 
            +
            									<bool key="NSIsSeparator">YES</bool>
         | 
| 1057 | 
            +
            									<string key="NSTitle"/>
         | 
| 1058 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 1059 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 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="625202149">
         | 
| 1065 | 
            +
            									<reference key="NSMenu" ref="835318025"/>
         | 
| 1066 | 
            +
            									<string key="NSTitle">Bring All to Front</string>
         | 
| 1067 | 
            +
            									<string key="NSKeyEquiv"/>
         | 
| 1068 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1069 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1070 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 1071 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1072 | 
            +
            								</object>
         | 
| 1073 | 
            +
            							</object>
         | 
| 1074 | 
            +
            							<string key="NSName">_NSWindowsMenu</string>
         | 
| 1075 | 
            +
            						</object>
         | 
| 1076 | 
            +
            					</object>
         | 
| 1077 | 
            +
            					<object class="NSMenuItem" id="391199113">
         | 
| 1078 | 
            +
            						<reference key="NSMenu" ref="649796088"/>
         | 
| 1079 | 
            +
            						<string key="NSTitle">Help</string>
         | 
| 1080 | 
            +
            						<string key="NSKeyEquiv"/>
         | 
| 1081 | 
            +
            						<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1082 | 
            +
            						<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1083 | 
            +
            						<reference key="NSOnImage" ref="35465992"/>
         | 
| 1084 | 
            +
            						<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1085 | 
            +
            						<string key="NSAction">submenuAction:</string>
         | 
| 1086 | 
            +
            						<object class="NSMenu" key="NSSubmenu" id="374024848">
         | 
| 1087 | 
            +
            							<string key="NSTitle">Help</string>
         | 
| 1088 | 
            +
            							<object class="NSMutableArray" key="NSMenuItems">
         | 
| 1089 | 
            +
            								<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1090 | 
            +
            								<object class="NSMenuItem" id="238773614">
         | 
| 1091 | 
            +
            									<reference key="NSMenu" ref="374024848"/>
         | 
| 1092 | 
            +
            									<string key="NSTitle">NewApplication Help</string>
         | 
| 1093 | 
            +
            									<string key="NSKeyEquiv">?</string>
         | 
| 1094 | 
            +
            									<int key="NSKeyEquivModMask">1048576</int>
         | 
| 1095 | 
            +
            									<int key="NSMnemonicLoc">2147483647</int>
         | 
| 1096 | 
            +
            									<reference key="NSOnImage" ref="35465992"/>
         | 
| 1097 | 
            +
            									<reference key="NSMixedImage" ref="502551668"/>
         | 
| 1098 | 
            +
            								</object>
         | 
| 1099 | 
            +
            							</object>
         | 
| 1100 | 
            +
            						</object>
         | 
| 1101 | 
            +
            					</object>
         | 
| 1102 | 
            +
            				</object>
         | 
| 1103 | 
            +
            				<string key="NSName">_NSMainMenu</string>
         | 
| 1104 | 
            +
            			</object>
         | 
| 1105 | 
            +
            			<object class="NSWindowTemplate" id="972006081">
         | 
| 1106 | 
            +
            				<int key="NSWindowStyleMask">15</int>
         | 
| 1107 | 
            +
            				<int key="NSWindowBacking">2</int>
         | 
| 1108 | 
            +
            				<string key="NSWindowRect">{{335, 390}, {480, 360}}</string>
         | 
| 1109 | 
            +
            				<int key="NSWTFlags">1946157056</int>
         | 
| 1110 | 
            +
            				<string key="NSWindowTitle">Window</string>
         | 
| 1111 | 
            +
            				<string key="NSWindowClass">NSWindow</string>
         | 
| 1112 | 
            +
            				<nil key="NSViewClass"/>
         | 
| 1113 | 
            +
            				<string key="NSWindowContentMaxSize">{3.40282e+38, 3.40282e+38}</string>
         | 
| 1114 | 
            +
            				<object class="NSView" key="NSWindowView" id="439893737">
         | 
| 1115 | 
            +
            					<reference key="NSNextResponder"/>
         | 
| 1116 | 
            +
            					<int key="NSvFlags">256</int>
         | 
| 1117 | 
            +
            					<string key="NSFrameSize">{480, 360}</string>
         | 
| 1118 | 
            +
            					<reference key="NSSuperview"/>
         | 
| 1119 | 
            +
            				</object>
         | 
| 1120 | 
            +
            				<string key="NSScreenRect">{{0, 0}, {1440, 878}}</string>
         | 
| 1121 | 
            +
            				<string key="NSMaxSize">{3.40282e+38, 3.40282e+38}</string>
         | 
| 1122 | 
            +
            			</object>
         | 
| 1123 | 
            +
            			<object class="NSCustomObject" id="755631768">
         | 
| 1124 | 
            +
            				<string key="NSClassName">NSFontManager</string>
         | 
| 1125 | 
            +
            			</object>
         | 
| 1126 | 
            +
            		</object>
         | 
| 1127 | 
            +
            		<object class="IBObjectContainer" key="IBDocument.Objects">
         | 
| 1128 | 
            +
            			<object class="NSMutableArray" key="connectionRecords">
         | 
| 1129 | 
            +
            				<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1130 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1131 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1132 | 
            +
            						<string key="label">performMiniaturize:</string>
         | 
| 1133 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1134 | 
            +
            						<reference key="destination" ref="1011231497"/>
         | 
| 1135 | 
            +
            					</object>
         | 
| 1136 | 
            +
            					<int key="connectionID">37</int>
         | 
| 1137 | 
            +
            				</object>
         | 
| 1138 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1139 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1140 | 
            +
            						<string key="label">arrangeInFront:</string>
         | 
| 1141 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1142 | 
            +
            						<reference key="destination" ref="625202149"/>
         | 
| 1143 | 
            +
            					</object>
         | 
| 1144 | 
            +
            					<int key="connectionID">39</int>
         | 
| 1145 | 
            +
            				</object>
         | 
| 1146 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1147 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1148 | 
            +
            						<string key="label">print:</string>
         | 
| 1149 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1150 | 
            +
            						<reference key="destination" ref="49223823"/>
         | 
| 1151 | 
            +
            					</object>
         | 
| 1152 | 
            +
            					<int key="connectionID">86</int>
         | 
| 1153 | 
            +
            				</object>
         | 
| 1154 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1155 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1156 | 
            +
            						<string key="label">runPageLayout:</string>
         | 
| 1157 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1158 | 
            +
            						<reference key="destination" ref="294629803"/>
         | 
| 1159 | 
            +
            					</object>
         | 
| 1160 | 
            +
            					<int key="connectionID">87</int>
         | 
| 1161 | 
            +
            				</object>
         | 
| 1162 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1163 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1164 | 
            +
            						<string key="label">clearRecentDocuments:</string>
         | 
| 1165 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1166 | 
            +
            						<reference key="destination" ref="759406840"/>
         | 
| 1167 | 
            +
            					</object>
         | 
| 1168 | 
            +
            					<int key="connectionID">127</int>
         | 
| 1169 | 
            +
            				</object>
         | 
| 1170 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1171 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1172 | 
            +
            						<string key="label">orderFrontStandardAboutPanel:</string>
         | 
| 1173 | 
            +
            						<reference key="source" ref="1021"/>
         | 
| 1174 | 
            +
            						<reference key="destination" ref="238522557"/>
         | 
| 1175 | 
            +
            					</object>
         | 
| 1176 | 
            +
            					<int key="connectionID">142</int>
         | 
| 1177 | 
            +
            				</object>
         | 
| 1178 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1179 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1180 | 
            +
            						<string key="label">performClose:</string>
         | 
| 1181 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1182 | 
            +
            						<reference key="destination" ref="776162233"/>
         | 
| 1183 | 
            +
            					</object>
         | 
| 1184 | 
            +
            					<int key="connectionID">193</int>
         | 
| 1185 | 
            +
            				</object>
         | 
| 1186 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1187 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1188 | 
            +
            						<string key="label">toggleContinuousSpellChecking:</string>
         | 
| 1189 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1190 | 
            +
            						<reference key="destination" ref="948374510"/>
         | 
| 1191 | 
            +
            					</object>
         | 
| 1192 | 
            +
            					<int key="connectionID">222</int>
         | 
| 1193 | 
            +
            				</object>
         | 
| 1194 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1195 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1196 | 
            +
            						<string key="label">undo:</string>
         | 
| 1197 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1198 | 
            +
            						<reference key="destination" ref="1058277027"/>
         | 
| 1199 | 
            +
            					</object>
         | 
| 1200 | 
            +
            					<int key="connectionID">223</int>
         | 
| 1201 | 
            +
            				</object>
         | 
| 1202 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1203 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1204 | 
            +
            						<string key="label">copy:</string>
         | 
| 1205 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1206 | 
            +
            						<reference key="destination" ref="860595796"/>
         | 
| 1207 | 
            +
            					</object>
         | 
| 1208 | 
            +
            					<int key="connectionID">224</int>
         | 
| 1209 | 
            +
            				</object>
         | 
| 1210 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1211 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1212 | 
            +
            						<string key="label">checkSpelling:</string>
         | 
| 1213 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1214 | 
            +
            						<reference key="destination" ref="96193923"/>
         | 
| 1215 | 
            +
            					</object>
         | 
| 1216 | 
            +
            					<int key="connectionID">225</int>
         | 
| 1217 | 
            +
            				</object>
         | 
| 1218 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1219 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1220 | 
            +
            						<string key="label">paste:</string>
         | 
| 1221 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1222 | 
            +
            						<reference key="destination" ref="29853731"/>
         | 
| 1223 | 
            +
            					</object>
         | 
| 1224 | 
            +
            					<int key="connectionID">226</int>
         | 
| 1225 | 
            +
            				</object>
         | 
| 1226 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1227 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1228 | 
            +
            						<string key="label">stopSpeaking:</string>
         | 
| 1229 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1230 | 
            +
            						<reference key="destination" ref="680220178"/>
         | 
| 1231 | 
            +
            					</object>
         | 
| 1232 | 
            +
            					<int key="connectionID">227</int>
         | 
| 1233 | 
            +
            				</object>
         | 
| 1234 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1235 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1236 | 
            +
            						<string key="label">cut:</string>
         | 
| 1237 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1238 | 
            +
            						<reference key="destination" ref="296257095"/>
         | 
| 1239 | 
            +
            					</object>
         | 
| 1240 | 
            +
            					<int key="connectionID">228</int>
         | 
| 1241 | 
            +
            				</object>
         | 
| 1242 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1243 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1244 | 
            +
            						<string key="label">showGuessPanel:</string>
         | 
| 1245 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1246 | 
            +
            						<reference key="destination" ref="679648819"/>
         | 
| 1247 | 
            +
            					</object>
         | 
| 1248 | 
            +
            					<int key="connectionID">230</int>
         | 
| 1249 | 
            +
            				</object>
         | 
| 1250 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1251 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1252 | 
            +
            						<string key="label">redo:</string>
         | 
| 1253 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1254 | 
            +
            						<reference key="destination" ref="790794224"/>
         | 
| 1255 | 
            +
            					</object>
         | 
| 1256 | 
            +
            					<int key="connectionID">231</int>
         | 
| 1257 | 
            +
            				</object>
         | 
| 1258 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1259 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1260 | 
            +
            						<string key="label">selectAll:</string>
         | 
| 1261 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1262 | 
            +
            						<reference key="destination" ref="583158037"/>
         | 
| 1263 | 
            +
            					</object>
         | 
| 1264 | 
            +
            					<int key="connectionID">232</int>
         | 
| 1265 | 
            +
            				</object>
         | 
| 1266 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1267 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1268 | 
            +
            						<string key="label">startSpeaking:</string>
         | 
| 1269 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1270 | 
            +
            						<reference key="destination" ref="731782645"/>
         | 
| 1271 | 
            +
            					</object>
         | 
| 1272 | 
            +
            					<int key="connectionID">233</int>
         | 
| 1273 | 
            +
            				</object>
         | 
| 1274 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1275 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1276 | 
            +
            						<string key="label">delete:</string>
         | 
| 1277 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1278 | 
            +
            						<reference key="destination" ref="437104165"/>
         | 
| 1279 | 
            +
            					</object>
         | 
| 1280 | 
            +
            					<int key="connectionID">235</int>
         | 
| 1281 | 
            +
            				</object>
         | 
| 1282 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1283 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1284 | 
            +
            						<string key="label">performZoom:</string>
         | 
| 1285 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1286 | 
            +
            						<reference key="destination" ref="575023229"/>
         | 
| 1287 | 
            +
            					</object>
         | 
| 1288 | 
            +
            					<int key="connectionID">240</int>
         | 
| 1289 | 
            +
            				</object>
         | 
| 1290 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1291 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1292 | 
            +
            						<string key="label">performFindPanelAction:</string>
         | 
| 1293 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1294 | 
            +
            						<reference key="destination" ref="447796847"/>
         | 
| 1295 | 
            +
            					</object>
         | 
| 1296 | 
            +
            					<int key="connectionID">241</int>
         | 
| 1297 | 
            +
            				</object>
         | 
| 1298 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1299 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1300 | 
            +
            						<string key="label">centerSelectionInVisibleArea:</string>
         | 
| 1301 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1302 | 
            +
            						<reference key="destination" ref="88285865"/>
         | 
| 1303 | 
            +
            					</object>
         | 
| 1304 | 
            +
            					<int key="connectionID">245</int>
         | 
| 1305 | 
            +
            				</object>
         | 
| 1306 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1307 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1308 | 
            +
            						<string key="label">toggleGrammarChecking:</string>
         | 
| 1309 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1310 | 
            +
            						<reference key="destination" ref="967646866"/>
         | 
| 1311 | 
            +
            					</object>
         | 
| 1312 | 
            +
            					<int key="connectionID">347</int>
         | 
| 1313 | 
            +
            				</object>
         | 
| 1314 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1315 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1316 | 
            +
            						<string key="label">toggleSmartInsertDelete:</string>
         | 
| 1317 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1318 | 
            +
            						<reference key="destination" ref="605118523"/>
         | 
| 1319 | 
            +
            					</object>
         | 
| 1320 | 
            +
            					<int key="connectionID">355</int>
         | 
| 1321 | 
            +
            				</object>
         | 
| 1322 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1323 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1324 | 
            +
            						<string key="label">toggleAutomaticQuoteSubstitution:</string>
         | 
| 1325 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1326 | 
            +
            						<reference key="destination" ref="197661976"/>
         | 
| 1327 | 
            +
            					</object>
         | 
| 1328 | 
            +
            					<int key="connectionID">356</int>
         | 
| 1329 | 
            +
            				</object>
         | 
| 1330 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1331 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1332 | 
            +
            						<string key="label">toggleAutomaticLinkDetection:</string>
         | 
| 1333 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1334 | 
            +
            						<reference key="destination" ref="708854459"/>
         | 
| 1335 | 
            +
            					</object>
         | 
| 1336 | 
            +
            					<int key="connectionID">357</int>
         | 
| 1337 | 
            +
            				</object>
         | 
| 1338 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1339 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1340 | 
            +
            						<string key="label">showHelp:</string>
         | 
| 1341 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1342 | 
            +
            						<reference key="destination" ref="238773614"/>
         | 
| 1343 | 
            +
            					</object>
         | 
| 1344 | 
            +
            					<int key="connectionID">360</int>
         | 
| 1345 | 
            +
            				</object>
         | 
| 1346 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1347 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1348 | 
            +
            						<string key="label">saveDocument:</string>
         | 
| 1349 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1350 | 
            +
            						<reference key="destination" ref="1023925487"/>
         | 
| 1351 | 
            +
            					</object>
         | 
| 1352 | 
            +
            					<int key="connectionID">362</int>
         | 
| 1353 | 
            +
            				</object>
         | 
| 1354 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1355 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1356 | 
            +
            						<string key="label">saveDocumentAs:</string>
         | 
| 1357 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1358 | 
            +
            						<reference key="destination" ref="117038363"/>
         | 
| 1359 | 
            +
            					</object>
         | 
| 1360 | 
            +
            					<int key="connectionID">363</int>
         | 
| 1361 | 
            +
            				</object>
         | 
| 1362 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1363 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1364 | 
            +
            						<string key="label">revertDocumentToSaved:</string>
         | 
| 1365 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1366 | 
            +
            						<reference key="destination" ref="579971712"/>
         | 
| 1367 | 
            +
            					</object>
         | 
| 1368 | 
            +
            					<int key="connectionID">364</int>
         | 
| 1369 | 
            +
            				</object>
         | 
| 1370 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1371 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1372 | 
            +
            						<string key="label">runToolbarCustomizationPalette:</string>
         | 
| 1373 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1374 | 
            +
            						<reference key="destination" ref="237841660"/>
         | 
| 1375 | 
            +
            					</object>
         | 
| 1376 | 
            +
            					<int key="connectionID">365</int>
         | 
| 1377 | 
            +
            				</object>
         | 
| 1378 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1379 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1380 | 
            +
            						<string key="label">toggleToolbarShown:</string>
         | 
| 1381 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1382 | 
            +
            						<reference key="destination" ref="102151532"/>
         | 
| 1383 | 
            +
            					</object>
         | 
| 1384 | 
            +
            					<int key="connectionID">366</int>
         | 
| 1385 | 
            +
            				</object>
         | 
| 1386 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1387 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1388 | 
            +
            						<string key="label">hide:</string>
         | 
| 1389 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1390 | 
            +
            						<reference key="destination" ref="755159360"/>
         | 
| 1391 | 
            +
            					</object>
         | 
| 1392 | 
            +
            					<int key="connectionID">367</int>
         | 
| 1393 | 
            +
            				</object>
         | 
| 1394 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1395 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1396 | 
            +
            						<string key="label">hideOtherApplications:</string>
         | 
| 1397 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1398 | 
            +
            						<reference key="destination" ref="342932134"/>
         | 
| 1399 | 
            +
            					</object>
         | 
| 1400 | 
            +
            					<int key="connectionID">368</int>
         | 
| 1401 | 
            +
            				</object>
         | 
| 1402 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1403 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1404 | 
            +
            						<string key="label">unhideAllApplications:</string>
         | 
| 1405 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1406 | 
            +
            						<reference key="destination" ref="908899353"/>
         | 
| 1407 | 
            +
            					</object>
         | 
| 1408 | 
            +
            					<int key="connectionID">370</int>
         | 
| 1409 | 
            +
            				</object>
         | 
| 1410 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1411 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1412 | 
            +
            						<string key="label">newDocument:</string>
         | 
| 1413 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1414 | 
            +
            						<reference key="destination" ref="705341025"/>
         | 
| 1415 | 
            +
            					</object>
         | 
| 1416 | 
            +
            					<int key="connectionID">373</int>
         | 
| 1417 | 
            +
            				</object>
         | 
| 1418 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1419 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1420 | 
            +
            						<string key="label">openDocument:</string>
         | 
| 1421 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1422 | 
            +
            						<reference key="destination" ref="722745758"/>
         | 
| 1423 | 
            +
            					</object>
         | 
| 1424 | 
            +
            					<int key="connectionID">374</int>
         | 
| 1425 | 
            +
            				</object>
         | 
| 1426 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1427 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1428 | 
            +
            						<string key="label">addFontTrait:</string>
         | 
| 1429 | 
            +
            						<reference key="source" ref="755631768"/>
         | 
| 1430 | 
            +
            						<reference key="destination" ref="305399458"/>
         | 
| 1431 | 
            +
            					</object>
         | 
| 1432 | 
            +
            					<int key="connectionID">421</int>
         | 
| 1433 | 
            +
            				</object>
         | 
| 1434 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1435 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1436 | 
            +
            						<string key="label">addFontTrait:</string>
         | 
| 1437 | 
            +
            						<reference key="source" ref="755631768"/>
         | 
| 1438 | 
            +
            						<reference key="destination" ref="814362025"/>
         | 
| 1439 | 
            +
            					</object>
         | 
| 1440 | 
            +
            					<int key="connectionID">422</int>
         | 
| 1441 | 
            +
            				</object>
         | 
| 1442 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1443 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1444 | 
            +
            						<string key="label">modifyFont:</string>
         | 
| 1445 | 
            +
            						<reference key="source" ref="755631768"/>
         | 
| 1446 | 
            +
            						<reference key="destination" ref="885547335"/>
         | 
| 1447 | 
            +
            					</object>
         | 
| 1448 | 
            +
            					<int key="connectionID">423</int>
         | 
| 1449 | 
            +
            				</object>
         | 
| 1450 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1451 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1452 | 
            +
            						<string key="label">orderFrontFontPanel:</string>
         | 
| 1453 | 
            +
            						<reference key="source" ref="755631768"/>
         | 
| 1454 | 
            +
            						<reference key="destination" ref="159677712"/>
         | 
| 1455 | 
            +
            					</object>
         | 
| 1456 | 
            +
            					<int key="connectionID">424</int>
         | 
| 1457 | 
            +
            				</object>
         | 
| 1458 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1459 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1460 | 
            +
            						<string key="label">modifyFont:</string>
         | 
| 1461 | 
            +
            						<reference key="source" ref="755631768"/>
         | 
| 1462 | 
            +
            						<reference key="destination" ref="158063935"/>
         | 
| 1463 | 
            +
            					</object>
         | 
| 1464 | 
            +
            					<int key="connectionID">425</int>
         | 
| 1465 | 
            +
            				</object>
         | 
| 1466 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1467 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1468 | 
            +
            						<string key="label">raiseBaseline:</string>
         | 
| 1469 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1470 | 
            +
            						<reference key="destination" ref="941806246"/>
         | 
| 1471 | 
            +
            					</object>
         | 
| 1472 | 
            +
            					<int key="connectionID">426</int>
         | 
| 1473 | 
            +
            				</object>
         | 
| 1474 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1475 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1476 | 
            +
            						<string key="label">lowerBaseline:</string>
         | 
| 1477 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1478 | 
            +
            						<reference key="destination" ref="1045724900"/>
         | 
| 1479 | 
            +
            					</object>
         | 
| 1480 | 
            +
            					<int key="connectionID">427</int>
         | 
| 1481 | 
            +
            				</object>
         | 
| 1482 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1483 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1484 | 
            +
            						<string key="label">copyFont:</string>
         | 
| 1485 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1486 | 
            +
            						<reference key="destination" ref="596732606"/>
         | 
| 1487 | 
            +
            					</object>
         | 
| 1488 | 
            +
            					<int key="connectionID">428</int>
         | 
| 1489 | 
            +
            				</object>
         | 
| 1490 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1491 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1492 | 
            +
            						<string key="label">subscript:</string>
         | 
| 1493 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1494 | 
            +
            						<reference key="destination" ref="1037576581"/>
         | 
| 1495 | 
            +
            					</object>
         | 
| 1496 | 
            +
            					<int key="connectionID">429</int>
         | 
| 1497 | 
            +
            				</object>
         | 
| 1498 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1499 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1500 | 
            +
            						<string key="label">superscript:</string>
         | 
| 1501 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1502 | 
            +
            						<reference key="destination" ref="644725453"/>
         | 
| 1503 | 
            +
            					</object>
         | 
| 1504 | 
            +
            					<int key="connectionID">430</int>
         | 
| 1505 | 
            +
            				</object>
         | 
| 1506 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1507 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1508 | 
            +
            						<string key="label">tightenKerning:</string>
         | 
| 1509 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1510 | 
            +
            						<reference key="destination" ref="677519740"/>
         | 
| 1511 | 
            +
            					</object>
         | 
| 1512 | 
            +
            					<int key="connectionID">431</int>
         | 
| 1513 | 
            +
            				</object>
         | 
| 1514 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1515 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1516 | 
            +
            						<string key="label">underline:</string>
         | 
| 1517 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1518 | 
            +
            						<reference key="destination" ref="330926929"/>
         | 
| 1519 | 
            +
            					</object>
         | 
| 1520 | 
            +
            					<int key="connectionID">432</int>
         | 
| 1521 | 
            +
            				</object>
         | 
| 1522 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1523 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1524 | 
            +
            						<string key="label">orderFrontColorPanel:</string>
         | 
| 1525 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1526 | 
            +
            						<reference key="destination" ref="1012600125"/>
         | 
| 1527 | 
            +
            					</object>
         | 
| 1528 | 
            +
            					<int key="connectionID">433</int>
         | 
| 1529 | 
            +
            				</object>
         | 
| 1530 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1531 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1532 | 
            +
            						<string key="label">useAllLigatures:</string>
         | 
| 1533 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1534 | 
            +
            						<reference key="destination" ref="663508465"/>
         | 
| 1535 | 
            +
            					</object>
         | 
| 1536 | 
            +
            					<int key="connectionID">434</int>
         | 
| 1537 | 
            +
            				</object>
         | 
| 1538 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1539 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1540 | 
            +
            						<string key="label">loosenKerning:</string>
         | 
| 1541 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1542 | 
            +
            						<reference key="destination" ref="238351151"/>
         | 
| 1543 | 
            +
            					</object>
         | 
| 1544 | 
            +
            					<int key="connectionID">435</int>
         | 
| 1545 | 
            +
            				</object>
         | 
| 1546 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1547 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1548 | 
            +
            						<string key="label">pasteFont:</string>
         | 
| 1549 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1550 | 
            +
            						<reference key="destination" ref="393423671"/>
         | 
| 1551 | 
            +
            					</object>
         | 
| 1552 | 
            +
            					<int key="connectionID">436</int>
         | 
| 1553 | 
            +
            				</object>
         | 
| 1554 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1555 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1556 | 
            +
            						<string key="label">unscript:</string>
         | 
| 1557 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1558 | 
            +
            						<reference key="destination" ref="257962622"/>
         | 
| 1559 | 
            +
            					</object>
         | 
| 1560 | 
            +
            					<int key="connectionID">437</int>
         | 
| 1561 | 
            +
            				</object>
         | 
| 1562 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1563 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1564 | 
            +
            						<string key="label">useStandardKerning:</string>
         | 
| 1565 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1566 | 
            +
            						<reference key="destination" ref="252969304"/>
         | 
| 1567 | 
            +
            					</object>
         | 
| 1568 | 
            +
            					<int key="connectionID">438</int>
         | 
| 1569 | 
            +
            				</object>
         | 
| 1570 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1571 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1572 | 
            +
            						<string key="label">useStandardLigatures:</string>
         | 
| 1573 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1574 | 
            +
            						<reference key="destination" ref="706297211"/>
         | 
| 1575 | 
            +
            					</object>
         | 
| 1576 | 
            +
            					<int key="connectionID">439</int>
         | 
| 1577 | 
            +
            				</object>
         | 
| 1578 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1579 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1580 | 
            +
            						<string key="label">turnOffLigatures:</string>
         | 
| 1581 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1582 | 
            +
            						<reference key="destination" ref="568384683"/>
         | 
| 1583 | 
            +
            					</object>
         | 
| 1584 | 
            +
            					<int key="connectionID">440</int>
         | 
| 1585 | 
            +
            				</object>
         | 
| 1586 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1587 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1588 | 
            +
            						<string key="label">turnOffKerning:</string>
         | 
| 1589 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1590 | 
            +
            						<reference key="destination" ref="766922938"/>
         | 
| 1591 | 
            +
            					</object>
         | 
| 1592 | 
            +
            					<int key="connectionID">441</int>
         | 
| 1593 | 
            +
            				</object>
         | 
| 1594 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1595 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1596 | 
            +
            						<string key="label">alignLeft:</string>
         | 
| 1597 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1598 | 
            +
            						<reference key="destination" ref="135107054"/>
         | 
| 1599 | 
            +
            					</object>
         | 
| 1600 | 
            +
            					<int key="connectionID">442</int>
         | 
| 1601 | 
            +
            				</object>
         | 
| 1602 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1603 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1604 | 
            +
            						<string key="label">alignJustified:</string>
         | 
| 1605 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1606 | 
            +
            						<reference key="destination" ref="436088763"/>
         | 
| 1607 | 
            +
            					</object>
         | 
| 1608 | 
            +
            					<int key="connectionID">443</int>
         | 
| 1609 | 
            +
            				</object>
         | 
| 1610 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1611 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1612 | 
            +
            						<string key="label">copyRuler:</string>
         | 
| 1613 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1614 | 
            +
            						<reference key="destination" ref="479856769"/>
         | 
| 1615 | 
            +
            					</object>
         | 
| 1616 | 
            +
            					<int key="connectionID">444</int>
         | 
| 1617 | 
            +
            				</object>
         | 
| 1618 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1619 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1620 | 
            +
            						<string key="label">alignCenter:</string>
         | 
| 1621 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1622 | 
            +
            						<reference key="destination" ref="310547522"/>
         | 
| 1623 | 
            +
            					</object>
         | 
| 1624 | 
            +
            					<int key="connectionID">445</int>
         | 
| 1625 | 
            +
            				</object>
         | 
| 1626 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1627 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1628 | 
            +
            						<string key="label">toggleRuler:</string>
         | 
| 1629 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1630 | 
            +
            						<reference key="destination" ref="420564933"/>
         | 
| 1631 | 
            +
            					</object>
         | 
| 1632 | 
            +
            					<int key="connectionID">446</int>
         | 
| 1633 | 
            +
            				</object>
         | 
| 1634 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1635 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1636 | 
            +
            						<string key="label">alignRight:</string>
         | 
| 1637 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1638 | 
            +
            						<reference key="destination" ref="498119243"/>
         | 
| 1639 | 
            +
            					</object>
         | 
| 1640 | 
            +
            					<int key="connectionID">447</int>
         | 
| 1641 | 
            +
            				</object>
         | 
| 1642 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1643 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1644 | 
            +
            						<string key="label">pasteRuler:</string>
         | 
| 1645 | 
            +
            						<reference key="source" ref="1014"/>
         | 
| 1646 | 
            +
            						<reference key="destination" ref="333628178"/>
         | 
| 1647 | 
            +
            					</object>
         | 
| 1648 | 
            +
            					<int key="connectionID">448</int>
         | 
| 1649 | 
            +
            				</object>
         | 
| 1650 | 
            +
            				<object class="IBConnectionRecord">
         | 
| 1651 | 
            +
            					<object class="IBActionConnection" key="connection">
         | 
| 1652 | 
            +
            						<string key="label">terminate:</string>
         | 
| 1653 | 
            +
            						<reference key="source" ref="1050"/>
         | 
| 1654 | 
            +
            						<reference key="destination" ref="632727374"/>
         | 
| 1655 | 
            +
            					</object>
         | 
| 1656 | 
            +
            					<int key="connectionID">449</int>
         | 
| 1657 | 
            +
            				</object>
         | 
| 1658 | 
            +
            			</object>
         | 
| 1659 | 
            +
            			<object class="IBMutableOrderedSet" key="objectRecords">
         | 
| 1660 | 
            +
            				<object class="NSArray" key="orderedObjects">
         | 
| 1661 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1662 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1663 | 
            +
            						<int key="objectID">0</int>
         | 
| 1664 | 
            +
            						<object class="NSArray" key="object" id="1049">
         | 
| 1665 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1666 | 
            +
            						</object>
         | 
| 1667 | 
            +
            						<reference key="children" ref="1048"/>
         | 
| 1668 | 
            +
            						<nil key="parent"/>
         | 
| 1669 | 
            +
            					</object>
         | 
| 1670 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1671 | 
            +
            						<int key="objectID">-2</int>
         | 
| 1672 | 
            +
            						<reference key="object" ref="1021"/>
         | 
| 1673 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 1674 | 
            +
            						<string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
         | 
| 1675 | 
            +
            					</object>
         | 
| 1676 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1677 | 
            +
            						<int key="objectID">-1</int>
         | 
| 1678 | 
            +
            						<reference key="object" ref="1014"/>
         | 
| 1679 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 1680 | 
            +
            						<string key="objectName">First Responder</string>
         | 
| 1681 | 
            +
            					</object>
         | 
| 1682 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1683 | 
            +
            						<int key="objectID">-3</int>
         | 
| 1684 | 
            +
            						<reference key="object" ref="1050"/>
         | 
| 1685 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 1686 | 
            +
            						<string key="objectName">Application</string>
         | 
| 1687 | 
            +
            					</object>
         | 
| 1688 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1689 | 
            +
            						<int key="objectID">29</int>
         | 
| 1690 | 
            +
            						<reference key="object" ref="649796088"/>
         | 
| 1691 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1692 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1693 | 
            +
            							<reference ref="713487014"/>
         | 
| 1694 | 
            +
            							<reference ref="694149608"/>
         | 
| 1695 | 
            +
            							<reference ref="391199113"/>
         | 
| 1696 | 
            +
            							<reference ref="952259628"/>
         | 
| 1697 | 
            +
            							<reference ref="379814623"/>
         | 
| 1698 | 
            +
            							<reference ref="586577488"/>
         | 
| 1699 | 
            +
            							<reference ref="302598603"/>
         | 
| 1700 | 
            +
            						</object>
         | 
| 1701 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 1702 | 
            +
            						<string key="objectName">MainMenu</string>
         | 
| 1703 | 
            +
            					</object>
         | 
| 1704 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1705 | 
            +
            						<int key="objectID">19</int>
         | 
| 1706 | 
            +
            						<reference key="object" ref="713487014"/>
         | 
| 1707 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1708 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1709 | 
            +
            							<reference ref="835318025"/>
         | 
| 1710 | 
            +
            						</object>
         | 
| 1711 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 1712 | 
            +
            					</object>
         | 
| 1713 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1714 | 
            +
            						<int key="objectID">56</int>
         | 
| 1715 | 
            +
            						<reference key="object" ref="694149608"/>
         | 
| 1716 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1717 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1718 | 
            +
            							<reference ref="110575045"/>
         | 
| 1719 | 
            +
            						</object>
         | 
| 1720 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 1721 | 
            +
            					</object>
         | 
| 1722 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1723 | 
            +
            						<int key="objectID">103</int>
         | 
| 1724 | 
            +
            						<reference key="object" ref="391199113"/>
         | 
| 1725 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1726 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1727 | 
            +
            							<reference ref="374024848"/>
         | 
| 1728 | 
            +
            						</object>
         | 
| 1729 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 1730 | 
            +
            						<string key="objectName">1</string>
         | 
| 1731 | 
            +
            					</object>
         | 
| 1732 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1733 | 
            +
            						<int key="objectID">217</int>
         | 
| 1734 | 
            +
            						<reference key="object" ref="952259628"/>
         | 
| 1735 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1736 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1737 | 
            +
            							<reference ref="789758025"/>
         | 
| 1738 | 
            +
            						</object>
         | 
| 1739 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 1740 | 
            +
            					</object>
         | 
| 1741 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1742 | 
            +
            						<int key="objectID">83</int>
         | 
| 1743 | 
            +
            						<reference key="object" ref="379814623"/>
         | 
| 1744 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1745 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1746 | 
            +
            							<reference ref="720053764"/>
         | 
| 1747 | 
            +
            						</object>
         | 
| 1748 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 1749 | 
            +
            					</object>
         | 
| 1750 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1751 | 
            +
            						<int key="objectID">81</int>
         | 
| 1752 | 
            +
            						<reference key="object" ref="720053764"/>
         | 
| 1753 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1754 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1755 | 
            +
            							<reference ref="1023925487"/>
         | 
| 1756 | 
            +
            							<reference ref="117038363"/>
         | 
| 1757 | 
            +
            							<reference ref="49223823"/>
         | 
| 1758 | 
            +
            							<reference ref="722745758"/>
         | 
| 1759 | 
            +
            							<reference ref="705341025"/>
         | 
| 1760 | 
            +
            							<reference ref="1025936716"/>
         | 
| 1761 | 
            +
            							<reference ref="294629803"/>
         | 
| 1762 | 
            +
            							<reference ref="776162233"/>
         | 
| 1763 | 
            +
            							<reference ref="425164168"/>
         | 
| 1764 | 
            +
            							<reference ref="579971712"/>
         | 
| 1765 | 
            +
            							<reference ref="1010469920"/>
         | 
| 1766 | 
            +
            						</object>
         | 
| 1767 | 
            +
            						<reference key="parent" ref="379814623"/>
         | 
| 1768 | 
            +
            					</object>
         | 
| 1769 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1770 | 
            +
            						<int key="objectID">75</int>
         | 
| 1771 | 
            +
            						<reference key="object" ref="1023925487"/>
         | 
| 1772 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1773 | 
            +
            						<string key="objectName">3</string>
         | 
| 1774 | 
            +
            					</object>
         | 
| 1775 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1776 | 
            +
            						<int key="objectID">80</int>
         | 
| 1777 | 
            +
            						<reference key="object" ref="117038363"/>
         | 
| 1778 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1779 | 
            +
            						<string key="objectName">8</string>
         | 
| 1780 | 
            +
            					</object>
         | 
| 1781 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1782 | 
            +
            						<int key="objectID">78</int>
         | 
| 1783 | 
            +
            						<reference key="object" ref="49223823"/>
         | 
| 1784 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1785 | 
            +
            						<string key="objectName">6</string>
         | 
| 1786 | 
            +
            					</object>
         | 
| 1787 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1788 | 
            +
            						<int key="objectID">72</int>
         | 
| 1789 | 
            +
            						<reference key="object" ref="722745758"/>
         | 
| 1790 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1791 | 
            +
            					</object>
         | 
| 1792 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1793 | 
            +
            						<int key="objectID">82</int>
         | 
| 1794 | 
            +
            						<reference key="object" ref="705341025"/>
         | 
| 1795 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1796 | 
            +
            						<string key="objectName">9</string>
         | 
| 1797 | 
            +
            					</object>
         | 
| 1798 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1799 | 
            +
            						<int key="objectID">124</int>
         | 
| 1800 | 
            +
            						<reference key="object" ref="1025936716"/>
         | 
| 1801 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1802 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1803 | 
            +
            							<reference ref="1065607017"/>
         | 
| 1804 | 
            +
            						</object>
         | 
| 1805 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1806 | 
            +
            					</object>
         | 
| 1807 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1808 | 
            +
            						<int key="objectID">77</int>
         | 
| 1809 | 
            +
            						<reference key="object" ref="294629803"/>
         | 
| 1810 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1811 | 
            +
            						<string key="objectName">5</string>
         | 
| 1812 | 
            +
            					</object>
         | 
| 1813 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1814 | 
            +
            						<int key="objectID">73</int>
         | 
| 1815 | 
            +
            						<reference key="object" ref="776162233"/>
         | 
| 1816 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1817 | 
            +
            						<string key="objectName">1</string>
         | 
| 1818 | 
            +
            					</object>
         | 
| 1819 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1820 | 
            +
            						<int key="objectID">79</int>
         | 
| 1821 | 
            +
            						<reference key="object" ref="425164168"/>
         | 
| 1822 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1823 | 
            +
            						<string key="objectName">7</string>
         | 
| 1824 | 
            +
            					</object>
         | 
| 1825 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1826 | 
            +
            						<int key="objectID">112</int>
         | 
| 1827 | 
            +
            						<reference key="object" ref="579971712"/>
         | 
| 1828 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1829 | 
            +
            						<string key="objectName">10</string>
         | 
| 1830 | 
            +
            					</object>
         | 
| 1831 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1832 | 
            +
            						<int key="objectID">74</int>
         | 
| 1833 | 
            +
            						<reference key="object" ref="1010469920"/>
         | 
| 1834 | 
            +
            						<reference key="parent" ref="720053764"/>
         | 
| 1835 | 
            +
            						<string key="objectName">2</string>
         | 
| 1836 | 
            +
            					</object>
         | 
| 1837 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1838 | 
            +
            						<int key="objectID">125</int>
         | 
| 1839 | 
            +
            						<reference key="object" ref="1065607017"/>
         | 
| 1840 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1841 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1842 | 
            +
            							<reference ref="759406840"/>
         | 
| 1843 | 
            +
            						</object>
         | 
| 1844 | 
            +
            						<reference key="parent" ref="1025936716"/>
         | 
| 1845 | 
            +
            					</object>
         | 
| 1846 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1847 | 
            +
            						<int key="objectID">126</int>
         | 
| 1848 | 
            +
            						<reference key="object" ref="759406840"/>
         | 
| 1849 | 
            +
            						<reference key="parent" ref="1065607017"/>
         | 
| 1850 | 
            +
            					</object>
         | 
| 1851 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1852 | 
            +
            						<int key="objectID">205</int>
         | 
| 1853 | 
            +
            						<reference key="object" ref="789758025"/>
         | 
| 1854 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1855 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1856 | 
            +
            							<reference ref="437104165"/>
         | 
| 1857 | 
            +
            							<reference ref="583158037"/>
         | 
| 1858 | 
            +
            							<reference ref="1058277027"/>
         | 
| 1859 | 
            +
            							<reference ref="212016141"/>
         | 
| 1860 | 
            +
            							<reference ref="296257095"/>
         | 
| 1861 | 
            +
            							<reference ref="29853731"/>
         | 
| 1862 | 
            +
            							<reference ref="860595796"/>
         | 
| 1863 | 
            +
            							<reference ref="1040322652"/>
         | 
| 1864 | 
            +
            							<reference ref="790794224"/>
         | 
| 1865 | 
            +
            							<reference ref="892235320"/>
         | 
| 1866 | 
            +
            							<reference ref="972420730"/>
         | 
| 1867 | 
            +
            							<reference ref="676164635"/>
         | 
| 1868 | 
            +
            							<reference ref="507821607"/>
         | 
| 1869 | 
            +
            						</object>
         | 
| 1870 | 
            +
            						<reference key="parent" ref="952259628"/>
         | 
| 1871 | 
            +
            					</object>
         | 
| 1872 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1873 | 
            +
            						<int key="objectID">202</int>
         | 
| 1874 | 
            +
            						<reference key="object" ref="437104165"/>
         | 
| 1875 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1876 | 
            +
            					</object>
         | 
| 1877 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1878 | 
            +
            						<int key="objectID">198</int>
         | 
| 1879 | 
            +
            						<reference key="object" ref="583158037"/>
         | 
| 1880 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1881 | 
            +
            					</object>
         | 
| 1882 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1883 | 
            +
            						<int key="objectID">207</int>
         | 
| 1884 | 
            +
            						<reference key="object" ref="1058277027"/>
         | 
| 1885 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1886 | 
            +
            					</object>
         | 
| 1887 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1888 | 
            +
            						<int key="objectID">214</int>
         | 
| 1889 | 
            +
            						<reference key="object" ref="212016141"/>
         | 
| 1890 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1891 | 
            +
            					</object>
         | 
| 1892 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1893 | 
            +
            						<int key="objectID">199</int>
         | 
| 1894 | 
            +
            						<reference key="object" ref="296257095"/>
         | 
| 1895 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1896 | 
            +
            					</object>
         | 
| 1897 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1898 | 
            +
            						<int key="objectID">203</int>
         | 
| 1899 | 
            +
            						<reference key="object" ref="29853731"/>
         | 
| 1900 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1901 | 
            +
            					</object>
         | 
| 1902 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1903 | 
            +
            						<int key="objectID">197</int>
         | 
| 1904 | 
            +
            						<reference key="object" ref="860595796"/>
         | 
| 1905 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1906 | 
            +
            					</object>
         | 
| 1907 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1908 | 
            +
            						<int key="objectID">206</int>
         | 
| 1909 | 
            +
            						<reference key="object" ref="1040322652"/>
         | 
| 1910 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1911 | 
            +
            					</object>
         | 
| 1912 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1913 | 
            +
            						<int key="objectID">215</int>
         | 
| 1914 | 
            +
            						<reference key="object" ref="790794224"/>
         | 
| 1915 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1916 | 
            +
            					</object>
         | 
| 1917 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1918 | 
            +
            						<int key="objectID">218</int>
         | 
| 1919 | 
            +
            						<reference key="object" ref="892235320"/>
         | 
| 1920 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1921 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1922 | 
            +
            							<reference ref="963351320"/>
         | 
| 1923 | 
            +
            						</object>
         | 
| 1924 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1925 | 
            +
            					</object>
         | 
| 1926 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1927 | 
            +
            						<int key="objectID">216</int>
         | 
| 1928 | 
            +
            						<reference key="object" ref="972420730"/>
         | 
| 1929 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1930 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1931 | 
            +
            							<reference ref="769623530"/>
         | 
| 1932 | 
            +
            						</object>
         | 
| 1933 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 1934 | 
            +
            					</object>
         | 
| 1935 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1936 | 
            +
            						<int key="objectID">200</int>
         | 
| 1937 | 
            +
            						<reference key="object" ref="769623530"/>
         | 
| 1938 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1939 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1940 | 
            +
            							<reference ref="948374510"/>
         | 
| 1941 | 
            +
            							<reference ref="96193923"/>
         | 
| 1942 | 
            +
            							<reference ref="679648819"/>
         | 
| 1943 | 
            +
            							<reference ref="967646866"/>
         | 
| 1944 | 
            +
            						</object>
         | 
| 1945 | 
            +
            						<reference key="parent" ref="972420730"/>
         | 
| 1946 | 
            +
            					</object>
         | 
| 1947 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1948 | 
            +
            						<int key="objectID">219</int>
         | 
| 1949 | 
            +
            						<reference key="object" ref="948374510"/>
         | 
| 1950 | 
            +
            						<reference key="parent" ref="769623530"/>
         | 
| 1951 | 
            +
            					</object>
         | 
| 1952 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1953 | 
            +
            						<int key="objectID">201</int>
         | 
| 1954 | 
            +
            						<reference key="object" ref="96193923"/>
         | 
| 1955 | 
            +
            						<reference key="parent" ref="769623530"/>
         | 
| 1956 | 
            +
            					</object>
         | 
| 1957 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1958 | 
            +
            						<int key="objectID">204</int>
         | 
| 1959 | 
            +
            						<reference key="object" ref="679648819"/>
         | 
| 1960 | 
            +
            						<reference key="parent" ref="769623530"/>
         | 
| 1961 | 
            +
            					</object>
         | 
| 1962 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1963 | 
            +
            						<int key="objectID">220</int>
         | 
| 1964 | 
            +
            						<reference key="object" ref="963351320"/>
         | 
| 1965 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 1966 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 1967 | 
            +
            							<reference ref="270902937"/>
         | 
| 1968 | 
            +
            							<reference ref="88285865"/>
         | 
| 1969 | 
            +
            							<reference ref="159080638"/>
         | 
| 1970 | 
            +
            							<reference ref="326711663"/>
         | 
| 1971 | 
            +
            							<reference ref="447796847"/>
         | 
| 1972 | 
            +
            						</object>
         | 
| 1973 | 
            +
            						<reference key="parent" ref="892235320"/>
         | 
| 1974 | 
            +
            					</object>
         | 
| 1975 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1976 | 
            +
            						<int key="objectID">213</int>
         | 
| 1977 | 
            +
            						<reference key="object" ref="270902937"/>
         | 
| 1978 | 
            +
            						<reference key="parent" ref="963351320"/>
         | 
| 1979 | 
            +
            					</object>
         | 
| 1980 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1981 | 
            +
            						<int key="objectID">210</int>
         | 
| 1982 | 
            +
            						<reference key="object" ref="88285865"/>
         | 
| 1983 | 
            +
            						<reference key="parent" ref="963351320"/>
         | 
| 1984 | 
            +
            					</object>
         | 
| 1985 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1986 | 
            +
            						<int key="objectID">221</int>
         | 
| 1987 | 
            +
            						<reference key="object" ref="159080638"/>
         | 
| 1988 | 
            +
            						<reference key="parent" ref="963351320"/>
         | 
| 1989 | 
            +
            					</object>
         | 
| 1990 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1991 | 
            +
            						<int key="objectID">208</int>
         | 
| 1992 | 
            +
            						<reference key="object" ref="326711663"/>
         | 
| 1993 | 
            +
            						<reference key="parent" ref="963351320"/>
         | 
| 1994 | 
            +
            					</object>
         | 
| 1995 | 
            +
            					<object class="IBObjectRecord">
         | 
| 1996 | 
            +
            						<int key="objectID">209</int>
         | 
| 1997 | 
            +
            						<reference key="object" ref="447796847"/>
         | 
| 1998 | 
            +
            						<reference key="parent" ref="963351320"/>
         | 
| 1999 | 
            +
            					</object>
         | 
| 2000 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2001 | 
            +
            						<int key="objectID">106</int>
         | 
| 2002 | 
            +
            						<reference key="object" ref="374024848"/>
         | 
| 2003 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2004 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2005 | 
            +
            							<reference ref="238773614"/>
         | 
| 2006 | 
            +
            						</object>
         | 
| 2007 | 
            +
            						<reference key="parent" ref="391199113"/>
         | 
| 2008 | 
            +
            						<string key="objectName">2</string>
         | 
| 2009 | 
            +
            					</object>
         | 
| 2010 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2011 | 
            +
            						<int key="objectID">111</int>
         | 
| 2012 | 
            +
            						<reference key="object" ref="238773614"/>
         | 
| 2013 | 
            +
            						<reference key="parent" ref="374024848"/>
         | 
| 2014 | 
            +
            					</object>
         | 
| 2015 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2016 | 
            +
            						<int key="objectID">57</int>
         | 
| 2017 | 
            +
            						<reference key="object" ref="110575045"/>
         | 
| 2018 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2019 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2020 | 
            +
            							<reference ref="238522557"/>
         | 
| 2021 | 
            +
            							<reference ref="755159360"/>
         | 
| 2022 | 
            +
            							<reference ref="908899353"/>
         | 
| 2023 | 
            +
            							<reference ref="632727374"/>
         | 
| 2024 | 
            +
            							<reference ref="646227648"/>
         | 
| 2025 | 
            +
            							<reference ref="609285721"/>
         | 
| 2026 | 
            +
            							<reference ref="481834944"/>
         | 
| 2027 | 
            +
            							<reference ref="304266470"/>
         | 
| 2028 | 
            +
            							<reference ref="1046388886"/>
         | 
| 2029 | 
            +
            							<reference ref="1056857174"/>
         | 
| 2030 | 
            +
            							<reference ref="342932134"/>
         | 
| 2031 | 
            +
            						</object>
         | 
| 2032 | 
            +
            						<reference key="parent" ref="694149608"/>
         | 
| 2033 | 
            +
            					</object>
         | 
| 2034 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2035 | 
            +
            						<int key="objectID">58</int>
         | 
| 2036 | 
            +
            						<reference key="object" ref="238522557"/>
         | 
| 2037 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2038 | 
            +
            					</object>
         | 
| 2039 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2040 | 
            +
            						<int key="objectID">134</int>
         | 
| 2041 | 
            +
            						<reference key="object" ref="755159360"/>
         | 
| 2042 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2043 | 
            +
            					</object>
         | 
| 2044 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2045 | 
            +
            						<int key="objectID">150</int>
         | 
| 2046 | 
            +
            						<reference key="object" ref="908899353"/>
         | 
| 2047 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2048 | 
            +
            					</object>
         | 
| 2049 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2050 | 
            +
            						<int key="objectID">136</int>
         | 
| 2051 | 
            +
            						<reference key="object" ref="632727374"/>
         | 
| 2052 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2053 | 
            +
            						<string key="objectName">1111</string>
         | 
| 2054 | 
            +
            					</object>
         | 
| 2055 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2056 | 
            +
            						<int key="objectID">144</int>
         | 
| 2057 | 
            +
            						<reference key="object" ref="646227648"/>
         | 
| 2058 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2059 | 
            +
            					</object>
         | 
| 2060 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2061 | 
            +
            						<int key="objectID">129</int>
         | 
| 2062 | 
            +
            						<reference key="object" ref="609285721"/>
         | 
| 2063 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2064 | 
            +
            						<string key="objectName">121</string>
         | 
| 2065 | 
            +
            					</object>
         | 
| 2066 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2067 | 
            +
            						<int key="objectID">143</int>
         | 
| 2068 | 
            +
            						<reference key="object" ref="481834944"/>
         | 
| 2069 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2070 | 
            +
            					</object>
         | 
| 2071 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2072 | 
            +
            						<int key="objectID">236</int>
         | 
| 2073 | 
            +
            						<reference key="object" ref="304266470"/>
         | 
| 2074 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2075 | 
            +
            					</object>
         | 
| 2076 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2077 | 
            +
            						<int key="objectID">131</int>
         | 
| 2078 | 
            +
            						<reference key="object" ref="1046388886"/>
         | 
| 2079 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2080 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2081 | 
            +
            							<reference ref="752062318"/>
         | 
| 2082 | 
            +
            						</object>
         | 
| 2083 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2084 | 
            +
            					</object>
         | 
| 2085 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2086 | 
            +
            						<int key="objectID">149</int>
         | 
| 2087 | 
            +
            						<reference key="object" ref="1056857174"/>
         | 
| 2088 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2089 | 
            +
            					</object>
         | 
| 2090 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2091 | 
            +
            						<int key="objectID">145</int>
         | 
| 2092 | 
            +
            						<reference key="object" ref="342932134"/>
         | 
| 2093 | 
            +
            						<reference key="parent" ref="110575045"/>
         | 
| 2094 | 
            +
            					</object>
         | 
| 2095 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2096 | 
            +
            						<int key="objectID">130</int>
         | 
| 2097 | 
            +
            						<reference key="object" ref="752062318"/>
         | 
| 2098 | 
            +
            						<reference key="parent" ref="1046388886"/>
         | 
| 2099 | 
            +
            					</object>
         | 
| 2100 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2101 | 
            +
            						<int key="objectID">24</int>
         | 
| 2102 | 
            +
            						<reference key="object" ref="835318025"/>
         | 
| 2103 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2104 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2105 | 
            +
            							<reference ref="299356726"/>
         | 
| 2106 | 
            +
            							<reference ref="625202149"/>
         | 
| 2107 | 
            +
            							<reference ref="575023229"/>
         | 
| 2108 | 
            +
            							<reference ref="1011231497"/>
         | 
| 2109 | 
            +
            						</object>
         | 
| 2110 | 
            +
            						<reference key="parent" ref="713487014"/>
         | 
| 2111 | 
            +
            					</object>
         | 
| 2112 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2113 | 
            +
            						<int key="objectID">92</int>
         | 
| 2114 | 
            +
            						<reference key="object" ref="299356726"/>
         | 
| 2115 | 
            +
            						<reference key="parent" ref="835318025"/>
         | 
| 2116 | 
            +
            					</object>
         | 
| 2117 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2118 | 
            +
            						<int key="objectID">5</int>
         | 
| 2119 | 
            +
            						<reference key="object" ref="625202149"/>
         | 
| 2120 | 
            +
            						<reference key="parent" ref="835318025"/>
         | 
| 2121 | 
            +
            					</object>
         | 
| 2122 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2123 | 
            +
            						<int key="objectID">239</int>
         | 
| 2124 | 
            +
            						<reference key="object" ref="575023229"/>
         | 
| 2125 | 
            +
            						<reference key="parent" ref="835318025"/>
         | 
| 2126 | 
            +
            					</object>
         | 
| 2127 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2128 | 
            +
            						<int key="objectID">23</int>
         | 
| 2129 | 
            +
            						<reference key="object" ref="1011231497"/>
         | 
| 2130 | 
            +
            						<reference key="parent" ref="835318025"/>
         | 
| 2131 | 
            +
            					</object>
         | 
| 2132 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2133 | 
            +
            						<int key="objectID">295</int>
         | 
| 2134 | 
            +
            						<reference key="object" ref="586577488"/>
         | 
| 2135 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2136 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2137 | 
            +
            							<reference ref="466310130"/>
         | 
| 2138 | 
            +
            						</object>
         | 
| 2139 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 2140 | 
            +
            					</object>
         | 
| 2141 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2142 | 
            +
            						<int key="objectID">296</int>
         | 
| 2143 | 
            +
            						<reference key="object" ref="466310130"/>
         | 
| 2144 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2145 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2146 | 
            +
            							<reference ref="102151532"/>
         | 
| 2147 | 
            +
            							<reference ref="237841660"/>
         | 
| 2148 | 
            +
            						</object>
         | 
| 2149 | 
            +
            						<reference key="parent" ref="586577488"/>
         | 
| 2150 | 
            +
            					</object>
         | 
| 2151 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2152 | 
            +
            						<int key="objectID">297</int>
         | 
| 2153 | 
            +
            						<reference key="object" ref="102151532"/>
         | 
| 2154 | 
            +
            						<reference key="parent" ref="466310130"/>
         | 
| 2155 | 
            +
            					</object>
         | 
| 2156 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2157 | 
            +
            						<int key="objectID">298</int>
         | 
| 2158 | 
            +
            						<reference key="object" ref="237841660"/>
         | 
| 2159 | 
            +
            						<reference key="parent" ref="466310130"/>
         | 
| 2160 | 
            +
            					</object>
         | 
| 2161 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2162 | 
            +
            						<int key="objectID">211</int>
         | 
| 2163 | 
            +
            						<reference key="object" ref="676164635"/>
         | 
| 2164 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2165 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2166 | 
            +
            							<reference ref="785027613"/>
         | 
| 2167 | 
            +
            						</object>
         | 
| 2168 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 2169 | 
            +
            					</object>
         | 
| 2170 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2171 | 
            +
            						<int key="objectID">212</int>
         | 
| 2172 | 
            +
            						<reference key="object" ref="785027613"/>
         | 
| 2173 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2174 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2175 | 
            +
            							<reference ref="680220178"/>
         | 
| 2176 | 
            +
            							<reference ref="731782645"/>
         | 
| 2177 | 
            +
            						</object>
         | 
| 2178 | 
            +
            						<reference key="parent" ref="676164635"/>
         | 
| 2179 | 
            +
            					</object>
         | 
| 2180 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2181 | 
            +
            						<int key="objectID">195</int>
         | 
| 2182 | 
            +
            						<reference key="object" ref="680220178"/>
         | 
| 2183 | 
            +
            						<reference key="parent" ref="785027613"/>
         | 
| 2184 | 
            +
            					</object>
         | 
| 2185 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2186 | 
            +
            						<int key="objectID">196</int>
         | 
| 2187 | 
            +
            						<reference key="object" ref="731782645"/>
         | 
| 2188 | 
            +
            						<reference key="parent" ref="785027613"/>
         | 
| 2189 | 
            +
            					</object>
         | 
| 2190 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2191 | 
            +
            						<int key="objectID">346</int>
         | 
| 2192 | 
            +
            						<reference key="object" ref="967646866"/>
         | 
| 2193 | 
            +
            						<reference key="parent" ref="769623530"/>
         | 
| 2194 | 
            +
            					</object>
         | 
| 2195 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2196 | 
            +
            						<int key="objectID">348</int>
         | 
| 2197 | 
            +
            						<reference key="object" ref="507821607"/>
         | 
| 2198 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2199 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2200 | 
            +
            							<reference ref="698887838"/>
         | 
| 2201 | 
            +
            						</object>
         | 
| 2202 | 
            +
            						<reference key="parent" ref="789758025"/>
         | 
| 2203 | 
            +
            					</object>
         | 
| 2204 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2205 | 
            +
            						<int key="objectID">349</int>
         | 
| 2206 | 
            +
            						<reference key="object" ref="698887838"/>
         | 
| 2207 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2208 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2209 | 
            +
            							<reference ref="605118523"/>
         | 
| 2210 | 
            +
            							<reference ref="197661976"/>
         | 
| 2211 | 
            +
            							<reference ref="708854459"/>
         | 
| 2212 | 
            +
            						</object>
         | 
| 2213 | 
            +
            						<reference key="parent" ref="507821607"/>
         | 
| 2214 | 
            +
            					</object>
         | 
| 2215 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2216 | 
            +
            						<int key="objectID">350</int>
         | 
| 2217 | 
            +
            						<reference key="object" ref="605118523"/>
         | 
| 2218 | 
            +
            						<reference key="parent" ref="698887838"/>
         | 
| 2219 | 
            +
            					</object>
         | 
| 2220 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2221 | 
            +
            						<int key="objectID">351</int>
         | 
| 2222 | 
            +
            						<reference key="object" ref="197661976"/>
         | 
| 2223 | 
            +
            						<reference key="parent" ref="698887838"/>
         | 
| 2224 | 
            +
            					</object>
         | 
| 2225 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2226 | 
            +
            						<int key="objectID">354</int>
         | 
| 2227 | 
            +
            						<reference key="object" ref="708854459"/>
         | 
| 2228 | 
            +
            						<reference key="parent" ref="698887838"/>
         | 
| 2229 | 
            +
            					</object>
         | 
| 2230 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2231 | 
            +
            						<int key="objectID">371</int>
         | 
| 2232 | 
            +
            						<reference key="object" ref="972006081"/>
         | 
| 2233 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2234 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2235 | 
            +
            							<reference ref="439893737"/>
         | 
| 2236 | 
            +
            						</object>
         | 
| 2237 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 2238 | 
            +
            					</object>
         | 
| 2239 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2240 | 
            +
            						<int key="objectID">372</int>
         | 
| 2241 | 
            +
            						<reference key="object" ref="439893737"/>
         | 
| 2242 | 
            +
            						<reference key="parent" ref="972006081"/>
         | 
| 2243 | 
            +
            					</object>
         | 
| 2244 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2245 | 
            +
            						<int key="objectID">375</int>
         | 
| 2246 | 
            +
            						<reference key="object" ref="302598603"/>
         | 
| 2247 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2248 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2249 | 
            +
            							<reference ref="941447902"/>
         | 
| 2250 | 
            +
            						</object>
         | 
| 2251 | 
            +
            						<reference key="parent" ref="649796088"/>
         | 
| 2252 | 
            +
            					</object>
         | 
| 2253 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2254 | 
            +
            						<int key="objectID">376</int>
         | 
| 2255 | 
            +
            						<reference key="object" ref="941447902"/>
         | 
| 2256 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2257 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2258 | 
            +
            							<reference ref="792887677"/>
         | 
| 2259 | 
            +
            							<reference ref="15516124"/>
         | 
| 2260 | 
            +
            						</object>
         | 
| 2261 | 
            +
            						<reference key="parent" ref="302598603"/>
         | 
| 2262 | 
            +
            					</object>
         | 
| 2263 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2264 | 
            +
            						<int key="objectID">377</int>
         | 
| 2265 | 
            +
            						<reference key="object" ref="792887677"/>
         | 
| 2266 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2267 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2268 | 
            +
            							<reference ref="786677654"/>
         | 
| 2269 | 
            +
            						</object>
         | 
| 2270 | 
            +
            						<reference key="parent" ref="941447902"/>
         | 
| 2271 | 
            +
            					</object>
         | 
| 2272 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2273 | 
            +
            						<int key="objectID">378</int>
         | 
| 2274 | 
            +
            						<reference key="object" ref="15516124"/>
         | 
| 2275 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2276 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2277 | 
            +
            							<reference ref="23081656"/>
         | 
| 2278 | 
            +
            						</object>
         | 
| 2279 | 
            +
            						<reference key="parent" ref="941447902"/>
         | 
| 2280 | 
            +
            					</object>
         | 
| 2281 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2282 | 
            +
            						<int key="objectID">379</int>
         | 
| 2283 | 
            +
            						<reference key="object" ref="23081656"/>
         | 
| 2284 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2285 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2286 | 
            +
            							<reference ref="135107054"/>
         | 
| 2287 | 
            +
            							<reference ref="310547522"/>
         | 
| 2288 | 
            +
            							<reference ref="436088763"/>
         | 
| 2289 | 
            +
            							<reference ref="498119243"/>
         | 
| 2290 | 
            +
            							<reference ref="607995063"/>
         | 
| 2291 | 
            +
            							<reference ref="420564933"/>
         | 
| 2292 | 
            +
            							<reference ref="479856769"/>
         | 
| 2293 | 
            +
            							<reference ref="333628178"/>
         | 
| 2294 | 
            +
            						</object>
         | 
| 2295 | 
            +
            						<reference key="parent" ref="15516124"/>
         | 
| 2296 | 
            +
            					</object>
         | 
| 2297 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2298 | 
            +
            						<int key="objectID">380</int>
         | 
| 2299 | 
            +
            						<reference key="object" ref="135107054"/>
         | 
| 2300 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2301 | 
            +
            					</object>
         | 
| 2302 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2303 | 
            +
            						<int key="objectID">381</int>
         | 
| 2304 | 
            +
            						<reference key="object" ref="310547522"/>
         | 
| 2305 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2306 | 
            +
            					</object>
         | 
| 2307 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2308 | 
            +
            						<int key="objectID">382</int>
         | 
| 2309 | 
            +
            						<reference key="object" ref="436088763"/>
         | 
| 2310 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2311 | 
            +
            					</object>
         | 
| 2312 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2313 | 
            +
            						<int key="objectID">383</int>
         | 
| 2314 | 
            +
            						<reference key="object" ref="498119243"/>
         | 
| 2315 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2316 | 
            +
            					</object>
         | 
| 2317 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2318 | 
            +
            						<int key="objectID">384</int>
         | 
| 2319 | 
            +
            						<reference key="object" ref="607995063"/>
         | 
| 2320 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2321 | 
            +
            					</object>
         | 
| 2322 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2323 | 
            +
            						<int key="objectID">385</int>
         | 
| 2324 | 
            +
            						<reference key="object" ref="420564933"/>
         | 
| 2325 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2326 | 
            +
            					</object>
         | 
| 2327 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2328 | 
            +
            						<int key="objectID">386</int>
         | 
| 2329 | 
            +
            						<reference key="object" ref="479856769"/>
         | 
| 2330 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2331 | 
            +
            					</object>
         | 
| 2332 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2333 | 
            +
            						<int key="objectID">387</int>
         | 
| 2334 | 
            +
            						<reference key="object" ref="333628178"/>
         | 
| 2335 | 
            +
            						<reference key="parent" ref="23081656"/>
         | 
| 2336 | 
            +
            					</object>
         | 
| 2337 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2338 | 
            +
            						<int key="objectID">388</int>
         | 
| 2339 | 
            +
            						<reference key="object" ref="786677654"/>
         | 
| 2340 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2341 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2342 | 
            +
            							<reference ref="159677712"/>
         | 
| 2343 | 
            +
            							<reference ref="305399458"/>
         | 
| 2344 | 
            +
            							<reference ref="814362025"/>
         | 
| 2345 | 
            +
            							<reference ref="330926929"/>
         | 
| 2346 | 
            +
            							<reference ref="533507878"/>
         | 
| 2347 | 
            +
            							<reference ref="158063935"/>
         | 
| 2348 | 
            +
            							<reference ref="885547335"/>
         | 
| 2349 | 
            +
            							<reference ref="901062459"/>
         | 
| 2350 | 
            +
            							<reference ref="767671776"/>
         | 
| 2351 | 
            +
            							<reference ref="691570813"/>
         | 
| 2352 | 
            +
            							<reference ref="769124883"/>
         | 
| 2353 | 
            +
            							<reference ref="739652853"/>
         | 
| 2354 | 
            +
            							<reference ref="1012600125"/>
         | 
| 2355 | 
            +
            							<reference ref="214559597"/>
         | 
| 2356 | 
            +
            							<reference ref="596732606"/>
         | 
| 2357 | 
            +
            							<reference ref="393423671"/>
         | 
| 2358 | 
            +
            						</object>
         | 
| 2359 | 
            +
            						<reference key="parent" ref="792887677"/>
         | 
| 2360 | 
            +
            					</object>
         | 
| 2361 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2362 | 
            +
            						<int key="objectID">389</int>
         | 
| 2363 | 
            +
            						<reference key="object" ref="159677712"/>
         | 
| 2364 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2365 | 
            +
            					</object>
         | 
| 2366 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2367 | 
            +
            						<int key="objectID">390</int>
         | 
| 2368 | 
            +
            						<reference key="object" ref="305399458"/>
         | 
| 2369 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2370 | 
            +
            					</object>
         | 
| 2371 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2372 | 
            +
            						<int key="objectID">391</int>
         | 
| 2373 | 
            +
            						<reference key="object" ref="814362025"/>
         | 
| 2374 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2375 | 
            +
            					</object>
         | 
| 2376 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2377 | 
            +
            						<int key="objectID">392</int>
         | 
| 2378 | 
            +
            						<reference key="object" ref="330926929"/>
         | 
| 2379 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2380 | 
            +
            					</object>
         | 
| 2381 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2382 | 
            +
            						<int key="objectID">393</int>
         | 
| 2383 | 
            +
            						<reference key="object" ref="533507878"/>
         | 
| 2384 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2385 | 
            +
            					</object>
         | 
| 2386 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2387 | 
            +
            						<int key="objectID">394</int>
         | 
| 2388 | 
            +
            						<reference key="object" ref="158063935"/>
         | 
| 2389 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2390 | 
            +
            					</object>
         | 
| 2391 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2392 | 
            +
            						<int key="objectID">395</int>
         | 
| 2393 | 
            +
            						<reference key="object" ref="885547335"/>
         | 
| 2394 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2395 | 
            +
            					</object>
         | 
| 2396 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2397 | 
            +
            						<int key="objectID">396</int>
         | 
| 2398 | 
            +
            						<reference key="object" ref="901062459"/>
         | 
| 2399 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2400 | 
            +
            					</object>
         | 
| 2401 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2402 | 
            +
            						<int key="objectID">397</int>
         | 
| 2403 | 
            +
            						<reference key="object" ref="767671776"/>
         | 
| 2404 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2405 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2406 | 
            +
            							<reference ref="175441468"/>
         | 
| 2407 | 
            +
            						</object>
         | 
| 2408 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2409 | 
            +
            					</object>
         | 
| 2410 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2411 | 
            +
            						<int key="objectID">398</int>
         | 
| 2412 | 
            +
            						<reference key="object" ref="691570813"/>
         | 
| 2413 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2414 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2415 | 
            +
            							<reference ref="1058217995"/>
         | 
| 2416 | 
            +
            						</object>
         | 
| 2417 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2418 | 
            +
            					</object>
         | 
| 2419 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2420 | 
            +
            						<int key="objectID">399</int>
         | 
| 2421 | 
            +
            						<reference key="object" ref="769124883"/>
         | 
| 2422 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2423 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2424 | 
            +
            							<reference ref="18263474"/>
         | 
| 2425 | 
            +
            						</object>
         | 
| 2426 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2427 | 
            +
            					</object>
         | 
| 2428 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2429 | 
            +
            						<int key="objectID">400</int>
         | 
| 2430 | 
            +
            						<reference key="object" ref="739652853"/>
         | 
| 2431 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2432 | 
            +
            					</object>
         | 
| 2433 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2434 | 
            +
            						<int key="objectID">401</int>
         | 
| 2435 | 
            +
            						<reference key="object" ref="1012600125"/>
         | 
| 2436 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2437 | 
            +
            					</object>
         | 
| 2438 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2439 | 
            +
            						<int key="objectID">402</int>
         | 
| 2440 | 
            +
            						<reference key="object" ref="214559597"/>
         | 
| 2441 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2442 | 
            +
            					</object>
         | 
| 2443 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2444 | 
            +
            						<int key="objectID">403</int>
         | 
| 2445 | 
            +
            						<reference key="object" ref="596732606"/>
         | 
| 2446 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2447 | 
            +
            					</object>
         | 
| 2448 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2449 | 
            +
            						<int key="objectID">404</int>
         | 
| 2450 | 
            +
            						<reference key="object" ref="393423671"/>
         | 
| 2451 | 
            +
            						<reference key="parent" ref="786677654"/>
         | 
| 2452 | 
            +
            					</object>
         | 
| 2453 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2454 | 
            +
            						<int key="objectID">405</int>
         | 
| 2455 | 
            +
            						<reference key="object" ref="18263474"/>
         | 
| 2456 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2457 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2458 | 
            +
            							<reference ref="257962622"/>
         | 
| 2459 | 
            +
            							<reference ref="644725453"/>
         | 
| 2460 | 
            +
            							<reference ref="1037576581"/>
         | 
| 2461 | 
            +
            							<reference ref="941806246"/>
         | 
| 2462 | 
            +
            							<reference ref="1045724900"/>
         | 
| 2463 | 
            +
            						</object>
         | 
| 2464 | 
            +
            						<reference key="parent" ref="769124883"/>
         | 
| 2465 | 
            +
            					</object>
         | 
| 2466 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2467 | 
            +
            						<int key="objectID">406</int>
         | 
| 2468 | 
            +
            						<reference key="object" ref="257962622"/>
         | 
| 2469 | 
            +
            						<reference key="parent" ref="18263474"/>
         | 
| 2470 | 
            +
            					</object>
         | 
| 2471 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2472 | 
            +
            						<int key="objectID">407</int>
         | 
| 2473 | 
            +
            						<reference key="object" ref="644725453"/>
         | 
| 2474 | 
            +
            						<reference key="parent" ref="18263474"/>
         | 
| 2475 | 
            +
            					</object>
         | 
| 2476 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2477 | 
            +
            						<int key="objectID">408</int>
         | 
| 2478 | 
            +
            						<reference key="object" ref="1037576581"/>
         | 
| 2479 | 
            +
            						<reference key="parent" ref="18263474"/>
         | 
| 2480 | 
            +
            					</object>
         | 
| 2481 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2482 | 
            +
            						<int key="objectID">409</int>
         | 
| 2483 | 
            +
            						<reference key="object" ref="941806246"/>
         | 
| 2484 | 
            +
            						<reference key="parent" ref="18263474"/>
         | 
| 2485 | 
            +
            					</object>
         | 
| 2486 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2487 | 
            +
            						<int key="objectID">410</int>
         | 
| 2488 | 
            +
            						<reference key="object" ref="1045724900"/>
         | 
| 2489 | 
            +
            						<reference key="parent" ref="18263474"/>
         | 
| 2490 | 
            +
            					</object>
         | 
| 2491 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2492 | 
            +
            						<int key="objectID">411</int>
         | 
| 2493 | 
            +
            						<reference key="object" ref="1058217995"/>
         | 
| 2494 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2495 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2496 | 
            +
            							<reference ref="706297211"/>
         | 
| 2497 | 
            +
            							<reference ref="568384683"/>
         | 
| 2498 | 
            +
            							<reference ref="663508465"/>
         | 
| 2499 | 
            +
            						</object>
         | 
| 2500 | 
            +
            						<reference key="parent" ref="691570813"/>
         | 
| 2501 | 
            +
            					</object>
         | 
| 2502 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2503 | 
            +
            						<int key="objectID">412</int>
         | 
| 2504 | 
            +
            						<reference key="object" ref="706297211"/>
         | 
| 2505 | 
            +
            						<reference key="parent" ref="1058217995"/>
         | 
| 2506 | 
            +
            					</object>
         | 
| 2507 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2508 | 
            +
            						<int key="objectID">413</int>
         | 
| 2509 | 
            +
            						<reference key="object" ref="568384683"/>
         | 
| 2510 | 
            +
            						<reference key="parent" ref="1058217995"/>
         | 
| 2511 | 
            +
            					</object>
         | 
| 2512 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2513 | 
            +
            						<int key="objectID">414</int>
         | 
| 2514 | 
            +
            						<reference key="object" ref="663508465"/>
         | 
| 2515 | 
            +
            						<reference key="parent" ref="1058217995"/>
         | 
| 2516 | 
            +
            					</object>
         | 
| 2517 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2518 | 
            +
            						<int key="objectID">415</int>
         | 
| 2519 | 
            +
            						<reference key="object" ref="175441468"/>
         | 
| 2520 | 
            +
            						<object class="NSMutableArray" key="children">
         | 
| 2521 | 
            +
            							<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2522 | 
            +
            							<reference ref="252969304"/>
         | 
| 2523 | 
            +
            							<reference ref="766922938"/>
         | 
| 2524 | 
            +
            							<reference ref="677519740"/>
         | 
| 2525 | 
            +
            							<reference ref="238351151"/>
         | 
| 2526 | 
            +
            						</object>
         | 
| 2527 | 
            +
            						<reference key="parent" ref="767671776"/>
         | 
| 2528 | 
            +
            					</object>
         | 
| 2529 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2530 | 
            +
            						<int key="objectID">416</int>
         | 
| 2531 | 
            +
            						<reference key="object" ref="252969304"/>
         | 
| 2532 | 
            +
            						<reference key="parent" ref="175441468"/>
         | 
| 2533 | 
            +
            					</object>
         | 
| 2534 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2535 | 
            +
            						<int key="objectID">417</int>
         | 
| 2536 | 
            +
            						<reference key="object" ref="766922938"/>
         | 
| 2537 | 
            +
            						<reference key="parent" ref="175441468"/>
         | 
| 2538 | 
            +
            					</object>
         | 
| 2539 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2540 | 
            +
            						<int key="objectID">418</int>
         | 
| 2541 | 
            +
            						<reference key="object" ref="677519740"/>
         | 
| 2542 | 
            +
            						<reference key="parent" ref="175441468"/>
         | 
| 2543 | 
            +
            					</object>
         | 
| 2544 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2545 | 
            +
            						<int key="objectID">419</int>
         | 
| 2546 | 
            +
            						<reference key="object" ref="238351151"/>
         | 
| 2547 | 
            +
            						<reference key="parent" ref="175441468"/>
         | 
| 2548 | 
            +
            					</object>
         | 
| 2549 | 
            +
            					<object class="IBObjectRecord">
         | 
| 2550 | 
            +
            						<int key="objectID">420</int>
         | 
| 2551 | 
            +
            						<reference key="object" ref="755631768"/>
         | 
| 2552 | 
            +
            						<reference key="parent" ref="1049"/>
         | 
| 2553 | 
            +
            					</object>
         | 
| 2554 | 
            +
            				</object>
         | 
| 2555 | 
            +
            			</object>
         | 
| 2556 | 
            +
            			<object class="NSMutableDictionary" key="flattenedProperties">
         | 
| 2557 | 
            +
            				<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2558 | 
            +
            				<object class="NSMutableArray" key="dict.sortedKeys">
         | 
| 2559 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2560 | 
            +
            					<string>-1.IBPluginDependency</string>
         | 
| 2561 | 
            +
            					<string>-2.IBPluginDependency</string>
         | 
| 2562 | 
            +
            					<string>-3.IBPluginDependency</string>
         | 
| 2563 | 
            +
            					<string>103.IBPluginDependency</string>
         | 
| 2564 | 
            +
            					<string>103.ImportedFromIB2</string>
         | 
| 2565 | 
            +
            					<string>106.IBPluginDependency</string>
         | 
| 2566 | 
            +
            					<string>106.ImportedFromIB2</string>
         | 
| 2567 | 
            +
            					<string>106.editorWindowContentRectSynchronizationRect</string>
         | 
| 2568 | 
            +
            					<string>111.IBPluginDependency</string>
         | 
| 2569 | 
            +
            					<string>111.ImportedFromIB2</string>
         | 
| 2570 | 
            +
            					<string>112.IBPluginDependency</string>
         | 
| 2571 | 
            +
            					<string>112.ImportedFromIB2</string>
         | 
| 2572 | 
            +
            					<string>124.IBPluginDependency</string>
         | 
| 2573 | 
            +
            					<string>124.ImportedFromIB2</string>
         | 
| 2574 | 
            +
            					<string>125.IBPluginDependency</string>
         | 
| 2575 | 
            +
            					<string>125.ImportedFromIB2</string>
         | 
| 2576 | 
            +
            					<string>125.editorWindowContentRectSynchronizationRect</string>
         | 
| 2577 | 
            +
            					<string>126.IBPluginDependency</string>
         | 
| 2578 | 
            +
            					<string>126.ImportedFromIB2</string>
         | 
| 2579 | 
            +
            					<string>129.IBPluginDependency</string>
         | 
| 2580 | 
            +
            					<string>129.ImportedFromIB2</string>
         | 
| 2581 | 
            +
            					<string>130.IBPluginDependency</string>
         | 
| 2582 | 
            +
            					<string>130.ImportedFromIB2</string>
         | 
| 2583 | 
            +
            					<string>130.editorWindowContentRectSynchronizationRect</string>
         | 
| 2584 | 
            +
            					<string>131.IBPluginDependency</string>
         | 
| 2585 | 
            +
            					<string>131.ImportedFromIB2</string>
         | 
| 2586 | 
            +
            					<string>134.IBPluginDependency</string>
         | 
| 2587 | 
            +
            					<string>134.ImportedFromIB2</string>
         | 
| 2588 | 
            +
            					<string>136.IBPluginDependency</string>
         | 
| 2589 | 
            +
            					<string>136.ImportedFromIB2</string>
         | 
| 2590 | 
            +
            					<string>143.IBPluginDependency</string>
         | 
| 2591 | 
            +
            					<string>143.ImportedFromIB2</string>
         | 
| 2592 | 
            +
            					<string>144.IBPluginDependency</string>
         | 
| 2593 | 
            +
            					<string>144.ImportedFromIB2</string>
         | 
| 2594 | 
            +
            					<string>145.IBPluginDependency</string>
         | 
| 2595 | 
            +
            					<string>145.ImportedFromIB2</string>
         | 
| 2596 | 
            +
            					<string>149.IBPluginDependency</string>
         | 
| 2597 | 
            +
            					<string>149.ImportedFromIB2</string>
         | 
| 2598 | 
            +
            					<string>150.IBPluginDependency</string>
         | 
| 2599 | 
            +
            					<string>150.ImportedFromIB2</string>
         | 
| 2600 | 
            +
            					<string>19.IBPluginDependency</string>
         | 
| 2601 | 
            +
            					<string>19.ImportedFromIB2</string>
         | 
| 2602 | 
            +
            					<string>195.IBPluginDependency</string>
         | 
| 2603 | 
            +
            					<string>195.ImportedFromIB2</string>
         | 
| 2604 | 
            +
            					<string>196.IBPluginDependency</string>
         | 
| 2605 | 
            +
            					<string>196.ImportedFromIB2</string>
         | 
| 2606 | 
            +
            					<string>197.IBPluginDependency</string>
         | 
| 2607 | 
            +
            					<string>197.ImportedFromIB2</string>
         | 
| 2608 | 
            +
            					<string>198.IBPluginDependency</string>
         | 
| 2609 | 
            +
            					<string>198.ImportedFromIB2</string>
         | 
| 2610 | 
            +
            					<string>199.IBPluginDependency</string>
         | 
| 2611 | 
            +
            					<string>199.ImportedFromIB2</string>
         | 
| 2612 | 
            +
            					<string>200.IBPluginDependency</string>
         | 
| 2613 | 
            +
            					<string>200.ImportedFromIB2</string>
         | 
| 2614 | 
            +
            					<string>200.editorWindowContentRectSynchronizationRect</string>
         | 
| 2615 | 
            +
            					<string>201.IBPluginDependency</string>
         | 
| 2616 | 
            +
            					<string>201.ImportedFromIB2</string>
         | 
| 2617 | 
            +
            					<string>202.IBPluginDependency</string>
         | 
| 2618 | 
            +
            					<string>202.ImportedFromIB2</string>
         | 
| 2619 | 
            +
            					<string>203.IBPluginDependency</string>
         | 
| 2620 | 
            +
            					<string>203.ImportedFromIB2</string>
         | 
| 2621 | 
            +
            					<string>204.IBPluginDependency</string>
         | 
| 2622 | 
            +
            					<string>204.ImportedFromIB2</string>
         | 
| 2623 | 
            +
            					<string>205.IBPluginDependency</string>
         | 
| 2624 | 
            +
            					<string>205.ImportedFromIB2</string>
         | 
| 2625 | 
            +
            					<string>205.editorWindowContentRectSynchronizationRect</string>
         | 
| 2626 | 
            +
            					<string>206.IBPluginDependency</string>
         | 
| 2627 | 
            +
            					<string>206.ImportedFromIB2</string>
         | 
| 2628 | 
            +
            					<string>207.IBPluginDependency</string>
         | 
| 2629 | 
            +
            					<string>207.ImportedFromIB2</string>
         | 
| 2630 | 
            +
            					<string>208.IBPluginDependency</string>
         | 
| 2631 | 
            +
            					<string>208.ImportedFromIB2</string>
         | 
| 2632 | 
            +
            					<string>209.IBPluginDependency</string>
         | 
| 2633 | 
            +
            					<string>209.ImportedFromIB2</string>
         | 
| 2634 | 
            +
            					<string>210.IBPluginDependency</string>
         | 
| 2635 | 
            +
            					<string>210.ImportedFromIB2</string>
         | 
| 2636 | 
            +
            					<string>211.IBPluginDependency</string>
         | 
| 2637 | 
            +
            					<string>211.ImportedFromIB2</string>
         | 
| 2638 | 
            +
            					<string>212.IBPluginDependency</string>
         | 
| 2639 | 
            +
            					<string>212.ImportedFromIB2</string>
         | 
| 2640 | 
            +
            					<string>212.editorWindowContentRectSynchronizationRect</string>
         | 
| 2641 | 
            +
            					<string>213.IBPluginDependency</string>
         | 
| 2642 | 
            +
            					<string>213.ImportedFromIB2</string>
         | 
| 2643 | 
            +
            					<string>214.IBPluginDependency</string>
         | 
| 2644 | 
            +
            					<string>214.ImportedFromIB2</string>
         | 
| 2645 | 
            +
            					<string>215.IBPluginDependency</string>
         | 
| 2646 | 
            +
            					<string>215.ImportedFromIB2</string>
         | 
| 2647 | 
            +
            					<string>216.IBPluginDependency</string>
         | 
| 2648 | 
            +
            					<string>216.ImportedFromIB2</string>
         | 
| 2649 | 
            +
            					<string>217.IBPluginDependency</string>
         | 
| 2650 | 
            +
            					<string>217.ImportedFromIB2</string>
         | 
| 2651 | 
            +
            					<string>218.IBPluginDependency</string>
         | 
| 2652 | 
            +
            					<string>218.ImportedFromIB2</string>
         | 
| 2653 | 
            +
            					<string>219.IBPluginDependency</string>
         | 
| 2654 | 
            +
            					<string>219.ImportedFromIB2</string>
         | 
| 2655 | 
            +
            					<string>220.IBPluginDependency</string>
         | 
| 2656 | 
            +
            					<string>220.ImportedFromIB2</string>
         | 
| 2657 | 
            +
            					<string>220.editorWindowContentRectSynchronizationRect</string>
         | 
| 2658 | 
            +
            					<string>221.IBPluginDependency</string>
         | 
| 2659 | 
            +
            					<string>221.ImportedFromIB2</string>
         | 
| 2660 | 
            +
            					<string>23.IBPluginDependency</string>
         | 
| 2661 | 
            +
            					<string>23.ImportedFromIB2</string>
         | 
| 2662 | 
            +
            					<string>236.IBPluginDependency</string>
         | 
| 2663 | 
            +
            					<string>236.ImportedFromIB2</string>
         | 
| 2664 | 
            +
            					<string>239.IBPluginDependency</string>
         | 
| 2665 | 
            +
            					<string>239.ImportedFromIB2</string>
         | 
| 2666 | 
            +
            					<string>24.IBPluginDependency</string>
         | 
| 2667 | 
            +
            					<string>24.ImportedFromIB2</string>
         | 
| 2668 | 
            +
            					<string>24.editorWindowContentRectSynchronizationRect</string>
         | 
| 2669 | 
            +
            					<string>29.IBEditorWindowLastContentRect</string>
         | 
| 2670 | 
            +
            					<string>29.IBPluginDependency</string>
         | 
| 2671 | 
            +
            					<string>29.ImportedFromIB2</string>
         | 
| 2672 | 
            +
            					<string>29.WindowOrigin</string>
         | 
| 2673 | 
            +
            					<string>29.editorWindowContentRectSynchronizationRect</string>
         | 
| 2674 | 
            +
            					<string>295.IBPluginDependency</string>
         | 
| 2675 | 
            +
            					<string>296.IBPluginDependency</string>
         | 
| 2676 | 
            +
            					<string>296.editorWindowContentRectSynchronizationRect</string>
         | 
| 2677 | 
            +
            					<string>297.IBPluginDependency</string>
         | 
| 2678 | 
            +
            					<string>298.IBPluginDependency</string>
         | 
| 2679 | 
            +
            					<string>346.IBPluginDependency</string>
         | 
| 2680 | 
            +
            					<string>346.ImportedFromIB2</string>
         | 
| 2681 | 
            +
            					<string>348.IBPluginDependency</string>
         | 
| 2682 | 
            +
            					<string>348.ImportedFromIB2</string>
         | 
| 2683 | 
            +
            					<string>349.IBPluginDependency</string>
         | 
| 2684 | 
            +
            					<string>349.ImportedFromIB2</string>
         | 
| 2685 | 
            +
            					<string>349.editorWindowContentRectSynchronizationRect</string>
         | 
| 2686 | 
            +
            					<string>350.IBPluginDependency</string>
         | 
| 2687 | 
            +
            					<string>350.ImportedFromIB2</string>
         | 
| 2688 | 
            +
            					<string>351.IBPluginDependency</string>
         | 
| 2689 | 
            +
            					<string>351.ImportedFromIB2</string>
         | 
| 2690 | 
            +
            					<string>354.IBPluginDependency</string>
         | 
| 2691 | 
            +
            					<string>354.ImportedFromIB2</string>
         | 
| 2692 | 
            +
            					<string>371.IBEditorWindowLastContentRect</string>
         | 
| 2693 | 
            +
            					<string>371.IBPluginDependency</string>
         | 
| 2694 | 
            +
            					<string>371.IBWindowTemplateEditedContentRect</string>
         | 
| 2695 | 
            +
            					<string>371.NSWindowTemplate.visibleAtLaunch</string>
         | 
| 2696 | 
            +
            					<string>371.editorWindowContentRectSynchronizationRect</string>
         | 
| 2697 | 
            +
            					<string>371.windowTemplate.maxSize</string>
         | 
| 2698 | 
            +
            					<string>372.IBPluginDependency</string>
         | 
| 2699 | 
            +
            					<string>375.IBPluginDependency</string>
         | 
| 2700 | 
            +
            					<string>376.IBEditorWindowLastContentRect</string>
         | 
| 2701 | 
            +
            					<string>376.IBPluginDependency</string>
         | 
| 2702 | 
            +
            					<string>377.IBPluginDependency</string>
         | 
| 2703 | 
            +
            					<string>378.IBPluginDependency</string>
         | 
| 2704 | 
            +
            					<string>379.IBPluginDependency</string>
         | 
| 2705 | 
            +
            					<string>380.IBPluginDependency</string>
         | 
| 2706 | 
            +
            					<string>381.IBPluginDependency</string>
         | 
| 2707 | 
            +
            					<string>382.IBPluginDependency</string>
         | 
| 2708 | 
            +
            					<string>383.IBPluginDependency</string>
         | 
| 2709 | 
            +
            					<string>384.IBPluginDependency</string>
         | 
| 2710 | 
            +
            					<string>385.IBPluginDependency</string>
         | 
| 2711 | 
            +
            					<string>386.IBPluginDependency</string>
         | 
| 2712 | 
            +
            					<string>387.IBPluginDependency</string>
         | 
| 2713 | 
            +
            					<string>388.IBEditorWindowLastContentRect</string>
         | 
| 2714 | 
            +
            					<string>388.IBPluginDependency</string>
         | 
| 2715 | 
            +
            					<string>389.IBPluginDependency</string>
         | 
| 2716 | 
            +
            					<string>390.IBPluginDependency</string>
         | 
| 2717 | 
            +
            					<string>391.IBPluginDependency</string>
         | 
| 2718 | 
            +
            					<string>392.IBPluginDependency</string>
         | 
| 2719 | 
            +
            					<string>393.IBPluginDependency</string>
         | 
| 2720 | 
            +
            					<string>394.IBPluginDependency</string>
         | 
| 2721 | 
            +
            					<string>395.IBPluginDependency</string>
         | 
| 2722 | 
            +
            					<string>396.IBPluginDependency</string>
         | 
| 2723 | 
            +
            					<string>397.IBPluginDependency</string>
         | 
| 2724 | 
            +
            					<string>398.IBPluginDependency</string>
         | 
| 2725 | 
            +
            					<string>399.IBPluginDependency</string>
         | 
| 2726 | 
            +
            					<string>400.IBPluginDependency</string>
         | 
| 2727 | 
            +
            					<string>401.IBPluginDependency</string>
         | 
| 2728 | 
            +
            					<string>402.IBPluginDependency</string>
         | 
| 2729 | 
            +
            					<string>403.IBPluginDependency</string>
         | 
| 2730 | 
            +
            					<string>404.IBPluginDependency</string>
         | 
| 2731 | 
            +
            					<string>405.IBPluginDependency</string>
         | 
| 2732 | 
            +
            					<string>406.IBPluginDependency</string>
         | 
| 2733 | 
            +
            					<string>407.IBPluginDependency</string>
         | 
| 2734 | 
            +
            					<string>408.IBPluginDependency</string>
         | 
| 2735 | 
            +
            					<string>409.IBPluginDependency</string>
         | 
| 2736 | 
            +
            					<string>410.IBPluginDependency</string>
         | 
| 2737 | 
            +
            					<string>411.IBPluginDependency</string>
         | 
| 2738 | 
            +
            					<string>412.IBPluginDependency</string>
         | 
| 2739 | 
            +
            					<string>413.IBPluginDependency</string>
         | 
| 2740 | 
            +
            					<string>414.IBPluginDependency</string>
         | 
| 2741 | 
            +
            					<string>415.IBPluginDependency</string>
         | 
| 2742 | 
            +
            					<string>416.IBPluginDependency</string>
         | 
| 2743 | 
            +
            					<string>417.IBPluginDependency</string>
         | 
| 2744 | 
            +
            					<string>418.IBPluginDependency</string>
         | 
| 2745 | 
            +
            					<string>419.IBPluginDependency</string>
         | 
| 2746 | 
            +
            					<string>5.IBPluginDependency</string>
         | 
| 2747 | 
            +
            					<string>5.ImportedFromIB2</string>
         | 
| 2748 | 
            +
            					<string>56.IBPluginDependency</string>
         | 
| 2749 | 
            +
            					<string>56.ImportedFromIB2</string>
         | 
| 2750 | 
            +
            					<string>57.IBEditorWindowLastContentRect</string>
         | 
| 2751 | 
            +
            					<string>57.IBPluginDependency</string>
         | 
| 2752 | 
            +
            					<string>57.ImportedFromIB2</string>
         | 
| 2753 | 
            +
            					<string>57.editorWindowContentRectSynchronizationRect</string>
         | 
| 2754 | 
            +
            					<string>58.IBPluginDependency</string>
         | 
| 2755 | 
            +
            					<string>58.ImportedFromIB2</string>
         | 
| 2756 | 
            +
            					<string>72.IBPluginDependency</string>
         | 
| 2757 | 
            +
            					<string>72.ImportedFromIB2</string>
         | 
| 2758 | 
            +
            					<string>73.IBPluginDependency</string>
         | 
| 2759 | 
            +
            					<string>73.ImportedFromIB2</string>
         | 
| 2760 | 
            +
            					<string>74.IBPluginDependency</string>
         | 
| 2761 | 
            +
            					<string>74.ImportedFromIB2</string>
         | 
| 2762 | 
            +
            					<string>75.IBPluginDependency</string>
         | 
| 2763 | 
            +
            					<string>75.ImportedFromIB2</string>
         | 
| 2764 | 
            +
            					<string>77.IBPluginDependency</string>
         | 
| 2765 | 
            +
            					<string>77.ImportedFromIB2</string>
         | 
| 2766 | 
            +
            					<string>78.IBPluginDependency</string>
         | 
| 2767 | 
            +
            					<string>78.ImportedFromIB2</string>
         | 
| 2768 | 
            +
            					<string>79.IBPluginDependency</string>
         | 
| 2769 | 
            +
            					<string>79.ImportedFromIB2</string>
         | 
| 2770 | 
            +
            					<string>80.IBPluginDependency</string>
         | 
| 2771 | 
            +
            					<string>80.ImportedFromIB2</string>
         | 
| 2772 | 
            +
            					<string>81.IBPluginDependency</string>
         | 
| 2773 | 
            +
            					<string>81.ImportedFromIB2</string>
         | 
| 2774 | 
            +
            					<string>81.editorWindowContentRectSynchronizationRect</string>
         | 
| 2775 | 
            +
            					<string>82.IBPluginDependency</string>
         | 
| 2776 | 
            +
            					<string>82.ImportedFromIB2</string>
         | 
| 2777 | 
            +
            					<string>83.IBPluginDependency</string>
         | 
| 2778 | 
            +
            					<string>83.ImportedFromIB2</string>
         | 
| 2779 | 
            +
            					<string>92.IBPluginDependency</string>
         | 
| 2780 | 
            +
            					<string>92.ImportedFromIB2</string>
         | 
| 2781 | 
            +
            				</object>
         | 
| 2782 | 
            +
            				<object class="NSMutableArray" key="dict.values">
         | 
| 2783 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 2784 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2785 | 
            +
            					<string>com.apple.InterfaceBuilderKit</string>
         | 
| 2786 | 
            +
            					<string>com.apple.InterfaceBuilderKit</string>
         | 
| 2787 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2788 | 
            +
            					<integer value="1" id="9"/>
         | 
| 2789 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2790 | 
            +
            					<reference ref="9"/>
         | 
| 2791 | 
            +
            					<string>{{596, 852}, {216, 23}}</string>
         | 
| 2792 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2793 | 
            +
            					<reference ref="9"/>
         | 
| 2794 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2795 | 
            +
            					<reference ref="9"/>
         | 
| 2796 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2797 | 
            +
            					<reference ref="9"/>
         | 
| 2798 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2799 | 
            +
            					<reference ref="9"/>
         | 
| 2800 | 
            +
            					<string>{{522, 812}, {146, 23}}</string>
         | 
| 2801 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2802 | 
            +
            					<reference ref="9"/>
         | 
| 2803 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2804 | 
            +
            					<reference ref="9"/>
         | 
| 2805 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2806 | 
            +
            					<reference ref="9"/>
         | 
| 2807 | 
            +
            					<string>{{436, 809}, {64, 6}}</string>
         | 
| 2808 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2809 | 
            +
            					<reference ref="9"/>
         | 
| 2810 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2811 | 
            +
            					<reference ref="9"/>
         | 
| 2812 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2813 | 
            +
            					<reference ref="9"/>
         | 
| 2814 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2815 | 
            +
            					<reference ref="9"/>
         | 
| 2816 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2817 | 
            +
            					<reference ref="9"/>
         | 
| 2818 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2819 | 
            +
            					<reference ref="9"/>
         | 
| 2820 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2821 | 
            +
            					<reference ref="9"/>
         | 
| 2822 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2823 | 
            +
            					<reference ref="9"/>
         | 
| 2824 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2825 | 
            +
            					<reference ref="9"/>
         | 
| 2826 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2827 | 
            +
            					<reference ref="9"/>
         | 
| 2828 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2829 | 
            +
            					<reference ref="9"/>
         | 
| 2830 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2831 | 
            +
            					<reference ref="9"/>
         | 
| 2832 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2833 | 
            +
            					<reference ref="9"/>
         | 
| 2834 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2835 | 
            +
            					<reference ref="9"/>
         | 
| 2836 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2837 | 
            +
            					<reference ref="9"/>
         | 
| 2838 | 
            +
            					<string>{{608, 612}, {275, 83}}</string>
         | 
| 2839 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2840 | 
            +
            					<reference ref="9"/>
         | 
| 2841 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2842 | 
            +
            					<reference ref="9"/>
         | 
| 2843 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2844 | 
            +
            					<reference ref="9"/>
         | 
| 2845 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2846 | 
            +
            					<reference ref="9"/>
         | 
| 2847 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2848 | 
            +
            					<reference ref="9"/>
         | 
| 2849 | 
            +
            					<string>{{187, 434}, {243, 243}}</string>
         | 
| 2850 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2851 | 
            +
            					<reference ref="9"/>
         | 
| 2852 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2853 | 
            +
            					<reference ref="9"/>
         | 
| 2854 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2855 | 
            +
            					<reference ref="9"/>
         | 
| 2856 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2857 | 
            +
            					<reference ref="9"/>
         | 
| 2858 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2859 | 
            +
            					<reference ref="9"/>
         | 
| 2860 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2861 | 
            +
            					<reference ref="9"/>
         | 
| 2862 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2863 | 
            +
            					<reference ref="9"/>
         | 
| 2864 | 
            +
            					<string>{{608, 612}, {167, 43}}</string>
         | 
| 2865 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2866 | 
            +
            					<reference ref="9"/>
         | 
| 2867 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2868 | 
            +
            					<reference ref="9"/>
         | 
| 2869 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2870 | 
            +
            					<reference ref="9"/>
         | 
| 2871 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2872 | 
            +
            					<reference ref="9"/>
         | 
| 2873 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2874 | 
            +
            					<reference ref="9"/>
         | 
| 2875 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2876 | 
            +
            					<reference ref="9"/>
         | 
| 2877 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2878 | 
            +
            					<reference ref="9"/>
         | 
| 2879 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2880 | 
            +
            					<reference ref="9"/>
         | 
| 2881 | 
            +
            					<string>{{608, 612}, {241, 103}}</string>
         | 
| 2882 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2883 | 
            +
            					<reference ref="9"/>
         | 
| 2884 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2885 | 
            +
            					<reference ref="9"/>
         | 
| 2886 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2887 | 
            +
            					<reference ref="9"/>
         | 
| 2888 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2889 | 
            +
            					<reference ref="9"/>
         | 
| 2890 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2891 | 
            +
            					<reference ref="9"/>
         | 
| 2892 | 
            +
            					<string>{{525, 802}, {197, 73}}</string>
         | 
| 2893 | 
            +
            					<string>{{207, 285}, {478, 20}}</string>
         | 
| 2894 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2895 | 
            +
            					<reference ref="9"/>
         | 
| 2896 | 
            +
            					<string>{74, 862}</string>
         | 
| 2897 | 
            +
            					<string>{{6, 978}, {478, 20}}</string>
         | 
| 2898 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2899 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2900 | 
            +
            					<string>{{475, 832}, {234, 43}}</string>
         | 
| 2901 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2902 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2903 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2904 | 
            +
            					<reference ref="9"/>
         | 
| 2905 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2906 | 
            +
            					<reference ref="9"/>
         | 
| 2907 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2908 | 
            +
            					<reference ref="9"/>
         | 
| 2909 | 
            +
            					<string>{{608, 612}, {215, 63}}</string>
         | 
| 2910 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2911 | 
            +
            					<reference ref="9"/>
         | 
| 2912 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2913 | 
            +
            					<reference ref="9"/>
         | 
| 2914 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2915 | 
            +
            					<reference ref="9"/>
         | 
| 2916 | 
            +
            					<string>{{335, 390}, {480, 360}}</string>
         | 
| 2917 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2918 | 
            +
            					<string>{{335, 390}, {480, 360}}</string>
         | 
| 2919 | 
            +
            					<reference ref="9"/>
         | 
| 2920 | 
            +
            					<string>{{33, 99}, {480, 360}}</string>
         | 
| 2921 | 
            +
            					<string>{3.40282e+38, 3.40282e+38}</string>
         | 
| 2922 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2923 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2924 | 
            +
            					<string>{{437, 242}, {86, 43}}</string>
         | 
| 2925 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2926 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2927 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2928 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2929 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2930 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2931 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2932 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2933 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2934 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2935 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2936 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2937 | 
            +
            					<string>{{523, 2}, {178, 283}}</string>
         | 
| 2938 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2939 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2940 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2941 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2942 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2943 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2944 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2945 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2946 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2947 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2948 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2949 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2950 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2951 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2952 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2953 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2954 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2955 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2956 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2957 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2958 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2959 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2960 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2961 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2962 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2963 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2964 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2965 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2966 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2967 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2968 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2969 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2970 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2971 | 
            +
            					<reference ref="9"/>
         | 
| 2972 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2973 | 
            +
            					<reference ref="9"/>
         | 
| 2974 | 
            +
            					<string>{{219, 102}, {245, 183}}</string>
         | 
| 2975 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2976 | 
            +
            					<reference ref="9"/>
         | 
| 2977 | 
            +
            					<string>{{23, 794}, {245, 183}}</string>
         | 
| 2978 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2979 | 
            +
            					<reference ref="9"/>
         | 
| 2980 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2981 | 
            +
            					<reference ref="9"/>
         | 
| 2982 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2983 | 
            +
            					<reference ref="9"/>
         | 
| 2984 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2985 | 
            +
            					<reference ref="9"/>
         | 
| 2986 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2987 | 
            +
            					<reference ref="9"/>
         | 
| 2988 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2989 | 
            +
            					<reference ref="9"/>
         | 
| 2990 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2991 | 
            +
            					<reference ref="9"/>
         | 
| 2992 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2993 | 
            +
            					<reference ref="9"/>
         | 
| 2994 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2995 | 
            +
            					<reference ref="9"/>
         | 
| 2996 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 2997 | 
            +
            					<reference ref="9"/>
         | 
| 2998 | 
            +
            					<string>{{145, 474}, {199, 203}}</string>
         | 
| 2999 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 3000 | 
            +
            					<reference ref="9"/>
         | 
| 3001 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 3002 | 
            +
            					<reference ref="9"/>
         | 
| 3003 | 
            +
            					<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
         | 
| 3004 | 
            +
            					<reference ref="9"/>
         | 
| 3005 | 
            +
            				</object>
         | 
| 3006 | 
            +
            			</object>
         | 
| 3007 | 
            +
            			<object class="NSMutableDictionary" key="unlocalizedProperties">
         | 
| 3008 | 
            +
            				<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3009 | 
            +
            				<object class="NSArray" key="dict.sortedKeys">
         | 
| 3010 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3011 | 
            +
            				</object>
         | 
| 3012 | 
            +
            				<object class="NSMutableArray" key="dict.values">
         | 
| 3013 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3014 | 
            +
            				</object>
         | 
| 3015 | 
            +
            			</object>
         | 
| 3016 | 
            +
            			<nil key="activeLocalization"/>
         | 
| 3017 | 
            +
            			<object class="NSMutableDictionary" key="localizations">
         | 
| 3018 | 
            +
            				<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3019 | 
            +
            				<object class="NSArray" key="dict.sortedKeys">
         | 
| 3020 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3021 | 
            +
            				</object>
         | 
| 3022 | 
            +
            				<object class="NSMutableArray" key="dict.values">
         | 
| 3023 | 
            +
            					<bool key="EncodedWithXMLCoder">YES</bool>
         | 
| 3024 | 
            +
            				</object>
         | 
| 3025 | 
            +
            			</object>
         | 
| 3026 | 
            +
            			<nil key="sourceID"/>
         | 
| 3027 | 
            +
            			<int key="maxID">449</int>
         | 
| 3028 | 
            +
            		</object>
         | 
| 3029 | 
            +
            		<object class="IBClassDescriber" key="IBDocument.Classes"/>
         | 
| 3030 | 
            +
            		<int key="IBDocument.localizationMode">0</int>
         | 
| 3031 | 
            +
            		<nil key="IBDocument.LastKnownRelativeProjectPath"/>
         | 
| 3032 | 
            +
            		<int key="IBDocument.defaultPropertyAccessControl">3</int>
         | 
| 3033 | 
            +
            	</data>
         | 
| 3034 | 
            +
            </archive>
         |