CourtTrax Web Services Developer’s Overview

The COURTTRAX WEB SERVICE allows our technically-proficient users to bypass our web interface and directly access the real-time court data we collect. With our API, you have access to the same toolset we use to build our web application — you can download and reformat our data, integrate it more tightly with your applications or your website, and create detaled custom reports and graphs that are the best fit for your workflow, your needs, and the demands of your customers. This guide will give you an overview of what's involved and help you get started.

Getting Started

We can provide you with an on-line demo of our services, to initiate the technical discussion for implementing Web Services to our trading partners. To discuss Web Services in detail and to schedule a demonstration, contact  Nick Ledbetter at 425-643-7077 or 866-643-7084, or by e-mail at nick.ledbetter@courttrax.com.

What is a Web Service?

A Web Service is a software system designed to support interoperable machine-to-machine interaction over the Internet. Web services are frequently just Application Programming Interfaces (APIs) that can be accessed over the net and executed on a remote system hosting the requested services.

CourtTrax uses second-generation Representational State Transfer (REST) technology to implement its I-Tap Web Services.

CourtTrax implements each new court with a rigorous set of schema goals to dramatically increase the value of our search/data retrieval service by normalizing the data before exposing it to trading partners.

Retrieving Data

Data retrieval from the CourtTrax web service can be accomplished in five steps:

  1. Locating a searchable resource
  2. POSTing an empty request to the resource you have located to obtain a unique message ID
  3. POSTing a request document to the newly-generated URL
  4. Requesting a status document
  5. Retrieving the XML response with your data when the search is complete


NOTE: Each Web Service request will require the CTX username and password (Basic Authentication) to be sent in the header. The username and password are both case-sensitive.

Why the double POST?

If you were to post a request and then receive your data directly, that could work effectively most of the time. But in the event of a network error after you made the request, but before you received acknowledgment, you would effectively make the POST and get back neither success nor failure. With the double-POST mechanism, you can re-POST the search to the unique URL if it receives no response the first time.

In technical terms, our searches are idempotent, meaning that any post of data to the same URL will only generate a search on our server once, and therefore you will only be charged once for the search (if the search is successful and if a search fee is applicable). If something prevents you from getting the result, you are free to simply make the request again.

Process Diagram and Examples

We will examine each of the five steps here in detail, with examples.

(1) Locate a Searchable Resource. This step is largely performed by going to and browsing the CourtTrax REST site, exploring the CourtTrax REST system using GET requests. The CourtTrax search resources are hierarchically structured and hyperlinked. Some resources exist merely to contain and point at other resources; these are known as intermediate resources. The ITAP protocol begins when the client arrives at a searchable resource. A searchable resource responds to GET requests with a descriptive XML document containing hyperlinks, just as the intermediate resources do. But searchable resources queried with GET will provide links to schemas specific to that search.

Client Program
(1) Locate a Searchable Resource
CourtTrax Web Service
I-Tap (powered by WideNetSearch™)
Example:

<?xml version="1.0"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
>

<!-- $Id: index.php,v 1.4 2013/01/23 21:13:45 fred Exp $ -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xhtml="http://www.w3.org/1999/xhtml"
xml:lang="en" lang="en">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
Federal District Case Search
</title>
<link rel="stylesheet" type="text/css"
href="/clientServices/styles/ITAP_REST.css" />

</head>
<body>
<div id="content">
<div id="title">
Federal District Case Search
</div>
<div id="isSearchableResourceDiv">
<span id="isSearchableResourceLabel">Searchable resource: </span>
<span id="isSearchableResource">true</span>
</div><br />
<div class="description">
Federal District case searches are performed by POSTing to the
current url.
</div>
<ul class="resourceList">
<li class="resource" id="inputSchema"><a
href="/clientServices/Schemas/Itap/query/Federal_Courts/District/case.xsd">
Input
Schema</a> </li> <li class="resource" id="resultsSchema"><a
href="/clientServices/Schemas/Itap/response/niem-2.0-CourtTrax-exchanges/search/Federal_Courts/District/case/v1/exchange.xsd">
Results
Schema</a> </li> <li class="resource"
id="mindmaps">
Results Schema Mindmap Views: <a
href="/clientServices/Schemas/Itap/response/niem-2.0-CourtTrax-exchanges/search/Federal_Courts/District/case/v1/webview/exchange_js.html">
Javascript
View</a>, <a
href="/clientServices/Schemas/Itap/response/niem-2.0-CourtTrax-exchanges/search/Federal_Courts/District/case/v1/webview/exchange_imgmap.html">
Map
View</a>, <a
href="/clientServices/Schemas/Itap/response/niem-2.0-CourtTrax-exchanges/search/Federal_Courts/District/case/v1/webview/exchange_applet.html">
Applet
View</a> </li>
</ul>
</div>
</body>
</html>
 

(2) Send an empty POST to the Searchable Resource. This POST signals a request to the CourtTrax server to create a new resource (URL) containing a unique message id, to be used for performing the actual search.

Example:
POST https://oahu.courttrax.com/rest/search/Federal_Courts/District/case HTTP/1.1
Host: www.courttrax.com
User-Agent: Mozilla/4.0
Content-Length: 0

 

(2) Receive resource (URL) containing a unique message ID. This operationally enables reliable messaging. The result set of a Step 2 post is a 201 CREATED response containing the new URL in the Location header. ( What other response codes are used?)

Example:
HTTP/1.1 201 Created
Date: Thu, 02 Oct 2010 19:04:08 GMT
Server: Apache/2.0.48 (Unix)
Location: https://oahu.courttrax.com/rest/search/Federal_Courts/District/case?messageid=xxx
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=ISO-8859-1
 

(3) POST the request (small XML document) to the resource URL. Once this URL is obtained, the client Posts the message body to the URL to initiate the search. This post to the unique URL launches a search process on the CourtTrax server.

Example:

<inputDoc xmlns="http://www.courttrax.com/ns/FedDistrict">
<ctxInput>
<casenumber>3-04-cv-5407</casenumber>
<district_d>WA_Western</district_d>
<courtmod>ECF</courtmod>
</ctxInput>
<clientSpace>
<testChild xmlns="http://www.somepartner.com">
<childLevel2 xatt="0"/>
</testChild>
</clientSpace>
</inputDoc>

 

(3) Receive document, contains newly-generated URLs for Synchronous and Asynchronous status. CourtTrax receives the post and validates the search request against the input schema. In return, we send a XML receipt document that contains additional session-specific URLs. These new URLs are used to retrieve search results via a GET statement. There are two paths to retrieve the result document, one synchronous and the other asynchronous. Which route is better for you depends entirely on the needs of your application.

Example:
<?xml version="1.0" encoding="UTF-8"?>
<receipt xmlns="http://www.courttrax.com/ns/rest/receipt"
requestUri="https://oahu.courttrax.com/rest/search/inputDocs/121454"
received="2012-03-02T11:06:18-0700">

<transaction status="https://oahu.courttrax.com/rest/search/xact/121454?view=status"
finalStatus="https://oahu.courttrax.com/rest/search/xact/121454?view=finalStatus" />

<isDup>0</isDup>
</receipt>

(4) Request status document (Asynchronous, return current status immediately). The first URL resource, found in the status attribute of the transaction element, can be used to query the status of your running transaction. Use it to poll for status. When the status URL returns a message indicating that your search is processed, it will contain a link where you can GET the results, now and in the future if desired. The status of your request will be indicated in the 'state' attribute of the 'status' resource for that search request. ( What status values are returned?)

 

(4) XML status document (Search complete)

Example:
<?xml version="1.0" encoding="UTF-8"?>
<status xmlns="http://www.courttrax.com/ns/rest/status" state="processed"
timestamp="2012-03-02T11:12:25-0700">

<result uri="https://oahu.courttrax.com/rest/search/results/121454?transid=185272"
htmlUri="https://oahu.courttrax.com/rest/search/htmlResults/121454?transid=185272" />

</status>
 
OR

(4) Request status document (Synchronous, blocking until search is complete). The other URL, found in the finalStatus attribute of the transaction element, offers a synchronous path. Rather than polling for status; simply GET this URL and wait for the status XML to be returned. As before, status XML will not be returned until the search has run to completion. In other words, you can choose to offload the polling responsibility to CourtTrax if that makes sense for your application.

 

(4) XML status document (Search complete)

Example:
<status xmlns="http://www.courttrax.com/ns/rest/status" state="processed" 
timestamp="2010-10-02T12:13:18-0700">

<result uri="https://oahu.courttrax.com/rest/search/results/231?transid=901310" />
</status>
 

(5) GET the XML document. The status XML will contain one final link to a URL for results. Do a http GET on this resource to receive the results.

 

(5) XML document.

