Kodo.rar in B5 has same problem as in B4

Hi guys,
The dereference issue in B4 (which is not in B3) is still in B5. The stack trace and my code (which
is a hacked version of your code) is below.
David Ezzio
My code that looks for CF:
private ConnectionFactory getConnectionFactory()
// this the the JNDI name for the Kodo Resource
// Adaptor that you will have configured in in
// your application server
String pmname = "java:/kodo";
try
MsgCenter.putMsg("Looking up jndi name: " + pmname);
Object ob = new InitialContext().lookup(pmname);
MsgCenter.putMsg("Casting to ConnectionFactory");
ConnectionFactory fac = (ConnectionFactory) ob;
MsgCenter.putMsg("ConnectionFactory type is: " + fac.getClass().getName());
return fac;
14:30:37,306 INFO [Server] JBoss (MX MicroKernel) [3.0.0 Date:200205311035] Started in 0m:46s:86ms
14:31:04,895 INFO [STDOUT] Stateless QuoteServerEJB: ejbCreate called
14:31:04,905 INFO [STDOUT] Looking up jndi name: java:/kodo
14:31:04,905 ERROR [STDERR] javax.naming.NamingException: Could not dereference object. Root
exception is
14:31:04,905 ERROR [STDERR] java.lang.IllegalAccessException:
com.solarmetric.kodo.impl.jdbc.ee.JDOObjectFactory
14:31:04,905 ERROR [STDERR] at java.lang.Class.newInstance0(Native Method)
14:31:04,905 ERROR [STDERR] at java.lang.Class.newInstance(Class.java:237)
14:31:04,905 ERROR [STDERR] at
javax.naming.spi.NamingManager.getObjectFactoryFromReference(NamingManager.java:149)
14:31:04,905 ERROR [STDERR] at
javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:302)
14:31:04,915 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:538)
14:31:04,915 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:429)
14:31:04,915 ERROR [STDERR] at javax.naming.InitialContext.lookup(InitialContext.java:350)
14:31:04,915 ERROR [STDERR] at
com.ysoft.jdo.book.sayings.service.ejb.QuoteServerEJB.getConnectionFactory(QuoteServerEJB.java:423)
14:31:04,915 ERROR [STDERR] at
com.ysoft.jdo.book.sayings.service.ejb.QuoteServerEJB.ejbCreate(QuoteServerEJB.java:44)
14:31:04,915 ERROR [STDERR] at java.lang.reflect.Method.invoke(Native Method)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.StatelessSessionEnterpriseContext.<init>(StatelessSessionEnterpriseContext.java:52)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.StatelessSessionInstancePool.create(StatelessSessionInstancePool.java:61)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.AbstractInstancePool.get(AbstractInstancePool.java:208)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:63)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:96)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:167)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:61)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:129)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:166)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.java:313)
14:31:04,936 ERROR [STDERR] at org.jboss.ejb.Container.invoke(Container.java:705)
14:31:04,936 ERROR [STDERR] at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:491)
14:31:04,936 ERROR [STDERR] at
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:362)
14:31:04,936 ERROR [STDERR] at java.lang.reflect.Method.invoke(Native Method)
14:31:04,936 ERROR [STDERR] at
sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:241)
14:31:04,936 ERROR [STDERR] at sun.rmi.transport.Transport$1.run(Transport.java:152)
14:31:04,946 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
14:31:04,946 ERROR [STDERR] at sun.rmi.transport.Transport.serviceCall(Transport.java:148)
14:31:04,946 ERROR [STDERR] at
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:465)
14:31:04,946 ERROR [STDERR] at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:706)
14:31:04,946 ERROR [STDERR] at java.lang.Thread.run(Thread.java:484)

