xref: /aoo41x/main/svx/source/dialog/ctredlin.src (revision 09a1d057)
1*09a1d057SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*09a1d057SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*09a1d057SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*09a1d057SAndrew Rist * distributed with this work for additional information
6*09a1d057SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*09a1d057SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*09a1d057SAndrew Rist * "License"); you may not use this file except in compliance
9*09a1d057SAndrew Rist * with the License.  You may obtain a copy of the License at
10*09a1d057SAndrew Rist *
11*09a1d057SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*09a1d057SAndrew Rist *
13*09a1d057SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*09a1d057SAndrew Rist * software distributed under the License is distributed on an
15*09a1d057SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*09a1d057SAndrew Rist * KIND, either express or implied.  See the License for the
17*09a1d057SAndrew Rist * specific language governing permissions and limitations
18*09a1d057SAndrew Rist * under the License.
19*09a1d057SAndrew Rist *
20*09a1d057SAndrew Rist *************************************************************/
21*09a1d057SAndrew Rist
22*09a1d057SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "ctredlin.hrc"
25cdf0e10cSrcweir#include "helpid.hrc"
26cdf0e10cSrcweir
27cdf0e10cSrcweir#define MASKCOLOR	MaskColor = Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; } ;
28cdf0e10cSrcweir
29cdf0e10cSrcweirTabPage SID_REDLIN_FILTER_PAGE
30cdf0e10cSrcweir{
31cdf0e10cSrcweir	String STR_FILTER
32cdf0e10cSrcweir	{
33cdf0e10cSrcweir		Text [ en-US ] = "Filter" ;
34cdf0e10cSrcweir	};
35cdf0e10cSrcweir	HelpId = HID_REDLINING_FILTER_PAGE ;
36cdf0e10cSrcweir	OutputSize = TRUE ;
37cdf0e10cSrcweir	SVLook = TRUE ;
38cdf0e10cSrcweir    Size = MAP_APPFONT ( 261 , 86 ) ;
39cdf0e10cSrcweir	Hide = TRUE ;
40cdf0e10cSrcweir	CheckBox CB_DATE
41cdf0e10cSrcweir	{
42cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 8 ) ;
43cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 10 ) ;
44cdf0e10cSrcweir		TabStop = TRUE ;
45cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_CB_DATE ;
46cdf0e10cSrcweir		Text [ en-US ] = "~Date" ;
47cdf0e10cSrcweir	};
48cdf0e10cSrcweir	ListBox LB_DATE
49cdf0e10cSrcweir	{
50cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_LB_DATE ;
51cdf0e10cSrcweir		Border = TRUE ;
52cdf0e10cSrcweir		Disable = TRUE ;
53cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 6 ) ;
54cdf0e10cSrcweir        Size = MAP_APPFONT ( 78 , 99 ) ;
55cdf0e10cSrcweir		TabStop = TRUE ;
56cdf0e10cSrcweir		DropDown = TRUE ;
57cdf0e10cSrcweir		StringList [ en-US ] =
58cdf0e10cSrcweir		{
59cdf0e10cSrcweir			< "earlier than" ; Default ; > ;
60cdf0e10cSrcweir			< "since" ; Default ; > ;
61cdf0e10cSrcweir			< "equal to " ; Default ; > ;
62cdf0e10cSrcweir			< "not equal to" ; Default ; > ;
63cdf0e10cSrcweir			< "between" ; Default ; > ;
64cdf0e10cSrcweir			< "since saving" ; Default ; > ;
65cdf0e10cSrcweir		};
66cdf0e10cSrcweir	};
67cdf0e10cSrcweir	DateField DF_DATE
68cdf0e10cSrcweir	{
69cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_DF_DATE ;
70cdf0e10cSrcweir		Disable = TRUE ;
71cdf0e10cSrcweir		Border = TRUE ;
72cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144 , 6 ) ;
73cdf0e10cSrcweir        Size = MAP_APPFONT ( 57 , 12 ) ;
74cdf0e10cSrcweir		TabStop = TRUE ;
75cdf0e10cSrcweir		Spin = TRUE ;
76cdf0e10cSrcweir		Repeat = TRUE ;
77cdf0e10cSrcweir		Minimum = Date
78cdf0e10cSrcweir		{
79cdf0e10cSrcweir			Year = 1985 ;
80cdf0e10cSrcweir			Month = 12 ;
81cdf0e10cSrcweir			Day = 31 ;
82cdf0e10cSrcweir		};
83cdf0e10cSrcweir		Maximum = Date
84cdf0e10cSrcweir		{
85cdf0e10cSrcweir			Year = 2050 ;
86cdf0e10cSrcweir			Month = 12 ;
87cdf0e10cSrcweir			Day = 31 ;
88cdf0e10cSrcweir		};
89cdf0e10cSrcweir	};
90cdf0e10cSrcweir	TimeField TF_DATE
91cdf0e10cSrcweir	{
92cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_TF_DATE ;
93cdf0e10cSrcweir		Disable = TRUE ;
94cdf0e10cSrcweir		Border = TRUE ;
95cdf0e10cSrcweir        Pos = MAP_APPFONT ( 203 , 6 ) ;
96cdf0e10cSrcweir        Size = MAP_APPFONT ( 35 , 12 ) ;
97cdf0e10cSrcweir		TabStop = TRUE ;
98cdf0e10cSrcweir		Repeat = TRUE ;
99cdf0e10cSrcweir		Spin = TRUE ;
100cdf0e10cSrcweir	};
101cdf0e10cSrcweir	ImageButton IB_CLOCK
102cdf0e10cSrcweir	{
103cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_IB_CLOCK ;
104cdf0e10cSrcweir		Disable = TRUE ;
105cdf0e10cSrcweir        Pos = MAP_APPFONT ( 240 , 5 ) ;
106cdf0e10cSrcweir        Size = MAP_APPFONT ( 13 , 15 ) ;
107cdf0e10cSrcweir		TabStop = TRUE ;
108cdf0e10cSrcweir		ButtonImage = Image
109cdf0e10cSrcweir		{
110cdf0e10cSrcweir			ImageBitmap = Bitmap { File = "time.bmp" ; };
111cdf0e10cSrcweir			MASKCOLOR
112cdf0e10cSrcweir		};
113cdf0e10cSrcweir		// IAccessibility2 implementation 2009. ------
114cdf0e10cSrcweir		//QuickHelpText [ en-US ] = "Set Date/Time" ;
115cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Set Start Date/Time" ;
116cdf0e10cSrcweir		// ------ IAccessibility2 implementation 2009.
117cdf0e10cSrcweir	};
118cdf0e10cSrcweir	FixedText FT_DATE2
119cdf0e10cSrcweir	{
120cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 24 ) ;
121cdf0e10cSrcweir        Size = MAP_APPFONT ( 78 , 8 ) ;
122cdf0e10cSrcweir        Right = TRUE ;
123cdf0e10cSrcweir		Disable = TRUE ;
124cdf0e10cSrcweir		Text [ en-US ] = "and" ;
125cdf0e10cSrcweir	};
126cdf0e10cSrcweir	DateField DF_DATE2
127cdf0e10cSrcweir	{
128cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_DF_DATE2 ;
129cdf0e10cSrcweir		Border = TRUE ;
130cdf0e10cSrcweir		Disable = TRUE ;
131cdf0e10cSrcweir        Pos = MAP_APPFONT ( 144 , 22 ) ;
132cdf0e10cSrcweir        Size = MAP_APPFONT ( 57 , 12 ) ;
133cdf0e10cSrcweir		TabStop = TRUE ;
134cdf0e10cSrcweir		Spin = TRUE ;
135cdf0e10cSrcweir		Repeat = TRUE ;
136cdf0e10cSrcweir		Minimum = Date
137cdf0e10cSrcweir		{
138cdf0e10cSrcweir			Year = 1985 ;
139cdf0e10cSrcweir			Month = 12 ;
140cdf0e10cSrcweir			Day = 31 ;
141cdf0e10cSrcweir		};
142cdf0e10cSrcweir		Maximum = Date
143cdf0e10cSrcweir		{
144cdf0e10cSrcweir			Year = 2050 ;
145cdf0e10cSrcweir			Month = 12 ;
146cdf0e10cSrcweir			Day = 31 ;
147cdf0e10cSrcweir		};
148cdf0e10cSrcweir	};
149cdf0e10cSrcweir	TimeField TF_DATE2
150cdf0e10cSrcweir	{
151cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_TF_DATE2 ;
152cdf0e10cSrcweir		Border = TRUE ;
153cdf0e10cSrcweir		Disable = TRUE ;
154cdf0e10cSrcweir        Pos = MAP_APPFONT ( 203 , 22 ) ;
155cdf0e10cSrcweir		Size = MAP_APPFONT ( 35 , 12 ) ;
156cdf0e10cSrcweir		TabStop = TRUE ;
157cdf0e10cSrcweir		Spin = TRUE ;
158cdf0e10cSrcweir		Repeat = TRUE ;
159cdf0e10cSrcweir	};
160cdf0e10cSrcweir	ImageButton IB_CLOCK2
161cdf0e10cSrcweir	{
162cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_IB_CLOCK2 ;
163cdf0e10cSrcweir		Disable = TRUE ;
164cdf0e10cSrcweir        Pos = MAP_APPFONT ( 240 , 21 ) ;
165cdf0e10cSrcweir        Size = MAP_APPFONT ( 13 , 15 ) ;
166cdf0e10cSrcweir		TabStop = TRUE ;
167cdf0e10cSrcweir		ButtonImage = Image
168cdf0e10cSrcweir		{
169cdf0e10cSrcweir			ImageBitmap = Bitmap { File = "time.bmp" ; };
170cdf0e10cSrcweir			MASKCOLOR
171cdf0e10cSrcweir		};
172cdf0e10cSrcweir		// IAccessibility2 implementation 2009. ------
173cdf0e10cSrcweir		//QuickHelpText [ en-US ] = "Set Date/Time" ;
174cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Set End Date/Time" ;
175cdf0e10cSrcweir		// ------ IAccessibility2 implementation 2009.
176cdf0e10cSrcweir	};
177cdf0e10cSrcweir	CheckBox CB_AUTOR
178cdf0e10cSrcweir	{
179cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_CB_AUTOR ;
180cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 40 ) ;
181cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 10 ) ;
182cdf0e10cSrcweir		TabStop = TRUE ;
183cdf0e10cSrcweir		Text [ en-US ] = "~Author" ;
184cdf0e10cSrcweir	};
185cdf0e10cSrcweir	ListBox LB_AUTOR
186cdf0e10cSrcweir	{
187cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_LB_AUTOR ;
188cdf0e10cSrcweir		Border = TRUE ;
189cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 38 ) ;
190cdf0e10cSrcweir        Size = MAP_APPFONT ( 178 , 100 ) ;
191cdf0e10cSrcweir		TabStop = TRUE ;
192cdf0e10cSrcweir		Disable = TRUE ;
193cdf0e10cSrcweir		DropDown = TRUE ;
194cdf0e10cSrcweir	};
195cdf0e10cSrcweir	CheckBox CB_RANGE
196cdf0e10cSrcweir	{
197cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_CB_RANGE ;
198cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 56 ) ;
199cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 10 ) ;
200cdf0e10cSrcweir		TabStop = TRUE ;
201cdf0e10cSrcweir		Text [ en-US ] = "~Range" ;
202cdf0e10cSrcweir	};
203cdf0e10cSrcweir	Edit ED_RANGE
204cdf0e10cSrcweir	{
205cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_ED_RANGE ;
206cdf0e10cSrcweir		Disable = TRUE ;
207cdf0e10cSrcweir		Border = TRUE ;
208cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 54 ) ;
209cdf0e10cSrcweir        Size = MAP_APPFONT ( 178 , 12 ) ;
210cdf0e10cSrcweir		TabStop = TRUE ;
211cdf0e10cSrcweir	};
212cdf0e10cSrcweir	String STR_ACTION
213cdf0e10cSrcweir	{
214cdf0e10cSrcweir		Text [ en-US ] = "A~ction" ;
215cdf0e10cSrcweir	};
216cdf0e10cSrcweir	ListBox LB_ACTION
217cdf0e10cSrcweir	{
218cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_LB_ACTION ;
219cdf0e10cSrcweir		Border = TRUE ;
220cdf0e10cSrcweir		Hide = TRUE ;
221cdf0e10cSrcweir		Disable = TRUE ;
222cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 54 ) ;
223cdf0e10cSrcweir        Size = MAP_APPFONT ( 178 , 100 ) ;
224cdf0e10cSrcweir		TabStop = TRUE ;
225cdf0e10cSrcweir		DropDown = TRUE ;
226cdf0e10cSrcweir	};
227cdf0e10cSrcweir	PushButton BTN_REF
228cdf0e10cSrcweir	{
229cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_BTN_REF ;
230cdf0e10cSrcweir        Pos = MAP_APPFONT ( 240 , 54 ) ;
231cdf0e10cSrcweir		Size = MAP_APPFONT ( 12 , 12 ) ;
232cdf0e10cSrcweir		Disable = TRUE ;
233cdf0e10cSrcweir		TabStop = TRUE ;
234cdf0e10cSrcweir		QuickHelpText [ en-US ] = "Set Reference" ;
235cdf0e10cSrcweir		Text [ en-US ] = "..." ;
236cdf0e10cSrcweir	};
237cdf0e10cSrcweir	CheckBox CB_COMMENT
238cdf0e10cSrcweir	{
239cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_CB_COMMENT ;
240cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 72 ) ;
241cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 10 ) ;
242cdf0e10cSrcweir		TabStop = TRUE ;
243cdf0e10cSrcweir		Text [ en-US ] = "Comment";
244cdf0e10cSrcweir	};
245cdf0e10cSrcweir	Edit ED_COMMENT
246cdf0e10cSrcweir	{
247cdf0e10cSrcweir		HelpId = HID_REDLINING_FILTER_ED_COMMENT ;
248cdf0e10cSrcweir		Disable = TRUE ;
249cdf0e10cSrcweir		Border = TRUE ;
250cdf0e10cSrcweir        Pos = MAP_APPFONT ( 60 , 70 ) ;
251cdf0e10cSrcweir        Size = MAP_APPFONT ( 178 , 12 ) ;
252cdf0e10cSrcweir		TabStop = TRUE ;
253cdf0e10cSrcweir	};
254cdf0e10cSrcweir    Image IMG_TIME_H
255cdf0e10cSrcweir    {
256cdf0e10cSrcweir        ImageBitmap = Bitmap { File = "time_h.bmp" ; };
257cdf0e10cSrcweir        MASKCOLOR
258cdf0e10cSrcweir    };
259cdf0e10cSrcweir    	/*IAccessibility2 Implementation 2009-----*/
260cdf0e10cSrcweir	String STR_DATE_COMBOX
261cdf0e10cSrcweir	{
262cdf0e10cSrcweir		Text [ en-US ] = "Date Condition" ;
263cdf0e10cSrcweir	};
264cdf0e10cSrcweir	String STR_DATE_SPIN
265cdf0e10cSrcweir	{
266cdf0e10cSrcweir		Text [ en-US ] = "Start Date" ;
267cdf0e10cSrcweir	};
268cdf0e10cSrcweir	String STR_DATE_SPIN1
269cdf0e10cSrcweir	{
270cdf0e10cSrcweir		Text [ en-US ] = "End Date" ;
271cdf0e10cSrcweir	};
272cdf0e10cSrcweir	String STR_DATE_TIME_SPIN
273cdf0e10cSrcweir	{
274cdf0e10cSrcweir		Text [ en-US ] = "Start Time" ;
275cdf0e10cSrcweir	};
276cdf0e10cSrcweir	String STR_DATE_TIME_SPIN1
277cdf0e10cSrcweir	{
278cdf0e10cSrcweir		Text [ en-US ] = "End Time" ;
279cdf0e10cSrcweir	};
280cdf0e10cSrcweir	/*-----IAccessibility2 Implementation 2009*/
281cdf0e10cSrcweir};
282cdf0e10cSrcweirTabPage SID_REDLIN_VIEW_PAGE
283cdf0e10cSrcweir{
284cdf0e10cSrcweir	HelpId = HID_REDLINING_VIEW_PAGE ;
285cdf0e10cSrcweir	OutputSize = TRUE ;
286cdf0e10cSrcweir	SVLook = TRUE ;
287cdf0e10cSrcweir	Size = MAP_APPFONT ( 270 , 126 ) ;
288cdf0e10cSrcweir	Hide = TRUE ;
289cdf0e10cSrcweir	String STR_VIEW
290cdf0e10cSrcweir	{
291cdf0e10cSrcweir		Text [ en-US ] = "List" ;
292cdf0e10cSrcweir	};
293cdf0e10cSrcweir	Control DG_VIEW
294cdf0e10cSrcweir	{
295cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_DG_VIEW ;
296cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3 , 1 ) ;
297cdf0e10cSrcweir		Size = MAP_APPFONT ( 221 , 65 ) ;
298cdf0e10cSrcweir		Border = TRUE ;
299cdf0e10cSrcweir	};
300cdf0e10cSrcweir	PushButton PB_ACCEPT
301cdf0e10cSrcweir	{
302cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_PB_ACCEPT ;
303cdf0e10cSrcweir		Pos = MAP_APPFONT ( 3 , 69 ) ;
304cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
305cdf0e10cSrcweir		Text [ en-US ] = "~Accept" ;
306cdf0e10cSrcweir	};
307cdf0e10cSrcweir	PushButton PB_REJECT
308cdf0e10cSrcweir	{
309cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_PB_REJECT ;
310cdf0e10cSrcweir		Pos = MAP_APPFONT ( 69 , 69 ) ;
311cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
312cdf0e10cSrcweir		Text [ en-US ] = "~Reject" ;
313cdf0e10cSrcweir	};
314cdf0e10cSrcweir	PushButton PB_ACCEPTALL
315cdf0e10cSrcweir	{
316cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_PB_ACCEPTALL ;
317cdf0e10cSrcweir		Pos = MAP_APPFONT ( 141 , 69 ) ;
318cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
319cdf0e10cSrcweir		Text [ en-US ] = "A~ccept All" ;
320cdf0e10cSrcweir	};
321cdf0e10cSrcweir	PushButton PB_REJECTALL
322cdf0e10cSrcweir	{
323cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_PB_REJECTALL ;
324cdf0e10cSrcweir		Pos = MAP_APPFONT ( 207 , 69 ) ;
325cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
326cdf0e10cSrcweir		Text [ en-US ] = "R~eject All" ;
327cdf0e10cSrcweir	};
328cdf0e10cSrcweir
329cdf0e10cSrcweir	PushButton PB_UNDO
330cdf0e10cSrcweir	{
331cdf0e10cSrcweir		HelpId = HID_REDLINING_VIEW_PB_UNDO ;
332cdf0e10cSrcweir		Hide = TRUE;
333cdf0e10cSrcweir		Pos  = MAP_APPFONT ( 279 , 69 ) ;
334cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
335cdf0e10cSrcweir		Text [ en-US ] = "Undo";
336cdf0e10cSrcweir	};
337cdf0e10cSrcweir	String STR_TITLE1
338cdf0e10cSrcweir	{
339cdf0e10cSrcweir		Text [ en-US ] = "Action" ;
340cdf0e10cSrcweir	};
341cdf0e10cSrcweir	String STR_TITLE2
342cdf0e10cSrcweir	{
343cdf0e10cSrcweir		Text [ en-US ] = "Position" ;
344cdf0e10cSrcweir	};
345cdf0e10cSrcweir	String STR_TITLE3
346cdf0e10cSrcweir	{
347cdf0e10cSrcweir		Text [ en-US ] = "Author" ;
348cdf0e10cSrcweir	};
349cdf0e10cSrcweir	String STR_TITLE4
350cdf0e10cSrcweir	{
351cdf0e10cSrcweir		Text [ en-US ] = "Date" ;
352cdf0e10cSrcweir	};
353cdf0e10cSrcweir	String STR_TITLE5
354cdf0e10cSrcweir	{
355cdf0e10cSrcweir		Text [ en-US ] = "Comment" ;
356cdf0e10cSrcweir	};
35700d11a91SMathias Bauer	String STR_TREE
35800d11a91SMathias Bauer	{
35900d11a91SMathias Bauer		Text [ en-US ] = "Changes" ;
36000d11a91SMathias Bauer	};
361cdf0e10cSrcweir};
362cdf0e10cSrcweir
363cdf0e10cSrcweir
364cdf0e10cSrcweir
365cdf0e10cSrcweir
366cdf0e10cSrcweir
367cdf0e10cSrcweir
368cdf0e10cSrcweir
369cdf0e10cSrcweir
370cdf0e10cSrcweir
371cdf0e10cSrcweir
372cdf0e10cSrcweir
373cdf0e10cSrcweir
374cdf0e10cSrcweir
375cdf0e10cSrcweir
376cdf0e10cSrcweir
377cdf0e10cSrcweir
378cdf0e10cSrcweir
379cdf0e10cSrcweir
380cdf0e10cSrcweir
381cdf0e10cSrcweir
382cdf0e10cSrcweir
383cdf0e10cSrcweir
384cdf0e10cSrcweir
385cdf0e10cSrcweir
386cdf0e10cSrcweir
387cdf0e10cSrcweir
388cdf0e10cSrcweir
389cdf0e10cSrcweir
390cdf0e10cSrcweir
391cdf0e10cSrcweir
392cdf0e10cSrcweir
393cdf0e10cSrcweir
394