Example:
<?xml version="1.0" encoding="utf-8"?>
<root-ns:CaseResponseMessage xmlns:root-ns="http://www.courttrax.com/ns/Itap/response/niem-2.0-CourtTrax-exchanges/search/Federal_Courts/District/case/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:nc="http://niem.gov/niem/niem-core/2.0" xmlns:j="http://niem.gov/niem/domains/jxdm/4.0" xmlns:s="http://niem.gov/niem/structures/2.0" xmlns:ctx="urn:courttrax.com:schemas:itap:1.0" s:id="n000001">
<nc:CaveatText s:id="n000002">The information contained herein does not constitute an official record of the court. If you want to find out more about a case, or feel information is in error and should be corrected, please contact the court where the case is filed.</nc:CaveatText>
<nc:DocumentApplicationName s:id="n000003">https://oahu.courttrax.com/rest/search/Federal_Courts/District/case?messageid=Vs1yqppk4RG3MstgeO-oeA</nc:DocumentApplicationName>
<nc:DocumentCategoryDescriptionText s:id="n000004">Federal District case detail query response</nc:DocumentCategoryDescriptionText>
<nc:DocumentCategoryText s:id="n000005">Federal District case detail query response</nc:DocumentCategoryText>
<nc:DocumentCreationDate s:id="n000006">
<nc:DateTime s:id="n000007">2012-03-02T11:06:18-07:00</nc:DateTime>
</nc:DocumentCreationDate>
<nc:DocumentIdentification s:id="n000008">
<nc:IdentificationID s:id="n000009">121454</nc:IdentificationID>
</nc:DocumentIdentification>
<nc:DocumentLocationURI s:id="n000010">https://oahu.courttrax.com/rest/search/results/121454?transid=185272</nc:DocumentLocationURI>
<nc:DocumentRecipient s:id="n000011">
<nc:EntityOrganization s:id="n000012">
<nc:OrganizationName s:id="n000013">Trading Partner Corporation</nc:OrganizationName>
</nc:EntityOrganization>
</nc:DocumentRecipient>
<nc:DocumentRightsText s:id="n000014">The terms of use for this document are governed by the written Web Services Service Agreement between Courttrax and the user of this service.</nc:DocumentRightsText>
<nc:DocumentStatus s:id="n000015">
<nc:StatusText s:id="n000016">processed</nc:StatusText>
</nc:DocumentStatus>
<nc:DocumentCreator s:id="n000017">
<nc:EntityOrganization s:id="n000018">
<nc:OrganizationName s:id="n000019">CourtTrax Corporation</nc:OrganizationName>
</nc:EntityOrganization>
</nc:DocumentCreator>
<ctx:DocumentAugmentation s:id="n000020">
<ctx:DocumentQueryURI s:id="n000021">https://oahu.courttrax.com/rest/search/inputDocs/121454</ctx:DocumentQueryURI>
</ctx:DocumentAugmentation>
<ctx:CaseResponseMessageAugmentation s:id="n000022">
<nc:Case xsi:type="ctx:CaseType" s:id="n000023">
<nc:ActivityDateRange s:id="n000024">
<nc:StartDate s:id="n000025">
<nc:Date s:id="n000026" s:metadata="n000027">2004-07-12</nc:Date>
</nc:StartDate>
<nc:EndDate s:id="n000028">
<nc:Date s:id="n000029" s:metadata="n000030">2005-06-27</nc:Date>
</nc:EndDate>
<nc:EndDate s:id="n000031">
<nc:Date s:id="n000032" s:metadata="n000033">2007-07-11</nc:Date>
</nc:EndDate>
</nc:ActivityDateRange>
<ctx:CaseCompletionStatus s:id="n000034">
<nc:StatusDate s:id="n000035">
<nc:Date s:id="n000036" s:metadata="n000030">2005-06-27</nc:Date>
</nc:StatusDate>
</ctx:CaseCompletionStatus>
<nc:CaseDisposition s:id="n000037">
<nc:CaseDispositionDecision s:id="n000038">
<nc:CaseDispositionDecisionCategoryText s:id="n000039" s:metadata="n000040">Dismissed - Other</nc:CaseDispositionDecisionCategoryText>
</nc:CaseDispositionDecision>
</nc:CaseDisposition>
<nc:CaseTitleText s:id="n000041" s:metadata="n000042">Greening v. City of Tacoma et al</nc:CaseTitleText>
<nc:CaseGeneralCategoryText s:id="n000043" s:metadata="n000044">Civil</nc:CaseGeneralCategoryText>
<nc:CaseTrackingID s:id="n000045" s:metadata="n000046">3-04-cv-05407</nc:CaseTrackingID>
<nc:CaseSubCategoryText s:id="n000047" s:metadata="n000048">PRISONER PETITIONS / Civil Rights</nc:CaseSubCategoryText>
<ctx:CaseSubCategoryCode s:id="n000049" s:metadata="n000048">550</ctx:CaseSubCategoryCode>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000050">
<nc:DocumentFiledDate s:id="n000051">
<nc:Date s:id="n000052" s:metadata="n000053">2004-07-12</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000054">
<nc:IdentificationID s:id="n000055" s:metadata="n000056">1</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000057">
<nc:DocumentFiledDate s:id="n000058">
<nc:Date s:id="n000059" s:metadata="n000053">2004-07-15</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000060">
<nc:IdentificationID s:id="n000061" s:metadata="n000056">2</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000062">
<nc:DocumentFiledDate s:id="n000063">
<nc:Date s:id="n000064" s:metadata="n000053">2004-07-16</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000065">
<nc:IdentificationID s:id="n000066" s:metadata="n000056">3</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000067">
<nc:DocumentFiledDate s:id="n000068">
<nc:Date s:id="n000069" s:metadata="n000053">2004-07-28</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000070">
<nc:IdentificationID s:id="n000071" s:metadata="n000056">4</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000072">
<nc:DocumentFiledDate s:id="n000073">
<nc:Date s:id="n000074" s:metadata="n000053">2004-08-04</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000075">
<nc:IdentificationID s:id="n000076" s:metadata="n000056">5</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000077">
<nc:DocumentFiledDate s:id="n000078">
<nc:Date s:id="n000079" s:metadata="n000053">2004-08-25</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000080">
<nc:IdentificationID s:id="n000081" s:metadata="n000056">6</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000082">
<nc:DocumentFiledDate s:id="n000083">
<nc:Date s:id="n000084" s:metadata="n000053">2004-09-01</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000085">
<nc:IdentificationID s:id="n000086" s:metadata="n000056">7</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000087">
<nc:DocumentFiledDate s:id="n000088">
<nc:Date s:id="n000089" s:metadata="n000053">2004-09-16</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000090">
<nc:IdentificationID s:id="n000091" s:metadata="n000056">8</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000092">
<nc:DocumentFiledDate s:id="n000093">
<nc:Date s:id="n000094" s:metadata="n000053">2004-10-04</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000095">
<nc:IdentificationID s:id="n000096" s:metadata="n000056">9</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000097">
<nc:DocumentFiledDate s:id="n000098">
<nc:Date s:id="n000099" s:metadata="n000053">2004-10-04</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000100">
<nc:IdentificationID s:id="n000101" s:metadata="n000056">10</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000102">
<nc:DocumentFiledDate s:id="n000103">
<nc:Date s:id="n000104" s:metadata="n000053">2004-10-04</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000105">
<nc:IdentificationID s:id="n000106" s:metadata="n000056">11</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000107">
<nc:DocumentFiledDate s:id="n000108">
<nc:Date s:id="n000109" s:metadata="n000053">2004-10-08</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000110">
<nc:IdentificationID s:id="n000111" s:metadata="n000056">12</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000112">
<nc:DocumentFiledDate s:id="n000113">
<nc:Date s:id="n000114" s:metadata="n000053">2004-10-08</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000115">
<nc:IdentificationID s:id="n000116" s:metadata="n000056">13</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000117">
<nc:DocumentFiledDate s:id="n000118">
<nc:Date s:id="n000119" s:metadata="n000053">2004-10-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000120">
<nc:IdentificationID s:id="n000121" s:metadata="n000056">14</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000122">
<nc:DocumentFiledDate s:id="n000123">
<nc:Date s:id="n000124" s:metadata="n000053">2004-10-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000125">
<nc:IdentificationID s:id="n000126" s:metadata="n000056">15</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000127">
<nc:DocumentFiledDate s:id="n000128">
<nc:Date s:id="n000129" s:metadata="n000053">2004-10-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000130">
<nc:IdentificationID s:id="n000131" s:metadata="n000056">16</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000132">
<nc:DocumentFiledDate s:id="n000133">
<nc:Date s:id="n000134" s:metadata="n000053">2004-11-03</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000135">
<nc:IdentificationID s:id="n000136" s:metadata="n000056">17</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000137">
<nc:DocumentFiledDate s:id="n000138">
<nc:Date s:id="n000139" s:metadata="n000053">2004-11-12</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000140">
<nc:IdentificationID s:id="n000141" s:metadata="n000056">18</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000142">
<nc:DocumentFiledDate s:id="n000143">
<nc:Date s:id="n000144" s:metadata="n000053">2004-11-17</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000145">
<nc:IdentificationID s:id="n000146" s:metadata="n000056">19</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000147">
<nc:DocumentFiledDate s:id="n000148">
<nc:Date s:id="n000149" s:metadata="n000053">2004-11-18</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000150">
<nc:IdentificationID s:id="n000151" s:metadata="n000056">20</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000152">
<nc:DocumentFiledDate s:id="n000153">
<nc:Date s:id="n000154" s:metadata="n000053">2004-11-18</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000155">
<nc:IdentificationID s:id="n000156" s:metadata="n000056">21</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000157">
<nc:DocumentFiledDate s:id="n000158">
<nc:Date s:id="n000159" s:metadata="n000053">2004-11-19</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000160">
<nc:IdentificationID s:id="n000161" s:metadata="n000056">22</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000162">
<nc:DocumentFiledDate s:id="n000163">
<nc:Date s:id="n000164" s:metadata="n000053">2004-11-19</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000165">
<nc:IdentificationID s:id="n000166" s:metadata="n000056">23</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000167">
<nc:DocumentFiledDate s:id="n000168">
<nc:Date s:id="n000169" s:metadata="n000053">2004-11-24</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000170">
<nc:IdentificationID s:id="n000171" s:metadata="n000056">24</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000172">
<nc:DocumentFiledDate s:id="n000173">
<nc:Date s:id="n000174" s:metadata="n000053">2004-12-07</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000175">
<nc:IdentificationID s:id="n000176" s:metadata="n000056">25</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000177">
<nc:DocumentFiledDate s:id="n000178">
<nc:Date s:id="n000179" s:metadata="n000053">2004-12-15</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000180">
<nc:IdentificationID s:id="n000181" s:metadata="n000056">26</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000182">
<nc:DocumentFiledDate s:id="n000183">
<nc:Date s:id="n000184" s:metadata="n000053">2005-01-06</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000185">
<nc:IdentificationID s:id="n000186" s:metadata="n000056">27</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000187">
<nc:DocumentFiledDate s:id="n000188">
<nc:Date s:id="n000189" s:metadata="n000053">2005-01-13</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000190">
<nc:IdentificationID s:id="n000191" s:metadata="n000056">28</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000192">
<nc:DocumentFiledDate s:id="n000193">
<nc:Date s:id="n000194" s:metadata="n000053">2005-01-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000195">
<nc:IdentificationID s:id="n000196" s:metadata="n000056">29</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000197">
<nc:DocumentFiledDate s:id="n000198">
<nc:Date s:id="n000199" s:metadata="n000053">2005-01-28</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000200">
<nc:IdentificationID s:id="n000201" s:metadata="n000056">30</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000202">
<nc:DocumentFiledDate s:id="n000203">
<nc:Date s:id="n000204" s:metadata="n000053">2005-01-31</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000205">
<nc:IdentificationID s:id="n000206" s:metadata="n000056">31</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000207">
<nc:DocumentFiledDate s:id="n000208">
<nc:Date s:id="n000209" s:metadata="n000053">2005-02-03</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000210">
<nc:IdentificationID s:id="n000211" s:metadata="n000056">32</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000212">
<nc:DocumentFiledDate s:id="n000213">
<nc:Date s:id="n000214" s:metadata="n000053">2005-02-10</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000215">
<nc:IdentificationID s:id="n000216" s:metadata="n000056">33</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000217">
<nc:DocumentFiledDate s:id="n000218">
<nc:Date s:id="n000219" s:metadata="n000053">2005-02-18</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000220">
<nc:IdentificationID s:id="n000221" s:metadata="n000056">34</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000222">
<nc:DocumentFiledDate s:id="n000223">
<nc:Date s:id="n000224" s:metadata="n000053">2005-03-14</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000225">
<nc:IdentificationID s:id="n000226" s:metadata="n000056">35</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000227">
<nc:DocumentFiledDate s:id="n000228">
<nc:Date s:id="n000229" s:metadata="n000053">2005-03-14</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000230">
<nc:IdentificationID s:id="n000231" s:metadata="n000056">36</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000232">
<nc:DocumentFiledDate s:id="n000233">
<nc:Date s:id="n000234" s:metadata="n000053">2005-03-14</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000235">
<nc:IdentificationID s:id="n000236" s:metadata="n000056">37</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000237">
<nc:DocumentFiledDate s:id="n000238">
<nc:Date s:id="n000239" s:metadata="n000053">2005-03-22</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000240">
<nc:IdentificationID s:id="n000241" s:metadata="n000056">40</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000242">
<nc:DocumentFiledDate s:id="n000243">
<nc:Date s:id="n000244" s:metadata="n000053">2005-03-23</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000245">
<nc:IdentificationID s:id="n000246" s:metadata="n000056">38</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000247">
<nc:DocumentFiledDate s:id="n000248">
<nc:Date s:id="n000249" s:metadata="n000053">2005-03-23</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000250">
<nc:IdentificationID s:id="n000251" s:metadata="n000056">39</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000252">
<nc:DocumentFiledDate s:id="n000253">
<nc:Date s:id="n000254" s:metadata="n000053">2005-03-30</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000255">
<nc:IdentificationID s:id="n000256" s:metadata="n000056">41</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000257">
<nc:DocumentFiledDate s:id="n000258">
<nc:Date s:id="n000259" s:metadata="n000053">2005-04-07</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000260">
<nc:IdentificationID s:id="n000261" s:metadata="n000056">42</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000262">
<nc:DocumentFiledDate s:id="n000263">
<nc:Date s:id="n000264" s:metadata="n000053">2005-04-08</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000265">
<nc:IdentificationID s:id="n000266" s:metadata="n000056">43</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000267">
<nc:DocumentFiledDate s:id="n000268">
<nc:Date s:id="n000269" s:metadata="n000053">2005-04-13</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000270">
<nc:IdentificationID s:id="n000271" s:metadata="n000056">44</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000272">
<nc:DocumentFiledDate s:id="n000273">
<nc:Date s:id="n000274" s:metadata="n000053">2005-04-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000275">
<nc:IdentificationID s:id="n000276" s:metadata="n000056">45</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000277">
<nc:DocumentFiledDate s:id="n000278">
<nc:Date s:id="n000279" s:metadata="n000053">2005-05-09</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000280">
<nc:IdentificationID s:id="n000281" s:metadata="n000056">46</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000282">
<nc:DocumentFiledDate s:id="n000283">
<nc:Date s:id="n000284" s:metadata="n000053">2005-05-25</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000285">
<nc:IdentificationID s:id="n000286" s:metadata="n000056">47</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000287">
<nc:DocumentFiledDate s:id="n000288">
<nc:Date s:id="n000289" s:metadata="n000053">2005-06-13</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000290">
<nc:IdentificationID s:id="n000291" s:metadata="n000056">48</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000292">
<nc:DocumentFiledDate s:id="n000293">
<nc:Date s:id="n000294" s:metadata="n000053">2005-06-22</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000295">
<nc:IdentificationID s:id="n000296" s:metadata="n000056">50</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000297">
<nc:DocumentFiledDate s:id="n000298">
<nc:Date s:id="n000299" s:metadata="n000053">2005-06-27</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000300">
<nc:IdentificationID s:id="n000301" s:metadata="n000056">49</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000302">
<nc:DocumentFiledDate s:id="n000303">
<nc:Date s:id="n000304" s:metadata="n000053">2005-06-29</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000305">
<nc:IdentificationID s:id="n000306" s:metadata="n000056">51</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000307">
<nc:DocumentFiledDate s:id="n000308">
<nc:Date s:id="n000309" s:metadata="n000053">2005-06-29</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000310">
<nc:IdentificationID s:id="n000311" s:metadata="n000056">52</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000312">
<nc:DocumentFiledDate s:id="n000313">
<nc:Date s:id="n000314" s:metadata="n000053">2005-07-01</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000315">
<nc:IdentificationID s:id="n000316" s:metadata="n000056">53</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000317">
<nc:DocumentFiledDate s:id="n000318">
<nc:Date s:id="n000319" s:metadata="n000053">2005-07-15</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000320">
<nc:IdentificationID s:id="n000321" s:metadata="n000056">54</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000322">
<nc:DocumentFiledDate s:id="n000323">
<nc:Date s:id="n000324" s:metadata="n000053">2005-11-02</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000325">
<nc:IdentificationID s:id="n000326" s:metadata="n000056">55</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000327">
<nc:DocumentFiledDate s:id="n000328">
<nc:Date s:id="n000329" s:metadata="n000053">2006-01-23</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000330">
<nc:IdentificationID s:id="n000331" s:metadata="n000056">56</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<nc:CaseFiling xsi:type="ctx:DocumentType" s:id="n000332">
<nc:DocumentFiledDate s:id="n000333">
<nc:Date s:id="n000334" s:metadata="n000053">2007-07-11</nc:Date>
</nc:DocumentFiledDate>
<nc:DocumentIdentification s:id="n000335">
<nc:IdentificationID s:id="n000336" s:metadata="n000056">57</nc:IdentificationID>
</nc:DocumentIdentification>
</nc:CaseFiling>
<j:CaseAugmentation s:id="n000337">
<j:CaseCourt s:id="n000338">
<nc:OrganizationLocation s:id="n000339">
<nc:LocationAddress s:id="n000340">
<nc:StructuredAddress s:id="n000341">
<nc:LocationCityName s:id="n000342" s:metadata="n000343">Tacoma</nc:LocationCityName>
<nc:LocationCountyName s:id="n000344" s:metadata="n000345">Pierce</nc:LocationCountyName>
</nc:StructuredAddress>
</nc:LocationAddress>
</nc:OrganizationLocation>
<j:CourtName s:id="n000346" s:metadata="n000347">Washington Western District Court</j:CourtName>
<j:CourtCategoryCode s:id="n000348">FED</j:CourtCategoryCode>
</j:CaseCourt>
<j:CaseDefenseAttorney xsi:type="ctx:CaseOfficialType" s:id="n000349" s:metadata="n000350" s:sequenceID="1">
<nc:RoleOfPersonReference s:id="n000351" s:ref="n000352"/>
<j:JudicialOfficialFirm s:id="n000353">
<nc:OrganizationName s:id="n000354" s:metadata="n000355"/>
</j:JudicialOfficialFirm>
<j:CaseOfficialRoleDescriptionText s:id="n000356" s:metadata="n000357">ATTORNEY TO BE NOTICED</j:CaseOfficialRoleDescriptionText>
<j:CaseOfficialStartDate s:id="n000358" s:metadata="n000359">
<nc:Date s:id="n000360">2004-10-27</nc:Date>
</j:CaseOfficialStartDate>
</j:CaseDefenseAttorney>
<j:CaseDefenseAttorney xsi:type="ctx:CaseOfficialType" s:id="n000361" s:metadata="n000350" s:sequenceID="1">
<nc:RoleOfPersonReference s:id="n000362" s:ref="n000363"/>
<j:JudicialOfficialFirm s:id="n000364">
<nc:OrganizationName s:id="n000365" s:metadata="n000355"/>
</j:JudicialOfficialFirm>
<j:CaseOfficialRoleDescriptionText s:id="n000366" s:metadata="n000357">ATTORNEY TO BE NOTICED</j:CaseOfficialRoleDescriptionText>
<j:CaseOfficialStartDate s:id="n000367" s:metadata="n000359">
<nc:Date s:id="n000368">2004-11-03</nc:Date>
</j:CaseOfficialStartDate>
</j:CaseDefenseAttorney>
<j:CaseDefenseAttorney xsi:type="ctx:CaseOfficialType" s:id="n000369" s:metadata="n000350" s:sequenceID="1">
<nc:RoleOfPersonReference s:id="n000370" s:ref="n000371"/>
<j:JudicialOfficialFirm s:id="n000372">
<nc:OrganizationName s:id="n000373" s:metadata="n000355"/>
</j:JudicialOfficialFirm>
<j:CaseOfficialRoleDescriptionText s:id="n000374" s:metadata="n000357">ATTORNEY TO BE NOTICED</j:CaseOfficialRoleDescriptionText>
<j:CaseOfficialStartDate s:id="n000375" s:metadata="n000359">
<nc:Date s:id="n000376">2004-11-03</nc:Date>
</j:CaseOfficialStartDate>
</j:CaseDefenseAttorney>
<j:CaseJudge s:id="n000377">
<nc:RoleOfPersonReference s:id="n000378" s:ref="n000379"/>
<j:CaseOfficialRoleText s:id="n000380">Presiding</j:CaseOfficialRoleText>
</j:CaseJudge>
<j:CaseJudge s:id="n000381">
<nc:RoleOfPersonReference s:id="n000382" s:ref="n000383"/>
<j:CaseOfficialRoleText s:id="n000384">Assigned To</j:CaseOfficialRoleText>
</j:CaseJudge>
<j:CaseOtherIdentification s:id="n000385">
<nc:IdentificationID s:id="n000386" s:metadata="n000387">04-05407</nc:IdentificationID>
<nc:IdentificationID s:id="n000388" s:metadata="n000389">3:04-cv-05407-RJB</nc:IdentificationID>
</j:CaseOtherIdentification>
<j:CaseInitiatingAttorney xsi:type="ctx:CaseOfficialType" s:id="n000390" s:metadata="n000350" s:sequenceID="1">
<nc:RoleOfPersonReference s:id="n000391" s:ref="n000392"/>
</j:CaseInitiatingAttorney>
</j:CaseAugmentation>
<ctx:CaseAugmentation s:id="n000393">
<ctx:CaseDataAssociations s:id="n000394">
<ctx:AttorneyPartyAssociation s:id="n000395" s:metadata="n000396">
<ctx:AttorneyReference s:id="n000397" s:ref="n000349"/>
<ctx:PartyReference s:id="n000398" s:ref="n000399"/>
</ctx:AttorneyPartyAssociation>
<ctx:AttorneyPartyAssociation s:id="n000400" s:metadata="n000396">
<ctx:AttorneyReference s:id="n000401" s:ref="n000390"/>
<ctx:PartyReference s:id="n000402" s:ref="n000403"/>
</ctx:AttorneyPartyAssociation>
<ctx:AttorneyPartyAssociation s:id="n000404" s:metadata="n000396">
<ctx:AttorneyReference s:id="n000405" s:ref="n000361"/>
<ctx:PartyReference s:id="n000406" s:ref="n000407"/>
</ctx:AttorneyPartyAssociation>
<ctx:AttorneyPartyAssociation s:id="n000408" s:metadata="n000396">
<ctx:AttorneyReference s:id="n000409" s:ref="n000369"/>
<ctx:PartyReference s:id="n000410" s:ref="n000411"/>
</ctx:AttorneyPartyAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000412" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000414" s:ref="n000415"/>
<nc:DocumentReference s:id="n000416" s:ref="n000050"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000417" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000418" s:ref="n000419"/>
<nc:DocumentReference s:id="n000420" s:ref="n000057"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000421" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000422" s:ref="n000423"/>
<nc:DocumentReference s:id="n000424" s:ref="n000062"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000425" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000426" s:ref="n000427"/>
<nc:DocumentReference s:id="n000428" s:ref="n000067"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000429" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000430" s:ref="n000431"/>
<nc:DocumentReference s:id="n000432" s:ref="n000072"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000433" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000434" s:ref="n000435"/>
<nc:DocumentReference s:id="n000436" s:ref="n000077"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000437" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000438" s:ref="n000439"/>
<nc:DocumentReference s:id="n000440" s:ref="n000082"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000441" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000442" s:ref="n000443"/>
<nc:DocumentReference s:id="n000444" s:ref="n000087"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000445" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000446" s:ref="n000447"/>
<nc:DocumentReference s:id="n000448" s:ref="n000092"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000449" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000450" s:ref="n000451"/>
<nc:DocumentReference s:id="n000452" s:ref="n000097"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000453" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000454" s:ref="n000455"/>
<nc:DocumentReference s:id="n000456" s:ref="n000102"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000457" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000458" s:ref="n000459"/>
<nc:DocumentReference s:id="n000460" s:ref="n000107"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000461" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000462" s:ref="n000463"/>
<nc:DocumentReference s:id="n000464" s:ref="n000112"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000465" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000466" s:ref="n000467"/>
<nc:DocumentReference s:id="n000468" s:ref="n000117"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000469" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000470" s:ref="n000471"/>
<nc:DocumentReference s:id="n000472" s:ref="n000122"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000473" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000474" s:ref="n000475"/>
<nc:DocumentReference s:id="n000476" s:ref="n000127"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000477" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000478" s:ref="n000479"/>
<nc:DocumentReference s:id="n000480" s:ref="n000132"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000481" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000482" s:ref="n000483"/>
<nc:DocumentReference s:id="n000484" s:ref="n000137"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000485" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000486" s:ref="n000487"/>
<nc:DocumentReference s:id="n000488" s:ref="n000142"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000489" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000490" s:ref="n000491"/>
<nc:DocumentReference s:id="n000492" s:ref="n000147"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000493" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000494" s:ref="n000495"/>
<nc:DocumentReference s:id="n000496" s:ref="n000152"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000497" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000498" s:ref="n000499"/>
<nc:DocumentReference s:id="n000500" s:ref="n000157"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000501" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000502" s:ref="n000503"/>
<nc:DocumentReference s:id="n000504" s:ref="n000162"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000505" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000506" s:ref="n000507"/>
<nc:DocumentReference s:id="n000508" s:ref="n000167"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000509" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000510" s:ref="n000511"/>
<nc:DocumentReference s:id="n000512" s:ref="n000172"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000513" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000514" s:ref="n000515"/>
<nc:DocumentReference s:id="n000516" s:ref="n000177"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000517" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000518" s:ref="n000519"/>
<nc:DocumentReference s:id="n000520" s:ref="n000182"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000521" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000522" s:ref="n000523"/>
<nc:DocumentReference s:id="n000524" s:ref="n000187"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000525" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000526" s:ref="n000527"/>
<nc:DocumentReference s:id="n000528" s:ref="n000192"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000529" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000530" s:ref="n000531"/>
<nc:DocumentReference s:id="n000532" s:ref="n000197"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000533" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000534" s:ref="n000535"/>
<nc:DocumentReference s:id="n000536" s:ref="n000202"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000537" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000538" s:ref="n000539"/>
<nc:DocumentReference s:id="n000540" s:ref="n000207"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000541" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000542" s:ref="n000543"/>
<nc:DocumentReference s:id="n000544" s:ref="n000212"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000545" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000546" s:ref="n000547"/>
<nc:DocumentReference s:id="n000548" s:ref="n000217"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000549" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000550" s:ref="n000551"/>
<nc:DocumentReference s:id="n000552" s:ref="n000222"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000553" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000554" s:ref="n000555"/>
<nc:DocumentReference s:id="n000556" s:ref="n000227"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000557" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000558" s:ref="n000559"/>
<nc:DocumentReference s:id="n000560" s:ref="n000232"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000561" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000562" s:ref="n000563"/>
<nc:DocumentReference s:id="n000564" s:ref="n000237"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000565" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000566" s:ref="n000567"/>
<nc:DocumentReference s:id="n000568" s:ref="n000242"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000569" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000570" s:ref="n000571"/>
<nc:DocumentReference s:id="n000572" s:ref="n000247"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000573" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000574" s:ref="n000575"/>
<nc:DocumentReference s:id="n000576" s:ref="n000252"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000577" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000578" s:ref="n000579"/>
<nc:DocumentReference s:id="n000580" s:ref="n000257"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000581" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000582" s:ref="n000583"/>
<nc:DocumentReference s:id="n000584" s:ref="n000262"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000585" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000586" s:ref="n000587"/>
<nc:DocumentReference s:id="n000588" s:ref="n000267"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000589" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000590" s:ref="n000591"/>
<nc:DocumentReference s:id="n000592" s:ref="n000272"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000593" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000594" s:ref="n000595"/>
<nc:DocumentReference s:id="n000596" s:ref="n000277"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000597" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000598" s:ref="n000599"/>
<nc:DocumentReference s:id="n000600" s:ref="n000282"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000601" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000602" s:ref="n000603"/>
<nc:DocumentReference s:id="n000604" s:ref="n000287"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000605" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000606" s:ref="n000607"/>
<nc:DocumentReference s:id="n000608" s:ref="n000292"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000609" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000610" s:ref="n000611"/>
<nc:DocumentReference s:id="n000612" s:ref="n000297"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000613" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000614" s:ref="n000615"/>
<nc:DocumentReference s:id="n000616" s:ref="n000302"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000617" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000618" s:ref="n000619"/>
<nc:DocumentReference s:id="n000620" s:ref="n000307"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000621" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000622" s:ref="n000623"/>
<nc:DocumentReference s:id="n000624" s:ref="n000312"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000625" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000626" s:ref="n000627"/>
<nc:DocumentReference s:id="n000628" s:ref="n000317"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000629" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000630" s:ref="n000631"/>
<nc:DocumentReference s:id="n000632" s:ref="n000322"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000633" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000634" s:ref="n000635"/>
<nc:DocumentReference s:id="n000636" s:ref="n000327"/>
</ctx:RegisterActionCaseFilingAssociation>
<ctx:RegisterActionCaseFilingAssociation s:id="n000637" s:metadata="n000413">
<ctx:RegisterActionReference s:id="n000638" s:ref="n000639"/>
<nc:DocumentReference s:id="n000640" s:ref="n000332"/>
</ctx:RegisterActionCaseFilingAssociation>
</ctx:CaseDataAssociations>
<nc:EntityOrganization xsi:type="ctx:OrganizationType" s:id="n000641" s:metadata="n000642">
<nc:OrganizationName s:id="n000643" s:metadata="n000644">City of Tacoma</nc:OrganizationName>
</nc:EntityOrganization>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000352" s:metadata="n000645">
<nc:PersonName s:id="n000646">
<nc:PersonFullName s:id="n000647" s:metadata="n000648">Jon J Walker</nc:PersonFullName>
</nc:PersonName>
<ctx:PersonAugmentation s:id="n000649">
<nc:ContactInformation s:id="n000650">
<nc:ContactMailingAddress s:id="n000651">
<nc:AddressFullText s:id="n000652" s:metadata="n000648">747 MARKET ST
STE 1120
TACOMA, WA 98402-3767</nc:AddressFullText>
</nc:ContactMailingAddress>
<nc:ContactTelephoneNumber s:id="n000653">
<nc:FullTelephoneNumber s:id="n000654">
<nc:TelephoneNumberFullID s:id="n000655" s:metadata="n000648">253-591-5885</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactTelephoneNumber>
<nc:ContactFaxNumber s:id="n000656">
<nc:FullTelephoneNumber s:id="n000657">
<nc:TelephoneNumberFullID s:id="n000658" s:metadata="n000648">253-591-5755</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactFaxNumber>
<nc:ContactEmailID s:id="n000659" s:metadata="n000648">jon.walker@cityoftacoma.org</nc:ContactEmailID>
</nc:ContactInformation>
</ctx:PersonAugmentation>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000660" s:metadata="n000661">
<nc:PersonAlternateName xsi:type="ctx:PersonNameType" s:id="n000662" nc:personNameCommentText="Also Known As" ctx:personNameCommentCode="aka">
<nc:PersonFullName s:id="n000663" s:metadata="n000664">Naathon R Johnson</nc:PersonFullName>
</nc:PersonAlternateName>
<nc:PersonName s:id="n000665">
<nc:PersonFullName s:id="n000666" s:metadata="n000644">David L Greening</nc:PersonFullName>
</nc:PersonName>
<ctx:PersonAugmentation s:id="n000667">
<nc:ContactInformation s:id="n000668">
<nc:ContactMailingAddress s:id="n000669">
<nc:AddressFullText s:id="n000670" s:metadata="n000671">AIRWAY HEIGHTS, WA 99001-2109
PO BOX 2109
AHCC
729964</nc:AddressFullText>
</nc:ContactMailingAddress>
</nc:ContactInformation>
</ctx:PersonAugmentation>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000392" s:metadata="n000645">
<nc:PersonName s:id="n000672">
<nc:PersonFullName s:id="n000673" s:metadata="n000648">PRO SE</nc:PersonFullName>
</nc:PersonName>
<ctx:PersonAugmentation s:id="n000674">
<nc:ContactInformation s:id="n000675">
<nc:ContactMailingAddress s:id="n000676">
<nc:AddressFullText s:id="n000677" s:metadata="n000648"/>
</nc:ContactMailingAddress>
</nc:ContactInformation>
</ctx:PersonAugmentation>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000678" s:metadata="n000642">
<nc:PersonName s:id="n000679">
<nc:PersonFullName s:id="n000680" s:metadata="n000644">John W Ladenburg</nc:PersonFullName>
</nc:PersonName>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000363" s:metadata="n000645">
<nc:PersonName s:id="n000681">
<nc:PersonFullName s:id="n000682" s:metadata="n000648">Mark Conlin Jobson</nc:PersonFullName>
</nc:PersonName>
<ctx:PersonAugmentation s:id="n000683">
<nc:ContactInformation s:id="n000684">
<nc:ContactMailingAddress s:id="n000685">
<nc:AddressFullText s:id="n000686" s:metadata="n000648">7141 CLEANWATER DRIVE SW
PO BOX 40126
OLYMPIA, WA 98504-0126</nc:AddressFullText>
</nc:ContactMailingAddress>
<nc:ContactTelephoneNumber s:id="n000687">
<nc:FullTelephoneNumber s:id="n000688">
<nc:TelephoneNumberFullID s:id="n000689" s:metadata="n000648">360-586-6300</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactTelephoneNumber>
<nc:ContactFaxNumber s:id="n000690">
<nc:FullTelephoneNumber s:id="n000691">
<nc:TelephoneNumberFullID s:id="n000692" s:metadata="n000648">FAX 1-360-586-6655</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactFaxNumber>
<nc:ContactEmailID s:id="n000693" s:metadata="n000648">MarkJ@atg.wa.gov</nc:ContactEmailID>
</nc:ContactInformation>
</ctx:PersonAugmentation>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000694" s:metadata="n000642">
<nc:PersonName s:id="n000695">
<nc:PersonFullName s:id="n000696" s:metadata="n000644">Lisa K Wagner</nc:PersonFullName>
</nc:PersonName>
</nc:EntityPerson>
<nc:EntityPerson xsi:type="ctx:PersonType" s:id="n000371" s:metadata="n000645">
<nc:PersonName s:id="n000697">
<nc:PersonFullName s:id="n000698" s:metadata="n000648">Mark Conlin Jobson</nc:PersonFullName>
</nc:PersonName>
<ctx:PersonAugmentation s:id="n000699">
<nc:ContactInformation s:id="n000700">
<nc:ContactMailingAddress s:id="n000701">
<nc:AddressFullText s:id="n000702" s:metadata="n000648">7141 CLEANWATER DRIVE SW
PO BOX 40126
OLYMPIA, WA 98504-0126</nc:AddressFullText>
</nc:ContactMailingAddress>
<nc:ContactTelephoneNumber s:id="n000703">
<nc:FullTelephoneNumber s:id="n000704">
<nc:TelephoneNumberFullID s:id="n000705" s:metadata="n000648">360-586-6300</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactTelephoneNumber>
<nc:ContactFaxNumber s:id="n000706">
<nc:FullTelephoneNumber s:id="n000707">
<nc:TelephoneNumberFullID s:id="n000708" s:metadata="n000648">FAX 1-360-586-6655</nc:TelephoneNumberFullID>
</nc:FullTelephoneNumber>
</nc:ContactFaxNumber>
<nc:ContactEmailID s:id="n000709" s:metadata="n000648">MarkJ@atg.wa.gov</nc:ContactEmailID>
</nc:ContactInformation>
</ctx:PersonAugmentation>
</nc:EntityPerson>
<nc:EntityPerson s:id="n000379" s:metadata="n000710">
<nc:PersonName s:id="n000711">
<nc:PersonFullName s:id="n000712">Robert J. Bryan, presiding</nc:PersonFullName>
</nc:PersonName>
</nc:EntityPerson>
<nc:EntityPerson s:id="n000383" s:metadata="n000713">
<nc:PersonName s:id="n000714">
<nc:PersonFullName s:id="n000715">Judge Robert J. Bryan</nc:PersonFullName>
</nc:PersonName>
</nc:EntityPerson>
<ctx:CaseInitiatingParty s:id="n000403" s:metadata="n000716" s:sequenceID="2">
<nc:RoleOfPersonReference s:id="n000717" s:ref="n000660"/>
<ctx:RoleEffectiveDateRange s:id="n000718">
<nc:StartDate s:id="n000719" s:metadata="n000720">
<nc:Date s:id="n000721">2004-07-20</nc:Date>
</nc:StartDate>
</ctx:RoleEffectiveDateRange>
<ctx:CaseParticipantRoleCategoryText s:id="n000722" s:metadata="n000723">Plaintiff</ctx:CaseParticipantRoleCategoryText>
<ctx:CaseParticipantSelfRepresentationIndicator s:id="n000724" s:metadata="n000725">true</ctx:CaseParticipantSelfRepresentationIndicator>
</ctx:CaseInitiatingParty>
<ctx:CaseDefendantParty s:id="n000399" s:metadata="n000716" s:sequenceID="1">
<nc:RoleOfOrganizationReference s:id="n000726" s:ref="n000641"/>
<ctx:RoleEffectiveDateRange s:id="n000727">
<nc:StartDate s:id="n000728" s:metadata="n000720">
<nc:Date s:id="n000729">2004-07-12</nc:Date>
</nc:StartDate>
</ctx:RoleEffectiveDateRange>
<ctx:CaseParticipantRoleCategoryText s:id="n000730" s:metadata="n000723">Defendant</ctx:CaseParticipantRoleCategoryText>
</ctx:CaseDefendantParty>
<ctx:CaseDefendantParty s:id="n000407" s:metadata="n000716" s:sequenceID="3">
<nc:RoleOfPersonReference s:id="n000731" s:ref="n000678"/>
<ctx:RoleEffectiveDateRange s:id="n000732">
<nc:StartDate s:id="n000733" s:metadata="n000720">
<nc:Date s:id="n000734">2004-07-12</nc:Date>
</nc:StartDate>
</ctx:RoleEffectiveDateRange>
<ctx:CaseParticipantRoleCategoryText s:id="n000735" s:metadata="n000723">Defendant</ctx:CaseParticipantRoleCategoryText>
</ctx:CaseDefendantParty>
<ctx:CaseDefendantParty s:id="n000411" s:metadata="n000716" s:sequenceID="4">
<nc:RoleOfPersonReference s:id="n000736" s:ref="n000694"/>
<ctx:RoleEffectiveDateRange s:id="n000737">
<nc:StartDate s:id="n000738" s:metadata="n000720">
<nc:Date s:id="n000739">2004-07-12</nc:Date>
</nc:StartDate>
</ctx:RoleEffectiveDateRange>
<ctx:CaseParticipantRoleCategoryText s:id="n000740" s:metadata="n000723">Defendant</ctx:CaseParticipantRoleCategoryText>
</ctx:CaseDefendantParty>
<j:RegisterOfActions s:id="n000741">
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000415">
<j:RegisterActionDate s:id="n000742">
<nc:Date s:id="n000743" s:metadata="n000053">2004-07-12</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000744" s:metadata="n000745">MOTION for Leave to Proceed in forma pauperis by Plaintiff Naathon R Johnson. Noting Date 7/12/2004. (Attachments: # 1 Proposed Prisoner Civil Rights COmplaint)(ECS, ) (Entered: 07/15/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000419">
<j:RegisterActionDate s:id="n000746">
<nc:Date s:id="n000747" s:metadata="n000053">2004-07-15</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000748" s:metadata="n000745">Letter from Deputy Clerk to Plaintiff re case number. (ECS, ) (Entered: 07/15/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000423">
<j:RegisterActionDate s:id="n000749">
<nc:Date s:id="n000750" s:metadata="n000053">2004-07-16</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000751" s:metadata="n000745">ORDER TO SHOW CAUSE: Pltf shall seek to cure IFP deficiency by filing no later than 8/16/04 a copy of his prison trust acct statement re 1 MOTION for Leave to Proceed in forma pauperis Show Cause Response due by 8/16/2004. by Judge Karen L Strombom. (DK, ) (Entered: 07/16/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000752">
<j:RegisterActionDate s:id="n000753">
<nc:Date s:id="n000754" s:metadata="n000053">2004-07-16</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000755" s:metadata="n000745">OSC ddl re IFP defiency re 3 Order to Show Cause, NOTED on motion calendar; Noting Date 8/16/2004. (DK, ) (Entered: 07/16/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000427">
<j:RegisterActionDate s:id="n000756">
<nc:Date s:id="n000757" s:metadata="n000053">2004-07-28</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000758" s:metadata="n000745">RESPONSE TO ORDER TO SHOW CAUSE (trust account statement attached) by Plaintiff Naathon R Johnson. (CAR, ) (Entered: 07/30/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000431">
<j:RegisterActionDate s:id="n000759">
<nc:Date s:id="n000760" s:metadata="n000053">2004-08-04</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000761" s:metadata="n000745">SECOND ORDER TO SHOW CAUSE and Order Regarding Plaintiff's Affidavit of Prejudice: Pltf shall cure the deficiency in application to proceed in forma pauperis by filing no later than 9/3/04, a copy of his prison trust acct statement showing the
activiy &amp; balance of his acct for the 6 mos period immediately preceding the filing date of his complaint. The court is unable to address pltf's request for re-assignment of this matter, let alone determine his reasons for making such request - no affidavit of prejudice was attached to the response. If pltf wishes to pursue the recusal of the undersigned Magistrate Judge, he will have to file a copy of the aforementioned affidavit of prejudice. **SEE ORDER FOR DETAILS** re 1 MOTION for Leave to Proceed in forma pauperis filed by Naathon R Johnson Show Cause Response due by 9/3/2004. by Judge Karen L Strombom. (DK, ) (Entered: 08/05/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000435">
<j:RegisterActionDate s:id="n000762">
<nc:Date s:id="n000763" s:metadata="n000053">2004-08-25</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000764" s:metadata="n000745">RESPONSE TO Second ORDER TO SHOW CAUSE &amp; Issue Regarding Pltf's Affidavit of Prejudice by Plaintiff Naathon R Johnson. (DK, ) (Entered: 08/26/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000439">
<j:RegisterActionDate s:id="n000765">
<nc:Date s:id="n000766" s:metadata="n000053">2004-09-01</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000767" s:metadata="n000745">ORDER TO SHOW CAUSE Regarding Pltf's Affidavit of Prejudice: Pltf shall explain why the undersigned's participation in his 8/97 sentencing, or any other involvement in the matters set forth in his civil rights complaint, warrants recusal by no later than 9/30/04, or show cause why the court should not find the absence of any reasonable basis for voluntary recusal in this matter. re 6 Response to Order to Show Cause filed by Naathon R Johnson Show Cause Response due by 9/30/2004. by Judge Karen L Strombom. (DK, ) (Entered: 09/01/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000443">
<j:RegisterActionDate s:id="n000768">
<nc:Date s:id="n000769" s:metadata="n000053">2004-09-16</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000770" s:metadata="n000745">RESPONSE TO ORDER TO SHOW CAUSE by Plaintiff Naathon R Johnson. (DK, ) (Entered: 09/21/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000447">
<j:RegisterActionDate s:id="n000771">
<nc:Date s:id="n000772" s:metadata="n000053">2004-10-04</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000773" s:metadata="n000745">ORDER Granting 1 Motion for Leave to Proceed in forma pauperis &amp; directing institution to calculate, collect &amp; forward payments re 1 MOTION for Leave to Proceed in forma pauperis by Judge Karen L Strombom.(DK, ) (Entered: 10/05/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000451">
<j:RegisterActionDate s:id="n000774">
<nc:Date s:id="n000775" s:metadata="n000053">2004-10-04</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000776" s:metadata="n000745">1983 Prisoner Civil Rights COMPLAINT (Receipt # IFP), filed by Naathon R Johnson.(DK, ) (Entered: 10/05/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000455">
<j:RegisterActionDate s:id="n000777">
<nc:Date s:id="n000778" s:metadata="n000053">2004-10-04</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000779" s:metadata="n000745">ORDER Denying Plaintiff's Affidavit of Prejudice re 8 Response to Order to Show Cause filed by Naathon R Johnson by Judge Karen L Strombom. (DK, ) (Entered: 10/05/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000459">
<j:RegisterActionDate s:id="n000780">
<nc:Date s:id="n000781" s:metadata="n000053">2004-10-08</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000782" s:metadata="n000745">ORDER DIRECTING SERVICE by US Marshal; mailed on 10/8/04 to Defendants; General Order sent to Pltf. by Judge Karen L Strombom. (CAR, cc to AG's office ) (Entered: 10/08/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000463">
<j:RegisterActionDate s:id="n000783">
<nc:Date s:id="n000784" s:metadata="n000053">2004-10-08</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000785" s:metadata="n000745">NOTICE OF INITIAL ASSIGNMENT AND CONSENT PROCEDURE. If consent, return the executed form by 12/22/2004. Please Note: Consents must not be electronically filed with the Court. (Attachments: # 1 proposed Consent Form)(CAR, ) (Entered: 10/08/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000467">
<j:RegisterActionDate s:id="n000786">
<nc:Date s:id="n000787" s:metadata="n000053">2004-10-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000788" s:metadata="n000745">NOTICE of Appearance by attorney Jon J Walker on behalf of Defendant City of Tacoma (Walker, Jon) (Entered: 10/27/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000471">
<j:RegisterActionDate s:id="n000789">
<nc:Date s:id="n000790" s:metadata="n000053">2004-10-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000791" s:metadata="n000745">MOTION to Dismiss by Defendant City of Tacoma. Noting Date 12/3/2004. (Attachments: # 1 proposed order)(Walker, Jon) Modified on 10/28/2004 - attachment named(DK, ). (Entered: 10/27/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000475">
<j:RegisterActionDate s:id="n000792">
<nc:Date s:id="n000793" s:metadata="n000053">2004-10-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000794" s:metadata="n000745">AFFIDAVIT of Jon J. Walker filed by Defendant City of Tacoma re 15 MOTION to Dismiss (Walker, Jon) (Entered: 10/27/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000479">
<j:RegisterActionDate s:id="n000795">
<nc:Date s:id="n000796" s:metadata="n000053">2004-11-03</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000797" s:metadata="n000745">NOTICE of Appearance by attorney Mark Conlin Jobson on behalf of Defendants John W Ladenburg, Lisa K Wagner (Jobson, Mark) (Entered: 11/03/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000483">
<j:RegisterActionDate s:id="n000798">
<nc:Date s:id="n000799" s:metadata="n000053">2004-11-12</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000800" s:metadata="n000745">RESPONSE, by Plaintiff Naathon R Johnson, to 15 MOTION to Dismiss. (CAR, ) (Entered: 11/16/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000487">
<j:RegisterActionDate s:id="n000801">
<nc:Date s:id="n000802" s:metadata="n000053">2004-11-17</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000803" s:metadata="n000745">REPLY, filed by Defendant City of Tacoma, TO RESPONSE to 15 MOTION to Dismiss (Walker, Jon) (Entered: 11/17/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000491">
<j:RegisterActionDate s:id="n000804">
<nc:Date s:id="n000805" s:metadata="n000053">2004-11-18</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000806" s:metadata="n000745">WAIVER OF SERVICE of summons by Mark Jobsen for defendant John W Ladenburg mailed on 10/12/2004 (CAR, ) (Entered: 11/22/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000495">
<j:RegisterActionDate s:id="n000807">
<nc:Date s:id="n000808" s:metadata="n000053">2004-11-18</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000809" s:metadata="n000745">WAIVER OF SERVICE of summons by Mark Jobsen for defendant Lisa K Wagner mailed on 10/12/2004 (CAR, ) (Entered: 11/22/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000499">
<j:RegisterActionDate s:id="n000810">
<nc:Date s:id="n000811" s:metadata="n000053">2004-11-19</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000812" s:metadata="n000745">RETURN OF SERVICE by US Marshal's Office re: Civil Rights Complaint upon John Ladenburg on 11/17/04 (CAR, ) (Entered: 11/22/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000503">
<j:RegisterActionDate s:id="n000813">
<nc:Date s:id="n000814" s:metadata="n000053">2004-11-19</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000815" s:metadata="n000745">RETURN OF SERVICE by US Marshal's Office re: Civil Rights Complaint upon Lisa K. Wagner on 11/17/04 (CAR, ) (Entered: 11/22/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000507">
<j:RegisterActionDate s:id="n000816">
<nc:Date s:id="n000817" s:metadata="n000053">2004-11-24</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000818" s:metadata="n000745">ANSWER to Complaint with Jury Demand by John W Ladenburg, Lisa K Wagner.(Jobson, Mark) (Entered: 11/24/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000511">
<j:RegisterActionDate s:id="n000819">
<nc:Date s:id="n000820" s:metadata="n000053">2004-12-07</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000821" s:metadata="n000745">PRETRIAL SCHEDULING ORDER: Discovery due by 3/4/2005; Dispositive motions due by 4/1/2005; and Joint Status Report due by 7/1/05 by Judge Karen L Strombom. (CAR, ) (Entered: 12/08/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000822">
<j:RegisterActionDate s:id="n000823">
<nc:Date s:id="n000824" s:metadata="n000053">2004-12-07</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000825" s:metadata="n000745">Setting the Deadline for: Joint Status Report due by 7/1/2005 per Order 25 (CAR, ) (Entered: 12/08/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000515">
<j:RegisterActionDate s:id="n000826">
<nc:Date s:id="n000827" s:metadata="n000053">2004-12-15</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000828" s:metadata="n000745">Mail Returned as Undeliverable re 25 Scheduling Order addressed to Naathon Johnson (ECS, ) (Entered: 12/27/2004)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000519">
<j:RegisterActionDate s:id="n000829">
<nc:Date s:id="n000830" s:metadata="n000053">2005-01-06</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000831" s:metadata="n000745">NOTICE of Unavailability of counsel Mark Conlin Jobson for Defendants John W Ladenburg, Lisa K Wagner from 02/05/2005 to 02/14/2005 (Jobson, Mark) (Entered: 01/06/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000523">
<j:RegisterActionDate s:id="n000832">
<nc:Date s:id="n000833" s:metadata="n000053">2005-01-13</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000834" s:metadata="n000745">ORDER changing case caption and directing clerk to re-send documents by Judge Karen L Strombom. (CAR, ) (Entered: 01/14/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000527">
<j:RegisterActionDate s:id="n000835">
<nc:Date s:id="n000836" s:metadata="n000053">2005-01-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000837" s:metadata="n000745">ANSWER to Complaint and Affirmative Defenses by City of Tacoma.(Walker, Jon) (Entered: 01/27/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000531">
<j:RegisterActionDate s:id="n000838">
<nc:Date s:id="n000839" s:metadata="n000053">2005-01-28</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000840" s:metadata="n000745">ORDER: The City's motion to dismiss is renoted for 3/11/05. The USMO is directed to send deputy marshals as need to personally serve either the Mayor of the City of Tacoma, or the City Manager. re 15 MOTION to Dismiss Noting Date 3/11/2005. by Judge Karen L Strombom. (DK, ) (Entered: 01/31/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000535">
<j:RegisterActionDate s:id="n000841">
<nc:Date s:id="n000842" s:metadata="n000053">2005-01-31</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000843" s:metadata="n000745">NOTICE OF INITIAL ASSIGNMENT AND CONSENT PROCEDURE. If consent, return the executed form by 4/16/2005. Please Note: Consents must not be electronically filed with the Court. (Attachments: # 1 Consent Form)(DK, ) (Entered: 01/31/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000539">
<j:RegisterActionDate s:id="n000844">
<nc:Date s:id="n000845" s:metadata="n000053">2005-02-03</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000846" s:metadata="n000745">ACCEPTANCE OF SERVICE of summons and complaint by counsel, Asst City Atty, on behalf of Defendant City of Tacoma on 10/20/04. (DK, ) (Entered: 02/07/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000543">
<j:RegisterActionDate s:id="n000847">
<nc:Date s:id="n000848" s:metadata="n000053">2005-02-10</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000849" s:metadata="n000745">RETURN OF SERVICE by US Marshal's Office upon City of Tacoma re: 1983 Civil on 10/20/04 (DK, ) (Entered: 03/01/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000547">
<j:RegisterActionDate s:id="n000850">
<nc:Date s:id="n000851" s:metadata="n000053">2005-02-18</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000852" s:metadata="n000745">RETURN OF SERVICE by US Marshal's Office upon James Walton, City Manager re: 1983 Civil on 2/11/05 (DK, ) (Entered: 03/01/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000551">
<j:RegisterActionDate s:id="n000853">
<nc:Date s:id="n000854" s:metadata="n000053">2005-03-14</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000855" s:metadata="n000745">MOTION for Summary Judgment by Defendants John W Ladenburg, Lisa K Wagner. Noting Date 4/8/2005. (Attachments: # 1 State v. Thomas, 103 Wn. App. 800)(Jobson, Mark) (Entered: 03/14/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000555">
<j:RegisterActionDate s:id="n000856">
<nc:Date s:id="n000857" s:metadata="n000053">2005-03-14</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000858" s:metadata="n000745">PRAECIPE to attach document (Proposed Order) re 35 MOTION for Summary Judgment by Defendants John W Ladenburg, Lisa K Wagner. (Jobson, Mark) (Entered: 03/14/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000559">
<j:RegisterActionDate s:id="n000859">
<nc:Date s:id="n000860" s:metadata="n000053">2005-03-14</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000861" s:metadata="n000745">DECLARATION of Lisa Wagner filed by Defendants John W Ladenburg, Lisa K Wagner re 35 MOTION for Summary Judgment (Attachments: # 1 Wagner Decl part 2# 2 Wagner Decl Part 3 pp. 55-90)(Jobson, Mark) (Entered: 03/14/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000563">
<j:RegisterActionDate s:id="n000862">
<nc:Date s:id="n000863" s:metadata="n000053">2005-03-22</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000864" s:metadata="n000745">REPORT AND RECOMMENDATIONS re granting 15 MOTION to Dismiss by City of Tacoma. Noting Date 4/22/2005. by Judge Karen L Strombom. (CAR, ) (Entered: 03/23/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000567">
<j:RegisterActionDate s:id="n000865">
<nc:Date s:id="n000866" s:metadata="n000053">2005-03-23</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000867" s:metadata="n000745">MOTION for Summary Judgment by Defendant City of Tacoma. Noting Date 4/22/2005. (Attachments: # 1 Proposed Order)(Walker, Jon) (Entered: 03/23/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000571">
<j:RegisterActionDate s:id="n000868">
<nc:Date s:id="n000869" s:metadata="n000053">2005-03-23</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000870" s:metadata="n000745">AFFIDAVIT of Jon J. Walker filed by Defendant City of Tacoma re 38 MOTION for Summary Judgment (Walker, Jon) (Entered: 03/23/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000575">
<j:RegisterActionDate s:id="n000871">
<nc:Date s:id="n000872" s:metadata="n000053">2005-03-30</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000873" s:metadata="n000745">SERVICE OF SUMMONS Returned Unexecuted upon Bill Baarsma (Mayor of Tacoma) - Remarks: Returning this document as order states to serve either Mayor or City Manager of Tacoma; The City Manager was served on 2/11/05. (PL, ) (Entered: 04/01/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000579">
<j:RegisterActionDate s:id="n000874">
<nc:Date s:id="n000875" s:metadata="n000053">2005-04-07</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000876" s:metadata="n000745">RESPONSE &amp; Memo in Oppostion to Dfts'Motion for Sum Jgm, by Plaintiff David L Greening, to 38 MOTION for Summary Judgment, 35 MOTION for Summary Judgment. (DK, ) (Entered: 04/08/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000583">
<j:RegisterActionDate s:id="n000877">
<nc:Date s:id="n000878" s:metadata="n000053">2005-04-08</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000879" s:metadata="n000745">Letter from Mark C. Jobson, AAG regarding plaintiff's untimely response brief . (Jobson, Mark) (Entered: 04/08/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000587">
<j:RegisterActionDate s:id="n000880">
<nc:Date s:id="n000881" s:metadata="n000053">2005-04-13</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000882" s:metadata="n000745">REPLY, filed by Defendants John W Ladenburg, Lisa K Wagner, TO RESPONSE to 35 MOTION for Summary Judgment (Jobson, Mark) (Entered: 04/13/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000591">
<j:RegisterActionDate s:id="n000883">
<nc:Date s:id="n000884" s:metadata="n000053">2005-04-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000885" s:metadata="n000745">ORDER ADOPTING REPORT AND RECOMMENDATION re 40 Report and Recommendation, granting 15 City of Tacoma's Motion to Dismiss. The Court adopts the Report and Recommendation. This action is DISMISSED WITH PREJUDICE as to the City of Tacoma. The complaint fails to allege a policy, custom, or practice of the city is at issue. Signed by Judge Robert J. Bryan. (JL) (Entered: 04/27/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000595">
<j:RegisterActionDate s:id="n000886">
<nc:Date s:id="n000887" s:metadata="n000053">2005-05-09</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000888" s:metadata="n000745">REPORT AND RECOMMENDATIONS re 35 MOTION for Summary Judgment filed by John W Ladenburg,, Lisa K Wagner,. Noting Date 6/10/2005. by Judge Karen L Strombom. (Attachments: # 1 Proposed Order)(DK, ) (Entered: 05/10/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000599">
<j:RegisterActionDate s:id="n000889">
<nc:Date s:id="n000890" s:metadata="n000053">2005-05-25</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000891" s:metadata="n000745">OBJECTIONS to 46 Report and Recommendation filed by Plaintiff David L Greening Noting Date 6/10/2005. (RM, ) (Entered: 06/01/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000603">
<j:RegisterActionDate s:id="n000892">
<nc:Date s:id="n000893" s:metadata="n000053">2005-06-13</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000894" s:metadata="n000745">ORDER ADOPTING REPORT AND RECOMMENDATION re 46 Report and Recommendation.The Court adopts the Report and Recommendation. This action is DISMISSED WITH PREJUDICE. The defendants enjoy absolute immunity for decisions made to charge plaintiff with a crime, even if plaintiff alleges the facts in a police report are not accurate and the statute relied on in charging is later declared invalid. Signed by Judge Robert J. Bryan. (JL) (Entered: 06/13/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000607">
<j:RegisterActionDate s:id="n000895">
<nc:Date s:id="n000896" s:metadata="n000053">2005-06-22</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000897" s:metadata="n000745">NOTICE OF APPEAL (05-35657) by Plaintiff David L Greening from 48 Order on 6/13/05 Adopting Report and Recommendations, and dismissing action w/ prejudice (MW, ) Modified on 7/8/2005: text modified to add CCA number (CAR, ). (Entered: 06/28/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000898">
<j:RegisterActionDate s:id="n000899">
<nc:Date s:id="n000900" s:metadata="n000053">2005-06-22</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000901" s:metadata="n000745">NO Appeal Fees received: appellant granted IFP 10/5/04 re 50 Notice of Appeal filed by David L Greening, (MW, ) (Entered: 06/28/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000611">
<j:RegisterActionDate s:id="n000902">
<nc:Date s:id="n000903" s:metadata="n000053">2005-06-27</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000904" s:metadata="n000745">JUDGMENT IN A CIVIL CASE (RM, ) (Entered: 06/27/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000615">
<j:RegisterActionDate s:id="n000905">
<nc:Date s:id="n000906" s:metadata="n000053">2005-06-29</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000907" s:metadata="n000745">CERTIFICATE OF RECORD Transmitted to USCA re 50 Notice of Appeal (PVO, ) (Entered: 06/29/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000619">
<j:RegisterActionDate s:id="n000908">
<nc:Date s:id="n000909" s:metadata="n000053">2005-06-29</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000910" s:metadata="n000745">APPEAL NOTIFICATION packet sent to US Court of Appeals re 50 Notice of Appeal (Attachments: # 1 Docket Sheet)(PVO, ) (Entered: 06/29/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000911">
<j:RegisterActionDate s:id="n000912">
<nc:Date s:id="n000913" s:metadata="n000053">2005-07-01</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000914" s:metadata="n000745">USCA Case Number 05-35657 for 50 Notice of Appeal filed by David L Greening,. (CAR, ) (Entered: 07/08/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000623">
<j:RegisterActionDate s:id="n000915">
<nc:Date s:id="n000916" s:metadata="n000053">2005-07-01</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000917" s:metadata="n000745">TIME SCHEDULE ORDER as to 50 Notice of Appeal (05-35657) filed by David L Greening, : Appellants opening brief due by 8/9/05; Appellees response brief due by 9/8/05; Appellants optional reply brief due within 14 days of service of the response brief. (CAR, ) (Entered: 07/08/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000627">
<j:RegisterActionDate s:id="n000918">
<nc:Date s:id="n000919" s:metadata="n000053">2005-07-15</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000920" s:metadata="n000745">ORDER by Judge Robert J. Bryan; Notice of Referral by 9th Circuit, appeal not taken in good faith. (PVO, ) (Entered: 07/20/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000631">
<j:RegisterActionDate s:id="n000921">
<nc:Date s:id="n000922" s:metadata="n000053">2005-11-02</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000923" s:metadata="n000745">Letter from David Greening re: request for docket sheet/documents re 54 Order. (Attachments: # 1 Attachment) NOTE: Docket sheet, including Dkts #53 &amp; #54 w/certificate of mailing, forwarded to pltf.(DK, ) (Entered: 11/04/2005)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000635">
<j:RegisterActionDate s:id="n000924">
<nc:Date s:id="n000925" s:metadata="n000053">2006-01-23</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000926" s:metadata="n000745">Letter from David Greening re 50 Notice of Appeal #05-35657 &amp; payment of filing fee on appeal. (MW, ) (Entered: 01/25/2006)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000927">
<j:RegisterActionDate s:id="n000928">
<nc:Date s:id="n000929" s:metadata="n000053">2006-01-23</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000930" s:metadata="n000745">Appeal Fees received: fee in the amount of $ 255 (receipt # 514823) re 50 Notice of Appeal #05-35657 filed by David L Greening, (MW, ) (Entered: 01/25/2006)</j:RegisterActionDescriptionText>
</j:RegisterAction>
<j:RegisterAction xsi:type="ctx:RegisterActionType" s:id="n000639">
<j:RegisterActionDate s:id="n000931">
<nc:Date s:id="n000932" s:metadata="n000053">2007-07-11</nc:Date>
</j:RegisterActionDate>
<j:RegisterActionDescriptionText s:id="n000933" s:metadata="n000745">MANDATE of USCA AFFIRMING judgment of US District Court as to 50 Notice of Appeal #05-35657 filed by David L Greening (MW, ) (Entered: 07/13/2007)</j:RegisterActionDescriptionText>
</j:RegisterAction>
</j:RegisterOfActions>
<ctx:CaseRecordDocument s:id="n000934">
<nc:DocumentCategoryDescriptionText s:id="n000935">Case Files</nc:DocumentCategoryDescriptionText>
<nc:DocumentLocation s:id="n000936">
<nc:LocationCategoryText s:id="n000937">Federal Records Center Location Information</nc:LocationCategoryText>
<nc:LocationDescriptionText s:id="n000938">CS1 The case file may be available.</nc:LocationDescriptionText>
</nc:DocumentLocation>
<nc:DocumentMediaCategoryText s:id="n000939">paper</nc:DocumentMediaCategoryText>
</ctx:CaseRecordDocument>
<ctx:CaseNote s:id="n000940">
<nc:CommentText s:id="n000941" s:metadata="n000942">CLOSED, LAW_CLERK_B, NOSVC</nc:CommentText>
</ctx:CaseNote>
<ctx:CaseOriginationCategoryText s:id="n000943" s:metadata="n000944">Original Proceeding</ctx:CaseOriginationCategoryText>
<ctx:CaseOriginationCategoryCode s:id="n000945" s:metadata="n000944">1</ctx:CaseOriginationCategoryCode>
<ctx:CaseJurisdictionBasisText s:id="n000946" s:metadata="n000947">Federal Question</ctx:CaseJurisdictionBasisText>
<ctx:CaseJuryRequestText s:id="n000948" s:metadata="n000949">Defendant</ctx:CaseJuryRequestText>
<ctx:RelatedCase xsi:type="ctx:CaseType" s:id="n000950">
<nc:CaseGeneralCategoryText s:id="n000951" s:metadata="n000952">Other Court</nc:CaseGeneralCategoryText>
<nc:CaseTrackingID s:id="n000953" s:metadata="n000954">05-35657</nc:CaseTrackingID>
<j:CaseAugmentation s:id="n000955">
<j:CaseCourt s:id="n000956">
<j:CourtName s:id="n000957" s:metadata="n000958">CCA</j:CourtName>
</j:CaseCourt>
</j:CaseAugmentation>
</ctx:RelatedCase>
<ctx:RelatedCase s:id="n000959">
<nc:CaseGeneralCategoryText s:id="n000960">Other Court Case</nc:CaseGeneralCategoryText>
<j:CaseAugmentation s:id="n000961">
<j:CaseOtherIdentification s:id="n000962">
<nc:IdentificationID s:id="n000963" s:metadata="n000964">'05-35657'['cca']</nc:IdentificationID>
</j:CaseOtherIdentification>
</j:CaseAugmentation>
</ctx:RelatedCase>
<j:Statute s:id="n000965">
<j:StatuteCodeIdentification s:id="n000966" s:metadata="n000967"/>
<j:StatuteCodeSectionIdentification s:id="n000968">
<nc:IdentificationID s:id="n000969" s:metadata="n000967">42:1983</nc:IdentificationID>
</j:StatuteCodeSectionIdentification>
<j:StatuteDescriptionText s:id="n000970" s:metadata="n000967">Prisoner Civil Rights</j:StatuteDescriptionText>
</j:Statute>
</ctx:CaseAugmentation>
</nc:Case>
<ctx:Metadata s:id="n000046">
<nc:SourceIDText s:id="n000971"/>
<nc:SourceText s:id="n000972">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n000973">
<ctx:LookupPerformedIndicator s:id="n000974">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n000975">
<nc:SourceText s:id="n000976">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n000977">Javascript Cookie</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n000978">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000387">
<nc:SourceIDText s:id="n000979"/>
<nc:SourceText s:id="n000980">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n000981">
<ctx:LookupPerformedIndicator s:id="n000982">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n000983">
<nc:SourceText s:id="n000984">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n000985">Javascript Cookie</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n000986">true</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000042">
<nc:SourceIDText s:id="n000987"/>
<nc:SourceText s:id="n000988">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n000989">
<ctx:LookupPerformedIndicator s:id="n000990">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n000991">
<nc:DescriptionText s:id="n000992">Case Title, first line of header</nc:DescriptionText>
<nc:SourceText s:id="n000993">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n000994">Case Hearder Section</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n000995">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000710">
<nc:SourceIDText s:id="n000996"/>
<nc:SourceText s:id="n000997">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n000998">
<ctx:LookupPerformedIndicator s:id="n000999">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001000">
<nc:SourceText s:id="n001001">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001002">Judge</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001003">Case Header Section</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001004">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000027">
<nc:SourceIDText s:id="n001005"/>
<nc:SourceText s:id="n001006">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001007">
<ctx:LookupPerformedIndicator s:id="n001008">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001009">
<nc:SourceText s:id="n001010">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001011">Date Filed</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001012">Case Header Section</ctx:DataSourceComponentText>
<ctx:DataSourceFieldAlternativeReference s:id="n001013" s:ref="n001014"/>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001015">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
<ctx:DataSourceField s:id="n001014">
<nc:SourceText s:id="n001016">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001017">Filed</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001018">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldAlternativeReference s:id="n001019" s:ref="n001009"/>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001020">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000030">
<nc:SourceIDText s:id="n001021"/>
<nc:SourceText s:id="n001022">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001023">
<ctx:LookupPerformedIndicator s:id="n001024">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001025">
<nc:SourceText s:id="n001026">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001027">Date Terminated</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001028">Case Header</ctx:DataSourceComponentText>
<ctx:DataSourceFieldAlternativeReference s:id="n001029" s:ref="n001030"/>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001031">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
<ctx:DataSourceField s:id="n001030">
<nc:SourceText s:id="n001032">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001033">Terminated</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001034">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldAlternativeReference s:id="n001035" s:ref="n001025"/>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001036">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000033">
<nc:SourceIDText s:id="n001037"/>
<nc:SourceText s:id="n001038">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001039">
<ctx:LookupPerformedIndicator s:id="n001040">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001041">
<nc:SourceText s:id="n001042">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001043">Date Of Last Filing</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001044">Case Header Section</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001045">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000044">
<nc:SourceIDText s:id="n001046"/>
<nc:SourceText s:id="n001047">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001048">
<ctx:LookupPerformedIndicator s:id="n001049">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001050">
<nc:SourceText s:id="n001051">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001052">General Case Type</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001053">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001054">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000343">
<nc:SourceIDText s:id="n001055"/>
<nc:SourceText s:id="n001056">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001057">
<ctx:LookupPerformedIndicator s:id="n001058">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001059">
<nc:SourceText s:id="n001060">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001061">Office</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001062">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001063">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000345">
<nc:SourceIDText s:id="n001064"/>
<nc:SourceText s:id="n001065">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001066">
<ctx:LookupPerformedIndicator s:id="n001067">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001068">
<nc:SourceText s:id="n001069">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001070">County</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001071">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001072">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000947">
<nc:SourceIDText s:id="n001073"/>
<nc:SourceText s:id="n001074">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001075">
<ctx:LookupPerformedIndicator s:id="n001076">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001077">
<nc:SourceText s:id="n001078">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001079">Jurisdiction</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001080">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001081">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000949">
<nc:SourceIDText s:id="n001082"/>
<nc:SourceText s:id="n001083">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001084">
<ctx:LookupPerformedIndicator s:id="n001085">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001086">
<nc:SourceText s:id="n001087">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001088">Jury Demand</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001089">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001090">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000040">
<nc:SourceIDText s:id="n001091"/>
<nc:SourceText s:id="n001092">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001093">
<ctx:LookupPerformedIndicator s:id="n001094">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001095">
<nc:SourceText s:id="n001096">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001097">Disposition</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001098">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001099">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000967">
<nc:SourceIDText s:id="n001100"/>
<nc:SourceText s:id="n001101">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001102">
<ctx:LookupPerformedIndicator s:id="n001103">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001104">
<nc:SourceText s:id="n001105">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001106">Cause</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001107">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001108">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000942">
<nc:SourceIDText s:id="n001109"/>
<nc:SourceText s:id="n001110">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001111">
<ctx:LookupPerformedIndicator s:id="n001112">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001113">
<nc:SourceText s:id="n001114">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001115">Flags</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001116">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001117">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000944">
<nc:SourceIDText s:id="n001118"/>
<nc:SourceText s:id="n001119">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001120">
<ctx:LookupPerformedIndicator s:id="n001121">true</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001122">
<nc:SourceText s:id="n001123">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001124">Origin</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001125">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001126">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000964">
<nc:SourceIDText s:id="n001127"/>
<nc:SourceText s:id="n001128">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001129">
<ctx:LookupPerformedIndicator s:id="n001130">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001131">
<nc:SourceText s:id="n001132">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001133">Other Court Case</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001134">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001135">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000048">
<nc:SourceIDText s:id="n001136"/>
<nc:SourceText s:id="n001137">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001138">
<ctx:LookupPerformedIndicator s:id="n001139">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001140">
<nc:SourceText s:id="n001141">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001142">Nature Of Suit</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001143">Case Summary Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001144">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001145">
<nc:SourceIDText s:id="n001146"/>
<nc:SourceText s:id="n001147">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001148">
<ctx:LookupPerformedIndicator s:id="n001149">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001150">
<nc:DescriptionText s:id="n001151">Both elements linked by this association are derived from the same docket entry row of the host.</nc:DescriptionText>
<nc:SourceText s:id="n001152">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001153">Docket Report</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001154">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000053">
<nc:SourceIDText s:id="n001155"/>
<nc:SourceText s:id="n001156">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001157">
<ctx:LookupPerformedIndicator s:id="n001158">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001159">
<nc:SourceText s:id="n001160">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001161">Filing Date</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001162">Docket Report</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001163">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000745">
<nc:SourceIDText s:id="n001164"/>
<nc:SourceText s:id="n001165">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001166">
<ctx:LookupPerformedIndicator s:id="n001167">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001168">
<nc:SourceText s:id="n001169">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001170">Docket Text</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001171">Docket Report</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001172">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000664">
<nc:SourceIDText s:id="n001173"/>
<nc:SourceText s:id="n001174">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001175">
<ctx:LookupPerformedIndicator s:id="n001176">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001177">
<nc:SourceText s:id="n001178">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001179"/>
<ctx:DataSourceComponentText s:id="n001180">Alias Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001181">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001182">
<nc:SourceIDText s:id="n001183"/>
<nc:SourceText s:id="n001184">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001185">
<ctx:LookupPerformedIndicator s:id="n001186">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001187">
<nc:SourceText s:id="n001188">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001189"/>
<ctx:DataSourceComponentText s:id="n001190">Alias Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001191">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000716">
<nc:SourceIDText s:id="n001192"/>
<nc:SourceText s:id="n001193">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001194">
<ctx:LookupPerformedIndicator s:id="n001195">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001196">
<nc:SourceText s:id="n001197">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001198">Party</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001199">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001200">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000661">
<nc:DescriptionText s:id="n001201">EntityPerson determined by presence of AKA related to party</nc:DescriptionText>
<nc:SourceIDText s:id="n001202"/>
<nc:SourceText s:id="n001203">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001204">
<ctx:ExchangeElementSelectionMetadataIndicator s:id="n001205">true</ctx:ExchangeElementSelectionMetadataIndicator>
<ctx:LookupPerformedIndicator s:id="n001206">true</ctx:LookupPerformedIndicator>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000642">
<nc:DescriptionText s:id="n001207">Entity Person/Org determined by heuristic on name</nc:DescriptionText>
<nc:SourceIDText s:id="n001208"/>
<nc:SourceText s:id="n001209">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001210">
<ctx:ExchangeElementSelectionMetadataIndicator s:id="n001211">true</ctx:ExchangeElementSelectionMetadataIndicator>
<ctx:LookupPerformedIndicator s:id="n001212">true</ctx:LookupPerformedIndicator>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001213">
<nc:DescriptionText s:id="n001214">Entity Org created by DBA related to a Person party</nc:DescriptionText>
<nc:SourceIDText s:id="n001215"/>
<nc:SourceText s:id="n001216">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001217">
<ctx:ExchangeElementSelectionMetadataIndicator s:id="n001218">true</ctx:ExchangeElementSelectionMetadataIndicator>
<ctx:LookupPerformedIndicator s:id="n001219">true</ctx:LookupPerformedIndicator>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001220">
<nc:DescriptionText s:id="n001221">EntityPerson determined by presence of AKA related to attorney</nc:DescriptionText>
<nc:SourceIDText s:id="n001222"/>
<nc:SourceText s:id="n001223">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001224">
<ctx:ExchangeElementSelectionMetadataIndicator s:id="n001225">true</ctx:ExchangeElementSelectionMetadataIndicator>
<ctx:LookupPerformedIndicator s:id="n001226">true</ctx:LookupPerformedIndicator>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001227">
<nc:DescriptionText s:id="n001228">Entity Person/Org determined by heuristic on attorney name</nc:DescriptionText>
<nc:SourceIDText s:id="n001229"/>
<nc:SourceText s:id="n001230">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001231">
<ctx:ExchangeElementSelectionMetadataIndicator s:id="n001232">true</ctx:ExchangeElementSelectionMetadataIndicator>
<ctx:LookupPerformedIndicator s:id="n001233">true</ctx:LookupPerformedIndicator>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000644">
<nc:SourceIDText s:id="n001234"/>
<nc:SourceText s:id="n001235">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001236">
<ctx:LookupPerformedIndicator s:id="n001237">true</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001238">
<nc:DescriptionText s:id="n001239">bolded first line of each party block in left column</nc:DescriptionText>
<nc:SourceText s:id="n001240">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001241">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001242">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000723">
<nc:SourceIDText s:id="n001243"/>
<nc:SourceText s:id="n001244">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001245">
<ctx:LookupPerformedIndicator s:id="n001246">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001247">
<nc:SourceText s:id="n001248">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001249">Role</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001250">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001251">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000720">
<nc:SourceIDText s:id="n001252"/>
<nc:SourceText s:id="n001253">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001254">
<ctx:LookupPerformedIndicator s:id="n001255">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001256">
<nc:SourceText s:id="n001257">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001258">Added</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001259">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001260">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000725">
<nc:SourceIDText s:id="n001261"/>
<nc:SourceText s:id="n001262">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001263">
<ctx:LookupPerformedIndicator s:id="n001264">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001265">
<nc:DescriptionText s:id="n001266">Party line with text: Pro Se</nc:DescriptionText>
<nc:SourceText s:id="n001267">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001268">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001269">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001270">
<nc:SourceIDText s:id="n001271"/>
<nc:SourceText s:id="n001272">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001273">
<ctx:LookupPerformedIndicator s:id="n001274">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001275">
<nc:DescriptionText s:id="n001276">lines of attorney blocks in right column</nc:DescriptionText>
<nc:SourceText s:id="n001277">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001278">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001279">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001280">
<nc:SourceIDText s:id="n001281"/>
<nc:SourceText s:id="n001282">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001283">
<ctx:LookupPerformedIndicator s:id="n001284">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001285">
<nc:DescriptionText s:id="n001286">lines of attorney blocks in right column that look like phone numbers</nc:DescriptionText>
<nc:SourceText s:id="n001287">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001288">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001289">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001290">
<nc:SourceIDText s:id="n001291"/>
<nc:SourceText s:id="n001292">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001293">
<ctx:LookupPerformedIndicator s:id="n001294">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001295">
<nc:SourceText s:id="n001296">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001297">Fax</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001298">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001299">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n001300">
<nc:SourceIDText s:id="n001301"/>
<nc:SourceText s:id="n001302">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001303">
<ctx:LookupPerformedIndicator s:id="n001304">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001305">
<nc:DescriptionText s:id="n001306">lines of attorney blocks in right column that look like email</nc:DescriptionText>
<nc:SourceText s:id="n001307">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceComponentText s:id="n001308">Party Screen</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001309">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000952">
<nc:SourceIDText s:id="n001310"/>
<nc:SourceText s:id="n001311">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001312">
<ctx:LookupPerformedIndicator s:id="n001313">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001314">
<nc:SourceText s:id="n001315">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001316">Type</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001317">Associated Cases Page</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001318">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
<ctx:Metadata s:id="n000954">
<nc:SourceIDText s:id="n001319"/>
<nc:SourceText s:id="n001320">Washington Western District Court ECF</nc:SourceText>
<ctx:MetadataAugmentation s:id="n001321">
<ctx:LookupPerformedIndicator s:id="n001322">false</ctx:LookupPerformedIndicator>
<ctx:DataSourceField s:id="n001323">
<nc:DescriptionText s:id="n001324">Follow hyperlinked case number on Associated Cases Page to docket search form, and the full case number of the associated case is auto-populated in the form.</nc:DescriptionText>
<nc:SourceText s:id="n001325">Washington Western District Court ECF</nc:SourceText>
<ctx:DataSourceFieldLabelText s:id="n001326">Case Number</ctx:DataSourceFieldLabelText>
<ctx:DataSourceComponentText s:id="n001327">Docket Sheet Query Form</ctx:DataSourceComponentText>
<ctx:DataSourceFieldPartialUseIndicator s:id="n001328">false</ctx:DataSourceFieldPartialUseIndicator>
</ctx:DataSourceField>
</ctx:MetadataAugmentation>
</ctx:Metadata>
</ctx:CaseResponseMessageAugmentation>
</root-ns:CaseResponseMessage>

 