The next release of Kodo, which will be 2.3.0RC.
In article <[email protected]>, David Ezzio wrote:
Hi Marc,
In the next release of Kodo? or JBoss? And next release for Kodo means the 2.3.0RC?
David
Marc Prudhommeaux wrote:
David-
The JBoss final 3.0 release seems to have changed how it accesses the
ObjectFactory factory. This should be fixed in the next release.
Sorry for all the trouble.
In article <[email protected]>, David Ezzio wrote:
Hi guys,
The dereference issue in B4 (which is not in B3) is still in B5. The stack trace and my code (which
is a hacked version of your code) is below.
David Ezzio
My code that looks for CF:
private ConnectionFactory getConnectionFactory()
// this the the JNDI name for the Kodo Resource
// Adaptor that you will have configured in in
// your application server
String pmname = "java:/kodo";
try
MsgCenter.putMsg("Looking up jndi name: " + pmname);
Object ob = new InitialContext().lookup(pmname);
MsgCenter.putMsg("Casting to ConnectionFactory");
ConnectionFactory fac = (ConnectionFactory) ob;
MsgCenter.putMsg("ConnectionFactory type is: " + fac.getClass().getName());
return fac;
14:30:37,306 INFO [Server] JBoss (MX MicroKernel) [3.0.0 Date:200205311035] Started in 0m:46s:86ms
14:31:04,895 INFO [STDOUT] Stateless QuoteServerEJB: ejbCreate called
14:31:04,905 INFO [STDOUT] Looking up jndi name: java:/kodo
14:31:04,905 ERROR [STDERR] javax.naming.NamingException: Could not dereference object. Root
exception is
14:31:04,905 ERROR [STDERR] java.lang.IllegalAccessException:
com.solarmetric.kodo.impl.jdbc.ee.JDOObjectFactory
14:31:04,905 ERROR [STDERR] at java.lang.Class.newInstance0(Native Method)
14:31:04,905 ERROR [STDERR] at java.lang.Class.newInstance(Class.java:237)
14:31:04,905 ERROR [STDERR] at
javax.naming.spi.NamingManager.getObjectFactoryFromReference(NamingManager.java:149)
14:31:04,905 ERROR [STDERR] at
javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:302)
14:31:04,915 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:538)
14:31:04,915 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:429)
14:31:04,915 ERROR [STDERR] at javax.naming.InitialContext.lookup(InitialContext.java:350)
14:31:04,915 ERROR [STDERR] at
com.ysoft.jdo.book.sayings.service.ejb.QuoteServerEJB.getConnectionFactory(QuoteServerEJB.java:423)
14:31:04,915 ERROR [STDERR] at
com.ysoft.jdo.book.sayings.service.ejb.QuoteServerEJB.ejbCreate(QuoteServerEJB.java:44)
14:31:04,915 ERROR [STDERR] at java.lang.reflect.Method.invoke(Native Method)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.StatelessSessionEnterpriseContext.<init>(StatelessSessionEnterpriseContext.java:52)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.StatelessSessionInstancePool.create(StatelessSessionInstancePool.java:61)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.AbstractInstancePool.get(AbstractInstancePool.java:208)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:63)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:96)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:167)
14:31:04,925 ERROR [STDERR] at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:61)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:129)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:166)
14:31:04,936 ERROR [STDERR] at
org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.java:313)
14:31:04,936 ERROR [STDERR] at org.jboss.ejb.Container.invoke(Container.java:705)
14:31:04,936 ERROR [STDERR] at
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:491)
14:31:04,936 ERROR [STDERR] at
org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:362)
14:31:04,936 ERROR [STDERR] at java.lang.reflect.Method.invoke(Native Method)
14:31:04,936 ERROR [STDERR] at
sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:241)
14:31:04,936 ERROR [STDERR] at sun.rmi.transport.Transport$1.run(Transport.java:152)
14:31:04,946 ERROR [STDERR] at java.security.AccessController.doPrivileged(Native Method)
14:31:04,946 ERROR [STDERR] at sun.rmi.transport.Transport.serviceCall(Transport.java:148)
14:31:04,946 ERROR [STDERR] at
sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:465)
14:31:04,946 ERROR [STDERR] at
sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:706)
14:31:04,946 ERROR [STDERR] at java.lang.Thread.run(Thread.java:484)--
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com
Kodo Java Data Objects Full featured JDO: eliminate the SQL from your code
Marc Prud'hommeaux [email protected]
SolarMetric Inc. http://www.solarmetric.com
Kodo Java Data Objects Full featured JDO: eliminate the SQL from your code

