appfactory 0.1
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/.DS_Store +0 -0
- data/History.txt +6 -0
- data/Manifest.txt +18 -0
- data/README.txt +48 -0
- data/Rakefile +16 -0
- data/bin/appfactory +109 -0
- data/examples/appmain.rb +26 -0
- data/lib/appfactory.rb +3 -0
- data/template/appfactory.app.template/Contents/Info.plist +26 -0
- data/template/appfactory.app.template/Contents/MacOS/appfactory +0 -0
- data/template/appfactory.app.template/Contents/PkgInfo +1 -0
- data/template/appfactory.app.template/Contents/Resources/English.lproj/InfoPlist.strings +0 -0
- data/template/appfactory.app.template/Contents/Resources/English.lproj/MainMenu.nib/designable.nib +2398 -0
- data/template/appfactory.app.template/Contents/Resources/English.lproj/MainMenu.nib/keyedobjects.nib +0 -0
- data/template/appfactory.app.template/Contents/Resources/growl.rb +168 -0
- data/template/appfactory.app.template/Contents/Resources/rb_main.rb +171 -0
- data/template/appfactory.app.template/Contents/Resources/ruby.icns +0 -0
- data/template/appfactory.app.template/Contents/Resources/ruby_statusbar.png +0 -0
- metadata +105 -0
data/.DS_Store
ADDED
Binary file
|
data/History.txt
ADDED
data/Manifest.txt
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
.DS_Store
|
2
|
+
History.txt
|
3
|
+
Manifest.txt
|
4
|
+
README.txt
|
5
|
+
Rakefile
|
6
|
+
bin/appfactory
|
7
|
+
examples/appmain.rb
|
8
|
+
lib/appfactory.rb
|
9
|
+
template/appfactory.app.template/Contents/Info.plist
|
10
|
+
template/appfactory.app.template/Contents/MacOS/appfactory
|
11
|
+
template/appfactory.app.template/Contents/PkgInfo
|
12
|
+
template/appfactory.app.template/Contents/Resources/English.lproj/InfoPlist.strings
|
13
|
+
template/appfactory.app.template/Contents/Resources/English.lproj/MainMenu.nib/designable.nib
|
14
|
+
template/appfactory.app.template/Contents/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
|
15
|
+
template/appfactory.app.template/Contents/Resources/growl.rb
|
16
|
+
template/appfactory.app.template/Contents/Resources/rb_main.rb
|
17
|
+
template/appfactory.app.template/Contents/Resources/ruby.icns
|
18
|
+
template/appfactory.app.template/Contents/Resources/ruby_statusbar.png
|
data/README.txt
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
= appfactory
|
2
|
+
|
3
|
+
* FIX (url)
|
4
|
+
|
5
|
+
== DESCRIPTION:
|
6
|
+
|
7
|
+
FIX (describe your package)
|
8
|
+
|
9
|
+
== FEATURES/PROBLEMS:
|
10
|
+
|
11
|
+
* FIX (list of features or problems)
|
12
|
+
|
13
|
+
== SYNOPSIS:
|
14
|
+
|
15
|
+
FIX (code sample of usage)
|
16
|
+
|
17
|
+
== REQUIREMENTS:
|
18
|
+
|
19
|
+
* FIX (list of requirements)
|
20
|
+
|
21
|
+
== INSTALL:
|
22
|
+
|
23
|
+
* FIX (sudo gem install, anything else)
|
24
|
+
|
25
|
+
== LICENSE:
|
26
|
+
|
27
|
+
(The MIT License)
|
28
|
+
|
29
|
+
Copyright (c) 2009 FIX
|
30
|
+
|
31
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
32
|
+
a copy of this software and associated documentation files (the
|
33
|
+
'Software'), to deal in the Software without restriction, including
|
34
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
35
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
36
|
+
permit persons to whom the Software is furnished to do so, subject to
|
37
|
+
the following conditions:
|
38
|
+
|
39
|
+
The above copyright notice and this permission notice shall be
|
40
|
+
included in all copies or substantial portions of the Software.
|
41
|
+
|
42
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
43
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
44
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
45
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
46
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
47
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
48
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'hoe'
|
5
|
+
require './lib/appfactory.rb'
|
6
|
+
|
7
|
+
Hoe.new('appfactory', AppFactory::VERSION) do |p|
|
8
|
+
p.developer('Sergio Rubio', 'sergio@rubio.name')
|
9
|
+
p.summary = 'Mac OS X StatusBar App Builder!'
|
10
|
+
p.description = 'Easily create Status Bar Applications for Mac OS X'
|
11
|
+
p.url = 'http://appfactory.netcorex.org'
|
12
|
+
p.extra_deps << [ 'choice', '>=0.1.3' ]
|
13
|
+
p.extra_deps << [ 'bundler', '>=0.7']
|
14
|
+
end
|
15
|
+
|
16
|
+
# vim: syntax=Ruby
|
data/bin/appfactory
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'rubygems'
|
3
|
+
require 'choice'
|
4
|
+
require 'fileutils'
|
5
|
+
require 'pp'
|
6
|
+
|
7
|
+
begin
|
8
|
+
v = Gem::Version.create Gem::RubyGemsVersion
|
9
|
+
req_version = Gem::Version.create('1.3.5')
|
10
|
+
if !(v >= req_version)
|
11
|
+
$stderr.puts "You need to have rubygems version >= 1.3.5 installed to use AppFactory"
|
12
|
+
end
|
13
|
+
rescue Exception => e
|
14
|
+
$stderr.puts "Can't detect rubygems version. Make sure you have rubygems >= 1.3.5"
|
15
|
+
end
|
16
|
+
|
17
|
+
Choice.options do
|
18
|
+
banner 'Usage: appfactory <app_name>'
|
19
|
+
header ''
|
20
|
+
header 'Available options:'
|
21
|
+
|
22
|
+
option :help do
|
23
|
+
long '--help'
|
24
|
+
short '-h'
|
25
|
+
desc 'Show this message'
|
26
|
+
action do
|
27
|
+
Choice.help
|
28
|
+
exit
|
29
|
+
end
|
30
|
+
end
|
31
|
+
option :dsl do
|
32
|
+
long '--dsl=FILE'
|
33
|
+
short '-d'
|
34
|
+
desc 'DSL code to build the App'
|
35
|
+
action do |f|
|
36
|
+
if not File.exist?(f) or File.directory?(f)
|
37
|
+
$stderr.puts "#{f} is not a valid DSL file"
|
38
|
+
exit 1
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
option :appname do
|
44
|
+
long '--appname=NAME'
|
45
|
+
short '-n'
|
46
|
+
desc 'Application Name'
|
47
|
+
end
|
48
|
+
|
49
|
+
option :bundle do
|
50
|
+
long '--bundle *LIBS'
|
51
|
+
desc 'Include the specified libraries'
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def check_required(*args)
|
56
|
+
args.each do |arg|
|
57
|
+
if !Choice.choices[arg.to_sym]
|
58
|
+
$stderr.puts "\nOption --#{arg.to_s} is required\n\n"
|
59
|
+
Choice.help
|
60
|
+
exit 1
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
check_required :dsl, :appname
|
66
|
+
|
67
|
+
TMPLDIR="#{File.dirname(__FILE__)}/../template"
|
68
|
+
appname = Choice.choices[:appname]
|
69
|
+
appdir = appname.downcase
|
70
|
+
if File.exist?(appdir)
|
71
|
+
$stderr.puts "Directory #{appdir} already exists"
|
72
|
+
exit 1
|
73
|
+
end
|
74
|
+
|
75
|
+
CONTENTS_DIR = "#{appdir}/#{appname}.app/Contents"
|
76
|
+
RESOURCES_DIR = "#{CONTENTS_DIR}/Resources"
|
77
|
+
appversion = '0.1'
|
78
|
+
|
79
|
+
|
80
|
+
puts "Creating application directory #{appdir}"
|
81
|
+
Dir.mkdir appdir
|
82
|
+
|
83
|
+
puts "Creating the Application Bundle..."
|
84
|
+
FileUtils.cp_r("#{TMPLDIR}/appfactory.app.template", "#{appdir}/#{appname}.app")
|
85
|
+
|
86
|
+
plist = IO.read("#{CONTENTS_DIR}/Info.plist")
|
87
|
+
File.open("#{CONTENTS_DIR}/Info.plist", 'w') do |f|
|
88
|
+
plist.gsub! "@@CFBUNDLENAME@@", appname
|
89
|
+
plist.gsub! "@@CFBUNDLEVERSION@@", appversion
|
90
|
+
f.puts plist
|
91
|
+
end
|
92
|
+
|
93
|
+
if Choice.choices[:bundle]
|
94
|
+
Choice.choices[:bundle].each do |l|
|
95
|
+
File.open("#{RESOURCES_DIR}/Gemfile",'w') do |f|
|
96
|
+
f.puts "gem '#{l}'"
|
97
|
+
end
|
98
|
+
puts "Vendoring #{l} library..."
|
99
|
+
`gem bundle --manifest #{RESOURCES_DIR}/Gemfile`
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
puts "Adding the DSL file..."
|
104
|
+
File.open("#{RESOURCES_DIR}/dsl.rb", 'w') do |f|
|
105
|
+
dsl = File.read(Choice.choices[:dsl])
|
106
|
+
f.puts dsl
|
107
|
+
end
|
108
|
+
|
109
|
+
`open #{appdir}`
|
data/examples/appmain.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'restclient'
|
3
|
+
require 'json'
|
4
|
+
|
5
|
+
register_growl_events [:say_hello, :say_goodbye]
|
6
|
+
|
7
|
+
menu 'delicious.com' do |m|
|
8
|
+
end
|
9
|
+
|
10
|
+
menu_separator
|
11
|
+
|
12
|
+
menu_quit
|
13
|
+
|
14
|
+
timer 5 do
|
15
|
+
AppFactory.debug 'running feed parser'
|
16
|
+
json_feed = JSON.parse(RestClient.get "http://feeds.delicious.com/v2/json/")
|
17
|
+
menu 'delicious.com' do |m|
|
18
|
+
clear_menu m
|
19
|
+
json_feed.each do |i|
|
20
|
+
AppFactory.debug "Adding item: #{i['d']}"
|
21
|
+
menu_item i['d'] do
|
22
|
+
open_url i['u']
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
data/lib/appfactory.rb
ADDED
@@ -0,0 +1,26 @@
|
|
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>appfactory</string>
|
9
|
+
<key>CFBundleIdentifier</key>
|
10
|
+
<string>org.netcorex.appfactory</string>
|
11
|
+
<key>CFBundleIconFile</key>
|
12
|
+
<string>ruby.icns</string>
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
14
|
+
<string>6.0</string>
|
15
|
+
<key>CFBundleName</key>
|
16
|
+
<string>@@CFBUNDLENAME@@</string>
|
17
|
+
<key>CFBundlePackageType</key>
|
18
|
+
<string>APPL</string>
|
19
|
+
<key>CFBundleSignature</key>
|
20
|
+
<string>????</string>
|
21
|
+
<key>CFBundleVersion</key>
|
22
|
+
<string>@@CFBUNDLEVERSION@@</string>
|
23
|
+
<key>NSPrincipalClass</key>
|
24
|
+
<string>NSApplication</string>
|
25
|
+
</dict>
|
26
|
+
</plist>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
APPL????
|
Binary file
|
data/template/appfactory.app.template/Contents/Resources/English.lproj/MainMenu.nib/designable.nib
ADDED
@@ -0,0 +1,2398 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.01">
|
3
|
+
<data>
|
4
|
+
<int key="IBDocument.SystemTarget">0</int>
|
5
|
+
<string key="IBDocument.SystemVersion">9A446</string>
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">602</string>
|
7
|
+
<string key="IBDocument.AppKitVersion">908</string>
|
8
|
+
<string key="IBDocument.HIToolboxVersion">308.00</string>
|
9
|
+
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
|
10
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
11
|
+
<integer value="371"/>
|
12
|
+
<integer value="29"/>
|
13
|
+
</object>
|
14
|
+
<object class="NSArray" key="IBDocument.PluginDependencies">
|
15
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
16
|
+
<string id="617114957">com.apple.InterfaceBuilderKit</string>
|
17
|
+
<string id="578961457">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" id="1039455869">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
|
+
<reference key="NSClassName" ref="1039455869"/>
|
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" id="544929600">NewApplication</string>
|
37
|
+
<string key="NSKeyEquiv" id="1003"/>
|
38
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
39
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
40
|
+
<object class="NSCustomResource" key="NSOnImage" id="35465992">
|
41
|
+
<string key="NSClassName" id="1066576605">NSImage</string>
|
42
|
+
<string key="NSResourceName">NSMenuCheckmark</string>
|
43
|
+
</object>
|
44
|
+
<object class="NSCustomResource" key="NSMixedImage" id="1012826480">
|
45
|
+
<reference key="NSClassName" ref="1066576605"/>
|
46
|
+
<string key="NSResourceName">NSMenuMixedState</string>
|
47
|
+
</object>
|
48
|
+
<string key="NSAction" id="714627284">submenuAction:</string>
|
49
|
+
<object class="NSMenu" key="NSSubmenu" id="110575045">
|
50
|
+
<reference key="NSTitle" ref="544929600"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
57
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
58
|
+
<reference key="NSOnImage" ref="35465992"/>
|
59
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
66
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
67
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
68
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
69
|
+
<reference key="NSOnImage" ref="35465992"/>
|
70
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
86
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
87
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
88
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
89
|
+
<reference key="NSOnImage" ref="35465992"/>
|
90
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
91
|
+
</object>
|
92
|
+
<object class="NSMenuItem" id="1046388886">
|
93
|
+
<reference key="NSMenu" ref="110575045"/>
|
94
|
+
<string key="NSTitle" id="487627014">Services</string>
|
95
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
96
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
97
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
98
|
+
<reference key="NSOnImage" ref="35465992"/>
|
99
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
100
|
+
<reference key="NSAction" ref="714627284"/>
|
101
|
+
<object class="NSMenu" key="NSSubmenu" id="752062318">
|
102
|
+
<reference key="NSTitle" ref="487627014"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
114
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
115
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
116
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
117
|
+
<reference key="NSOnImage" ref="35465992"/>
|
118
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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" id="712247123">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="1012826480"/>
|
128
|
+
</object>
|
129
|
+
<object class="NSMenuItem" id="342932134">
|
130
|
+
<reference key="NSMenu" ref="110575045"/>
|
131
|
+
<string key="NSTitle">Hide Others</string>
|
132
|
+
<reference key="NSKeyEquiv" ref="712247123"/>
|
133
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
134
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
135
|
+
<reference key="NSOnImage" ref="35465992"/>
|
136
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
137
|
+
</object>
|
138
|
+
<object class="NSMenuItem" id="908899353">
|
139
|
+
<reference key="NSMenu" ref="110575045"/>
|
140
|
+
<string key="NSTitle">Show All</string>
|
141
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
142
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
143
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
144
|
+
<reference key="NSOnImage" ref="35465992"/>
|
145
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
152
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
153
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
154
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
155
|
+
<reference key="NSOnImage" ref="35465992"/>
|
156
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
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" id="589729360">File</string>
|
174
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
175
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
176
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
177
|
+
<reference key="NSOnImage" ref="35465992"/>
|
178
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
179
|
+
<reference key="NSAction" ref="714627284"/>
|
180
|
+
<object class="NSMenu" key="NSSubmenu" id="720053764">
|
181
|
+
<reference key="NSTitle" ref="589729360"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
201
|
+
</object>
|
202
|
+
<object class="NSMenuItem" id="1025936716">
|
203
|
+
<reference key="NSMenu" ref="720053764"/>
|
204
|
+
<string key="NSTitle" id="1022827674">Open Recent</string>
|
205
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
206
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
207
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
208
|
+
<reference key="NSOnImage" ref="35465992"/>
|
209
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
210
|
+
<reference key="NSAction" ref="714627284"/>
|
211
|
+
<object class="NSMenu" key="NSSubmenu" id="1065607017">
|
212
|
+
<reference key="NSTitle" ref="1022827674"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
219
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
220
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
221
|
+
<reference key="NSOnImage" ref="35465992"/>
|
222
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
233
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
234
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
235
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
236
|
+
<reference key="NSOnImage" ref="35465992"/>
|
237
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
265
|
+
</object>
|
266
|
+
<object class="NSMenuItem" id="579971712">
|
267
|
+
<reference key="NSMenu" ref="720053764"/>
|
268
|
+
<string key="NSTitle">Revert to Saved</string>
|
269
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
270
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
271
|
+
<reference key="NSOnImage" ref="35465992"/>
|
272
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
279
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
280
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
281
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
282
|
+
<reference key="NSOnImage" ref="35465992"/>
|
283
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
293
|
+
<reference key="NSToolTip" ref="1003"/>
|
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="1012826480"/>
|
303
|
+
</object>
|
304
|
+
</object>
|
305
|
+
</object>
|
306
|
+
</object>
|
307
|
+
<object class="NSMenuItem" id="952259628">
|
308
|
+
<reference key="NSMenu" ref="649796088"/>
|
309
|
+
<string key="NSTitle" id="459142759">Edit</string>
|
310
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
311
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
312
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
313
|
+
<reference key="NSOnImage" ref="35465992"/>
|
314
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
315
|
+
<reference key="NSAction" ref="714627284"/>
|
316
|
+
<object class="NSMenu" key="NSSubmenu" id="789758025">
|
317
|
+
<reference key="NSTitle" ref="459142759"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
343
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
344
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
345
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
346
|
+
<reference key="NSOnImage" ref="35465992"/>
|
347
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
375
|
+
</object>
|
376
|
+
<object class="NSMenuItem" id="437104165">
|
377
|
+
<reference key="NSMenu" ref="789758025"/>
|
378
|
+
<string key="NSTitle">Delete</string>
|
379
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
380
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
381
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
382
|
+
<reference key="NSOnImage" ref="35465992"/>
|
383
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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="1012826480"/>
|
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
|
+
<reference key="NSTitle" ref="1003"/>
|
399
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
400
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
401
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
402
|
+
<reference key="NSOnImage" ref="35465992"/>
|
403
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
404
|
+
</object>
|
405
|
+
<object class="NSMenuItem" id="892235320">
|
406
|
+
<reference key="NSMenu" ref="789758025"/>
|
407
|
+
<string key="NSTitle" id="1047723501">Find</string>
|
408
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
409
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
410
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
411
|
+
<reference key="NSOnImage" ref="35465992"/>
|
412
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
413
|
+
<reference key="NSAction" ref="714627284"/>
|
414
|
+
<object class="NSMenu" key="NSSubmenu" id="963351320">
|
415
|
+
<reference key="NSTitle" ref="1047723501"/>
|
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" id="109030866">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="1012826480"/>
|
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" id="591118048">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="1012826480"/>
|
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" id="660224505">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="1012826480"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
466
|
+
</object>
|
467
|
+
</object>
|
468
|
+
</object>
|
469
|
+
</object>
|
470
|
+
<object class="NSMenuItem" id="972420730">
|
471
|
+
<reference key="NSMenu" ref="789758025"/>
|
472
|
+
<string key="NSTitle" id="601373482">Spelling and Grammar</string>
|
473
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
474
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
475
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
476
|
+
<reference key="NSOnImage" ref="35465992"/>
|
477
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
478
|
+
<reference key="NSAction" ref="714627284"/>
|
479
|
+
<object class="NSMenu" key="NSSubmenu" id="769623530">
|
480
|
+
<reference key="NSTitle" ref="601373482"/>
|
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="1012826480"/>
|
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="1012826480"/>
|
500
|
+
</object>
|
501
|
+
<object class="NSMenuItem" id="948374510">
|
502
|
+
<reference key="NSMenu" ref="769623530"/>
|
503
|
+
<string key="NSTitle">Check Spelling While Typing</string>
|
504
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
505
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
506
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
507
|
+
<reference key="NSOnImage" ref="35465992"/>
|
508
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
509
|
+
</object>
|
510
|
+
<object class="NSMenuItem" id="967646866">
|
511
|
+
<reference key="NSMenu" ref="769623530"/>
|
512
|
+
<string key="NSTitle">Check Grammar With Spelling</string>
|
513
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
514
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
515
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
516
|
+
<reference key="NSOnImage" ref="35465992"/>
|
517
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
518
|
+
</object>
|
519
|
+
</object>
|
520
|
+
</object>
|
521
|
+
</object>
|
522
|
+
<object class="NSMenuItem" id="507821607">
|
523
|
+
<reference key="NSMenu" ref="789758025"/>
|
524
|
+
<string key="NSTitle" id="239487307">Substitutions</string>
|
525
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
526
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
527
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
528
|
+
<reference key="NSOnImage" ref="35465992"/>
|
529
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
530
|
+
<reference key="NSAction" ref="714627284"/>
|
531
|
+
<object class="NSMenu" key="NSSubmenu" id="698887838">
|
532
|
+
<reference key="NSTitle" ref="239487307"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="109030866"/>
|
539
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
540
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
541
|
+
<reference key="NSOnImage" ref="35465992"/>
|
542
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="591118048"/>
|
549
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
550
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
551
|
+
<reference key="NSOnImage" ref="35465992"/>
|
552
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="660224505"/>
|
559
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
560
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
561
|
+
<reference key="NSOnImage" ref="35465992"/>
|
562
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
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" id="1050731385">Speech</string>
|
571
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
572
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
573
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
574
|
+
<reference key="NSOnImage" ref="35465992"/>
|
575
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
576
|
+
<reference key="NSAction" ref="714627284"/>
|
577
|
+
<object class="NSMenu" key="NSSubmenu" id="785027613">
|
578
|
+
<reference key="NSTitle" ref="1050731385"/>
|
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
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
585
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
586
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
587
|
+
<reference key="NSOnImage" ref="35465992"/>
|
588
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
589
|
+
</object>
|
590
|
+
<object class="NSMenuItem" id="680220178">
|
591
|
+
<reference key="NSMenu" ref="785027613"/>
|
592
|
+
<string key="NSTitle">Stop Speaking</string>
|
593
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
594
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
595
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
596
|
+
<reference key="NSOnImage" ref="35465992"/>
|
597
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
598
|
+
</object>
|
599
|
+
</object>
|
600
|
+
</object>
|
601
|
+
</object>
|
602
|
+
</object>
|
603
|
+
</object>
|
604
|
+
</object>
|
605
|
+
<object class="NSMenuItem" id="626404410">
|
606
|
+
<reference key="NSMenu" ref="649796088"/>
|
607
|
+
<string key="NSTitle" id="708565849">Format</string>
|
608
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
609
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
610
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
611
|
+
<reference key="NSOnImage" ref="35465992"/>
|
612
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
613
|
+
<reference key="NSAction" ref="714627284"/>
|
614
|
+
<object class="NSMenu" key="NSSubmenu" id="502084290">
|
615
|
+
<reference key="NSTitle" ref="708565849"/>
|
616
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
617
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
618
|
+
<object class="NSMenuItem" id="519768076">
|
619
|
+
<reference key="NSMenu" ref="502084290"/>
|
620
|
+
<string key="NSTitle">Show Fonts</string>
|
621
|
+
<string key="NSKeyEquiv" id="1016092764">t</string>
|
622
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
623
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
624
|
+
<reference key="NSOnImage" ref="35465992"/>
|
625
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
626
|
+
</object>
|
627
|
+
<object class="NSMenuItem" id="1028416764">
|
628
|
+
<reference key="NSMenu" ref="502084290"/>
|
629
|
+
<string key="NSTitle">Show Colors</string>
|
630
|
+
<string key="NSKeyEquiv">C</string>
|
631
|
+
<int key="NSKeyEquivModMask">1179648</int>
|
632
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
633
|
+
<reference key="NSOnImage" ref="35465992"/>
|
634
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
635
|
+
</object>
|
636
|
+
</object>
|
637
|
+
</object>
|
638
|
+
</object>
|
639
|
+
<object class="NSMenuItem" id="586577488">
|
640
|
+
<reference key="NSMenu" ref="649796088"/>
|
641
|
+
<string key="NSTitle" id="180305338">View</string>
|
642
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
643
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
644
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
645
|
+
<reference key="NSOnImage" ref="35465992"/>
|
646
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
647
|
+
<reference key="NSAction" ref="714627284"/>
|
648
|
+
<object class="NSMenu" key="NSSubmenu" id="466310130">
|
649
|
+
<reference key="NSTitle" ref="180305338"/>
|
650
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
651
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
652
|
+
<object class="NSMenuItem" id="102151532">
|
653
|
+
<reference key="NSMenu" ref="466310130"/>
|
654
|
+
<string key="NSTitle">Show Toolbar</string>
|
655
|
+
<reference key="NSKeyEquiv" ref="1016092764"/>
|
656
|
+
<int key="NSKeyEquivModMask">1572864</int>
|
657
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
658
|
+
<reference key="NSOnImage" ref="35465992"/>
|
659
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
660
|
+
</object>
|
661
|
+
<object class="NSMenuItem" id="237841660">
|
662
|
+
<reference key="NSMenu" ref="466310130"/>
|
663
|
+
<string type="base64-UTF8" key="NSTitle">Q3VzdG9taXplIFRvb2xiYXLigKY</string>
|
664
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
665
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
666
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
667
|
+
<reference key="NSOnImage" ref="35465992"/>
|
668
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
669
|
+
</object>
|
670
|
+
</object>
|
671
|
+
</object>
|
672
|
+
</object>
|
673
|
+
<object class="NSMenuItem" id="713487014">
|
674
|
+
<reference key="NSMenu" ref="649796088"/>
|
675
|
+
<string key="NSTitle" id="15506412">Window</string>
|
676
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
677
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
678
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
679
|
+
<reference key="NSOnImage" ref="35465992"/>
|
680
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
681
|
+
<reference key="NSAction" ref="714627284"/>
|
682
|
+
<object class="NSMenu" key="NSSubmenu" id="835318025">
|
683
|
+
<reference key="NSTitle" ref="15506412"/>
|
684
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
685
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
686
|
+
<object class="NSMenuItem" id="1011231497">
|
687
|
+
<reference key="NSMenu" ref="835318025"/>
|
688
|
+
<string key="NSTitle">Minimize</string>
|
689
|
+
<string key="NSKeyEquiv">m</string>
|
690
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
691
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
692
|
+
<reference key="NSOnImage" ref="35465992"/>
|
693
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
694
|
+
</object>
|
695
|
+
<object class="NSMenuItem" id="575023229">
|
696
|
+
<reference key="NSMenu" ref="835318025"/>
|
697
|
+
<string key="NSTitle">Zoom</string>
|
698
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
699
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
700
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
701
|
+
<reference key="NSOnImage" ref="35465992"/>
|
702
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
703
|
+
</object>
|
704
|
+
<object class="NSMenuItem" id="299356726">
|
705
|
+
<reference key="NSMenu" ref="835318025"/>
|
706
|
+
<bool key="NSIsDisabled">YES</bool>
|
707
|
+
<bool key="NSIsSeparator">YES</bool>
|
708
|
+
<reference key="NSTitle" ref="1003"/>
|
709
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
710
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
711
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
712
|
+
<reference key="NSOnImage" ref="35465992"/>
|
713
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
714
|
+
</object>
|
715
|
+
<object class="NSMenuItem" id="625202149">
|
716
|
+
<reference key="NSMenu" ref="835318025"/>
|
717
|
+
<string key="NSTitle">Bring All to Front</string>
|
718
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
719
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
720
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
721
|
+
<reference key="NSOnImage" ref="35465992"/>
|
722
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
723
|
+
</object>
|
724
|
+
</object>
|
725
|
+
<string key="NSName">_NSWindowsMenu</string>
|
726
|
+
</object>
|
727
|
+
</object>
|
728
|
+
<object class="NSMenuItem" id="391199113">
|
729
|
+
<reference key="NSMenu" ref="649796088"/>
|
730
|
+
<string key="NSTitle" id="519223894">Help</string>
|
731
|
+
<reference key="NSKeyEquiv" ref="1003"/>
|
732
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
733
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
734
|
+
<reference key="NSOnImage" ref="35465992"/>
|
735
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
736
|
+
<reference key="NSAction" ref="714627284"/>
|
737
|
+
<object class="NSMenu" key="NSSubmenu" id="374024848">
|
738
|
+
<reference key="NSTitle" ref="519223894"/>
|
739
|
+
<object class="NSMutableArray" key="NSMenuItems">
|
740
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
741
|
+
<object class="NSMenuItem" id="238773614">
|
742
|
+
<reference key="NSMenu" ref="374024848"/>
|
743
|
+
<string key="NSTitle">NewApplication Help</string>
|
744
|
+
<string key="NSKeyEquiv">?</string>
|
745
|
+
<int key="NSKeyEquivModMask">1048576</int>
|
746
|
+
<int key="NSMnemonicLoc">2147483647</int>
|
747
|
+
<reference key="NSOnImage" ref="35465992"/>
|
748
|
+
<reference key="NSMixedImage" ref="1012826480"/>
|
749
|
+
</object>
|
750
|
+
</object>
|
751
|
+
</object>
|
752
|
+
</object>
|
753
|
+
</object>
|
754
|
+
<string key="NSName">_NSMainMenu</string>
|
755
|
+
</object>
|
756
|
+
<object class="NSWindowTemplate" id="972006081">
|
757
|
+
<int key="NSWindowStyleMask">15</int>
|
758
|
+
<int key="NSWindowBacking">2</int>
|
759
|
+
<string key="NSWindowRect">{{335, 390}, {480, 360}}</string>
|
760
|
+
<int key="NSWTFlags">1946157056</int>
|
761
|
+
<reference key="NSWindowTitle" ref="15506412"/>
|
762
|
+
<string key="NSWindowClass">NSWindow</string>
|
763
|
+
<nil key="NSViewClass"/>
|
764
|
+
<object class="NSView" key="NSWindowView" id="439893737">
|
765
|
+
<reference key="NSNextResponder"/>
|
766
|
+
<int key="NSvFlags">256</int>
|
767
|
+
<string key="NSFrameSize">{480, 360}</string>
|
768
|
+
<reference key="NSSuperview"/>
|
769
|
+
<reference key="NSWindow"/>
|
770
|
+
</object>
|
771
|
+
<string key="NSScreenRect">{{0, 0}, {1680, 1028}}</string>
|
772
|
+
</object>
|
773
|
+
</object>
|
774
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
775
|
+
<object class="NSMutableArray" key="connectionRecords">
|
776
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
777
|
+
<object class="IBConnectionRecord">
|
778
|
+
<object class="IBActionConnection" key="connection">
|
779
|
+
<string key="label">performMiniaturize:</string>
|
780
|
+
<reference key="source" ref="1014"/>
|
781
|
+
<reference key="destination" ref="1011231497"/>
|
782
|
+
</object>
|
783
|
+
<int key="connectionID">37</int>
|
784
|
+
</object>
|
785
|
+
<object class="IBConnectionRecord">
|
786
|
+
<object class="IBActionConnection" key="connection">
|
787
|
+
<string key="label">arrangeInFront:</string>
|
788
|
+
<reference key="source" ref="1014"/>
|
789
|
+
<reference key="destination" ref="625202149"/>
|
790
|
+
</object>
|
791
|
+
<int key="connectionID">39</int>
|
792
|
+
</object>
|
793
|
+
<object class="IBConnectionRecord">
|
794
|
+
<object class="IBActionConnection" key="connection">
|
795
|
+
<string key="label">print:</string>
|
796
|
+
<reference key="source" ref="1014"/>
|
797
|
+
<reference key="destination" ref="49223823"/>
|
798
|
+
</object>
|
799
|
+
<int key="connectionID">86</int>
|
800
|
+
</object>
|
801
|
+
<object class="IBConnectionRecord">
|
802
|
+
<object class="IBActionConnection" key="connection">
|
803
|
+
<string key="label">runPageLayout:</string>
|
804
|
+
<reference key="source" ref="1014"/>
|
805
|
+
<reference key="destination" ref="294629803"/>
|
806
|
+
</object>
|
807
|
+
<int key="connectionID">87</int>
|
808
|
+
</object>
|
809
|
+
<object class="IBConnectionRecord">
|
810
|
+
<object class="IBActionConnection" key="connection">
|
811
|
+
<string key="label">clearRecentDocuments:</string>
|
812
|
+
<reference key="source" ref="1014"/>
|
813
|
+
<reference key="destination" ref="759406840"/>
|
814
|
+
</object>
|
815
|
+
<int key="connectionID">127</int>
|
816
|
+
</object>
|
817
|
+
<object class="IBConnectionRecord">
|
818
|
+
<object class="IBActionConnection" key="connection">
|
819
|
+
<string key="label">orderFrontStandardAboutPanel:</string>
|
820
|
+
<reference key="source" ref="1021"/>
|
821
|
+
<reference key="destination" ref="238522557"/>
|
822
|
+
</object>
|
823
|
+
<int key="connectionID">142</int>
|
824
|
+
</object>
|
825
|
+
<object class="IBConnectionRecord">
|
826
|
+
<object class="IBActionConnection" key="connection">
|
827
|
+
<string key="label">performClose:</string>
|
828
|
+
<reference key="source" ref="1014"/>
|
829
|
+
<reference key="destination" ref="776162233"/>
|
830
|
+
</object>
|
831
|
+
<int key="connectionID">193</int>
|
832
|
+
</object>
|
833
|
+
<object class="IBConnectionRecord">
|
834
|
+
<object class="IBActionConnection" key="connection">
|
835
|
+
<string key="label">toggleContinuousSpellChecking:</string>
|
836
|
+
<reference key="source" ref="1014"/>
|
837
|
+
<reference key="destination" ref="948374510"/>
|
838
|
+
</object>
|
839
|
+
<int key="connectionID">222</int>
|
840
|
+
</object>
|
841
|
+
<object class="IBConnectionRecord">
|
842
|
+
<object class="IBActionConnection" key="connection">
|
843
|
+
<string key="label">undo:</string>
|
844
|
+
<reference key="source" ref="1014"/>
|
845
|
+
<reference key="destination" ref="1058277027"/>
|
846
|
+
</object>
|
847
|
+
<int key="connectionID">223</int>
|
848
|
+
</object>
|
849
|
+
<object class="IBConnectionRecord">
|
850
|
+
<object class="IBActionConnection" key="connection">
|
851
|
+
<string key="label">copy:</string>
|
852
|
+
<reference key="source" ref="1014"/>
|
853
|
+
<reference key="destination" ref="860595796"/>
|
854
|
+
</object>
|
855
|
+
<int key="connectionID">224</int>
|
856
|
+
</object>
|
857
|
+
<object class="IBConnectionRecord">
|
858
|
+
<object class="IBActionConnection" key="connection">
|
859
|
+
<string key="label">checkSpelling:</string>
|
860
|
+
<reference key="source" ref="1014"/>
|
861
|
+
<reference key="destination" ref="96193923"/>
|
862
|
+
</object>
|
863
|
+
<int key="connectionID">225</int>
|
864
|
+
</object>
|
865
|
+
<object class="IBConnectionRecord">
|
866
|
+
<object class="IBActionConnection" key="connection">
|
867
|
+
<string key="label">paste:</string>
|
868
|
+
<reference key="source" ref="1014"/>
|
869
|
+
<reference key="destination" ref="29853731"/>
|
870
|
+
</object>
|
871
|
+
<int key="connectionID">226</int>
|
872
|
+
</object>
|
873
|
+
<object class="IBConnectionRecord">
|
874
|
+
<object class="IBActionConnection" key="connection">
|
875
|
+
<string key="label">stopSpeaking:</string>
|
876
|
+
<reference key="source" ref="1014"/>
|
877
|
+
<reference key="destination" ref="680220178"/>
|
878
|
+
</object>
|
879
|
+
<int key="connectionID">227</int>
|
880
|
+
</object>
|
881
|
+
<object class="IBConnectionRecord">
|
882
|
+
<object class="IBActionConnection" key="connection">
|
883
|
+
<string key="label">cut:</string>
|
884
|
+
<reference key="source" ref="1014"/>
|
885
|
+
<reference key="destination" ref="296257095"/>
|
886
|
+
</object>
|
887
|
+
<int key="connectionID">228</int>
|
888
|
+
</object>
|
889
|
+
<object class="IBConnectionRecord">
|
890
|
+
<object class="IBActionConnection" key="connection">
|
891
|
+
<string key="label">showGuessPanel:</string>
|
892
|
+
<reference key="source" ref="1014"/>
|
893
|
+
<reference key="destination" ref="679648819"/>
|
894
|
+
</object>
|
895
|
+
<int key="connectionID">230</int>
|
896
|
+
</object>
|
897
|
+
<object class="IBConnectionRecord">
|
898
|
+
<object class="IBActionConnection" key="connection">
|
899
|
+
<string key="label">redo:</string>
|
900
|
+
<reference key="source" ref="1014"/>
|
901
|
+
<reference key="destination" ref="790794224"/>
|
902
|
+
</object>
|
903
|
+
<int key="connectionID">231</int>
|
904
|
+
</object>
|
905
|
+
<object class="IBConnectionRecord">
|
906
|
+
<object class="IBActionConnection" key="connection">
|
907
|
+
<string key="label">selectAll:</string>
|
908
|
+
<reference key="source" ref="1014"/>
|
909
|
+
<reference key="destination" ref="583158037"/>
|
910
|
+
</object>
|
911
|
+
<int key="connectionID">232</int>
|
912
|
+
</object>
|
913
|
+
<object class="IBConnectionRecord">
|
914
|
+
<object class="IBActionConnection" key="connection">
|
915
|
+
<string key="label">startSpeaking:</string>
|
916
|
+
<reference key="source" ref="1014"/>
|
917
|
+
<reference key="destination" ref="731782645"/>
|
918
|
+
</object>
|
919
|
+
<int key="connectionID">233</int>
|
920
|
+
</object>
|
921
|
+
<object class="IBConnectionRecord">
|
922
|
+
<object class="IBActionConnection" key="connection">
|
923
|
+
<string key="label">delete:</string>
|
924
|
+
<reference key="source" ref="1014"/>
|
925
|
+
<reference key="destination" ref="437104165"/>
|
926
|
+
</object>
|
927
|
+
<int key="connectionID">235</int>
|
928
|
+
</object>
|
929
|
+
<object class="IBConnectionRecord">
|
930
|
+
<object class="IBActionConnection" key="connection">
|
931
|
+
<string key="label">performZoom:</string>
|
932
|
+
<reference key="source" ref="1014"/>
|
933
|
+
<reference key="destination" ref="575023229"/>
|
934
|
+
</object>
|
935
|
+
<int key="connectionID">240</int>
|
936
|
+
</object>
|
937
|
+
<object class="IBConnectionRecord">
|
938
|
+
<object class="IBActionConnection" key="connection">
|
939
|
+
<string key="label">performFindPanelAction:</string>
|
940
|
+
<reference key="source" ref="1014"/>
|
941
|
+
<reference key="destination" ref="447796847"/>
|
942
|
+
</object>
|
943
|
+
<int key="connectionID">241</int>
|
944
|
+
</object>
|
945
|
+
<object class="IBConnectionRecord">
|
946
|
+
<object class="IBActionConnection" key="connection">
|
947
|
+
<string key="label">centerSelectionInVisibleArea:</string>
|
948
|
+
<reference key="source" ref="1014"/>
|
949
|
+
<reference key="destination" ref="88285865"/>
|
950
|
+
</object>
|
951
|
+
<int key="connectionID">245</int>
|
952
|
+
</object>
|
953
|
+
<object class="IBConnectionRecord">
|
954
|
+
<object class="IBActionConnection" key="connection">
|
955
|
+
<string key="label">toggleGrammarChecking:</string>
|
956
|
+
<reference key="source" ref="1014"/>
|
957
|
+
<reference key="destination" ref="967646866"/>
|
958
|
+
</object>
|
959
|
+
<int key="connectionID">347</int>
|
960
|
+
</object>
|
961
|
+
<object class="IBConnectionRecord">
|
962
|
+
<object class="IBActionConnection" key="connection">
|
963
|
+
<string key="label">toggleSmartInsertDelete:</string>
|
964
|
+
<reference key="source" ref="1014"/>
|
965
|
+
<reference key="destination" ref="605118523"/>
|
966
|
+
</object>
|
967
|
+
<int key="connectionID">355</int>
|
968
|
+
</object>
|
969
|
+
<object class="IBConnectionRecord">
|
970
|
+
<object class="IBActionConnection" key="connection">
|
971
|
+
<string key="label">toggleAutomaticQuoteSubstitution:</string>
|
972
|
+
<reference key="source" ref="1014"/>
|
973
|
+
<reference key="destination" ref="197661976"/>
|
974
|
+
</object>
|
975
|
+
<int key="connectionID">356</int>
|
976
|
+
</object>
|
977
|
+
<object class="IBConnectionRecord">
|
978
|
+
<object class="IBActionConnection" key="connection">
|
979
|
+
<string key="label">toggleAutomaticLinkDetection:</string>
|
980
|
+
<reference key="source" ref="1014"/>
|
981
|
+
<reference key="destination" ref="708854459"/>
|
982
|
+
</object>
|
983
|
+
<int key="connectionID">357</int>
|
984
|
+
</object>
|
985
|
+
<object class="IBConnectionRecord">
|
986
|
+
<object class="IBActionConnection" key="connection">
|
987
|
+
<string key="label">showHelp:</string>
|
988
|
+
<reference key="source" ref="1014"/>
|
989
|
+
<reference key="destination" ref="238773614"/>
|
990
|
+
</object>
|
991
|
+
<int key="connectionID">360</int>
|
992
|
+
</object>
|
993
|
+
<object class="IBConnectionRecord">
|
994
|
+
<object class="IBActionConnection" key="connection">
|
995
|
+
<string key="label">orderFrontColorPanel:</string>
|
996
|
+
<reference key="source" ref="1014"/>
|
997
|
+
<reference key="destination" ref="1028416764"/>
|
998
|
+
</object>
|
999
|
+
<int key="connectionID">361</int>
|
1000
|
+
</object>
|
1001
|
+
<object class="IBConnectionRecord">
|
1002
|
+
<object class="IBActionConnection" key="connection">
|
1003
|
+
<string key="label">saveDocument:</string>
|
1004
|
+
<reference key="source" ref="1014"/>
|
1005
|
+
<reference key="destination" ref="1023925487"/>
|
1006
|
+
</object>
|
1007
|
+
<int key="connectionID">362</int>
|
1008
|
+
</object>
|
1009
|
+
<object class="IBConnectionRecord">
|
1010
|
+
<object class="IBActionConnection" key="connection">
|
1011
|
+
<string key="label">saveDocumentAs:</string>
|
1012
|
+
<reference key="source" ref="1014"/>
|
1013
|
+
<reference key="destination" ref="117038363"/>
|
1014
|
+
</object>
|
1015
|
+
<int key="connectionID">363</int>
|
1016
|
+
</object>
|
1017
|
+
<object class="IBConnectionRecord">
|
1018
|
+
<object class="IBActionConnection" key="connection">
|
1019
|
+
<string key="label">revertDocumentToSaved:</string>
|
1020
|
+
<reference key="source" ref="1014"/>
|
1021
|
+
<reference key="destination" ref="579971712"/>
|
1022
|
+
</object>
|
1023
|
+
<int key="connectionID">364</int>
|
1024
|
+
</object>
|
1025
|
+
<object class="IBConnectionRecord">
|
1026
|
+
<object class="IBActionConnection" key="connection">
|
1027
|
+
<string key="label">runToolbarCustomizationPalette:</string>
|
1028
|
+
<reference key="source" ref="1014"/>
|
1029
|
+
<reference key="destination" ref="237841660"/>
|
1030
|
+
</object>
|
1031
|
+
<int key="connectionID">365</int>
|
1032
|
+
</object>
|
1033
|
+
<object class="IBConnectionRecord">
|
1034
|
+
<object class="IBActionConnection" key="connection">
|
1035
|
+
<string key="label">toggleToolbarShown:</string>
|
1036
|
+
<reference key="source" ref="1014"/>
|
1037
|
+
<reference key="destination" ref="102151532"/>
|
1038
|
+
</object>
|
1039
|
+
<int key="connectionID">366</int>
|
1040
|
+
</object>
|
1041
|
+
<object class="IBConnectionRecord">
|
1042
|
+
<object class="IBActionConnection" key="connection">
|
1043
|
+
<string key="label">hide:</string>
|
1044
|
+
<reference key="source" ref="1014"/>
|
1045
|
+
<reference key="destination" ref="755159360"/>
|
1046
|
+
</object>
|
1047
|
+
<int key="connectionID">367</int>
|
1048
|
+
</object>
|
1049
|
+
<object class="IBConnectionRecord">
|
1050
|
+
<object class="IBActionConnection" key="connection">
|
1051
|
+
<string key="label">hideOtherApplications:</string>
|
1052
|
+
<reference key="source" ref="1014"/>
|
1053
|
+
<reference key="destination" ref="342932134"/>
|
1054
|
+
</object>
|
1055
|
+
<int key="connectionID">368</int>
|
1056
|
+
</object>
|
1057
|
+
<object class="IBConnectionRecord">
|
1058
|
+
<object class="IBActionConnection" key="connection">
|
1059
|
+
<string key="label">terminate:</string>
|
1060
|
+
<reference key="source" ref="1014"/>
|
1061
|
+
<reference key="destination" ref="632727374"/>
|
1062
|
+
</object>
|
1063
|
+
<int key="connectionID">369</int>
|
1064
|
+
</object>
|
1065
|
+
<object class="IBConnectionRecord">
|
1066
|
+
<object class="IBActionConnection" key="connection">
|
1067
|
+
<string key="label">unhideAllApplications:</string>
|
1068
|
+
<reference key="source" ref="1014"/>
|
1069
|
+
<reference key="destination" ref="908899353"/>
|
1070
|
+
</object>
|
1071
|
+
<int key="connectionID">370</int>
|
1072
|
+
</object>
|
1073
|
+
<object class="IBConnectionRecord">
|
1074
|
+
<object class="IBActionConnection" key="connection">
|
1075
|
+
<string key="label">newDocument:</string>
|
1076
|
+
<reference key="source" ref="1014"/>
|
1077
|
+
<reference key="destination" ref="705341025"/>
|
1078
|
+
</object>
|
1079
|
+
<int key="connectionID">373</int>
|
1080
|
+
</object>
|
1081
|
+
<object class="IBConnectionRecord">
|
1082
|
+
<object class="IBActionConnection" key="connection">
|
1083
|
+
<string key="label">openDocument:</string>
|
1084
|
+
<reference key="source" ref="1014"/>
|
1085
|
+
<reference key="destination" ref="722745758"/>
|
1086
|
+
</object>
|
1087
|
+
<int key="connectionID">374</int>
|
1088
|
+
</object>
|
1089
|
+
</object>
|
1090
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
1091
|
+
<object class="NSArray" key="orderedObjects">
|
1092
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1093
|
+
<object class="IBObjectRecord">
|
1094
|
+
<int key="objectID">0</int>
|
1095
|
+
<object class="NSArray" key="object" id="1049">
|
1096
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1097
|
+
</object>
|
1098
|
+
<reference key="children" ref="1048"/>
|
1099
|
+
<nil key="parent"/>
|
1100
|
+
</object>
|
1101
|
+
<object class="IBObjectRecord">
|
1102
|
+
<int key="objectID">-2</int>
|
1103
|
+
<reference key="object" ref="1021"/>
|
1104
|
+
<reference key="parent" ref="1049"/>
|
1105
|
+
<string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
|
1106
|
+
</object>
|
1107
|
+
<object class="IBObjectRecord">
|
1108
|
+
<int key="objectID">-1</int>
|
1109
|
+
<reference key="object" ref="1014"/>
|
1110
|
+
<reference key="parent" ref="1049"/>
|
1111
|
+
<string key="objectName">First Responder</string>
|
1112
|
+
</object>
|
1113
|
+
<object class="IBObjectRecord">
|
1114
|
+
<int key="objectID">-3</int>
|
1115
|
+
<reference key="object" ref="1050"/>
|
1116
|
+
<reference key="parent" ref="1049"/>
|
1117
|
+
<string key="objectName">Application</string>
|
1118
|
+
</object>
|
1119
|
+
<object class="IBObjectRecord">
|
1120
|
+
<int key="objectID">29</int>
|
1121
|
+
<reference key="object" ref="649796088"/>
|
1122
|
+
<object class="NSMutableArray" key="children">
|
1123
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1124
|
+
<reference ref="713487014"/>
|
1125
|
+
<reference ref="694149608"/>
|
1126
|
+
<reference ref="391199113"/>
|
1127
|
+
<reference ref="952259628"/>
|
1128
|
+
<reference ref="379814623"/>
|
1129
|
+
<reference ref="586577488"/>
|
1130
|
+
<reference ref="626404410"/>
|
1131
|
+
</object>
|
1132
|
+
<reference key="parent" ref="1049"/>
|
1133
|
+
<string key="objectName">MainMenu</string>
|
1134
|
+
</object>
|
1135
|
+
<object class="IBObjectRecord">
|
1136
|
+
<int key="objectID">19</int>
|
1137
|
+
<reference key="object" ref="713487014"/>
|
1138
|
+
<object class="NSMutableArray" key="children">
|
1139
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1140
|
+
<reference ref="835318025"/>
|
1141
|
+
</object>
|
1142
|
+
<reference key="parent" ref="649796088"/>
|
1143
|
+
</object>
|
1144
|
+
<object class="IBObjectRecord">
|
1145
|
+
<int key="objectID">56</int>
|
1146
|
+
<reference key="object" ref="694149608"/>
|
1147
|
+
<object class="NSMutableArray" key="children">
|
1148
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1149
|
+
<reference ref="110575045"/>
|
1150
|
+
</object>
|
1151
|
+
<reference key="parent" ref="649796088"/>
|
1152
|
+
</object>
|
1153
|
+
<object class="IBObjectRecord">
|
1154
|
+
<int key="objectID">103</int>
|
1155
|
+
<reference key="object" ref="391199113"/>
|
1156
|
+
<object class="NSMutableArray" key="children">
|
1157
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1158
|
+
<reference ref="374024848"/>
|
1159
|
+
</object>
|
1160
|
+
<reference key="parent" ref="649796088"/>
|
1161
|
+
<string key="objectName" id="344781584">1</string>
|
1162
|
+
</object>
|
1163
|
+
<object class="IBObjectRecord">
|
1164
|
+
<int key="objectID">217</int>
|
1165
|
+
<reference key="object" ref="952259628"/>
|
1166
|
+
<object class="NSMutableArray" key="children">
|
1167
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1168
|
+
<reference ref="789758025"/>
|
1169
|
+
</object>
|
1170
|
+
<reference key="parent" ref="649796088"/>
|
1171
|
+
</object>
|
1172
|
+
<object class="IBObjectRecord">
|
1173
|
+
<int key="objectID">83</int>
|
1174
|
+
<reference key="object" ref="379814623"/>
|
1175
|
+
<object class="NSMutableArray" key="children">
|
1176
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1177
|
+
<reference ref="720053764"/>
|
1178
|
+
</object>
|
1179
|
+
<reference key="parent" ref="649796088"/>
|
1180
|
+
</object>
|
1181
|
+
<object class="IBObjectRecord">
|
1182
|
+
<int key="objectID">81</int>
|
1183
|
+
<reference key="object" ref="720053764"/>
|
1184
|
+
<object class="NSMutableArray" key="children">
|
1185
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1186
|
+
<reference ref="1023925487"/>
|
1187
|
+
<reference ref="117038363"/>
|
1188
|
+
<reference ref="49223823"/>
|
1189
|
+
<reference ref="722745758"/>
|
1190
|
+
<reference ref="705341025"/>
|
1191
|
+
<reference ref="1025936716"/>
|
1192
|
+
<reference ref="294629803"/>
|
1193
|
+
<reference ref="776162233"/>
|
1194
|
+
<reference ref="425164168"/>
|
1195
|
+
<reference ref="579971712"/>
|
1196
|
+
<reference ref="1010469920"/>
|
1197
|
+
</object>
|
1198
|
+
<reference key="parent" ref="379814623"/>
|
1199
|
+
</object>
|
1200
|
+
<object class="IBObjectRecord">
|
1201
|
+
<int key="objectID">75</int>
|
1202
|
+
<reference key="object" ref="1023925487"/>
|
1203
|
+
<reference key="parent" ref="720053764"/>
|
1204
|
+
<string key="objectName">3</string>
|
1205
|
+
</object>
|
1206
|
+
<object class="IBObjectRecord">
|
1207
|
+
<int key="objectID">80</int>
|
1208
|
+
<reference key="object" ref="117038363"/>
|
1209
|
+
<reference key="parent" ref="720053764"/>
|
1210
|
+
<string key="objectName">8</string>
|
1211
|
+
</object>
|
1212
|
+
<object class="IBObjectRecord">
|
1213
|
+
<int key="objectID">78</int>
|
1214
|
+
<reference key="object" ref="49223823"/>
|
1215
|
+
<reference key="parent" ref="720053764"/>
|
1216
|
+
<string key="objectName">6</string>
|
1217
|
+
</object>
|
1218
|
+
<object class="IBObjectRecord">
|
1219
|
+
<int key="objectID">72</int>
|
1220
|
+
<reference key="object" ref="722745758"/>
|
1221
|
+
<reference key="parent" ref="720053764"/>
|
1222
|
+
</object>
|
1223
|
+
<object class="IBObjectRecord">
|
1224
|
+
<int key="objectID">82</int>
|
1225
|
+
<reference key="object" ref="705341025"/>
|
1226
|
+
<reference key="parent" ref="720053764"/>
|
1227
|
+
<string key="objectName">9</string>
|
1228
|
+
</object>
|
1229
|
+
<object class="IBObjectRecord">
|
1230
|
+
<int key="objectID">124</int>
|
1231
|
+
<reference key="object" ref="1025936716"/>
|
1232
|
+
<object class="NSMutableArray" key="children">
|
1233
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1234
|
+
<reference ref="1065607017"/>
|
1235
|
+
</object>
|
1236
|
+
<reference key="parent" ref="720053764"/>
|
1237
|
+
</object>
|
1238
|
+
<object class="IBObjectRecord">
|
1239
|
+
<int key="objectID">77</int>
|
1240
|
+
<reference key="object" ref="294629803"/>
|
1241
|
+
<reference key="parent" ref="720053764"/>
|
1242
|
+
<string key="objectName">5</string>
|
1243
|
+
</object>
|
1244
|
+
<object class="IBObjectRecord">
|
1245
|
+
<int key="objectID">73</int>
|
1246
|
+
<reference key="object" ref="776162233"/>
|
1247
|
+
<reference key="parent" ref="720053764"/>
|
1248
|
+
<reference key="objectName" ref="344781584"/>
|
1249
|
+
</object>
|
1250
|
+
<object class="IBObjectRecord">
|
1251
|
+
<int key="objectID">79</int>
|
1252
|
+
<reference key="object" ref="425164168"/>
|
1253
|
+
<reference key="parent" ref="720053764"/>
|
1254
|
+
<string key="objectName">7</string>
|
1255
|
+
</object>
|
1256
|
+
<object class="IBObjectRecord">
|
1257
|
+
<int key="objectID">112</int>
|
1258
|
+
<reference key="object" ref="579971712"/>
|
1259
|
+
<reference key="parent" ref="720053764"/>
|
1260
|
+
<string key="objectName">10</string>
|
1261
|
+
</object>
|
1262
|
+
<object class="IBObjectRecord">
|
1263
|
+
<int key="objectID">74</int>
|
1264
|
+
<reference key="object" ref="1010469920"/>
|
1265
|
+
<reference key="parent" ref="720053764"/>
|
1266
|
+
<string key="objectName" id="5220549">2</string>
|
1267
|
+
</object>
|
1268
|
+
<object class="IBObjectRecord">
|
1269
|
+
<int key="objectID">125</int>
|
1270
|
+
<reference key="object" ref="1065607017"/>
|
1271
|
+
<object class="NSMutableArray" key="children">
|
1272
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1273
|
+
<reference ref="759406840"/>
|
1274
|
+
</object>
|
1275
|
+
<reference key="parent" ref="1025936716"/>
|
1276
|
+
</object>
|
1277
|
+
<object class="IBObjectRecord">
|
1278
|
+
<int key="objectID">126</int>
|
1279
|
+
<reference key="object" ref="759406840"/>
|
1280
|
+
<reference key="parent" ref="1065607017"/>
|
1281
|
+
</object>
|
1282
|
+
<object class="IBObjectRecord">
|
1283
|
+
<int key="objectID">205</int>
|
1284
|
+
<reference key="object" ref="789758025"/>
|
1285
|
+
<object class="NSMutableArray" key="children">
|
1286
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1287
|
+
<reference ref="437104165"/>
|
1288
|
+
<reference ref="583158037"/>
|
1289
|
+
<reference ref="1058277027"/>
|
1290
|
+
<reference ref="212016141"/>
|
1291
|
+
<reference ref="296257095"/>
|
1292
|
+
<reference ref="29853731"/>
|
1293
|
+
<reference ref="860595796"/>
|
1294
|
+
<reference ref="1040322652"/>
|
1295
|
+
<reference ref="790794224"/>
|
1296
|
+
<reference ref="892235320"/>
|
1297
|
+
<reference ref="972420730"/>
|
1298
|
+
<reference ref="676164635"/>
|
1299
|
+
<reference ref="507821607"/>
|
1300
|
+
</object>
|
1301
|
+
<reference key="parent" ref="952259628"/>
|
1302
|
+
</object>
|
1303
|
+
<object class="IBObjectRecord">
|
1304
|
+
<int key="objectID">202</int>
|
1305
|
+
<reference key="object" ref="437104165"/>
|
1306
|
+
<reference key="parent" ref="789758025"/>
|
1307
|
+
</object>
|
1308
|
+
<object class="IBObjectRecord">
|
1309
|
+
<int key="objectID">198</int>
|
1310
|
+
<reference key="object" ref="583158037"/>
|
1311
|
+
<reference key="parent" ref="789758025"/>
|
1312
|
+
</object>
|
1313
|
+
<object class="IBObjectRecord">
|
1314
|
+
<int key="objectID">207</int>
|
1315
|
+
<reference key="object" ref="1058277027"/>
|
1316
|
+
<reference key="parent" ref="789758025"/>
|
1317
|
+
</object>
|
1318
|
+
<object class="IBObjectRecord">
|
1319
|
+
<int key="objectID">214</int>
|
1320
|
+
<reference key="object" ref="212016141"/>
|
1321
|
+
<reference key="parent" ref="789758025"/>
|
1322
|
+
</object>
|
1323
|
+
<object class="IBObjectRecord">
|
1324
|
+
<int key="objectID">199</int>
|
1325
|
+
<reference key="object" ref="296257095"/>
|
1326
|
+
<reference key="parent" ref="789758025"/>
|
1327
|
+
</object>
|
1328
|
+
<object class="IBObjectRecord">
|
1329
|
+
<int key="objectID">203</int>
|
1330
|
+
<reference key="object" ref="29853731"/>
|
1331
|
+
<reference key="parent" ref="789758025"/>
|
1332
|
+
</object>
|
1333
|
+
<object class="IBObjectRecord">
|
1334
|
+
<int key="objectID">197</int>
|
1335
|
+
<reference key="object" ref="860595796"/>
|
1336
|
+
<reference key="parent" ref="789758025"/>
|
1337
|
+
</object>
|
1338
|
+
<object class="IBObjectRecord">
|
1339
|
+
<int key="objectID">206</int>
|
1340
|
+
<reference key="object" ref="1040322652"/>
|
1341
|
+
<reference key="parent" ref="789758025"/>
|
1342
|
+
</object>
|
1343
|
+
<object class="IBObjectRecord">
|
1344
|
+
<int key="objectID">215</int>
|
1345
|
+
<reference key="object" ref="790794224"/>
|
1346
|
+
<reference key="parent" ref="789758025"/>
|
1347
|
+
</object>
|
1348
|
+
<object class="IBObjectRecord">
|
1349
|
+
<int key="objectID">218</int>
|
1350
|
+
<reference key="object" ref="892235320"/>
|
1351
|
+
<object class="NSMutableArray" key="children">
|
1352
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1353
|
+
<reference ref="963351320"/>
|
1354
|
+
</object>
|
1355
|
+
<reference key="parent" ref="789758025"/>
|
1356
|
+
</object>
|
1357
|
+
<object class="IBObjectRecord">
|
1358
|
+
<int key="objectID">216</int>
|
1359
|
+
<reference key="object" ref="972420730"/>
|
1360
|
+
<object class="NSMutableArray" key="children">
|
1361
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1362
|
+
<reference ref="769623530"/>
|
1363
|
+
</object>
|
1364
|
+
<reference key="parent" ref="789758025"/>
|
1365
|
+
</object>
|
1366
|
+
<object class="IBObjectRecord">
|
1367
|
+
<int key="objectID">200</int>
|
1368
|
+
<reference key="object" ref="769623530"/>
|
1369
|
+
<object class="NSMutableArray" key="children">
|
1370
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1371
|
+
<reference ref="948374510"/>
|
1372
|
+
<reference ref="96193923"/>
|
1373
|
+
<reference ref="679648819"/>
|
1374
|
+
<reference ref="967646866"/>
|
1375
|
+
</object>
|
1376
|
+
<reference key="parent" ref="972420730"/>
|
1377
|
+
</object>
|
1378
|
+
<object class="IBObjectRecord">
|
1379
|
+
<int key="objectID">219</int>
|
1380
|
+
<reference key="object" ref="948374510"/>
|
1381
|
+
<reference key="parent" ref="769623530"/>
|
1382
|
+
</object>
|
1383
|
+
<object class="IBObjectRecord">
|
1384
|
+
<int key="objectID">201</int>
|
1385
|
+
<reference key="object" ref="96193923"/>
|
1386
|
+
<reference key="parent" ref="769623530"/>
|
1387
|
+
</object>
|
1388
|
+
<object class="IBObjectRecord">
|
1389
|
+
<int key="objectID">204</int>
|
1390
|
+
<reference key="object" ref="679648819"/>
|
1391
|
+
<reference key="parent" ref="769623530"/>
|
1392
|
+
</object>
|
1393
|
+
<object class="IBObjectRecord">
|
1394
|
+
<int key="objectID">220</int>
|
1395
|
+
<reference key="object" ref="963351320"/>
|
1396
|
+
<object class="NSMutableArray" key="children">
|
1397
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1398
|
+
<reference ref="270902937"/>
|
1399
|
+
<reference ref="88285865"/>
|
1400
|
+
<reference ref="159080638"/>
|
1401
|
+
<reference ref="326711663"/>
|
1402
|
+
<reference ref="447796847"/>
|
1403
|
+
</object>
|
1404
|
+
<reference key="parent" ref="892235320"/>
|
1405
|
+
</object>
|
1406
|
+
<object class="IBObjectRecord">
|
1407
|
+
<int key="objectID">213</int>
|
1408
|
+
<reference key="object" ref="270902937"/>
|
1409
|
+
<reference key="parent" ref="963351320"/>
|
1410
|
+
</object>
|
1411
|
+
<object class="IBObjectRecord">
|
1412
|
+
<int key="objectID">210</int>
|
1413
|
+
<reference key="object" ref="88285865"/>
|
1414
|
+
<reference key="parent" ref="963351320"/>
|
1415
|
+
</object>
|
1416
|
+
<object class="IBObjectRecord">
|
1417
|
+
<int key="objectID">221</int>
|
1418
|
+
<reference key="object" ref="159080638"/>
|
1419
|
+
<reference key="parent" ref="963351320"/>
|
1420
|
+
</object>
|
1421
|
+
<object class="IBObjectRecord">
|
1422
|
+
<int key="objectID">208</int>
|
1423
|
+
<reference key="object" ref="326711663"/>
|
1424
|
+
<reference key="parent" ref="963351320"/>
|
1425
|
+
</object>
|
1426
|
+
<object class="IBObjectRecord">
|
1427
|
+
<int key="objectID">209</int>
|
1428
|
+
<reference key="object" ref="447796847"/>
|
1429
|
+
<reference key="parent" ref="963351320"/>
|
1430
|
+
</object>
|
1431
|
+
<object class="IBObjectRecord">
|
1432
|
+
<int key="objectID">106</int>
|
1433
|
+
<reference key="object" ref="374024848"/>
|
1434
|
+
<object class="NSMutableArray" key="children">
|
1435
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1436
|
+
<reference ref="238773614"/>
|
1437
|
+
</object>
|
1438
|
+
<reference key="parent" ref="391199113"/>
|
1439
|
+
<reference key="objectName" ref="5220549"/>
|
1440
|
+
</object>
|
1441
|
+
<object class="IBObjectRecord">
|
1442
|
+
<int key="objectID">111</int>
|
1443
|
+
<reference key="object" ref="238773614"/>
|
1444
|
+
<reference key="parent" ref="374024848"/>
|
1445
|
+
</object>
|
1446
|
+
<object class="IBObjectRecord">
|
1447
|
+
<int key="objectID">57</int>
|
1448
|
+
<reference key="object" ref="110575045"/>
|
1449
|
+
<object class="NSMutableArray" key="children">
|
1450
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1451
|
+
<reference ref="238522557"/>
|
1452
|
+
<reference ref="755159360"/>
|
1453
|
+
<reference ref="908899353"/>
|
1454
|
+
<reference ref="632727374"/>
|
1455
|
+
<reference ref="646227648"/>
|
1456
|
+
<reference ref="609285721"/>
|
1457
|
+
<reference ref="481834944"/>
|
1458
|
+
<reference ref="304266470"/>
|
1459
|
+
<reference ref="1046388886"/>
|
1460
|
+
<reference ref="1056857174"/>
|
1461
|
+
<reference ref="342932134"/>
|
1462
|
+
</object>
|
1463
|
+
<reference key="parent" ref="694149608"/>
|
1464
|
+
</object>
|
1465
|
+
<object class="IBObjectRecord">
|
1466
|
+
<int key="objectID">58</int>
|
1467
|
+
<reference key="object" ref="238522557"/>
|
1468
|
+
<reference key="parent" ref="110575045"/>
|
1469
|
+
</object>
|
1470
|
+
<object class="IBObjectRecord">
|
1471
|
+
<int key="objectID">134</int>
|
1472
|
+
<reference key="object" ref="755159360"/>
|
1473
|
+
<reference key="parent" ref="110575045"/>
|
1474
|
+
</object>
|
1475
|
+
<object class="IBObjectRecord">
|
1476
|
+
<int key="objectID">150</int>
|
1477
|
+
<reference key="object" ref="908899353"/>
|
1478
|
+
<reference key="parent" ref="110575045"/>
|
1479
|
+
</object>
|
1480
|
+
<object class="IBObjectRecord">
|
1481
|
+
<int key="objectID">136</int>
|
1482
|
+
<reference key="object" ref="632727374"/>
|
1483
|
+
<reference key="parent" ref="110575045"/>
|
1484
|
+
<string key="objectName">1111</string>
|
1485
|
+
</object>
|
1486
|
+
<object class="IBObjectRecord">
|
1487
|
+
<int key="objectID">144</int>
|
1488
|
+
<reference key="object" ref="646227648"/>
|
1489
|
+
<reference key="parent" ref="110575045"/>
|
1490
|
+
</object>
|
1491
|
+
<object class="IBObjectRecord">
|
1492
|
+
<int key="objectID">129</int>
|
1493
|
+
<reference key="object" ref="609285721"/>
|
1494
|
+
<reference key="parent" ref="110575045"/>
|
1495
|
+
<string key="objectName">121</string>
|
1496
|
+
</object>
|
1497
|
+
<object class="IBObjectRecord">
|
1498
|
+
<int key="objectID">143</int>
|
1499
|
+
<reference key="object" ref="481834944"/>
|
1500
|
+
<reference key="parent" ref="110575045"/>
|
1501
|
+
</object>
|
1502
|
+
<object class="IBObjectRecord">
|
1503
|
+
<int key="objectID">236</int>
|
1504
|
+
<reference key="object" ref="304266470"/>
|
1505
|
+
<reference key="parent" ref="110575045"/>
|
1506
|
+
</object>
|
1507
|
+
<object class="IBObjectRecord">
|
1508
|
+
<int key="objectID">131</int>
|
1509
|
+
<reference key="object" ref="1046388886"/>
|
1510
|
+
<object class="NSMutableArray" key="children">
|
1511
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1512
|
+
<reference ref="752062318"/>
|
1513
|
+
</object>
|
1514
|
+
<reference key="parent" ref="110575045"/>
|
1515
|
+
</object>
|
1516
|
+
<object class="IBObjectRecord">
|
1517
|
+
<int key="objectID">149</int>
|
1518
|
+
<reference key="object" ref="1056857174"/>
|
1519
|
+
<reference key="parent" ref="110575045"/>
|
1520
|
+
</object>
|
1521
|
+
<object class="IBObjectRecord">
|
1522
|
+
<int key="objectID">145</int>
|
1523
|
+
<reference key="object" ref="342932134"/>
|
1524
|
+
<reference key="parent" ref="110575045"/>
|
1525
|
+
</object>
|
1526
|
+
<object class="IBObjectRecord">
|
1527
|
+
<int key="objectID">130</int>
|
1528
|
+
<reference key="object" ref="752062318"/>
|
1529
|
+
<reference key="parent" ref="1046388886"/>
|
1530
|
+
</object>
|
1531
|
+
<object class="IBObjectRecord">
|
1532
|
+
<int key="objectID">24</int>
|
1533
|
+
<reference key="object" ref="835318025"/>
|
1534
|
+
<object class="NSMutableArray" key="children">
|
1535
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1536
|
+
<reference ref="299356726"/>
|
1537
|
+
<reference ref="625202149"/>
|
1538
|
+
<reference ref="575023229"/>
|
1539
|
+
<reference ref="1011231497"/>
|
1540
|
+
</object>
|
1541
|
+
<reference key="parent" ref="713487014"/>
|
1542
|
+
</object>
|
1543
|
+
<object class="IBObjectRecord">
|
1544
|
+
<int key="objectID">92</int>
|
1545
|
+
<reference key="object" ref="299356726"/>
|
1546
|
+
<reference key="parent" ref="835318025"/>
|
1547
|
+
</object>
|
1548
|
+
<object class="IBObjectRecord">
|
1549
|
+
<int key="objectID">5</int>
|
1550
|
+
<reference key="object" ref="625202149"/>
|
1551
|
+
<reference key="parent" ref="835318025"/>
|
1552
|
+
</object>
|
1553
|
+
<object class="IBObjectRecord">
|
1554
|
+
<int key="objectID">239</int>
|
1555
|
+
<reference key="object" ref="575023229"/>
|
1556
|
+
<reference key="parent" ref="835318025"/>
|
1557
|
+
</object>
|
1558
|
+
<object class="IBObjectRecord">
|
1559
|
+
<int key="objectID">23</int>
|
1560
|
+
<reference key="object" ref="1011231497"/>
|
1561
|
+
<reference key="parent" ref="835318025"/>
|
1562
|
+
</object>
|
1563
|
+
<object class="IBObjectRecord">
|
1564
|
+
<int key="objectID">295</int>
|
1565
|
+
<reference key="object" ref="586577488"/>
|
1566
|
+
<object class="NSMutableArray" key="children">
|
1567
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1568
|
+
<reference ref="466310130"/>
|
1569
|
+
</object>
|
1570
|
+
<reference key="parent" ref="649796088"/>
|
1571
|
+
</object>
|
1572
|
+
<object class="IBObjectRecord">
|
1573
|
+
<int key="objectID">296</int>
|
1574
|
+
<reference key="object" ref="466310130"/>
|
1575
|
+
<object class="NSMutableArray" key="children">
|
1576
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1577
|
+
<reference ref="102151532"/>
|
1578
|
+
<reference ref="237841660"/>
|
1579
|
+
</object>
|
1580
|
+
<reference key="parent" ref="586577488"/>
|
1581
|
+
</object>
|
1582
|
+
<object class="IBObjectRecord">
|
1583
|
+
<int key="objectID">297</int>
|
1584
|
+
<reference key="object" ref="102151532"/>
|
1585
|
+
<reference key="parent" ref="466310130"/>
|
1586
|
+
</object>
|
1587
|
+
<object class="IBObjectRecord">
|
1588
|
+
<int key="objectID">298</int>
|
1589
|
+
<reference key="object" ref="237841660"/>
|
1590
|
+
<reference key="parent" ref="466310130"/>
|
1591
|
+
</object>
|
1592
|
+
<object class="IBObjectRecord">
|
1593
|
+
<int key="objectID">299</int>
|
1594
|
+
<reference key="object" ref="626404410"/>
|
1595
|
+
<object class="NSMutableArray" key="children">
|
1596
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1597
|
+
<reference ref="502084290"/>
|
1598
|
+
</object>
|
1599
|
+
<reference key="parent" ref="649796088"/>
|
1600
|
+
</object>
|
1601
|
+
<object class="IBObjectRecord">
|
1602
|
+
<int key="objectID">300</int>
|
1603
|
+
<reference key="object" ref="502084290"/>
|
1604
|
+
<object class="NSMutableArray" key="children">
|
1605
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1606
|
+
<reference ref="519768076"/>
|
1607
|
+
<reference ref="1028416764"/>
|
1608
|
+
</object>
|
1609
|
+
<reference key="parent" ref="626404410"/>
|
1610
|
+
</object>
|
1611
|
+
<object class="IBObjectRecord">
|
1612
|
+
<int key="objectID">344</int>
|
1613
|
+
<reference key="object" ref="519768076"/>
|
1614
|
+
<reference key="parent" ref="502084290"/>
|
1615
|
+
</object>
|
1616
|
+
<object class="IBObjectRecord">
|
1617
|
+
<int key="objectID">345</int>
|
1618
|
+
<reference key="object" ref="1028416764"/>
|
1619
|
+
<reference key="parent" ref="502084290"/>
|
1620
|
+
</object>
|
1621
|
+
<object class="IBObjectRecord">
|
1622
|
+
<int key="objectID">211</int>
|
1623
|
+
<reference key="object" ref="676164635"/>
|
1624
|
+
<object class="NSMutableArray" key="children">
|
1625
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1626
|
+
<reference ref="785027613"/>
|
1627
|
+
</object>
|
1628
|
+
<reference key="parent" ref="789758025"/>
|
1629
|
+
</object>
|
1630
|
+
<object class="IBObjectRecord">
|
1631
|
+
<int key="objectID">212</int>
|
1632
|
+
<reference key="object" ref="785027613"/>
|
1633
|
+
<object class="NSMutableArray" key="children">
|
1634
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1635
|
+
<reference ref="680220178"/>
|
1636
|
+
<reference ref="731782645"/>
|
1637
|
+
</object>
|
1638
|
+
<reference key="parent" ref="676164635"/>
|
1639
|
+
</object>
|
1640
|
+
<object class="IBObjectRecord">
|
1641
|
+
<int key="objectID">195</int>
|
1642
|
+
<reference key="object" ref="680220178"/>
|
1643
|
+
<reference key="parent" ref="785027613"/>
|
1644
|
+
</object>
|
1645
|
+
<object class="IBObjectRecord">
|
1646
|
+
<int key="objectID">196</int>
|
1647
|
+
<reference key="object" ref="731782645"/>
|
1648
|
+
<reference key="parent" ref="785027613"/>
|
1649
|
+
</object>
|
1650
|
+
<object class="IBObjectRecord">
|
1651
|
+
<int key="objectID">346</int>
|
1652
|
+
<reference key="object" ref="967646866"/>
|
1653
|
+
<reference key="parent" ref="769623530"/>
|
1654
|
+
</object>
|
1655
|
+
<object class="IBObjectRecord">
|
1656
|
+
<int key="objectID">348</int>
|
1657
|
+
<reference key="object" ref="507821607"/>
|
1658
|
+
<object class="NSMutableArray" key="children">
|
1659
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1660
|
+
<reference ref="698887838"/>
|
1661
|
+
</object>
|
1662
|
+
<reference key="parent" ref="789758025"/>
|
1663
|
+
</object>
|
1664
|
+
<object class="IBObjectRecord">
|
1665
|
+
<int key="objectID">349</int>
|
1666
|
+
<reference key="object" ref="698887838"/>
|
1667
|
+
<object class="NSMutableArray" key="children">
|
1668
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1669
|
+
<reference ref="605118523"/>
|
1670
|
+
<reference ref="197661976"/>
|
1671
|
+
<reference ref="708854459"/>
|
1672
|
+
</object>
|
1673
|
+
<reference key="parent" ref="507821607"/>
|
1674
|
+
</object>
|
1675
|
+
<object class="IBObjectRecord">
|
1676
|
+
<int key="objectID">350</int>
|
1677
|
+
<reference key="object" ref="605118523"/>
|
1678
|
+
<reference key="parent" ref="698887838"/>
|
1679
|
+
</object>
|
1680
|
+
<object class="IBObjectRecord">
|
1681
|
+
<int key="objectID">351</int>
|
1682
|
+
<reference key="object" ref="197661976"/>
|
1683
|
+
<reference key="parent" ref="698887838"/>
|
1684
|
+
</object>
|
1685
|
+
<object class="IBObjectRecord">
|
1686
|
+
<int key="objectID">354</int>
|
1687
|
+
<reference key="object" ref="708854459"/>
|
1688
|
+
<reference key="parent" ref="698887838"/>
|
1689
|
+
</object>
|
1690
|
+
<object class="IBObjectRecord">
|
1691
|
+
<int key="objectID">371</int>
|
1692
|
+
<reference key="object" ref="972006081"/>
|
1693
|
+
<object class="NSMutableArray" key="children">
|
1694
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1695
|
+
<reference ref="439893737"/>
|
1696
|
+
</object>
|
1697
|
+
<reference key="parent" ref="1049"/>
|
1698
|
+
</object>
|
1699
|
+
<object class="IBObjectRecord">
|
1700
|
+
<int key="objectID">372</int>
|
1701
|
+
<reference key="object" ref="439893737"/>
|
1702
|
+
<reference key="parent" ref="972006081"/>
|
1703
|
+
</object>
|
1704
|
+
</object>
|
1705
|
+
</object>
|
1706
|
+
<object class="NSMutableDictionary" key="flattenedProperties">
|
1707
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1708
|
+
<object class="NSMutableArray" key="dict.sortedKeys">
|
1709
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1710
|
+
<string>-1.IBPluginDependency</string>
|
1711
|
+
<string>-2.IBPluginDependency</string>
|
1712
|
+
<string>-3.IBPluginDependency</string>
|
1713
|
+
<string>103.IBPluginDependency</string>
|
1714
|
+
<string>103.ImportedFromIB2</string>
|
1715
|
+
<string>106.IBPluginDependency</string>
|
1716
|
+
<string>106.ImportedFromIB2</string>
|
1717
|
+
<string>106.editorWindowContentRectSynchronizationRect</string>
|
1718
|
+
<string>111.IBPluginDependency</string>
|
1719
|
+
<string>111.ImportedFromIB2</string>
|
1720
|
+
<string>112.IBPluginDependency</string>
|
1721
|
+
<string>112.ImportedFromIB2</string>
|
1722
|
+
<string>124.IBPluginDependency</string>
|
1723
|
+
<string>124.ImportedFromIB2</string>
|
1724
|
+
<string>125.IBPluginDependency</string>
|
1725
|
+
<string>125.ImportedFromIB2</string>
|
1726
|
+
<string>125.editorWindowContentRectSynchronizationRect</string>
|
1727
|
+
<string>126.IBPluginDependency</string>
|
1728
|
+
<string>126.ImportedFromIB2</string>
|
1729
|
+
<string>129.IBPluginDependency</string>
|
1730
|
+
<string>129.ImportedFromIB2</string>
|
1731
|
+
<string>130.IBPluginDependency</string>
|
1732
|
+
<string>130.ImportedFromIB2</string>
|
1733
|
+
<string>130.editorWindowContentRectSynchronizationRect</string>
|
1734
|
+
<string>131.IBPluginDependency</string>
|
1735
|
+
<string>131.ImportedFromIB2</string>
|
1736
|
+
<string>134.IBPluginDependency</string>
|
1737
|
+
<string>134.ImportedFromIB2</string>
|
1738
|
+
<string>136.IBPluginDependency</string>
|
1739
|
+
<string>136.ImportedFromIB2</string>
|
1740
|
+
<string>143.IBPluginDependency</string>
|
1741
|
+
<string>143.ImportedFromIB2</string>
|
1742
|
+
<string>144.IBPluginDependency</string>
|
1743
|
+
<string>144.ImportedFromIB2</string>
|
1744
|
+
<string>145.IBPluginDependency</string>
|
1745
|
+
<string>145.ImportedFromIB2</string>
|
1746
|
+
<string>149.IBPluginDependency</string>
|
1747
|
+
<string>149.ImportedFromIB2</string>
|
1748
|
+
<string>150.IBPluginDependency</string>
|
1749
|
+
<string>150.ImportedFromIB2</string>
|
1750
|
+
<string>19.IBPluginDependency</string>
|
1751
|
+
<string>19.ImportedFromIB2</string>
|
1752
|
+
<string>195.IBPluginDependency</string>
|
1753
|
+
<string>195.ImportedFromIB2</string>
|
1754
|
+
<string>196.IBPluginDependency</string>
|
1755
|
+
<string>196.ImportedFromIB2</string>
|
1756
|
+
<string>197.IBPluginDependency</string>
|
1757
|
+
<string>197.ImportedFromIB2</string>
|
1758
|
+
<string>198.IBPluginDependency</string>
|
1759
|
+
<string>198.ImportedFromIB2</string>
|
1760
|
+
<string>199.IBPluginDependency</string>
|
1761
|
+
<string>199.ImportedFromIB2</string>
|
1762
|
+
<string>200.IBPluginDependency</string>
|
1763
|
+
<string>200.ImportedFromIB2</string>
|
1764
|
+
<string>200.editorWindowContentRectSynchronizationRect</string>
|
1765
|
+
<string>201.IBPluginDependency</string>
|
1766
|
+
<string>201.ImportedFromIB2</string>
|
1767
|
+
<string>202.IBPluginDependency</string>
|
1768
|
+
<string>202.ImportedFromIB2</string>
|
1769
|
+
<string>203.IBPluginDependency</string>
|
1770
|
+
<string>203.ImportedFromIB2</string>
|
1771
|
+
<string>204.IBPluginDependency</string>
|
1772
|
+
<string>204.ImportedFromIB2</string>
|
1773
|
+
<string>205.IBPluginDependency</string>
|
1774
|
+
<string>205.ImportedFromIB2</string>
|
1775
|
+
<string>205.editorWindowContentRectSynchronizationRect</string>
|
1776
|
+
<string>206.IBPluginDependency</string>
|
1777
|
+
<string>206.ImportedFromIB2</string>
|
1778
|
+
<string>207.IBPluginDependency</string>
|
1779
|
+
<string>207.ImportedFromIB2</string>
|
1780
|
+
<string>208.IBPluginDependency</string>
|
1781
|
+
<string>208.ImportedFromIB2</string>
|
1782
|
+
<string>209.IBPluginDependency</string>
|
1783
|
+
<string>209.ImportedFromIB2</string>
|
1784
|
+
<string>210.IBPluginDependency</string>
|
1785
|
+
<string>210.ImportedFromIB2</string>
|
1786
|
+
<string>211.IBPluginDependency</string>
|
1787
|
+
<string>211.ImportedFromIB2</string>
|
1788
|
+
<string>212.IBPluginDependency</string>
|
1789
|
+
<string>212.ImportedFromIB2</string>
|
1790
|
+
<string>212.editorWindowContentRectSynchronizationRect</string>
|
1791
|
+
<string>213.IBPluginDependency</string>
|
1792
|
+
<string>213.ImportedFromIB2</string>
|
1793
|
+
<string>214.IBPluginDependency</string>
|
1794
|
+
<string>214.ImportedFromIB2</string>
|
1795
|
+
<string>215.IBPluginDependency</string>
|
1796
|
+
<string>215.ImportedFromIB2</string>
|
1797
|
+
<string>216.IBPluginDependency</string>
|
1798
|
+
<string>216.ImportedFromIB2</string>
|
1799
|
+
<string>217.IBPluginDependency</string>
|
1800
|
+
<string>217.ImportedFromIB2</string>
|
1801
|
+
<string>218.IBPluginDependency</string>
|
1802
|
+
<string>218.ImportedFromIB2</string>
|
1803
|
+
<string>219.IBPluginDependency</string>
|
1804
|
+
<string>219.ImportedFromIB2</string>
|
1805
|
+
<string>220.IBPluginDependency</string>
|
1806
|
+
<string>220.ImportedFromIB2</string>
|
1807
|
+
<string>220.editorWindowContentRectSynchronizationRect</string>
|
1808
|
+
<string>221.IBPluginDependency</string>
|
1809
|
+
<string>221.ImportedFromIB2</string>
|
1810
|
+
<string>23.IBPluginDependency</string>
|
1811
|
+
<string>23.ImportedFromIB2</string>
|
1812
|
+
<string>236.IBPluginDependency</string>
|
1813
|
+
<string>236.ImportedFromIB2</string>
|
1814
|
+
<string>239.IBPluginDependency</string>
|
1815
|
+
<string>239.ImportedFromIB2</string>
|
1816
|
+
<string>24.IBPluginDependency</string>
|
1817
|
+
<string>24.ImportedFromIB2</string>
|
1818
|
+
<string>24.editorWindowContentRectSynchronizationRect</string>
|
1819
|
+
<string>29.IBPluginDependency</string>
|
1820
|
+
<string>29.ImportedFromIB2</string>
|
1821
|
+
<string>29.WindowOrigin</string>
|
1822
|
+
<string>29.editorWindowContentRectSynchronizationRect</string>
|
1823
|
+
<string>295.IBPluginDependency</string>
|
1824
|
+
<string>296.IBPluginDependency</string>
|
1825
|
+
<string>296.editorWindowContentRectSynchronizationRect</string>
|
1826
|
+
<string>297.IBPluginDependency</string>
|
1827
|
+
<string>298.IBPluginDependency</string>
|
1828
|
+
<string>299.IBPluginDependency</string>
|
1829
|
+
<string>300.IBPluginDependency</string>
|
1830
|
+
<string>300.editorWindowContentRectSynchronizationRect</string>
|
1831
|
+
<string>344.IBPluginDependency</string>
|
1832
|
+
<string>345.IBPluginDependency</string>
|
1833
|
+
<string>346.IBPluginDependency</string>
|
1834
|
+
<string>346.ImportedFromIB2</string>
|
1835
|
+
<string>348.IBPluginDependency</string>
|
1836
|
+
<string>348.ImportedFromIB2</string>
|
1837
|
+
<string>349.IBPluginDependency</string>
|
1838
|
+
<string>349.ImportedFromIB2</string>
|
1839
|
+
<string>349.editorWindowContentRectSynchronizationRect</string>
|
1840
|
+
<string>350.IBPluginDependency</string>
|
1841
|
+
<string>350.ImportedFromIB2</string>
|
1842
|
+
<string>351.IBPluginDependency</string>
|
1843
|
+
<string>351.ImportedFromIB2</string>
|
1844
|
+
<string>354.IBPluginDependency</string>
|
1845
|
+
<string>354.ImportedFromIB2</string>
|
1846
|
+
<string>371.IBPluginDependency</string>
|
1847
|
+
<string>371.IBWindowTemplateEditedContentRect</string>
|
1848
|
+
<string>371.NSWindowTemplate.visibleAtLaunch</string>
|
1849
|
+
<string>371.editorWindowContentRectSynchronizationRect</string>
|
1850
|
+
<string>372.IBPluginDependency</string>
|
1851
|
+
<string>5.IBPluginDependency</string>
|
1852
|
+
<string>5.ImportedFromIB2</string>
|
1853
|
+
<string>56.IBPluginDependency</string>
|
1854
|
+
<string>56.ImportedFromIB2</string>
|
1855
|
+
<string>57.IBPluginDependency</string>
|
1856
|
+
<string>57.ImportedFromIB2</string>
|
1857
|
+
<string>57.editorWindowContentRectSynchronizationRect</string>
|
1858
|
+
<string>58.IBPluginDependency</string>
|
1859
|
+
<string>58.ImportedFromIB2</string>
|
1860
|
+
<string>72.IBPluginDependency</string>
|
1861
|
+
<string>72.ImportedFromIB2</string>
|
1862
|
+
<string>73.IBPluginDependency</string>
|
1863
|
+
<string>73.ImportedFromIB2</string>
|
1864
|
+
<string>74.IBPluginDependency</string>
|
1865
|
+
<string>74.ImportedFromIB2</string>
|
1866
|
+
<string>75.IBPluginDependency</string>
|
1867
|
+
<string>75.ImportedFromIB2</string>
|
1868
|
+
<string>77.IBPluginDependency</string>
|
1869
|
+
<string>77.ImportedFromIB2</string>
|
1870
|
+
<string>78.IBPluginDependency</string>
|
1871
|
+
<string>78.ImportedFromIB2</string>
|
1872
|
+
<string>79.IBPluginDependency</string>
|
1873
|
+
<string>79.ImportedFromIB2</string>
|
1874
|
+
<string>80.IBPluginDependency</string>
|
1875
|
+
<string>80.ImportedFromIB2</string>
|
1876
|
+
<string>81.IBPluginDependency</string>
|
1877
|
+
<string>81.ImportedFromIB2</string>
|
1878
|
+
<string>81.editorWindowContentRectSynchronizationRect</string>
|
1879
|
+
<string>82.IBPluginDependency</string>
|
1880
|
+
<string>82.ImportedFromIB2</string>
|
1881
|
+
<string>83.IBPluginDependency</string>
|
1882
|
+
<string>83.ImportedFromIB2</string>
|
1883
|
+
<string>92.IBPluginDependency</string>
|
1884
|
+
<string>92.ImportedFromIB2</string>
|
1885
|
+
</object>
|
1886
|
+
<object class="NSMutableArray" key="dict.values">
|
1887
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
1888
|
+
<reference ref="578961457"/>
|
1889
|
+
<reference ref="617114957"/>
|
1890
|
+
<reference ref="617114957"/>
|
1891
|
+
<reference ref="578961457"/>
|
1892
|
+
<integer value="1" id="9"/>
|
1893
|
+
<reference ref="578961457"/>
|
1894
|
+
<reference ref="9"/>
|
1895
|
+
<string>{{596, 852}, {216, 23}}</string>
|
1896
|
+
<reference ref="578961457"/>
|
1897
|
+
<reference ref="9"/>
|
1898
|
+
<reference ref="578961457"/>
|
1899
|
+
<reference ref="9"/>
|
1900
|
+
<reference ref="578961457"/>
|
1901
|
+
<reference ref="9"/>
|
1902
|
+
<reference ref="578961457"/>
|
1903
|
+
<reference ref="9"/>
|
1904
|
+
<string>{{522, 812}, {146, 23}}</string>
|
1905
|
+
<reference ref="578961457"/>
|
1906
|
+
<reference ref="9"/>
|
1907
|
+
<reference ref="578961457"/>
|
1908
|
+
<reference ref="9"/>
|
1909
|
+
<reference ref="578961457"/>
|
1910
|
+
<reference ref="9"/>
|
1911
|
+
<string>{{436, 809}, {64, 6}}</string>
|
1912
|
+
<reference ref="578961457"/>
|
1913
|
+
<reference ref="9"/>
|
1914
|
+
<reference ref="578961457"/>
|
1915
|
+
<reference ref="9"/>
|
1916
|
+
<reference ref="578961457"/>
|
1917
|
+
<reference ref="9"/>
|
1918
|
+
<reference ref="578961457"/>
|
1919
|
+
<reference ref="9"/>
|
1920
|
+
<reference ref="578961457"/>
|
1921
|
+
<reference ref="9"/>
|
1922
|
+
<reference ref="578961457"/>
|
1923
|
+
<reference ref="9"/>
|
1924
|
+
<reference ref="578961457"/>
|
1925
|
+
<reference ref="9"/>
|
1926
|
+
<reference ref="578961457"/>
|
1927
|
+
<reference ref="9"/>
|
1928
|
+
<reference ref="578961457"/>
|
1929
|
+
<reference ref="9"/>
|
1930
|
+
<reference ref="578961457"/>
|
1931
|
+
<reference ref="9"/>
|
1932
|
+
<reference ref="578961457"/>
|
1933
|
+
<reference ref="9"/>
|
1934
|
+
<reference ref="578961457"/>
|
1935
|
+
<reference ref="9"/>
|
1936
|
+
<reference ref="578961457"/>
|
1937
|
+
<reference ref="9"/>
|
1938
|
+
<reference ref="578961457"/>
|
1939
|
+
<reference ref="9"/>
|
1940
|
+
<reference ref="578961457"/>
|
1941
|
+
<reference ref="9"/>
|
1942
|
+
<string>{{608, 612}, {275, 83}}</string>
|
1943
|
+
<reference ref="578961457"/>
|
1944
|
+
<reference ref="9"/>
|
1945
|
+
<reference ref="578961457"/>
|
1946
|
+
<reference ref="9"/>
|
1947
|
+
<reference ref="578961457"/>
|
1948
|
+
<reference ref="9"/>
|
1949
|
+
<reference ref="578961457"/>
|
1950
|
+
<reference ref="9"/>
|
1951
|
+
<reference ref="578961457"/>
|
1952
|
+
<reference ref="9"/>
|
1953
|
+
<string>{{187, 434}, {243, 243}}</string>
|
1954
|
+
<reference ref="578961457"/>
|
1955
|
+
<reference ref="9"/>
|
1956
|
+
<reference ref="578961457"/>
|
1957
|
+
<reference ref="9"/>
|
1958
|
+
<reference ref="578961457"/>
|
1959
|
+
<reference ref="9"/>
|
1960
|
+
<reference ref="578961457"/>
|
1961
|
+
<reference ref="9"/>
|
1962
|
+
<reference ref="578961457"/>
|
1963
|
+
<reference ref="9"/>
|
1964
|
+
<reference ref="578961457"/>
|
1965
|
+
<reference ref="9"/>
|
1966
|
+
<reference ref="578961457"/>
|
1967
|
+
<reference ref="9"/>
|
1968
|
+
<string>{{608, 612}, {167, 43}}</string>
|
1969
|
+
<reference ref="578961457"/>
|
1970
|
+
<reference ref="9"/>
|
1971
|
+
<reference ref="578961457"/>
|
1972
|
+
<reference ref="9"/>
|
1973
|
+
<reference ref="578961457"/>
|
1974
|
+
<reference ref="9"/>
|
1975
|
+
<reference ref="578961457"/>
|
1976
|
+
<reference ref="9"/>
|
1977
|
+
<reference ref="578961457"/>
|
1978
|
+
<reference ref="9"/>
|
1979
|
+
<reference ref="578961457"/>
|
1980
|
+
<reference ref="9"/>
|
1981
|
+
<reference ref="578961457"/>
|
1982
|
+
<reference ref="9"/>
|
1983
|
+
<reference ref="578961457"/>
|
1984
|
+
<reference ref="9"/>
|
1985
|
+
<string>{{608, 612}, {241, 103}}</string>
|
1986
|
+
<reference ref="578961457"/>
|
1987
|
+
<reference ref="9"/>
|
1988
|
+
<reference ref="578961457"/>
|
1989
|
+
<reference ref="9"/>
|
1990
|
+
<reference ref="578961457"/>
|
1991
|
+
<reference ref="9"/>
|
1992
|
+
<reference ref="578961457"/>
|
1993
|
+
<reference ref="9"/>
|
1994
|
+
<reference ref="578961457"/>
|
1995
|
+
<reference ref="9"/>
|
1996
|
+
<string>{{525, 802}, {197, 73}}</string>
|
1997
|
+
<reference ref="578961457"/>
|
1998
|
+
<reference ref="9"/>
|
1999
|
+
<string>{74, 862}</string>
|
2000
|
+
<string>{{6, 978}, {478, 20}}</string>
|
2001
|
+
<reference ref="578961457"/>
|
2002
|
+
<reference ref="578961457"/>
|
2003
|
+
<string>{{475, 832}, {234, 43}}</string>
|
2004
|
+
<reference ref="578961457"/>
|
2005
|
+
<reference ref="578961457"/>
|
2006
|
+
<reference ref="578961457"/>
|
2007
|
+
<reference ref="578961457"/>
|
2008
|
+
<string>{{231, 634}, {176, 43}}</string>
|
2009
|
+
<reference ref="578961457"/>
|
2010
|
+
<reference ref="578961457"/>
|
2011
|
+
<reference ref="578961457"/>
|
2012
|
+
<reference ref="9"/>
|
2013
|
+
<reference ref="578961457"/>
|
2014
|
+
<reference ref="9"/>
|
2015
|
+
<reference ref="578961457"/>
|
2016
|
+
<reference ref="9"/>
|
2017
|
+
<string>{{608, 612}, {215, 63}}</string>
|
2018
|
+
<reference ref="578961457"/>
|
2019
|
+
<reference ref="9"/>
|
2020
|
+
<reference ref="578961457"/>
|
2021
|
+
<reference ref="9"/>
|
2022
|
+
<reference ref="578961457"/>
|
2023
|
+
<reference ref="9"/>
|
2024
|
+
<reference ref="578961457"/>
|
2025
|
+
<string>{{33, 99}, {480, 360}}</string>
|
2026
|
+
<reference ref="9"/>
|
2027
|
+
<string>{{33, 99}, {480, 360}}</string>
|
2028
|
+
<reference ref="578961457"/>
|
2029
|
+
<reference ref="578961457"/>
|
2030
|
+
<reference ref="9"/>
|
2031
|
+
<reference ref="578961457"/>
|
2032
|
+
<reference ref="9"/>
|
2033
|
+
<reference ref="578961457"/>
|
2034
|
+
<reference ref="9"/>
|
2035
|
+
<string>{{23, 794}, {245, 183}}</string>
|
2036
|
+
<reference ref="578961457"/>
|
2037
|
+
<reference ref="9"/>
|
2038
|
+
<reference ref="578961457"/>
|
2039
|
+
<reference ref="9"/>
|
2040
|
+
<reference ref="578961457"/>
|
2041
|
+
<reference ref="9"/>
|
2042
|
+
<reference ref="578961457"/>
|
2043
|
+
<reference ref="9"/>
|
2044
|
+
<reference ref="578961457"/>
|
2045
|
+
<reference ref="9"/>
|
2046
|
+
<reference ref="578961457"/>
|
2047
|
+
<reference ref="9"/>
|
2048
|
+
<reference ref="578961457"/>
|
2049
|
+
<reference ref="9"/>
|
2050
|
+
<reference ref="578961457"/>
|
2051
|
+
<reference ref="9"/>
|
2052
|
+
<reference ref="578961457"/>
|
2053
|
+
<reference ref="9"/>
|
2054
|
+
<reference ref="578961457"/>
|
2055
|
+
<reference ref="9"/>
|
2056
|
+
<string>{{145, 474}, {199, 203}}</string>
|
2057
|
+
<reference ref="578961457"/>
|
2058
|
+
<reference ref="9"/>
|
2059
|
+
<reference ref="578961457"/>
|
2060
|
+
<reference ref="9"/>
|
2061
|
+
<reference ref="578961457"/>
|
2062
|
+
<reference ref="9"/>
|
2063
|
+
</object>
|
2064
|
+
</object>
|
2065
|
+
<object class="NSMutableDictionary" key="unlocalizedProperties">
|
2066
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2067
|
+
<object class="NSArray" key="dict.sortedKeys">
|
2068
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2069
|
+
</object>
|
2070
|
+
<object class="NSMutableArray" key="dict.values">
|
2071
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2072
|
+
</object>
|
2073
|
+
</object>
|
2074
|
+
<nil key="activeLocalization"/>
|
2075
|
+
<object class="NSMutableDictionary" key="localizations">
|
2076
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2077
|
+
<object class="NSArray" key="dict.sortedKeys">
|
2078
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2079
|
+
</object>
|
2080
|
+
<object class="NSMutableArray" key="dict.values">
|
2081
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2082
|
+
</object>
|
2083
|
+
</object>
|
2084
|
+
<nil key="sourceID"/>
|
2085
|
+
<int key="maxID">374</int>
|
2086
|
+
</object>
|
2087
|
+
<object class="IBClassDescriber" key="IBDocument.Classes">
|
2088
|
+
<object class="NSMutableArray" key="referencedPartialClassDescriptions">
|
2089
|
+
<bool key="EncodedWithXMLCoder">YES</bool>
|
2090
|
+
</object>
|
2091
|
+
</object>
|
2092
|
+
<int key="IBDocument.localizationMode">0</int>
|
2093
|
+
<nil key="IBDocument.LastKnownRelativeProjectPath"/>
|
2094
|
+
<object class="NSMutableData" key="IBDocument.RunnableNib">
|
2095
|
+
<bytes key="NS.bytes">YnBsaXN0MDDUAAEAAgADAAQABQAGAAkAClgkdmVyc2lvblQkdG9wWSRhcmNoaXZlclgkb2JqZWN0cxIA
|
2096
|
+
AYag0QAHAAhdSUIub2JqZWN0ZGF0YYABXxAPTlNLZXllZEFyY2hpdmVyrxECAgALAAwAMQA1ADYAPAA9
|
2097
|
+
AEIAVgBXAFgAWQALAGQACwBlAGkAagBtAHEAmwChALEAtgC3ALgAvQC+AL8AwgDGAMcAygDLAM8A0wDa
|
2098
|
+
AN4A3wDgAOEA5QDsAPIA8wD0APgA/wEAAQEBBQEMAREBEgETARQBGAEiASMBJAElASkBMAE0ATUBNgE3
|
2099
|
+
ATsBQgFDAUQBSAFQAVQBVQFWAVcBWwFiAWYBZwFoAWkBbQF0AXgBeQF6AX4BhQGGAYcBiAGMAZMBlAGV
|
2100
|
+
AZYBmgGhAaIBowGkAaoBsQGyAbMBtwG/AcMBxAHFAcYBygHSAdMB1AHVAdkB4AHlAeYB5wHrAfIB8wH0
|
2101
|
+
AfUB+QIAAgECAgIGAg0CDgIPAhACFAIbAhwCHQIhAigCKQIqAisCLwI2AjcCOAI5Aj0CRAJFAkYCSgJR
|
2102
|
+
AlICUwJUAlgCXwJgAmECZQJsAm0CbgJvAnMCegJ+An8CgAKBAoUCjAKNAo4CjwKTApsCnAKdAp4CogKp
|
2103
|
+
Aq0CrgKvArACtAK7ArwCvQK+AsICyQLKAssCzwLWAtcC2ALZAt0C5ALlAuYC6gLxAvIC8wL0AvgC/wMA
|
2104
|
+
AwEDAgMGAw0DDgMPAxMDaQN0A3sDhAOFA4cDigOSA5MDlAOfA6QDpQOmA6sDsgOzA7QDwgPLA8wD0APR
|
2105
|
+
A9oD4wPkA/ID+wQCBAMEBAQNBBYEFwQcBB8EIAQpBCoEMQQyBDsEPARBBEIERgRPBFYEVwRYBF4EXwRk
|
2106
|
+
BG0EbgR1BH4EfwSPBJgEoQSiBKoEswS8BMUEzgTPBNkE4gTrBOwE7gVEBZsF8gXzBfQF9QX2BfcF+AX5
|
2107
|
+
BfoF+wX8Bf0F/gX/BgAGAQYCBgMGBAYFBgYGBwYIBgkGCgYLBgwGDQYOBg8GEAYRBhIGEwYUBhUGFgYX
|
2108
|
+
BhgGGQYaBhsGHAYdBh4GHwYgBiEGIgYjBiQGJQYmBicGKAYpBioGKwYsBi0GLgYvBjAGMQYyBjMGNAY1
|
2109
|
+
BjYGNwY4BjkGOgY7BjwGPQY+Bj8GQAZBBkIGQwZEBkUGRgZJBkwGygdIB0kHSgdLB0wHTQdOB08HUAdR
|
2110
|
+
B1IHUwdUB1UHVgdXB1gHWQdaB1sHXAddB14HXwdgB2EHYgdjB2QHZQdmB2cHaAdpB2oHawdsB20Hbgdv
|
2111
|
+
B3AHcQdyB3MHdAd1B3YHdwd4B3kHegd7B3wHfQd+B38HgAeBB4IHgweEB4UHhgeHB4gHiQeKB4sHjAeN
|
2112
|
+
B44HjweQB5EHkgeTB5QHlQeWB5cHmAeZB5oHmwecB50HngefB6AHoQeiB6MHpAelB6YHpweoB6kHqger
|
2113
|
+
B6wHrQeuB68HsAexB7IHswe0B7UHtge3B7gHuQe6B7sHvAe9B74HvwfAB8EHwgfDB8YHyQfMVSRudWxs
|
2114
|
+
3xASAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgAbABwAHQAeAB8AIAAhACIAIwAkACUAJgAnACgA
|
2115
|
+
KQAqACsALAAtAC4ALwAwVk5TUm9vdFYkY2xhc3NdTlNPYmplY3RzS2V5c18QD05TQ2xhc3Nlc1ZhbHVl
|
2116
|
+
c18QGU5TQWNjZXNzaWJpbGl0eU9pZHNWYWx1ZXNdTlNDb25uZWN0aW9uc1tOU05hbWVzS2V5c1tOU0Zy
|
2117
|
+
YW1ld29ya11OU0NsYXNzZXNLZXlzWk5TT2lkc0tleXNdTlNOYW1lc1ZhbHVlc18QGU5TQWNjZXNzaWJp
|
2118
|
+
bGl0eUNvbm5lY3RvcnNdTlNGb250TWFuYWdlcl8QEE5TVmlzaWJsZVdpbmRvd3NfEA9OU09iamVjdHNW
|
2119
|
+
YWx1ZXNfEBdOU0FjY2Vzc2liaWxpdHlPaWRzS2V5c1lOU05leHRPaWRcTlNPaWRzVmFsdWVzgAKBAgGA
|
2120
|
+
34EBgIECAIATgQEpgAWBAX+BAYGBASqBAf6AAIAGgQEogQH/EQF4gQGC0gAOADIAMwA0W05TQ2xhc3NO
|
2121
|
+
YW1lgASAA11OU0FwcGxpY2F0aW9u0gA3ADgAOQA6WCRjbGFzc2VzWiRjbGFzc25hbWWiADoAO15OU0N1
|
2122
|
+
c3RvbU9iamVjdFhOU09iamVjdF8QEElCQ29jb2FGcmFtZXdvcmvSAA4APgA/AEBaTlMub2JqZWN0c4AS
|
2123
|
+
oQBBgAfaAEMADgBEAEUARgBHAEgASQBKAEsATABNAE4ATwBQAFEAUgBTAFQAK1xOU1dpbmRvd1ZpZXdc
|
2124
|
+
TlNTY3JlZW5SZWN0XU5TV2luZG93VGl0bGVZTlNXVEZsYWdzXU5TV2luZG93Q2xhc3NcTlNXaW5kb3dS
|
2125
|
+
ZWN0XxAPTlNXaW5kb3dCYWNraW5nXxARTlNXaW5kb3dTdHlsZU1hc2tbTlNWaWV3Q2xhc3OAC4ARgBCA
|
2126
|
+
CRJ0AAAAgAqACBACEA+AAF8QGHt7MzM1LCAzOTB9LCB7NDgwLCAzNjB9fVZXaW5kb3dYTlNXaW5kb3fW
|
2127
|
+
AFoADgBbAFwAWABdAF4AXwBgAGEAXgBjXxAPTlNOZXh0UmVzcG9uZGVyWE5TdkZsYWdzW05TRnJhbWVT
|
2128
|
+
aXplW05TU3VwZXJ2aWV3gAyADxEBAIANgAyADlp7NDgwLCAzNjB90gA3ADgAZgBnowBnAGgAO1ZOU1Zp
|
2129
|
+
ZXdbTlNSZXNwb25kZXJfEBZ7ezAsIDB9LCB7MTY4MCwgMTAyOH190gA3ADgAawBsogBsADtfEBBOU1dp
|
2130
|
+
bmRvd1RlbXBsYXRl0gA3ADgAbgBvowBvAHAAO1xOU011dGFibGVTZXRVTlNTZXTSAA4APgByAHOA3q8Q
|
2131
|
+
JwB0AHUAdgB3AHgAeQB6AHsAfAB9AH4AfwCAAIEAggCDAIQAhQCGAIcAiACJAIoAiwCMAI0AjgCPAJAA
|
2132
|
+
kQCSAJMAlACVAJYAlwCYAJkAmoAUgCKAKIAtgDGAN4A8gEKARoBMgFKAV4BcgGGAZoBqgHCAdYB6gH+A
|
2133
|
+
g4CIgIyAkYCWgJqAn4CjgKiAroCzgLiAvoDDgMeAzIDQgNWA2tMADgCcAJ0AngCfAKBYTlNTb3VyY2VX
|
2134
|
+
TlNMYWJlbIAhgBWAINgADgCiAKMApAClAKYApwCoAKkAqgCrAKwArQCuAK8AsFdOU1RpdGxlXxARTlNL
|
2135
|
+
ZXlFcXVpdk1vZE1hc2taTlNLZXlFcXVpdl1OU01uZW1vbmljTG9jWU5TT25JbWFnZVxOU01peGVkSW1h
|
2136
|
+
Z2VWTlNNZW51gB+AFxIAEAAAgBgSf////4AZgB2AFtMADgCiALIAswC0ALVbTlNNZW51SXRlbXOA5IEB
|
2137
|
+
FYEBFl8QG0NoZWNrIFNwZWxsaW5nIFdoaWxlIFR5cGluZ1DTAA4AMgC5ALoAuwC8Xk5TUmVzb3VyY2VO
|
2138
|
+
YW1lgByAGoAbV05TSW1hZ2VfEA9OU01lbnVDaGVja21hcmvSADcAOADAAMGiAMEAO18QEE5TQ3VzdG9t
|
2139
|
+
UmVzb3VyY2XTAA4AMgC5ALoAuwDFgByAGoAeXxAQTlNNZW51TWl4ZWRTdGF0ZdIANwA4AMgAyaIAyQA7
|
2140
|
+
Wk5TTWVudUl0ZW1fEB50b2dnbGVDb250aW51b3VzU3BlbGxDaGVja2luZzrSADcAOADMAM2jAM0AzgA7
|
2141
|
+
XxAVTlNOaWJDb250cm9sQ29ubmVjdG9yXk5TTmliQ29ubmVjdG9y0wAOAJwAnQCeANEA0oAhgCOAJ9gA
|
2142
|
+
DgCiAKMApAClAKYApwCoAKkA1QCrANYArQCuAK8A2YAfgCWAJoAZgB2AJNMADgCiALIAswDcAN2A5IDw
|
2143
|
+
gPFVQ2xvc2VRd11wZXJmb3JtQ2xvc2U60wAOAJwAnQCeAOMA5IAhgCmALNgADgCiAKMApAClAKYApwCo
|
2144
|
+
AKkA5wCrAKwArQCuAK8A64AfgCuAGIAZgB2AKtQADgCiAO0AsgCzAE8A8ADxVk5TTmFtZYDkgAmA44Dh
|
2145
|
+
XxASQnJpbmcgQWxsIHRvIEZyb250XxAPYXJyYW5nZUluRnJvbnQ60wAOAJwAnQCeAPYA94AhgC6AMNgA
|
2146
|
+
DgCiAKMApAClAKYApwCoAKkA+gCrAKwArQCuAK8AsIAfgC+AGIAZgB2AFl8QG0NoZWNrIEdyYW1tYXIg
|
2147
|
+
V2l0aCBTcGVsbGluZ18QFnRvZ2dsZUdyYW1tYXJDaGVja2luZzrTAA4AnACdAJ4BAwEEgCGAMoA22AAO
|
2148
|
+
AKIAowCkAKUApgCnAKgAqQEHAKsBCACtAK4ArwELgB+ANIA1gBmAHYAz1AAOAKIA7QCyALMBDgEPARCA
|
2149
|
+
5ID4gQEFgPlfEBNRdWl0IE5ld0FwcGxpY2F0aW9uUXFadGVybWluYXRlOtMADgCcAJ0AngEWAReAIYA4
|
2150
|
+
gDvZAA4BGQCiAKMApAClAKYApwCoAKkArAEcAR0BHgCtAK4ArwDZWU5TVG9vbFRpcIAfgBiAORIAEgAA
|
2151
|
+
gDqAGYAdgCRdUGFnZSBTZXR1cC4uLlFQXnJ1blBhZ2VMYXlvdXQ60wAOAJwAnQCeAScBKIAhgD2AQdgA
|
2152
|
+
DgCiAKMApAClAKYApwCoAKkBKwCrASwArQCuAK8BL4AfgD+AQIAZgB2APtMADgCiALIAswEyATOA5IEB
|
2153
|
+
GIEBGVpTZWxlY3QgQWxsUWFac2VsZWN0QWxsOtMADgCcAJ0AngE5ATqAIYBDgEXYAA4AogCjAKQApQCm
|
2154
|
+
AKcAqACpAT0AqwCsAK0ArgCvAS+AH4BEgBiAGYAdgD5WRGVsZXRlV2RlbGV0ZTrTAA4AnACdAJ4BRgFH
|
2155
|
+
gCGAR4BL2QAOAKIAowCkAKUApgCnAKgBSQCpAUsAqwFMAK0ArgCvAU8AU1VOU1RhZ4AfgEmASoAZgB2A
|
2156
|
+
SNMADgCiALIAswFSAVOA5IEBEIEBEVxTbWFydCBRdW90ZXNRZ18QIXRvZ2dsZUF1dG9tYXRpY1F1b3Rl
|
2157
|
+
U3Vic3RpdHV0aW9uOtMADgCcAJ0AngFZAVqAIYBNgFHYAA4AogCjAKQApQCmAKcAqACpAV0AqwFeAK0A
|
2158
|
+
rgCvAWGAH4BPgFCAGYAdgE7TAA4AogCyALMBZAFlgOSBAQuBAQxfEBNOZXdBcHBsaWNhdGlvbiBIZWxw
|
2159
|
+
UT9Zc2hvd0hlbHA60wAOAJwAnQCeAWsBbIAhgFOAVtgADgCiAKMApAClAKYApwCoAKkBbwCrAKwArQCu
|
2160
|
+
AK8Bc4AfgFWAGIAZgB2AVNMADgCiALIAswF2AXeA5IEBCYEBCl5TdGFydCBTcGVha2luZ15zdGFydFNw
|
2161
|
+
ZWFraW5nOtMADgCcAJ0AngF8AX2AIYBYgFvYAA4AogCjAKQApQCmAKcAqACpAYAAqwGBAK0ArgCvANmA
|
2162
|
+
H4BZgFqAGYAdgCRmAFAAcgBpAG4AdCAmUXBWcHJpbnQ60wAOAJwAnQCeAYoBi4AhgF2AYNgADgCiAKMA
|
2163
|
+
pAClAKYApwCoAKkBjgCrAY8ArQCuAK8A2YAfgF6AX4AZgB2AJGUATwBwAGUAbiAmUW9db3BlbkRvY3Vt
|
2164
|
+
ZW50OtMADgCcAJ0AngGYAZmAIYBigGXYAA4AogCjAKQApQCmAKcAqACpAZwAqwGdAK0ArgCvALCAH4Bj
|
2165
|
+
gGSAGYAdgBZeQ2hlY2sgU3BlbGxpbmdRO15jaGVja1NwZWxsaW5nOtQADgGlAJwAnQCeAB8BqAGpXU5T
|
2166
|
+
RGVzdGluYXRpb26AIYACgGeAadcADgCiAKQApQCmAKcAqACpAawArACtAK4ArwELgB+AaIAYgBmAHYAz
|
2167
|
+
XxAUQWJvdXQgTmV3QXBwbGljYXRpb25fEB1vcmRlckZyb250U3RhbmRhcmRBYm91dFBhbmVsOtMADgCc
|
2168
|
+
AJ0AngG1AbaAIYBrgG/YAA4AogCjAKQApQCmAKcAqACpAbkBugG7AK0ArgCvAb6AH4BtEgAYAACAboAZ
|
2169
|
+
gB2AbNMADgCiALIAswHBAcKA5IEBEoEBE1xTaG93IFRvb2xiYXJRdF8QE3RvZ2dsZVRvb2xiYXJTaG93
|
2170
|
+
bjrTAA4AnACdAJ4ByAHJgCGAcYB02QAOAKIAowCkAKUApgCnAKgBSQCpAcwBHQHNAK0ArgCvAU8B0YAf
|
2171
|
+
gHKAc4AZgB2ASBADW1NtYXJ0IExpbmtzUUdfEB10b2dnbGVBdXRvbWF0aWNMaW5rRGV0ZWN0aW9uOtMA
|
2172
|
+
DgCcAJ0AngHXAdiAIYB2gHnYAA4AogCjAKQApQCmAKcAqACpAdsAqwCsAK0ArgCvAd+AH4B4gBiAGYAd
|
2173
|
+
gHfUAA4AogDtALIAswHiAeMB5IDkgPOA9YD0WkNsZWFyIE1lbnVfEBVjbGVhclJlY2VudERvY3VtZW50
|
2174
|
+
czrTAA4AnACdAJ4B6QHqgCGAe4B+2AAOAKIAowCkAKUApgCnAKgAqQHtAR0B7gCtAK4ArwDZgB+AfIB9
|
2175
|
+
gBmAHYAkaABTAGEAdgBlACAAQQBzICZRU18QD3NhdmVEb2N1bWVudEFzOtMADgCcAJ0AngH3AfiAIYCA
|
2176
|
+
gILYAA4AogCjAKQApQCmAKcAqACpAfsAqwCsAK0ArgCvAb6AH4CBgBiAGYAdgGxvEBIAQwB1AHMAdABv
|
2177
|
+
AG0AaQB6AGUAIABUAG8AbwBsAGIAYQByICZfEB9ydW5Ub29sYmFyQ3VzdG9taXphdGlvblBhbGV0dGU6
|
2178
|
+
0wAOAJwAnQCeAgQCBYAhgISAh9gADgCiAKMApAClAKYApwCoAKkCCACrAgkArQCuAK8BL4AfgIWAhoAZ
|
2179
|
+
gB2APlRDb3B5UWNVY29weTrTAA4AnACdAJ4CEgITgCGAiYCL2AAOAKIAowCkAKUApgCnAKgAqQIWAKsA
|
2180
|
+
rACtAK4ArwFzgB+AioAYgBmAHYBUXVN0b3AgU3BlYWtpbmddc3RvcFNwZWFraW5nOtMADgCcAJ0AngIf
|
2181
|
+
AiCAIYCNgJDYAA4AogCjAKQApQCmAKcAqACpAiMAqwIkAK0ArgCvAS+AH4COgI+AGYAdgD5UVW5kb1F6
|
2182
|
+
VXVuZG860wAOAJwAnQCeAi0CLoAhgJKAldgADgCiAKMApAClAKYApwCoAKkCMQCrAjIArQCuAK8A2YAf
|
2183
|
+
gJOAlIAZgB2AJFRTYXZlUXNdc2F2ZURvY3VtZW50OtMADgCcAJ0AngI7AjyAIYCXgJnYAA4AogCjAKQA
|
2184
|
+
pQCmAKcAqACpAj8AqwCsAK0ArgCvAQuAH4CYgBiAGYAdgDNYU2hvdyBBbGxfEBZ1bmhpZGVBbGxBcHBs
|
2185
|
+
aWNhdGlvbnM60wAOAJwAnQCeAkgCSYAhgJuAntgADgCiAKMApAClAKYApwCoAKkCTAG6Ak0ArQCuAK8B
|
2186
|
+
C4AfgJyAnYAZgB2AM1tIaWRlIE90aGVyc1FoXxAWaGlkZU90aGVyQXBwbGljYXRpb25zOtMADgCcAJ0A
|
2187
|
+
ngJWAleAIYCggKLYAA4AogCjAKQApQCmAKcAqACpAloAqwJNAK0ArgCvAQuAH4ChgJ2AGYAdgDNfEBNI
|
2188
|
+
aWRlIE5ld0FwcGxpY2F0aW9uVWhpZGU60wAOAJwAnQCeAmMCZIAhgKSAp9gADgCiAKMApAClAKYApwCo
|
2189
|
+
AKkCZwCrAmgArQCuAK8AsIAfgKWApoAZgB2AFm4AUwBoAG8AdwAgAFMAcABlAGwAbABpAG4AZyAmUTpf
|
2190
|
+
EA9zaG93R3Vlc3NQYW5lbDrTAA4AnACdAJ4CcQJygCGAqYCt2AAOAKIAowCkAKUApgCnAKgAqQJ1AR0C
|
2191
|
+
dgCtAK4ArwJ5gB+Aq4CsgBmAHYCq0wAOAKIAsgCzAnwCfYDkgOuA7VtTaG93IENvbG9yc1FDXxAVb3Jk
|
2192
|
+
ZXJGcm9udENvbG9yUGFuZWw60wAOAJwAnQCeAoMChIAhgK+AstgADgCiAKMApAClAKYApwCoAKkChwCr
|
2193
|
+
AogArQCuAK8A2YAfgLCAsYAZgB2AJFNOZXdRblxuZXdEb2N1bWVudDrTAA4AnACdAJ4CkQKSgCGAtIC3
|
2194
|
+
2QAOAKIAowCkAKUApgCnAKgBSQCpApUAqwKWAK0ArgCvAU8CmoAfgLWAtoAZgB2ASBABXxAQU21hcnQg
|
2195
|
+
Q29weS9QYXN0ZVFmXxAYdG9nZ2xlU21hcnRJbnNlcnREZWxldGU60wAOAJwAnQCeAqACoYAhgLmAvdgA
|
2196
|
+
DgCiAKMApAClAKYApwCoAKkCpACrAqUArQCuAK8CqIAfgLuAvIAZgB2AutMADgCiALIAswKrAqyA5IEB
|
2197
|
+
HIEBHV8QEUp1bXAgdG8gU2VsZWN0aW9uUWpfEB1jZW50ZXJTZWxlY3Rpb25JblZpc2libGVBcmVhOtMA
|
2198
|
+
DgCcAJ0AngKyArOAIYC/gMLYAA4AogCjAKQApQCmAKcAqACpArYAqwK3AK0ArgCvAOuAH4DAgMGAGYAd
|
2199
|
+
gCpYTWluaW1pemVRbV8QE3BlcmZvcm1NaW5pYXR1cml6ZTrTAA4AnACdAJ4CwALBgCGAxIDG2QAOAKIA
|
2200
|
+
owCkAKUApgCnAKgBSQCpAsQAqwKWAK0ArgCvAqgCmoAfgMWAtoAZgB2AumUARgBpAG4AZCAmXxAXcGVy
|
2201
|
+
Zm9ybUZpbmRQYW5lbEFjdGlvbjrTAA4AnACdAJ4CzQLOgCGAyIDL2AAOAKIAowCkAKUApgCnAKgAqQLR
|
2202
|
+
AKsC0gCtAK4ArwEvgB+AyYDKgBmAHYA+U0N1dFF4VGN1dDrTAA4AnACdAJ4C2wLcgCGAzYDP1wAOAKIA
|
2203
|
+
pAClAKYApwCoAKkC3wCsAK0ArgCvANmAH4DOgBiAGYAdgCRfEA9SZXZlcnQgdG8gU2F2ZWRfEBZyZXZl
|
2204
|
+
cnREb2N1bWVudFRvU2F2ZWQ60wAOAJwAnQCeAugC6YAhgNGA1NgADgCiAKMApAClAKYApwCoAKkC7AEd
|
2205
|
+
Au0ArQCuAK8BL4AfgNKA04AZgB2APlRSZWRvUVpVcmVkbzrTAA4AnACdAJ4C9gL3gCGA1oDZ2AAOAKIA
|
2206
|
+
owCkAKUApgCnAKgAqQL6AKsC+wCtAK4ArwEvgB+A14DYgBmAHYA+VVBhc3RlUXZWcGFzdGU60wAOAJwA
|
2207
|
+
nQCeAwQDBYAhgNuA3dgADgCiAKMApAClAKYApwCoAKkDCACrAKwArQCuAK8A64AfgNyAGIAZgB2AKlRa
|
2208
|
+
b29tXHBlcmZvcm1ab29tOtIANwA4AxADEaMDEQMSADteTlNNdXRhYmxlQXJyYXlXTlNBcnJhedIADgA+
|
2209
|
+
AxQDFYEBJ68QUwMWAdcAQQEDAOsDGwJWAgQDHgMfANkCgwELAwQCwAItAyYDJwEnAs0BcwHIAagBYQMu
|
2210
|
+
Ay8CHwGYAvYCeQM0AU8BvgD2AugDOQFGAXwDPAM9Az4CoANAA0EA4wCwAmMDRQNGA0cBWQNJAd8BFgNM
|
2211
|
+
A00DTgNPAS8ATAJIA1MCqAI7ATkDVwLbAbUDWgH3AekDXQDRArIAnwISAWsCkQGKA2UDZgNnAnGA4IB2
|
2212
|
+
gAeAMoAqgOWAoICEgOaA6YAkgK+AM4DbgMSAkoEBBoEBCIA9gMiAVIBxgGeAToEBDYEBDoCNgGKA1oCq
|
2213
|
+
gPeASIBsgC6A0YEBFIBHgFiA4oEBF4EBGoC5gQEEgPKAKYAWgKSA/4D7gP6ATYEBHoB3gDiBASCBASGA
|
2214
|
+
6oEBAYA+gAuAm4DugLqAl4BDgQEfgM2Aa4EBJYCAgHuBASSAI4C/gBWAiYBTgLSAXYD6gQEbgPaAqdoA
|
2215
|
+
DgCiAKMDagCkA2sApQCmAKcAqACpAKwAqwNuAKwDbgCtAK4ArwELXU5TSXNTZXBhcmF0b3JcTlNJc0Rp
|
2216
|
+
c2FibGVkgB+AGAmAGAmAGYAdgDPSAA4APgByA3aA3qQCsgMEAzwA44C/gNuA4oAp2gAOAKIAowNqAKQD
|
2217
|
+
awClAKYApwCoAKkArACrA24ArANuAK0ArgCvAOuAH4AYCYAYCYAZgB2AKl5fTlNXaW5kb3dzTWVuddIA
|
2218
|
+
NwA4A4YAqKIAqAA70gAOADIAMwA0gASAA9kADgCiAKMApAClAKYApwCoAUkAqQOMAKsDjQCtAK4ArwKo
|
2219
|
+
A5GAH4DngOiAGYAdgLoQB18QFlVzZSBTZWxlY3Rpb24gZm9yIEZpbmRRZdoADgOVAKIAowCkAKUApgCn
|
2220
|
+
AKgDlgCpAnkCfACrAKwArQCuAK8DTgOeWU5TU3VibWVudVhOU0FjdGlvboAfgKqA64AYgBmAHYDqgOzU
|
2221
|
+
AA4AogDtALIAswOhA6IDo4DkgQEigQEmgQEjVkZvcm1hdF5zdWJtZW51QWN0aW9uOtIADgA+AHIDqIDe
|
2222
|
+
ogNTAnGA7oCp2AAOAKIAowCkAKUApgCnAKgAqQOtAKsBuwCtAK4ArwJ5gB+A74BugBmAHYCqWlNob3cg
|
2223
|
+
Rm9udHNURmlsZdIADgA+AHIDtoDeqwKDAYoDQQNnANECLQHpAtsDNAEWAXyAr4BdgPKA9oAjgJKAe4DN
|
2224
|
+
gPeAOIBY2gAOA5UAogCjAKQApQCmAKcAqAOWAKkB3wHiAKsArACtAK4ArwDZA56AH4B3gPOAGIAZgB2A
|
2225
|
+
JIDsW09wZW4gUmVjZW500gAOAD4AcgPOgN6hAdeAdl8QFl9OU1JlY2VudERvY3VtZW50c01lbnXaAA4A
|
2226
|
+
ogCjA2oApANrAKUApgCnAKgAqQCsAKsDbgCsA24ArQCuAK8A2YAfgBgJgBgJgBmAHYAk2gAOAKIAowNq
|
2227
|
+
AKQDawClAKYApwCoAKkArACrA24ArANuAK0ArgCvANmAH4AYCYAYCYAZgB2AJF5OZXdBcHBsaWNhdGlv
|
2228
|
+
btIADgA+AHID5oDeqwGoA2UDRgNHA0UDFgJWAkgCOwNAAQOAZ4D6gPuA/oD/gOCAoICbgJeBAQSAMtoA
|
2229
|
+
DgCiAKMDagCkA2sApQCmAKcAqACpAKwAqwNuAKwDbgCtAK4ArwELgB+AGAmAGAmAGYAdgDPYAA4AogCj
|
2230
|
+
AKQApQCmAKcAqACpA/0AqwP+AK0ArgCvAQuAH4D8gP2AGYAdgDNsAFAAcgBlAGYAZQByAGUAbgBjAGUA
|
2231
|
+
cyAmUSzaAA4AogCjA2oApANrAKUApgCnAKgAqQCsAKsDbgCsA24ArQCuAK8BC4AfgBgJgBgJgBmAHYAz
|
2232
|
+
2gAOA5UAogCjAKQApQCmAKcAqAOWAKkDTwQQAKsArACtAK4ArwELA56AH4EBAYEBAIAYgBmAHYAzgOxY
|
2233
|
+
U2VydmljZXPUAA4AogDtALIAswQQBBoEG4DkgQEAgQEDgQEC0gAOAD4AcgQegN6gXxAPX05TU2Vydmlj
|
2234
|
+
ZXNNZW512gAOAKIAowNqAKQDawClAKYApwCoAKkArACrA24ArANuAK0ArgCvAQuAH4AYCYAYCYAZgB2A
|
2235
|
+
M1xfTlNBcHBsZU1lbnXZAA4AogCjAKQApQCmAKcAqAFJAKkELAEdAc0ArQCuAK8CqAHRgB+BAQeAc4AZ
|
2236
|
+
gB2Aul1GaW5kIFByZXZpb3Vz2gAOAKIAowNqAKQDawClAKYApwCoAKkArACrA24ArANuAK0ArgCvAS+A
|
2237
|
+
H4AYCYAYCYAZgB2APlZTcGVlY2jSAA4APgByBD6A3qIBawISgFOAiVRIZWxw0gAOAD4AcgREgN6hAVmA
|
2238
|
+
TdoADgOVAKIAowCkAKUApgCnAKgDlgCpAOsATwCrAKwArQCuAK8DTgOegB+AKoAJgBiAGYAdgOqA7NkA
|
2239
|
+
DgCiAKMApAClAKYApwCoAUkAqQRRAKsBTACtAK4ArwKoAFOAH4EBD4BKgBmAHYC6WUZpbmQgTmV4dF1T
|
2240
|
+
dWJzdGl0dXRpb25z0gAOAD4AcgRagN6jApEBRgHIgLSAR4BxVFZpZXfSAA4APgByBGGA3qIBtQH3gGuA
|
2241
|
+
gNoADgOVAKIAowCkAKUApgCnAKgDlgCpALAAtACrAKwArQCuAK8BLwOegB+AFoEBFYAYgBmAHYA+gOxf
|
2242
|
+
EBRTcGVsbGluZyBhbmQgR3JhbW1hctIADgA+AHIEcIDepAJjAZgAnwD2gKSAYoAVgC7aAA4DlQCiAKMA
|
2243
|
+
pAClAKYApwCoA5YAqQEvATIAqwCsAK0ArgCvA04DnoAfgD6BARiAGIAZgB2A6oDsVEVkaXTSAA4APgBy
|
2244
|
+
BIGA3q0CHwLoAycCzQIEAvYBOQEnAz4DZgM5A0kDV4CNgNGBAQiAyICEgNaAQ4A9gQEagQEbgQEUgQEe
|
2245
|
+
gQEf2gAOAKIAowNqAKQDawClAKYApwCoAKkArACrA24ArANuAK0ArgCvAS+AH4AYCYAYCYAZgB2APtoA
|
2246
|
+
DgOVAKIAowCkAKUApgCnAKgDlgCpAqgCqwCrAKwArQCuAK8BLwOegB+AuoEBHIAYgBmAHYA+gOxURmlu
|
2247
|
+
ZNIADgA+AHIEpIDepQLAAy8DJgMeAqCAxIEBDoEBBoDmgLnaAA4DlQCiAKMApAClAKYApwCoA5YAqQFP
|
2248
|
+
AVIAqwCsAK0ArgCvAS8DnoAfgEiBARCAGIAZgB2APoDs2gAOA5UAogCjAKQApQCmAKcAqAOWAKkBcwF2
|
2249
|
+
AKsArACtAK4ArwEvA56AH4BUgQEJgBiAGYAdgD6A7NoADgOVAKIAowCkAKUApgCnAKgDlgCpAb4BwQCr
|
2250
|
+
AKwArQCuAK8DTgOegB+AbIEBEoAYgBmAHYDqgOzaAA4DlQCiAKMApAClAKYApwCoA5YAqQELAQ4AqwCs
|
2251
|
+
AK0ArgCvA04DnoAfgDOA+IAYgBmAHYDqgOxZQU1haW5NZW510gAOAD4AcgTRgN6nA00DXQM9Ax8DTAMu
|
2252
|
+
A1qBASGBASSBAReA6YEBIIEBDYEBJdoADgOVAKIAowCkAKUApgCnAKgDlgCpANkA3ACrAKwArQCuAK8D
|
2253
|
+
TgOegB+AJIDwgBiAGYAdgOqA7NoADgOVAKIAowCkAKUApgCnAKgDlgCpAWEBZACrAKwArQCuAK8DTgOe
|
2254
|
+
gB+AToEBC4AYgBmAHYDqgOxbX05TTWFpbk1lbnXSADcAOATtAxKiAxIAO9IADgA+AxQE8IEBJ68QUwEL
|
2255
|
+
Ad8AHwELAy4AHwELAS8CqANOA10A2QNNAOsCqADZAqgBLwEvAS8DVwFPAQsDWgNOAqgBLwCwAS8DHwDZ
|
2256
|
+
A0kDTACwAS8BLwFPANkA6wNOAS8CqAELANkA6wM5ALABCwELAQsBYQEvA0EA2QNOA04AHwNFAz0AQQEL
|
2257
|
+
AnkDZgELAS8BLwDZAb4DTgG+ANkDTgDZAOsAsAFzAXMBTwDZAQsBLwDZAnmAM4B3gAKAM4EBDYACgDOA
|
2258
|
+
PoC6gOqBASSAJIEBIYAqgLqAJIC6gD6APoA+gQEfgEiAM4EBJYDqgLqAPoAWgD6A6YAkgQEegQEggBaA
|
2259
|
+
PoA+gEiAJIAqgOqAPoC6gDOAJIAqgQEUgBaAM4AzgDOAToA+gPKAJIDqgOqAAoD/gQEXgAeAM4CqgQEb
|
2260
|
+
gDOAPoA+gCSAbIDqgGyAJIDqgCSAKoAWgFSAVIBIgCSAM4A+gCSAqtIADgA+AxQFRoEBJ68QVAMWAdcA
|
2261
|
+
QQEDAOsDGwIEAx8CVgMeANkCgwELAwQCwAItAcgDJwEnAs0BcwMmAWEBqAMuAy8CHwGYAnkC9gM0AU8B
|
2262
|
+
vgD2AB8C6AM5AXwDPAFGAz0DPgKgA0ADQQDjALABFgNFA0YDSQNMA0cBWQHfAmMDTQNOAS8ATANPAkgD
|
2263
|
+
UwG1AjsBOQNXAtsCqANaAfcB6QNdANECsgCfAhIBawJxAYoDZQNmA2cCkYDggHaAB4AygCqA5YCEgOmA
|
2264
|
+
oIDmgCSAr4AzgNuAxICSgHGBAQiAPYDIgFSBAQaAToBngQENgQEOgI2AYoCqgNaA94BIgGyALoACgNGB
|
2265
|
+
ARSAWIDigEeBAReBARqAuYEBBIDygCmAFoA4gP+A+4EBHoEBIID+gE2Ad4CkgQEhgOqAPoALgQEBgJuA
|
2266
|
+
7oBrgJeAQ4EBH4DNgLqBASWAgIB7gQEkgCOAv4AVgImAU4CpgF2A+oEBG4D2gLTSAA4APgMUBZ2BASev
|
2267
|
+
EFQFngWfBaAFoQWiBaMFpAWlBaYFpwWoBakFqgWrBawFrQWuBa8FsAWxBbIFswW0BbUFtgW3BbgFuQW6
|
2268
|
+
BbsFvAW9Bb4FvwXABcEFwgXDBcQFxQXGBccFyAXJBcoFywXMBc0FzgXPBdAF0QXSBdMF1AXVBdYF1wXY
|
2269
|
+
BdkF2gXbBdwF3QXeBd8F4AXhBeIF4wXkBeUF5gXnBegF6QXqBesF7AXtBe4F7wXwBfGBASuBASyBAS2B
|
2270
|
+
AS6BAS+BATCBATGBATKBATOBATSBATWBATaBATeBATiBATmBATqBATuBATyBAT2BAT6BAT+BAUCBAUGB
|
2271
|
+
AUKBAUOBAUSBAUWBAUaBAUeBAUiBAUmBAUqBAUuBAUyBAU2BAU6BAU+BAVCBAVGBAVKBAVOBAVSBAVWB
|
2272
|
+
AVaBAVeBAViBAVmBAVqBAVuBAVyBAV2BAV6BAV+BAWCBAWGBAWKBAWOBAWSBAWWBAWaBAWeBAWiBAWmB
|
2273
|
+
AWqBAWuBAWyBAW2BAW6BAW+BAXCBAXGBAXKBAXOBAXSBAXWBAXaBAXeBAXiBAXmBAXqBAXuBAXyBAX2B
|
2274
|
+
AX5bU2VwYXJhdG9yLTNfEBZNZW51IEl0ZW0gKENsZWFyIE1lbnUpXxAPV2luZG93IChXaW5kb3cpVDEx
|
2275
|
+
MTFdTWVudSAoV2luZG93KVtBcHBsaWNhdGlvbl8QEE1lbnUgSXRlbSAoQ29weSlfEBJNZW51IEl0ZW0g
|
2276
|
+
KEZvcm1hdClfEB9NZW51IEl0ZW0gKEhpZGUgTmV3QXBwbGljYXRpb24pXxAiTWVudSBJdGVtIChVc2Ug
|
2277
|
+
U2VsZWN0aW9uIGZvciBGaW5kKVtNZW51IChGaWxlKVE5XxAVTWVudSAoTmV3QXBwbGljYXRpb24pXxAQ
|
2278
|
+
TWVudSBJdGVtIChab29tKW8QEQBNAGUAbgB1ACAASQB0AGUAbQAgACgARgBpAG4AZCAmAClRM18QF01l
|
2279
|
+
bnUgSXRlbSAoU21hcnQgTGlua3MpW1NlcGFyYXRvci0xXxAWTWVudSBJdGVtIChTZWxlY3QgQWxsKV8Q
|
2280
|
+
D01lbnUgSXRlbSAoQ3V0KV1NZW51IChTcGVlY2gpXxAZTWVudSBJdGVtIChGaW5kIFByZXZpb3VzKVEy
|
2281
|
+
XxAgTWVudSBJdGVtIChBYm91dCBOZXdBcHBsaWNhdGlvbilfEBJNZW51IEl0ZW0gKFdpbmRvdylfEBVN
|
2282
|
+
ZW51IEl0ZW0gKEZpbmQgTmV4dClfEBBNZW51IEl0ZW0gKFVuZG8pXxAaTWVudSBJdGVtIChDaGVjayBT
|
2283
|
+
cGVsbGluZyldTWVudSAoRm9ybWF0KV8QEU1lbnUgSXRlbSAoUGFzdGUpUzItMV8QFE1lbnUgKFN1YnN0
|
2284
|
+
aXR1dGlvbnMpW01lbnUgKFZpZXcpXxAnTWVudSBJdGVtIChDaGVjayBHcmFtbWFyIFdpdGggU3BlbGxp
|
2285
|
+
bmcpXEZpbGUncyBPd25lcl8QEE1lbnUgSXRlbSAoUmVkbylfECBNZW51IEl0ZW0gKFNwZWxsaW5nIGFu
|
2286
|
+
ZCBHcmFtbWFyKVE2WVNlcGFyYXRvcl8QGE1lbnUgSXRlbSAoU21hcnQgUXVvdGVzKV8QEE1lbnUgSXRl
|
2287
|
+
bSAoRWRpdClbU2VwYXJhdG9yLTJfEB1NZW51IEl0ZW0gKEp1bXAgdG8gU2VsZWN0aW9uKVtTZXBhcmF0
|
2288
|
+
b3ItNF8QF01lbnUgSXRlbSAoT3BlbiBSZWNlbnQpXxAeTWVudSBJdGVtIChCcmluZyBBbGwgdG8gRnJv
|
2289
|
+
bnQpXxAbTWVudSAoU3BlbGxpbmcgYW5kIEdyYW1tYXIpUTVfEBRNZW51IEl0ZW0gKFNlcnZpY2VzKVMx
|
2290
|
+
MjFfEBlNZW51IEl0ZW0gKFN1YnN0aXR1dGlvbnMpXxAQTWVudSBJdGVtIChWaWV3KVtTZXBhcmF0b3It
|
2291
|
+
NV8QH01lbnUgSXRlbSAoTmV3QXBwbGljYXRpb24gSGVscClfEBJNZW51IChPcGVuIFJlY2VudClvEBoA
|
2292
|
+
TQBlAG4AdQAgAEkAdABlAG0AIAAoAFMAaABvAHcAIABTAHAAZQBsAGwAaQBuAGcgJgApXxAaTWVudSBJ
|
2293
|
+
dGVtIChOZXdBcHBsaWNhdGlvbilYTWFpbk1lbnVbTWVudSAoRWRpdClcQ29udGVudCBWaWV3XxAPTWVu
|
2294
|
+
dSAoU2VydmljZXMpXxAXTWVudSBJdGVtIChIaWRlIE90aGVycylfEBZNZW51IEl0ZW0gKFNob3cgRm9u
|
2295
|
+
dHMpXxAYTWVudSBJdGVtIChTaG93IFRvb2xiYXIpXxAUTWVudSBJdGVtIChTaG93IEFsbClfEBJNZW51
|
2296
|
+
IEl0ZW0gKERlbGV0ZSlfEBJNZW51IEl0ZW0gKFNwZWVjaClSMTBbTWVudSAoRmluZClRMW8QHgBNAGUA
|
2297
|
+
bgB1ACAASQB0AGUAbQAgACgAQwB1AHMAdABvAG0AaQB6AGUAIABUAG8AbwBsAGIAYQByICYAKVE4XxAQ
|
2298
|
+
TWVudSBJdGVtIChGaWxlKVMxLTFfEBRNZW51IEl0ZW0gKE1pbmltaXplKV8QJ01lbnUgSXRlbSAoQ2hl
|
2299
|
+
Y2sgU3BlbGxpbmcgV2hpbGUgVHlwaW5nKV8QGU1lbnUgSXRlbSAoU3RvcCBTcGVha2luZylfEBpNZW51
|
2300
|
+
IEl0ZW0gKFN0YXJ0IFNwZWFraW5nKV8QF01lbnUgSXRlbSAoU2hvdyBDb2xvcnMpbxARAE0AZQBuAHUA
|
2301
|
+
IABJAHQAZQBtACAAKABPAHAAZQBuICYAKVtTZXBhcmF0b3ItNl8QEE1lbnUgSXRlbSAoRmluZClRN18Q
|
2302
|
+
HE1lbnUgSXRlbSAoU21hcnQgQ29weS9QYXN0ZSnSAA4APgMUBkiBASeg0gAOAD4DFAZLgQEnoNIADgA+
|
2303
|
+
AxQGToEBJ68QewMWAI8B1wBBAQMA6wMbAHgDHwDZAIcBCwLAAI0AkgItAyYBJwB1AXMAigCZAy8CHwCL
|
2304
|
+
AvYCeQM0AIAC6AFGAIEDPQB5AIIDQQCEAOMB3wNFA0YBWQNJA0wAewNPAJoCSACOAIMBtQE5A1cAlQNa
|
2305
|
+
A10A0QFrAJ8AjACTApEBigNmA2cAdgB/AHcDHgJWAgQAlAKDAwQAkQHIAycCzQGoAWEDLgCJAHwAfgCQ
|
2306
|
+
AJYBmACGAU8AhQG+APYAHwM5AXwDPAB6Az4CoAB0A0AAsAJjARYDRwCXA00DTgEvAEwDUwCIAqgCOwLb
|
2307
|
+
AH0B9wHpArICEgJxAJgDZYDggKOAdoAHgDKAKoDlgDGA6YAkgH+AM4DEgJqAs4CSgQEGgD2AIoBUgIyA
|
2308
|
+
1YEBDoCNgJGA1oCqgPeAXIDRgEeAYYEBF4A3gGaA8oBwgCmAd4D/gPuATYEBHoEBIIBCgQEBgNqAm4Cf
|
2309
|
+
gGqAa4BDgQEfgMOBASWBASSAI4BTgBWAloC4gLSAXYEBG4D2gCiAV4AtgOaAoICEgL6Ar4DbgK6AcYEB
|
2310
|
+
CIDIgGeAToEBDYCIgEaAUoCogMeAYoB6gEiAdYBsgC6AAoEBFIBYgOKAPIEBGoC5gBSBAQSAFoCkgDiA
|
2311
|
+
/oDMgQEhgOqAPoALgO6Ag4C6gJeAzYBMgICAe4C/gImAqYDQgPrSAA4APgMUBsyBASevEHsGzQbOBs8G
|
2312
|
+
0AbRBtIG0wbUBtUG1gbXBtgG2QbaBtsG3AbdBt4G3wbgBuEG4gbjBuQG5QbmBucG6AbpBuoG6wbsBu0G
|
2313
|
+
7gbvBvAG8QbyBvMG9Ab1BvYG9wb4BvkG+gb7BvwG/Qb+Bv8HAAcBBwIHAwcEBwUHBgcHBwgHCQcKBwsH
|
2314
|
+
DAcNBw4HDwcQBxEHEgcTBxQHFQcWBxcHGAcZBxoHGwccBx0HHgcfByAHIQciByMHJAclByYHJwcoBykH
|
2315
|
+
KgcrBywHLQcuBy8HMAcxBzIHMwc0BzUHNgc3BzgHOQc6BzsHPAc9Bz4HPwdAB0EHQgdDB0QHRQdGB0eB
|
2316
|
+
AYOBAYSBAYWBAYaBAYeBAYiBAYmBAYqBAYuBAYyBAY2BAY6BAY+BAZCBAZGBAZKBAZOBAZSBAZWBAZaB
|
2317
|
+
AZeBAZiBAZmBAZqBAZuBAZyBAZ2BAZ6BAZ+BAaCBAaGBAaKBAaOBAaSBAaWBAaaBAaeBAaiBAamBAaqB
|
2318
|
+
AauBAayBAa2BAa6BAa+BAbCBAbGBAbKBAbOBAbSBAbWBAbaBAbeBAbiBAbmBAbqBAbuBAbyBAb2BAb6B
|
2319
|
+
Ab+BAcCBAcGBAcKBAcOBAcSBAcWBAcaBAceBAciBAcmBAcqBAcuBAcyBAc2BAc6BAc+BAdCBAdGBAdKB
|
2320
|
+
AdOBAdSBAdWBAdaBAdeBAdiBAdmBAdqBAduBAdyBAd2BAd6BAd+BAeCBAeGBAeKBAeOBAeSBAeWBAeaB
|
2321
|
+
AeeBAeiBAemBAeqBAeuBAeyBAe2BAe6BAe+BAfCBAfGBAfKBAfOBAfSBAfWBAfaBAfeBAfiBAfmBAfqB
|
2322
|
+
AfuBAfyBAf0QkBDmEH4RAXMQiBAYE//////////9EQFxEQErEFERAW0QORDREQFwEQFjEEsQ1RDGEMEQ
|
2323
|
+
1BDfEOIQ0BDPEQFqEMsRASwQShEBdhDXEQFfEOEQ2RBXEI4QfBEBZRAFEH0QgxCBEG8RAVwRAScQ6xCC
|
2324
|
+
EPAQkREBbxEBbhEBKRDKENMQ8RBnEFMQSRDEENsRAXIQ9REBXhBIENoQTxAnEFYRAVsQ3RCGEMUQJRBS
|
2325
|
+
EO8RAXURAWIQzhDHEDoQahATEOMRAWQQ6REBaRDkEMkRAWsRAV0QfxEBKBEBWhEBdxDYEE4QXBDoENYQ
|
2326
|
+
0hDeEJUQyBDMEE0QjxEBbBA4EB0QzREBdBEBWBDgENwQlhBwEQFoEQEqEFAQFxDDEQFZEOcQ7NIADgA+
|
2327
|
+
AHIHxYDeoNIADgA+AxQHyIEBJ6DSAA4APgMUB8uBASeg0gA3ADgHzQfOogfOADteTlNJQk9iamVjdERh
|
2328
|
+
dGEACAAZACIAJwAxADoAPwBEAFIAVABmBG4EdAS/BMYEzQTbBO0FCQUXBSMFLwU9BUgFVgVyBYAFkwWl
|
2329
|
+
Bb8FyQXWBdgF2wXdBeAF4wXlBegF6gXtBfAF8wX2BfgF+gX9BgAGAwYGBg8GGwYdBh8GLQY2Bj8GSgZP
|
2330
|
+
Bl4GZwZ6BoMGjgaQBpMGlQa+BssG2AbmBvAG/gcLBx0HMQc9Bz8HQQdDB0UHSgdMB04HUAdSB1QHbwd2
|
2331
|
+
B38HmAeqB7MHvwfLB80HzwfSB9QH1gfYB+MH7AfzB/oIBggfCCgILQhACEkIUAhdCGMIbAhuCL8IwQjD
|
2332
|
+
CMUIxwjJCMsIzQjPCNEI0wjVCNcI2QjbCN0I3wjhCOMI5QjnCOkI6wjtCO8I8QjzCPUI9wj5CPsI/Qj/
|
2333
|
+
CQEJAwkFCQcJCQkLCQ0JGgkjCSsJLQkvCTEJUglaCW4JeQmHCZEJngmlCacJqQmuCbAJtQm3CbkJuwnI
|
2334
|
+
CdQJ1gnZCdwJ+gn7CggKFwoZChsKHQolCjcKQApFClgKZQpnCmkKawp+CocKjAqXCrgKwQrICuAK7wr8
|
2335
|
+
Cv4LAAsCCyMLJQsnCykLKwstCy8LPAs+C0ALQgtIC0oLWAtlC2cLaQtrC4wLjguQC5ILlAuWC5gLqQuw
|
2336
|
+
C7ILtAu2C7gLzQvfC+wL7gvwC/IMEwwVDBcMGQwbDB0MHww9DFYMYwxlDGcMaQyKDIwMjgyQDJIMlAyW
|
2337
|
+
DKcMqQyrDK4MsAzGDMgM0wzgDOIM5AzmDQsNFQ0XDRkNGw0gDSINJA0mDSgNNg04DUcNVA1WDVgNWg17
|
2338
|
+
DX0Nfw2BDYMNhQ2HDZQNlg2ZDZwNpw2pDbQNwQ3DDcUNxw3oDeoN7A3uDfAN8g30DfsOAw4QDhIOFA4W
|
2339
|
+
DjsOQQ5DDkUORw5JDksOTQ5aDlwOXw5iDm8OcQ6VDqIOpA6mDqgOyQ7LDs0Ozw7RDtMO1Q7iDuQO5w7q
|
2340
|
+
DwAPAg8MDxkPGw8dDx8PQA9CD0QPRg9ID0oPTA9ZD1sPXg9hD3APfw+MD44PkA+SD7MPtQ+3D7kPuw+9
|
2341
|
+
D78PzA/OD9UP4g/kD+YP6BAJEAsQDRAPEBEQExAVECAQIhAwED0QPxBBEEMQZBBmEGgQahBsEG4QcBB/
|
2342
|
+
EIEQkBChEK8QsRCzELUQtxDUENYQ2BDaENwQ3hDgEPcRFxEkESYRKBEqEUsRTRFPEVQRVhFYEVoRXBFp
|
2343
|
+
EWsRbhFxEX4RgBGWEaMRpRGnEakRzhHQEdIR1BHWEdgR2hHcEegR6hIKEhcSGRIbEh0SPhJAEkISRBJG
|
2344
|
+
EkgSShJbEl0SXxJhEmMSbhKGEpMSlRKXEpkSuhK8Er4SwBLCEsQSxhLXEtkS6xL4EvoS/BL+Ex8TIRMj
|
2345
|
+
EyUTJxMpEysTUhN0E4ETgxOFE4cTqBOqE6wTrhOwE7ITtBO5E7sTwRPOE9AT0hPUE/UT9xP5E/sT/RP/
|
2346
|
+
FAEUDxQdFCoULBQuFDAUURRTFFUUVxRZFFsUXRRiFGQUahR3FHkUexR9FJ4UoBSiFKQUphSoFKoUrxSx
|
2347
|
+
FL8UzBTOFNAU0hTzFPUU9xT5FPsU/RT/FQgVIRUuFTAVMhU0FVUVVxVZFVsVXRVfFWEVbRVvFYgVlRWX
|
2348
|
+
FZkVmxW8Fb4VwBXCFcQVxhXIFd4V5BXxFfMV9RX3FhgWGhYcFh4WIBYiFiQWQRZDFlUWYhZkFmYWaBaJ
|
2349
|
+
FosWjRaPFpEWkxaVFqIWpBamFqgWtBa2Fs4W2xbdFt8W4RcCFwQXBhcIFwoXDBcOFxIXFBchFy4XMBcy
|
2350
|
+
FzQXWRdbF10XXxdhF2MXZRdnF3oXfBeXF6QXpheoF6oXyxfNF88X0RfTF9UX1xfkF+YX6RfsGAAYAhgi
|
2351
|
+
GC8YMRgzGDUYVhhYGFoYXBheGGAYYhhrGG0YgxiQGJIYlBiWGLsYvRi/GMEYwxjFGMcY0hjsGPkY+xj9
|
2352
|
+
GP8ZIBkiGSQZJhkoGSoZLBkwGTIZNxlEGUYZSBlKGWcZaRlrGW0ZbxlxGXMZhRmeGasZrRmvGbEZ0hnU
|
2353
|
+
GdYZ2BnaGdwZ3hnjGeUZ6xn4GfoZ/Bn+Gh8aIRojGiUaJxopGisaMRozGjoaRxpJGksaTRpuGnAachp0
|
2354
|
+
GnYaeBp6Gn8ajBqVGpwaqxqzGrwavxtoG2obbBtuG3Abcht0G3YbeBt6G3wbfhuAG4IbhBuGG4gbixuO
|
2355
|
+
G5AbkhuUG5YbmBuaG50boBuiG6QbphuoG6obrBuuG7Abshu1G7cbuRu7G74bwRvDG8YbyBvKG8wbzhvQ
|
2356
|
+
G9Ib1BvWG9kb2xvdG+Ab4xvlG+gb6hvsG+4b8BvyG/Qb9hv5G/sb/RwAHAIcBBwHHAkcCxwNHA8cERwT
|
2357
|
+
HBUcFxwaHBwcHhxHHFUcYhxkHGYcZxxpHGocbBxuHHAceRx7HIQchhyIHIocjBy1HLccuRy6HLwcvRy/
|
2358
|
+
HMEcwxzSHNsc4BzpHOsc7R0SHRQdFh0YHRodHB0eHSAdOR07HWQdbh13HXkdex19HX8dgR2DHYUdhx2Y
|
2359
|
+
HZodnR2gHaMdqh25HcIdxB3JHcsdzR3uHfAd8h30HfYd+B36HgUeCh4THhUeLB4uHjAeMh40HjYeOB46
|
2360
|
+
HjwePh5AHkIeax5tHm8ecR5zHnUedx55Hnsehx6QHpIelR6XHrAe2R7bHt0e3h7gHuEe4x7lHucfEB8S
|
2361
|
+
HxQfFR8XHxgfGh8cHx4fLR82HzgfTx9RH1MfVR9XH1kfWx9dH18fYR9kH2Yfjx+RH5MflB+WH5cfmR+b
|
2362
|
+
H50fvh/AH8IfxB/GH8gfyh/jH+UgDiAQIBIgEyAVIBYgGCAaIBwgRSBHIEogTSBPIFEgUyBVIFcgYCBx
|
2363
|
+
IHMgdiB5IHwghSCHIIggmiDDIMUgxyDIIMogyyDNIM8g0SDeIQMhBSEIIQohDCEOIRAhHiFHIUkhSyFM
|
2364
|
+
IU4hTyFRIVMhVSFcIWUhZyFsIW4hcCF1IX4hgCGDIYUhriGwIbIhtCG2IbghuiG8Ib4h4yHlIegh6iHs
|
2365
|
+
Ie4h8CH6IggiESITIhoiHCIeIiAiJSIuIjAiNSI3IjkiYiJkImYiaSJrIm0ibyJxInMiiiKTIpUiniKg
|
2366
|
+
IqIipCKmIs8i0SLTItYi2CLaItwi3iLgIuUi7iLwIwsjDSMPIxIjFCMWIxgjGiMcIx8jIiMlIygjKyNU
|
2367
|
+
I1YjWCNZI1sjXCNeI2AjYiOLI40jjyOSI5QjliOYI5ojnCOhI6ojrCO3I7kjvCO/I8EjwyPsI+4j8CPz
|
2368
|
+
I/Uj9yP5I/sj/SQmJCgkKiQtJC8kMSQzJDUkNyRgJGIkZCRnJGkkayRtJG8kcSSaJJwkniSgJKIkpCSm
|
2369
|
+
JKgkqiS0JL0kvyTOJNEk1CTXJNkk3CTfJOIlCyUNJQ8lESUTJRUlFyUZJRslRCVGJUglSyVNJU8lUSVT
|
2370
|
+
JVUlYSVqJW8leCV7JiQmJiYoJiomLCYvJjEmMyY1JjcmOSY8Jj4mQSZDJkUmRyZJJksmTSZPJlImVCZW
|
2371
|
+
JlkmWyZdJl8mYSZjJmUmZyZqJm0mbyZxJnMmdSZ3JnkmeyZ9Jn8mgSaDJoUmiCaKJowmjiaQJpImlCaW
|
2372
|
+
JpgmmiacJp4moCajJqUmpyapJqwmriawJrImtCa2Jrgmuia8Jr4mwCbCJsQmxibIJsomzCbOJtAm0ibU
|
2373
|
+
Jt0m4CeLJ40njyeRJ5MnlSeXJ5knmyedJ58noSejJ6UnpyepJ6snrSewJ7IntCe2J7knuye9J8AnwyfF
|
2374
|
+
J8cnySfLJ80nzyfRJ9Mn1SfXJ9on3CfeJ+An4yfmJ+gn6yftJ+8n8SfzJ/Un9yf6J/0n/ygBKAMoBSgI
|
2375
|
+
KAooDCgOKBEoEygVKBcoGSgbKB4oICgiKCUoJygpKCwoLigwKDIoNCg2KDgoOig8KD8oQShDKEwoTyj6
|
2376
|
+
KP0pACkDKQYpCSkMKQ8pEikVKRgpGykeKSEpJCknKSopLSkwKTMpNik5KTwpPylCKUUpSClLKU4pUSlU
|
2377
|
+
KVcpWildKWApYylmKWkpbClvKXIpdSl4KXspfimBKYQphymKKY0pkCmTKZYpmSmcKZ8poimlKagpqymu
|
2378
|
+
KbEptCm3KbopvSnAKcMpxinJKcwpzynSKdUp2CnbKd4p4SnkKecp6intKfAp8yn2KgIqGyotKjIqQCpM
|
2379
|
+
Kl8qdCqWKrsqxyrJKuEq9CsZKxsrNStBK1orbCt6K5YrmCu7K9Ar6Cv7LBgsJiw6LD4sVSxhLIssmCyr
|
2380
|
+
LM4s0CzaLPUtCC0ULTQtQC1aLXstmS2bLbItti3SLeUt8S4TLiguXy58LoUukS6eLrAuyi7jLv4vFS8q
|
2381
|
+
Lz8vQi9OL1Avjy+RL6QvqC+/L+kwBTAiMDwwYTBtMIAwgjChMKowrTCuMLcwujC7MMQwxzHAMcIxxDHG
|
2382
|
+
McgxyjHMMc4x0DHSMdQx1jHYMdox3DHeMeAx4zHlMecx6THrMe0x8DHyMfQx9jH4Mfox/DH+MgAyAjIF
|
2383
|
+
MgcyCTILMg0yDzIRMhMyFTIXMhoyHTIfMiIyJDImMigyKjIsMi4yMTIzMjYyOTI7Mj0yPzJBMkMyRTJH
|
2384
|
+
MkoyTDJOMlAyUjJUMlYyWDJaMlwyXjJgMmIyZTJnMmkyazJuMnAycjJ0MnYyeDJ6MnwyfjKAMoIyhDKG
|
2385
|
+
MokyizKNMo8ykjKUMpYymTKbMp0ynzKhMqMypjKoMqoyrDKuMrAysjK0MrYyuDK6MrwyvjLAMsIyxDLG
|
2386
|
+
Ms8y0jPLM84z0TPUM9cz2jPdM+Az4zPmM+kz7DPvM/Iz9TP4M/sz/jQBNAQ0BzQKNA00EDQTNBY0GTQc
|
2387
|
+
NB80IjQlNCg0KzQuNDE0NDQ3NDo0PTRANEM0RjRJNEw0TzRSNFU0WDRbNF40YTRkNGc0ajRtNHA0czR2
|
2388
|
+
NHk0fDR/NII0hTSINIs0jjSRNJQ0lzSaNJ00oDSjNKY0qTSsNK80sjS1NLg0uzS+NME0xDTHNMo0zTTQ
|
2389
|
+
NNM01jTZNNw03zTiNOU06DTrNO408TT0NPc0+jT9NQA1AzUGNQk1DDUPNRI1FTUYNRs1HjUhNSQ1JzUq
|
2390
|
+
NS01MDUzNTY1OTU8NT41QDVCNUU1RzVJNVI1VTVYNVo1XTVfNWE1ZDVnNWk1azVtNW81cTVzNXU1dzV5
|
2391
|
+
NXw1fjWBNYM1hjWINYs1jTWPNZE1kzWVNZg1mjWcNZ41oDWiNaU1qDWqNaw1rjWwNbM1tjW5Nbs1vTW/
|
2392
|
+
NcE1wzXFNcc1yTXMNc410TXTNdU11zXZNds13jXgNeI15DXmNeg16jXtNfA18jX0NfY1+DX6Nfw1/zYB
|
2393
|
+
NgQ2BjYINgs2DjYQNhM2FjYZNhs2HTYfNiE2IzYlNic2KTYrNi02LzYxNjQ2NjY4Njo2PTZANkI2RDZG
|
2394
|
+
Nkg2SzZONlA2UjZUNlc2WTZbNmQ2ZjZnNnA2czZ0Nn02gDaBNoo2jwAAAAAAAAICAAAAAAAAB88AAAAA
|
2395
|
+
AAAAAAAAAAAAADaeA</bytes>
|
2396
|
+
</object>
|
2397
|
+
</data>
|
2398
|
+
</archive>
|