Multi-Step Searches

When you retrieve search results, you will sometimes find they contain links to dynamically generated searchable resources. For example, name searches will often produce links to cases that were found for that name. These dynamic search resources behave exactly like our static search resources. You can do a GET on the resource for information regarding the search input and output. Then use the standard double-POST protocol to search them.

Note that some types of dynamic search resources require no further input document to do the search. Everything needed to specify the query is embedded in the URL. These searches work like any other, just make two empty POSTs as no input document is needed for the second POST.

Getting Help

REST architecture can be used to embed context-sensitive documentation directly within the application.

CourtTrax has made extensive use of this capability, providing links to input and output schemas and data samples, and other helpful descriptive material.

Our trading partners can, at any point in the development process, directly query our REST system with a Help command to receive context-sensitive definitions and descriptions for each element available to them.

If you ever encounter any issue or difficulty that is not sufficiently addressed by the Help command, you can contact our technical support at any time.

Terms of Use

The terms of use of this web service, any usage limitations, branding requirements, and our limitation of liability for the use of the data provided, may vary depending on the negotiated contract between CourtTrax and the trading partner, and are all pursuant to the written agreement between us. Please contact us if you have any specific questions.

FIND OUT MORE ABOUT :
Electronic Search Case Watches & Name Alerts Document Retrieval Document Recording Web Services Court Data Feeds

Contact Us: Toll-Free (866) 643-7084© 2012 CourtTrax Corporation, 1180 NW Maple Street Suite 302, Issaquah, WA 98027customerservice@courttrax.com