Similar Messages

  • After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    THIS is "quite a few": https://discussions.apple.com/thread/3391947
    As are these:
    https://discussions.apple.com/thread/3391947?tstart=0
    https://discussions.apple.com/thread/3484755?tstart=0
    https://discussions.apple.com/thread/3481668?tstart=0
    https://discussions.apple.com/thread/3518760?tstart=0
    https://discussions.apple.com/thread/2755090?tstart=0
    https://discussions.apple.com/thread/3507356?tstart=30
    https://discussions.apple.com/thread/3482083?tstart=60
    https://discussions.apple.com/thread/3492588?tstart=60
    https://discussions.apple.com/thread/3397244?tstart=90
    And older ones:
    Battery Meter/Life Problems with 4.0.2
    4.0.2 guzzling my battery. Your's too?
    4.0.1 battery life
    Battery runs out very quicky in iOS 4.0.1
    Battery nearly nonexistant after 4.0 upgrade
    Dead battery after few hours on standby using 4.0 software
    3.1.3 battery problem
    OS 3.1.3 battery issues
    3.1.3 upgrade - shortened battery life?
    Battery life cut after 3.1.3 update on iPhone 3G
    3.1.3 Firmware is a battery killer - how do I back out this upgrade?
    Poor battery life with iPhone 3G running 3.1.2
    3.1.2 EXTREME battery drain - what gives?
    3.1 Battery nightmare
    iPhone 3GS with fw 3.1 – battery life gets even worse
    Battery Issues with 3.0.1
    BATTERY drain with 3.0
    upgrade to 3.0 drains my battery
    Battery Drain after Update 2.2.1
    Battery Life Radically Decreased after 2.2.1 Firmware Update
    As you can see, battery issues have been common since the first iphone, frequently reported after an upgrade, but not always. So to blame a specific version doesn't describe the problem sufficiently to find a resolution.

  • IPad 3 4g LTE works On/off, ATT network, last 4 days, does anyone has same problem I am in Houston, TX area?

    Brand new ipad3 wife+LTE, Apple store swap it once and ATT store changed sim card twice, still having problems with Internet, websites dont load, if they load then thet take me no where. ATT tech support could not figure out last night. Anybody has same problem?

    Not using any mouse pad, I have a very smooth desktop. But I just tried to use a sheet of A4 printing paper, but no result, the problem persisted.
    Someone on this forum suggested, that USB3 may interfere with the magic mouse.
    I have 2 LaCie HDD's about 70 cm away from the mouse, I use them on Thunderbolt. But in operation or not - the result is the same, the mouse plays up! Just now I was clicking the desktop and the mouse created a new folder!!
    Thanks for the advice, Bee
    Cheers, Gerd

  • Mail delivery error with 5510 e-print. updates and connection are ok. friend has same problem.

    I have checked all of the updates and connections for my new printer.  As far as I can tell, I've checked everything that needs to be checked and all is good.  But, I still get the Mail Delivery error when e-printing.  And my friend has the same problem with her new 5510 b111a.  What could possibly be the problem?  Regular printing, scanning and so on work fine with my wireless connection.
    This question was solved.
    View Solution.

    So it sounds like it may be an Issue with the provided Email Address from your internet service provider, you are sending from ,
    What i would suggest as a test is to create a Email account either with g mail and or yahoo, and try to send the email to your eprint account/Email, and see if it accepts the email also, make sure you have your printer set to Accept email from all users you can do this by logging into Eprint Center and then going into these settings and selecting that option
    I am an HP employee.
    __ if this Solution has helped Please Mark as Resolved and feel free to Provide a Kudos__

  • Iphone 4Gs battery life: 2nd phone has same problem

    I bought a 4gs last June (to replace a 4Gs that I lost) and the new phone's battery died after roughly 3 hours. Through my mobile provider I had it replaced, but also the new phone (so the second) has the same problem. The battery drains out within a few hours.
    I have bluetooth turned off, most locations services turned off, hotspot turned off, for most apps I have turned off push notifications, i have the automatich time zone turned off, etc. But even in the night, when not using it at all, it uses 20 to 40%!
    Any suggestions?

    Unfortunately, we are still not up to the technology of Star Trek. Batteries and mobile communications have come a long way in just a few years. Every person has the choice between using all the bells & whistles on their devices, or saving the batterry life for being able to use their phones in necessary instances.
    Here are some other suggestions:
    http://ipod.about.com/od/iphone3g/tp/iphone-battery-life.htm
    http://www.pcmag.com/article2/0,2817,2395808,00.asp
    http://www.imore.com/how-save-battery-life-your-iphone-and-ipad-tweaking-notific ation-center-settings
    http://osxdaily.com/2013/05/20/extend-iphone-battery-life-tips-that-work/

  • Youtube video not working its blank and black every browser has same problem and i have installed new flash player but same problem????help me

    I don't have any real players. nothing shows when open videos it is black no error messages its black. i have clear the cookies. but no answer?????????????

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/

  • HT1551 My iTunes music library disappear from my AppleTv 1rst generation, and would not accept it back. The Video part works find, but the Music part does not. I reseted to Original factory settings, but still has same problem. Any body has any suggestion

    I have a 1rst generation Apple TV and My Music disappear; after trying several times trying to get My Music back, I opted by resetting it back to Original settings with no avail. The video part is find, all my movies are there, but when it comes to the Music nothing shows up.
    Does anybody know what could be happening here and have any suggestions how fix it ?

    So, when you go to Devices->AppleTVname->Music in the left panel of iTuens, you have:
    1. "Sync music" checked
    2. Either "All songs and playlists" or "Selected playlists" plus actual playlists selected
    Correct?
    And of course, in those actual playlists, there is music?
    Is htis iTMS purchased music, or mp3's?

  • Did anybody has same problem as mine?

    HD Configration: AMD 3000+ 1GRam MSI k8n
    I install a Windows 2003 64bit system. but i found severy time i inpute the pw and waiting for login, it spend long time, and the harddisk is reading, reading, no respond, only show me a blue screen with a mouse.
    i do not understand, it is a new system, no other software, and the system was actived in internet.
    i just think it was caused by the hardware or the drivers???
    if anybody can help me, i will be really appricate.
    thank you!

    We know you are new here. However you won't get many answers posting a question about an NVidia Chipset Board in the Via area.
    Topic moved.

  • My iPad crashed when I updated latest iOS software. After resetting the system, I am unable to get back Pages, Numbers and Keynote Apps. Anyone has same problem? And how can I get back the apps?

    My iPad Air crashed after updating latest iOS software. After resetting the system, Pages, Numbers and Keynotes are not available. How do I get the apps back into my iPad?

    You can also re-download the apps.
    App Store>Purchased>Re-download apps

  • Macbook air 2013 black screen with cursor, anyone has same problem?

    And I found out that everytime when screen become black, it is 100% acompanied by wifi disconnection.

    Sleep mode?
    Quoting from below linked article from Apple:
    "What happens when the Mac goes to sleep (not just into idle mode or display sleep)?"
    "An AirPort card, if present, turns off "
    http://support.apple.com/kb/ht2412
    If this is not the case, you have to contact Apple as soon as possible.
    Best.

  • TS1702 After doing an update on tribez everything has disappeared ...... Anyone else have the same problem??

    HAs anyone else had the same problem, after doing an update nothing will come up for tribez just a blank screen. My late nights are not the same now!!!

    Your Performance preferences screen capture reveals you have a single hard drive with little available space to accommodate both the Photoshop scratch file and the swap files of the OS.
    It's obvious that Bridge finds itself at times with insufficient space to build its cache.
    However, it's unclear why that should affect only DNG files and not other type of image files.  Puzzling, unless the DNG files are the only large image files you have.
    Parts of the following may illustrate what happens when the scratch file is on your boot drive:
    The rule of thumb I follow to figure out scratch space says to figure on 50 to 100 times the size of your largest file ever multiplied by the number of files you have open.  I have seen the scratch file exceed 800 GB once, an admittedly rare occurrence, but it often exceeds 200 GB when stitching large panoramas and the like.
    As an example—and stressing that I'm aware that others have even more scratch space than I do—I keep two dedicated, physically separate hard drives as my primary and secondary Photoshop scratch disks and a lot of GB free on my boot drive for the OS.  I also have 16 GB of RAM installed.
    Additionally, if you only have a single HD, i.e. your boot drive, you'd need it to be large enough to accommodate both the swap files of the OS as well as Photoshop's scratch.

  • Problems deploying kodo.rar (2.4.0) to WebLogic Server 7.0 SP1

    I get the following errors in my WLS logs by dropping the kodo.rar into the
    application deploy directory.
    ####<Oct 19, 2002 2:35:15 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Running>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Connector> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <190023> <<
    KodoJDO_kodo > Error invoking the ManagedConnectionFactory's "set" method
    for the configuration property "MaxPool". Reason:
    java.lang.NumberFormatException: .>
    ####<Oct 19, 2002 2:35:16 PM EDT> <Error> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149201>
    <The Slave Deployer failed to complete the deployment task with id 1 for the
    application appsdirkodo_rar.>
    weblogic.management.ApplicationException: activate failed forkodo
    Module Name: kodo, Error: weblogic.management.DeploymentException:
    ResourceException when adding ManagedConnectionFactory for kodo
    at
    weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.jav
    a:1035)
    ####<Oct 19, 2002 2:35:16 PM EDT> <Info> <Deployer> <BENX22> <myserver>
    <ExecuteThread: '11' for queue: 'default'> <kernel identity> <> <149039>
    <Completing a deployment task with id 3 for application appsdirkodo_rar
    with status Failed>
    ####<Oct 19, 2002 2:35:17 PM EDT> <Notice> <Application Poller> <BENX22>
    <myserver> <Thread-7> <kernel identity> <> <149404> <Activate application
    appsdirkodo_rar on myserver - Failed>

    After getting my application deployed (see below), I am finding that the
    proper SQL is executing as expected through Kodo. The logs show the SQL
    statements as a consequence of the EJB method being called. The EJB extends
    com.solarmetric.kodo.ee.JDOSessionBean. The problem is that the container
    managed transaction (Required) is always rolling back at the end, despite
    everything succeeding. I suspect that I still have something configured
    incorrectly in the Kodo ra.xml. I played with
    "TransactionManagerName=javax/transaction/TransactionManager" as the value
    of ManagedRuntimeProperties without effect. I have attached the ra.xml. Is
    there something obviously wrong here? Am I missing something?
    Ben
    "Ben Eng" <[email protected]> wrote in message
    news:[email protected]...
    Never mind. I am an idiot. The ra.xml descriptor within the kodo.rar file
    must be edited, before deploying to WLS. This seems to deploy nicely.
    Now, I'm trying to use Kodo from a SessionBean, so I am packaging kodo.rar
    into the same EAR as my EJB-JAR. It is giving me the following error atruntime, even
    though the class is clearly present in kodo-jdo-runtime.jar within theRAR.
    >
    java.lang.NoClassDefFoundError:com/solarmetric/kodo/impl/jdbc/runtime/Connector
    >
    I found the following page in the WLS documentation.
    http://edocs.bea.com/wli/docs70/devadapt/2concpts.htm#1028215
    It appears as though I may need to move the Kodo JARs from the RAR intothe
    root directory of the EAR and reference them from the MANIFEST Class-Pathof both
    the RAR and the EJB-JAR. After putting up with all this ClassLoadercomplexity in
    J2EE, I sure hope the application packaged with Kodo becomes hot
    redeployable. :)
    Benbegin 666 ra.xml
    M/#]X;6P@=F5R<VEO;CTB,2XP(B!E;F-O9&EN9STB551&+3@B/SX*/"%$3T-4
    M65!%(&-O;FYE8W1O<B!054),24,@"B @(" G+2\O4W5N($UI8W)O<WES=&5M
    M<RP@26YC+B\O1%1$($-O;FYE8W1O<B Q+C O+T5.)R *(" @("=H='1P.B\O
    M:F%V82YS=6XN8V]M+V1T9"]C;VYN96-T;W)?,5\P+F1T9"<^"CPA+2T@"B @
    M("!297-O=7)C92!A9&%P=&]R(&1E<V-R:7!T;W(@9F]R('5S:6YG($MO9&\*
    M(" @($I$3R!I;B!A(&UA;F%G960@96YV:7)O;FUE;G0N"BTM/@H\8V]N;F5C
    M=&]R/@H@(" @/&1I<W!L87DM;F%M93Y+;V1O2D1//"]D:7-P;&%Y+6YA;64^
    M"B @(" \=F5N9&]R+6YA;64^4V]L87)M971R:6,L($EN8RX\+W9E;F1O<BUN
    M86UE/@H@(" @/'-P96,M=F5R<VEO;CXQ+C \+W-P96,M=F5R<VEO;CX*(" @
    M(#QE:7,M='EP93YJ9&\\+V5I<RUT>7!E/@H@(" @/'9E<G-I;VX^,2XP/"]V
    M97)S:6]N/@H@(" @/&QI8V5N<V4^"B @(" @(" @/&1E<V-R:7!T:6]N/@H@
    M(" @(" @(%-E92!H='1P.B\O=W=W+G-O;&%R;65T<FEC+F-O;2!F;W(@=&5R
    M;7,@86YD(&QI8V5N<V4@8V]N9&ET:6]N<RX*(" @(" @(" \+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QL:6-E;G-E+7)E<75I<F5D/G1R=64\+VQI8V5N<V4M
    M<F5Q=6ER960^"B @(" \+VQI8V5N<V4^"B @(" \<F5S;W5R8V5A9&%P=&5R
    M/@H@(" @(" @"3QM86YA9V5D8V]N;F5C=&EO;F9A8W1O<GDM8VQA<W,^8V]M
    M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DUA;F%G961#;VYN96-T
    M:6]N1F%C=&]R>4EM<&P\+VUA;F%G961C;VYN96-T:6]N9F%C=&]R>2UC;&%S
    M<SX*(" @(" @(" \8V]N;F5C=&EO;F9A8W1O<GDM:6YT97)F86-E/FIA=F%X
    M+FID;RY097)S:7-T96YC94UA;F%G97)&86-T;W)Y/"]C;VYN96-T:6]N9F%C
    M=&]R>2UI;G1E<F9A8V4^"B @(" @(" @/&-O;FYE8W1I;VYF86-T;W)Y+6EM
    M<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+F5E+DI$
    M3T-O;FYE8W1I;VY&86-T;W)Y/"]C;VYN96-T:6]N9F%C=&]R>2UI;7!L+6-L
    M87-S/@H*"B @(" @(" @/&-O;FYE8W1I;VXM:6YT97)F86-E/FIA=F%X+FID
    M;RY097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6YT97)F86-E/@H@
    M(" @(" @(#QC;VYN96-T:6]N+6EM<&PM8VQA<W,^8V]M+G-O;&%R;65T<FEC
    M+FMO9&\N964N145097)S:7-T96YC94UA;F%G97(\+V-O;FYE8W1I;VXM:6UP
    M;"UC;&%S<SX*"@H@(" @(" @(#QT<F%N<V%C=&EO;BUS=7!P;W)T/DQO8V%L
    M5')A;G-A8W1I;VX\+W1R86YS86-T:6]N+7-U<'!O<G0^"@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^3&EC96YS94ME>3PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/DQI
    M8V5N<V5+97D\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF
    M:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/BHJ
    M*BHM*BHJ*BTJ*BHJ+2HJ*BHM*BHJ*CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)#
    M;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E!E<G-I<W1E;F-E36%N86=E<D-L87-S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY097)S:7-T96YC94UA;F%G97)0<F]P
    M97)T:65S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4&5R<VES=&5N8V5-86YA9V5R4')O<&5R=&EE<SPO8V]N9FEG+7!R
    M;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA
    M=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L
    M=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP
    M<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&%T84-A8VAE0VQA<W,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y$
    M871A0V%C:&5#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P
    M97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^1&%T84-A8VAE4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1A=&%#86-H95!R;W!E<G1I
    M97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @
    M(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R
    M;WAY36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+6YA;64^4')O>'E-86YA9V5R0VQA<W,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF:6<M<')O
    M<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!R;WAY36%N86=E<E!R;W!E
    M<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M;F%M93Y0<F]X>4UA;F%G97)0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM
    M;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG
    M+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @
    M(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@
    M(" @(" @(#QD97-C<FEP=&EO;CY/<'1I;6ES=&EC/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^3W!T:6UI<W1I8SPO8V]N
    M9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT
    M>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY2971A:6Y686QU97,\+V1E<V-R
    M:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y2971A:6Y6
    M86QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^4F5S=&]R959A
    M;'5E<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN
    M86UE/E)E<W1O<F5686QU97,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @
    M(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R
    M=64\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^26=N;W)E0V%C:&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y)9VYO<F5#86-H93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O
    M;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M=F%L=64^9F%L<V4\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \
    M9&5S8W)I<'1I;VX^3F]N=')A;G-A8W1I;VYA;%)E860\+V1E<V-R:7!T:6]N
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO
    M;F%L4F5A9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/F)O;VQE86X\+V-O;F9I9RUP<F]P97)T>2UT>7!E
    M/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^=')U93PO8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \
    M8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY.;VYT<F%N
    M<V%C=&EO;F%L5W)I=&4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y.;VYT<F%N<V%C=&EO;F%L5W)I=&4\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB
    M;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^
    M"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/DUU;'1I=&AR96%D960\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y-=6QT:71H<F5A
    M9&5D/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R
    M;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C;VYF:6<M<')O
    M<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY5
    M<V5R3F%M93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/D-O;FYE8W1I;VY5<V5R3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3
    M=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM=F%L=64^8F5N/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @
    M(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY087-S=V]R9#PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY087-S=V]R9#PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M<&%S<W=O<F0\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S
    M8W)I<'1I;VX^0V]N;F5C=&EO;E523#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I;VY54DP\+V-O;F9I9RUP
    M<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ
    M879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/FID8F,Z;7ES<6PZ+R]B96YX,C(O
    M9&5M;S]U<V5R/6)E;B9A;7 [<&%S<W=O<F0]<&%S<W=O<F0\+V-O;F9I9RUP
    M<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O
    M;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO
    M;D1R:79E<DYA;64\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM;F%M93Y#;VYN96-T:6]N1')I=F5R3F%M93PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N
    M;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC
    M;VYF:6<M<')O<&5R='DM=F%L=64^8V]M+FUY<W%L+FID8F,N1')I=F5R/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E!E
    M<G-I<W1E;F-E36%N86=E<D9A8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/E!E<G-I<W1E;F-E36%N86=E
    M<D9A8W1O<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I
    M9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L
    M=64^8V]M+G-O;&%R;65T<FEC+FMO9&\N:6UP;"YJ9&)C+DI$0D-097)S:7-T
    M96YC94UA;F%G97)&86-T;W)Y/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D-O;FYE8W1I;VY&86-T;W)Y3F%M93PO
    M9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O
    M;FYE8W1I;VY&86-T;W)Y3F%M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^0V]N;F5C=&EO;D9A8W1O<GDR3F%M93PO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY&86-T;W)Y,DYA;64\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @
    M(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF
    M:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A
    M;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O
    M<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R
    M:7!T:6]N/DUA>%!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y-87A0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O
    M<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C@P
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/DUI;E!O;VP\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-:6Y0;V]L/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @
    M(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM
    M='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C \+V-O;F9I
    M9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^37-786ET
    M/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^
    M37-786ET/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/C4P,# \+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I
    M9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^1&5F875L=$9E=&-H
    M5&AR97-H;VQD/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^1&5F875L=$9E=&-H5&AR97-H;VQD/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:6YT/"]C
    M;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/C,P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D1E9F%U;'1&971C:$)A=&-H4VEZ93PO9&5S8W)I<'1I;VX^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1E9F%U;'1&971C:$)A
    M=&-H4VEZ93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93XQ,#PO8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \(2TM8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY1=65R>49I;'1E
    M<DQI<W1E;F5R<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E%U97)Y1FEL=&5R3&ES=&5N97)S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y
    M/@H@(" @(" @(#QD97-C<FEP=&EO;CY%;F%B;&51=65R>45X=&5N<VEO;G,\
    M+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y%
    M;F%B;&51=65R>45X=&5N<VEO;G,\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@
    M(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M
    M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E
    M/F9A;'-E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP
    M<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E
    M<V-R:7!T:6]N/D-A8VAE4F5F97)E;F-E4VEZ93PO9&5S8W)I<'1I;VX^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-A8VAE4F5F97)E;F-E4VEZ
    M93PO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU
    M93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY5<V53;V9T5')A;G-A8W1I
    M;VY#86-H93PO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UN86UE/E5S95-O9G14<F%N<V%C=&EO;D-A8VAE/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A
    M;CPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N
    M9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @
    M(" @(#QD97-C<FEP=&EO;CY#;VYN96-T:6]N4')O<&5R=&EE<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D-O;FYE8W1I
    M;VY0<F]P97)T:65S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU
    M93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E
    M<G1Y+2T^"B @(" \8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP
    M=&EO;CY!=71O4F5T=7)N5&EM96]U=#PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D%U=&]2971U<FY4:6UE;W5T/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:6YT/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+79A;'5E/C$P/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @
    M(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^
    M"B @(" @(" @/&1E<V-R:7!T:6]N/D1I8W1I;VYA<GE#;&%S<SPO9&5S8W)I
    M<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA
    M<GE#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I
    M9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP<F]P
    M97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>2TM
    M/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^4U%,17AE8W5T:6]N36%N86=E<D-L87-S/"]D97-C<FEP=&EO;CX*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE8W5T:6]N36%N86=E
    M<D-L87-S/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG
    M+7!R;W!E<G1Y+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E
    M<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O
    M;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^
    M"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO
    M;CY$:6-T:6]N87)Y4')O<&5R=&EE<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/D1I8W1I;VYA<GE0<F]P97)T:65S/"]C
    M;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^
    M"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P
    M97)T>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N
    M9FEG+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY397%U96YC949A
    M8W1O<GE#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @/&-O;F9I9RUP<F]P
    M97)T>2UN86UE/E-E<75E;F-E1F%C=&]R>4-L87-S/"]C;VYF:6<M<')O<&5R
    M='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^:F%V82YL
    M86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93YC;VTN<V]L87)M971R:6,N:V]D;RYI;7!L
    M+FID8F,N<V-H96UA+D1"4V5Q=65N8V5&86-T;W)Y/"]C;VYF:6<M<')O<&5R
    M='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E-E<75E;F-E1F%C
    M=&]R>5!R;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y397%U96YC949A8W1O<GE0<F]P97)T:65S/"]C;VYF
    M:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y
    M<&4^:F%V82YL86YG+E-T<FEN9SPO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T
    M>2UV86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \8V]N9FEG
    M+7!R;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY787)N3VY097)S:7-T
    M96YT5'EP949A:6QU<F4\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M
    M<')O<&5R='DM;F%M93Y787)N3VY097)S:7-T96YT5'EP949A:6QU<F4\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/G1R=64\+V-O;F9I9RUP<F]P97)T>2UV
    M86QU93X*(" @(#PO8V]N9FEG+7!R;W!E<G1Y/@H@(" @/&-O;F9I9RUP<F]P
    M97)T>3X*(" @(" @(" \9&5S8W)I<'1I;VX^57-E4')E<&%R9613=&%T96UE
    M;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA
    M;64^57-E4')E<&%R9613=&%T96UE;G1S/"]C;VYF:6<M<')O<&5R='DM;F%M
    M93X*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N
    M9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV
    M86QU93YT<G5E/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>3X*(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/E-Y;F-H<F]N:7IE4V-H96UA/"]D97-C<FEP=&EO;CX*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4WEN8VAR;VYI>F538VAE
    M;6$\+V-O;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O
    M<&5R='DM='EP93YB;V]L96%N/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @
    M(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='DM+3X*(" @(#PA+2UC;VYF
    M:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N/E5S94)A=&-H9613
    M=&%T96UE;G1S/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^57-E0F%T8VAE9%-T871E;65N=',\+V-O;F9I9RUP<F]P97)T
    M>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YB;V]L96%N
    M/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \8V]N9FEG+7!R;W!E
    M<G1Y+79A;'5E/CPO8V]N9FEG+7!R;W!E<G1Y+79A;'5E/@H@(" @/"]C;VYF
    M:6<M<')O<&5R='DM+3X*(" @(#QC;VYF:6<M<')O<&5R='D^"B @(" @(" @
    M/&1E<V-R:7!T:6]N/D9L871);FAE<FET86YC94UA<'!I;F<\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y&;&%T26YH97)I
    M=&%N8V5-87!P:6YG/"]C;VYF:6<M<')O<&5R='DM;F%M93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^8F]O;&5A;CPO8V]N9FEG+7!R;W!E<G1Y
    M+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UV86QU93YT<G5E/"]C
    M;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*
    M(" @(#PA+2UC;VYF:6<M<')O<&5R='D^"B @(" @(" @/&1E<V-R:7!T:6]N
    M/E-T871E;65N=$-A8VAE36%X4VEZ93PO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/E-T871E;65N=$-A8VAE36%X4VEZ93PO
    M8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UT>7!E/FEN=#PO8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*
    M(" @(#PO8V]N9FEG+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E
    M<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY3=&%T96UE;G1%>&5C=71I;VY4
    M:6UE;W5T/"]D97-C<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y
    M+6YA;64^4W1A=&5M96YT17AE8W5T:6]N5&EM96]U=#PO8V]N9FEG+7!R;W!E
    M<G1Y+6YA;64^"B @(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FEN=#PO
    M8V]N9FEG+7!R;W!E<G1Y+71Y<&4^"B @(" @(" @/&-O;F9I9RUP<F]P97)T
    M>2UV86QU93X\+V-O;F9I9RUP<F]P97)T>2UV86QU93X*(" @(#PO8V]N9FEG
    M+7!R;W!E<G1Y+2T^"B @(" \(2TM8V]N9FEG+7!R;W!E<G1Y/@H@(" @(" @
    M(#QD97-C<FEP=&EO;CY344Q%>&5C=71I;VY,:7-T96YE<D-L87-S/"]D97-C
    M<FEP=&EO;CX*(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+6YA;64^4U%,17AE
    M8W5T:6]N3&ES=&5N97)#;&%S<SPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @
    M(" @(" @/&-O;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\
    M+V-O;F9I9RUP<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM=F%L=64^/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I
    M9RUP<F]P97)T>2TM/@H@(" @/"$M+6-O;F9I9RUP<F]P97)T>3X*(" @(" @
    M(" \9&5S8W)I<'1I;VX^5')A;G-A8W1I;VY)<V]L871I;VX\+V1E<V-R:7!T
    M:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM;F%M93Y4<F%N<V%C=&EO
    M;DES;VQA=&EO;CPO8V]N9FEG+7!R;W!E<G1Y+6YA;64^"B @(" @(" @/&-O
    M;F9I9RUP<F]P97)T>2UT>7!E/FIA=F$N;&%N9RY3=')I;F<\+V-O;F9I9RUP
    M<F]P97)T>2UT>7!E/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM=F%L=64^
    M/"]C;VYF:6<M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T
    M>2TM/@H@(" @/&-O;F9I9RUP<F]P97)T>3X*(" @(" @(" \9&5S8W)I<'1I
    M;VX^36%N86=E9%)U;G1I;65#;&%S<SPO9&5S8W)I<'1I;VX^"B @(" @(" @
    M/&-O;F9I9RUP<F]P97)T>2UN86UE/DUA;F%G9612=6YT:6UE0VQA<W,\+V-O
    M;F9I9RUP<F]P97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM
    M='EP93YJ879A+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*
    M(" @(" @(" \8V]N9FEG+7!R;W!E<G1Y+79A;'5E/F-O;2YS;VQA<FUE=')I
    M8RYK;V1O+F5E+DI.1$E-86YA9V5D4G5N=&EM93PO8V]N9FEG+7!R;W!E<G1Y
    M+79A;'5E/@H@(" @/"]C;VYF:6<M<')O<&5R='D^"B @(" \8V]N9FEG+7!R
    M;W!E<G1Y/@H@(" @(" @(#QD97-C<FEP=&EO;CY-86YA9V5D4G5N=&EM95!R
    M;W!E<G1I97,\+V1E<V-R:7!T:6]N/@H@(" @(" @(#QC;VYF:6<M<')O<&5R
    M='DM;F%M93Y-86YA9V5D4G5N=&EM95!R;W!E<G1I97,\+V-O;F9I9RUP<F]P
    M97)T>2UN86UE/@H@(" @(" @(#QC;VYF:6<M<')O<&5R='DM='EP93YJ879A
    M+FQA;F<N4W1R:6YG/"]C;VYF:6<M<')O<&5R='DM='EP93X*(" @(" @(" \
    M8V]N9FEG+7!R;W!E<G1Y+79A;'5E/E1R86YS86-T:6]N36%N86=E<DYA;64]
    M:F%V87@O=')A;G-A8W1I;VXO5')A;G-A8W1I;VY-86YA9V5R/"]C;VYF:6<M
    M<')O<&5R='DM=F%L=64^"B @(" \+V-O;F9I9RUP<F]P97)T>3X*"B @(" @
    M(" @/&%U=&AE;G1I8V%T:6]N+6UE8VAA;FES;3X*(" @(" @(" @(" @/&%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/D)A<VEC4&%S<W=O<F0\+V%U
    M=&AE;G1I8V%T:6]N+6UE8VAA;FES;2UT>7!E/@H@(" @(" @(" @(" \8W)E
    M9&5N=&EA;"UI;G1E<F9A8V4^:F%V87@N<F5S;W5R8V4N<V5C=7)I='DN4&%S
    M<W=O<F1#<F5D96YT:6%L/"]C<F5D96YT:6%L+6EN=&5R9F%C93X*(" @(" @
    M(" @(" @/"]A=71H96YT:6-A=&EO;BUM96-H86YI<VT^"B @(" @(" @(" @
    M(#QR96%U=&AE;G1I8V%T:6]N+7-U<'!O<G0^9F%L<V4\+W)E875T:&5N=&EC
    M871I;VXM<W5P<&]R=#X*(" @(#PO<F5S;W5R8V5A9&%P=&5R/@H\+V-O;FYE
    &8W1O<CX*
    `
    end

  • HT201317 Photos from my iphone and ipad are going into my photo stream on the devices but aren't going into the folder on my windows PC. They used to but they suddenly stopped. Has anyone else had this same problem?. I have checked all settings and they a

    Photos from my iphone and ipad are going into my photo stream on the devices but aren't going into the folder on my windows PC. They used to but they suddenly stopped. Has anyone else had this same problem?. I have checked all settings and they appear OK

    Hi AP_In_Surbiton,
    I am really sorry that you have had so much trouble getting your Caller ID up and going.  I'll be happy to help you out with this and get it working for you.
    Could you drop me in an email please? Use the 'contact us' form in my forum profile under the 'about me' section. You can find it by clicking on my username.
    Thx
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Face time fades out and then tries to reconnect on new ipad retina display on WiFi.  Iphone 4s has no problem with face time from exact same location and same contact.  WiFi signal strong on both devices.  What gives?

    Face time fades out and then retries to connect (new Ipad Retina Display) on WiFi. Iphone 4s has no problem with face time from same location and same contact.  What gives?

    rdallas001 wrote:
    Is the router to small?
    Not necessarily, if you are using Facetime all the data goes through your WiFi router, your cable/DSL modem, your ISP and the internet to Apple's Facetime servers and then, in reverse, down to the Facetime recipient. If your ISP connection is too slow or there is excessive traffic on the internet you can have Facetime problems.
    Most WiFi routers can handle this unless others in the house are also using WiFi at the same time. The problem may be your ISP connection or congestion on the internet, etc.

  • HT201365 I just I just updated to iOS 7 and now my calendars are not keeping the information on the days that should be marked.  The info is there in my iCloud on my computer, just not on the iPhone.  Has anyone had the same problem and what can I do abou

    I just update to iOS 7 on my iPhone 4s. The calendars on my iPhone are not keeping the information on the days that should be marked.  The info is there in my iCloud on my computer, just not on my phone.   Has anyone else had the same problem and what can I do about it?  Is it at bug in the iOS 7 update?

    What do you mean by "on the days that should be marked"?  Are you calendar events displayed on the wrong days?

Maybe you are looking for

  • How to send mail to distribution list and another table list

    Hi I am facing a problem. I need to send mail to the user who is creating the SO/PO and a distribution list. Problem is only one thing can be used at the same time. ie either Distribution list or list from internal table. How can we use both in 1 fun

  • Blackberry Torch 9800- Wifi/3G trouble.

    Hello, I'm hoping someone is able to help me. I've just been given a BB torch & have been trying to set it up. I've managed to connect to my home WIFI, however, though the WIFI signal bar is white I think my phone is still running on my mobile networ

  • TBIT51 - XI Course Material

    Hi all! can anybody help me by forwarding the course material TBIT51 plz.. thanks in advance vijay

  • Question marks across the top of new finder windows

    Hello, When I open a new finder window everything looks and works fine but I'm seeing 3 large question marks in the top gray area of the new finder window. When I click it I get a message that says "The Item Can't Be Found". What is this all about? T

  • Preempting problems here- BT Home Hub-ethernet cable-Airport Extreme

    OK- here is the story so far. Have a summerhouse needing broadband/telephone from the main house. It is 80 metres from the main house and so unable to use WiFi to connect to our BT Home Hub (white from 2006). The problem we needed to overcome is the