-
Notifications
You must be signed in to change notification settings - Fork 0
/
index112.htm
1607 lines (1597 loc) · 84.3 KB
/
index112.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
xmlns:css="http://macVmlSchemaUri" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta name=Title content="">
<meta name=Keywords content="">
<meta http-equiv=Content-Type content="text/html; charset=x-mac-chinesesimp">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 14">
<meta name=Originator content="Microsoft Word 14">
<link rel=File-List href="%E5%BC%A0%E9%A9%B0_files/filelist.xml">
<link rel=Edit-Time-Data href="%E5%BC%A0%E9%A9%B0_files/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:_x4f5c__x8005_>chi zhang</o:_x4f5c__x8005_>
<o:LastAuthor>chi zhang</o:LastAuthor>
<o:_x4fee__x8ba2_>2</o:_x4fee__x8ba2_>
<o:_x65f6__x95f4__x603b__x8ba1_>1</o:_x65f6__x95f4__x603b__x8ba1_>
<o:_x521b__x5efa_>2014-03-11T06:19:00Z</o:_x521b__x5efa_>
<o:_x4e0a__x6b21__x4fdd__x5b58_>2014-03-11T06:19:00Z</o:_x4e0a__x6b21__x4fdd__x5b58_>
<o:_x9875_>2</o:_x9875_>
<o:_x5355__x8bcd_>509</o:_x5355__x8bcd_>
<o:_x5b57__x7b26__x4e32_>2903</o:_x5b57__x7b26__x4e32_>
<o:_x516c__x53f8_>[email protected]</o:_x516c__x53f8_>
<o:_x884c__x6570_>24</o:_x884c__x6570_>
<o:_x6bb5__x843d_>6</o:_x6bb5__x843d_>
<o:CharactersWithSpaces>3406</o:CharactersWithSpaces>
<o:_x7248__x672c_>14.0</o:_x7248__x672c_>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=themeData href="%E5%BC%A0%E9%A9%B0_files/themedata.xml">
<!--[if gte mso 9]><xml>
<w:WordDocument>
<w:TrackMoves/>
<w:TrackFormatting/>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:DoNotPromoteQF/>
<w:LidThemeOther>EN-US</w:LidThemeOther>
<w:LidThemeAsian>X-NONE</w:LidThemeAsian>
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
<w:Compatibility>
<w:SplitPgBreakAndParaMark/>
<w:UseFELayout/>
</w:Compatibility>
<m:mathPr>
<m:mathFont m:val="Cambria Math"/>
<m:brkBin m:val="before"/>
<m:brkBinSub m:val="--"/>
<m:smallFrac m:val="off"/>
<m:dispDef/>
<m:lMargin m:val="0"/>
<m:rMargin m:val="0"/>
<m:defJc m:val="centerGroup"/>
<m:wrapIndent m:val="1440"/>
<m:intLim m:val="subSup"/>
<m:naryLim m:val="undOvr"/>
</m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
DefSemiHidden="true" DefQFormat="false" DefPriority="99"
LatentStyleCount="276">
<w:LsdException Locked="false" Priority="0" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
<w:LsdException Locked="false" Priority="9" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
<w:LsdException Locked="false" Priority="39" Name="toc 1"/>
<w:LsdException Locked="false" Priority="39" Name="toc 2"/>
<w:LsdException Locked="false" Priority="39" Name="toc 3"/>
<w:LsdException Locked="false" Priority="39" Name="toc 4"/>
<w:LsdException Locked="false" Priority="39" Name="toc 5"/>
<w:LsdException Locked="false" Priority="39" Name="toc 6"/>
<w:LsdException Locked="false" Priority="39" Name="toc 7"/>
<w:LsdException Locked="false" Priority="39" Name="toc 8"/>
<w:LsdException Locked="false" Priority="39" Name="toc 9"/>
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
<w:LsdException Locked="false" Priority="10" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Title"/>
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
<w:LsdException Locked="false" Priority="11" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
<w:LsdException Locked="false" Priority="22" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
<w:LsdException Locked="false" Priority="20" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
<w:LsdException Locked="false" Priority="59" SemiHidden="false"
UnhideWhenUsed="false" Name="Table Grid"/>
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
<w:LsdException Locked="false" Priority="1" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 1"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
<w:LsdException Locked="false" Priority="34" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
<w:LsdException Locked="false" Priority="29" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
<w:LsdException Locked="false" Priority="30" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 1"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 2"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 2"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 3"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 3"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 4"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 4"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 5"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 5"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
<w:LsdException Locked="false" Priority="60" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
<w:LsdException Locked="false" Priority="61" SemiHidden="false"
UnhideWhenUsed="false" Name="Light List Accent 6"/>
<w:LsdException Locked="false" Priority="62" SemiHidden="false"
UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
<w:LsdException Locked="false" Priority="63" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
<w:LsdException Locked="false" Priority="64" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
<w:LsdException Locked="false" Priority="65" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
<w:LsdException Locked="false" Priority="66" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
<w:LsdException Locked="false" Priority="67" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
<w:LsdException Locked="false" Priority="68" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
<w:LsdException Locked="false" Priority="69" SemiHidden="false"
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
<w:LsdException Locked="false" Priority="70" SemiHidden="false"
UnhideWhenUsed="false" Name="Dark List Accent 6"/>
<w:LsdException Locked="false" Priority="71" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
<w:LsdException Locked="false" Priority="72" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
<w:LsdException Locked="false" Priority="73" SemiHidden="false"
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
<w:LsdException Locked="false" Priority="19" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
<w:LsdException Locked="false" Priority="21" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
<w:LsdException Locked="false" Priority="31" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
<w:LsdException Locked="false" Priority="32" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
<w:LsdException Locked="false" Priority="33" SemiHidden="false"
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
</w:LatentStyles>
</xml><![endif]-->
<style>
<!--
/* Font Definitions */
@font-face
{font-family:宋体;
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-charset:80;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
@font-face
{font-family:宋体;
panose-1:2 1 6 0 3 1 1 1 1 1;
mso-font-charset:80;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:3 135135232 16 0 262145 0;}
@font-face
{font-family:Beijing;
panose-1:0 0 0 0 0 0 0 0 0 0;
mso-font-alt:"Times New Roman";
mso-font-charset:0;
mso-generic-font-family:roman;
mso-font-format:other;
mso-font-pitch:variable;
mso-font-signature:0 0 0 0 0 0;}
@font-face
{font-family:"Adobe 仿宋 Std R";
panose-1:2 2 4 0 0 0 0 0 0 0;
mso-font-charset:80;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:1 168761360 22 0 393223 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-unhide:no;
mso-style-qformat:yes;
mso-style-parent:"";
margin:0cm;
margin-bottom:.0001pt;
line-height:normal;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Beijing","serif";
mso-fareast-font-family:"MS 明朝";
mso-fareast-theme-font:minor-fareast;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
a:link, span.MsoHyperlink
{mso-style-noshow:yes;
mso-style-priority:99;
color:#296EBB;
mso-text-animation:none;
text-decoration:none;
text-underline:none;
text-decoration:none;
text-line-through:none;}
a:visited, span.MsoHyperlinkFollowed
{mso-style-noshow:yes;
mso-style-priority:99;
color:black;
mso-text-animation:none;
text-decoration:none;
text-underline:none;
text-decoration:none;
text-line-through:none;}
p
{mso-style-noshow:yes;
mso-style-priority:99;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";}
p.blue, li.blue, div.blue
{mso-style-name:blue;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
color:#256FB8;}
p.cvtitle, li.cvtitle, div.cvtitle
{mso-style-name:cvtitle;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:10.5pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
color:#256FB8;
font-weight:bold;}
p.blue1, li.blue1, div.blue1
{mso-style-name:blue1;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
color:#256FB8;}
p.blue2, li.blue2, div.blue2
{mso-style-name:blue2;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
color:#FF7400;}
p.font14, li.font14, div.font14
{mso-style-name:font14;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:10.5pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
p.graybutton, li.graybutton, div.graybutton
{mso-style-name:graybutton;
mso-style-unhide:no;
mso-margin-top-alt:auto;
margin-right:0cm;
mso-margin-bottom-alt:auto;
margin-left:0cm;
line-height:150%;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
color:#676767;}
p.vtable001, li.vtable001, div.vtable001
{mso-style-name:v_table001;
mso-style-unhide:no;
margin-top:0cm;
margin-right:0cm;
margin-bottom:7.5pt;
margin-left:7.5pt;
line-height:16.5pt;
mso-pagination:widow-orphan;
font-size:9.0pt;
font-family:宋体;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;}
span.blue11
{mso-style-name:blue11;
mso-style-unhide:no;
color:#256FB8;}
span.blue3
{mso-style-name:blue3;
mso-style-unhide:no;
color:#256FB8;}
.MsoChpDefault
{mso-style-type:export-only;
mso-default-props:yes;
font-size:10.0pt;
mso-ansi-font-size:10.0pt;
mso-bidi-font-size:10.0pt;}
@page WordSection1
{size:595.3pt 841.9pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;
mso-header-margin:35.4pt;
mso-footer-margin:35.4pt;
mso-paper-source:0;}
div.WordSection1
{page:WordSection1;}
-->
</style>
<!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin:0cm;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body lang=ZH-CN link="#296EBB" vlink=black style='tab-interval:36.0pt'>
<div class=WordSection1>
<div align=center>
<table class=MsoNormalTable border=0 cellpadding=0 width=778 style='width:778.0pt;
mso-cellspacing:1.5pt;mso-yfti-tbllook:1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td style='padding:0cm 0cm 0cm 0cm'>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=760
style='width:760.0pt;mso-cellspacing:0cm;mso-yfti-tbllook:1184;mso-padding-alt:
0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td valign=top style='border:solid #93B0ED 1.5pt;padding:0cm 0cm 0cm 0cm'>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="97%"
style='width:97.0%;mso-cellspacing:0cm;mso-yfti-tbllook:1184;mso-padding-alt:
4.5pt 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td valign=top style='padding:4.5pt 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><b><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>简历关键字:</span></b><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'> <span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td valign=top style='padding:4.5pt 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>android</span><span style='font-size:9.0pt;line-height:
150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>开发 架构师<span
lang=EN-US> android </span>流媒体 视频通话 多年工作经验 手机软件 极客 开源爱好者<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman";display:none;mso-hide:all'><o:p> </o:p></span></p>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=760
style='width:760.0pt;mso-cellspacing:0cm;mso-yfti-tbllook:1184;mso-padding-alt:
0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td valign=top style='padding:0cm 0cm 0cm 0cm'><span>
<div align=center>
<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0
width="97%" style='width:97.0%;mso-cellspacing:0cm;background:#F5FAFE;
border:solid #3076BC 1.0pt;mso-border-alt:solid #3076BC .75pt;
mso-yfti-tbllook:1184;mso-padding-alt:6.0pt 0cm 0cm 6.0pt'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:30.0pt'>
<td style='border:none;border-bottom:dashed #88B4E0 1.0pt;mso-border-bottom-alt:
dashed #88B4E0 .75pt;padding:6.0pt 0cm 0cm 6.0pt;height:30.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'><img width=14 height=3 id="_x0000_i1025"
src="http://img01.51jobcdn.com/im/2009/resumetemplate/space.gif"
border=0></span><strong><span style='font-size:19.0pt;line-height:150%;
font-family:宋体'></span>张驰</span></strong><span style='font-size:19.0pt;
line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>
<span lang=EN-US><span style='mso-field-code:" HYPERLINK \0022http\:\/\/my\.51job\.com\/payservice\/verify\/introduce\.php\0022 \\o \0022您未通过诚信认证,通过专业认证后将点亮该图标\0022 \\t \0022_blank\0022 "'><span
style='color:#296EBB'><img width=34 height=34 id="_x0000_i1026"
src="http://img01.51jobcdn.com/im/2009/verify/ico_gou.gif" border=0></span></span></span></span><span
lang=EN-US style='font-size:9.0pt;line-height:150%;font-family:宋体;
mso-bidi-font-family:"Times New Roman"'><img width=17 height=3
id="_x0000_i1027"
src="http://img01.51jobcdn.com/im/2009/resumetemplate/space.gif"
border=0><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
<td valign=top style='border:none;padding:6.0pt 0cm 0cm 6.0pt'>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="100%" style='width:100.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:26.0pt'>
<td colspan=4 style='padding:0cm 0cm 0cm 0cm;height:26.0pt'>
<p class=MsoNormal style='line-height:150%'><span class=blue11><b><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>五年以上工作经验<span lang=EN-US> | </span>男<span
lang=EN-US> | 26</span>岁<span lang=EN-US>(1987</span>年<span
lang=EN-US>4</span>月<span lang=EN-US>24</span>日<span lang=EN-US>) </span></span></b></span><span
lang=EN-US style='font-size:9.0pt;line-height:150%;font-family:宋体;
mso-bidi-font-family:"Times New Roman"'><o:p></o:p></span></p>
</td>
<td width="17%" rowspan=4 style='width:17.0%;padding:0cm 0cm 0cm 0cm;
height:26.0pt'>
<p class=MsoNormal align=center style='text-align:center;line-height:
150%'><span lang=EN-US style='font-size:9.0pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'><img width=92
height=112 id="_x0000_i1028"
src="http://img01.51jobcdn.com/im/2009/resumetemplate/resume_match_manpic.gif">(ID:63415310)
<o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:20.0pt'>
<td width="10%" style='width:10.0%;padding:0cm 0cm 0cm 0cm;
height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>居住地:<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width="42%" style='width:42.0%;padding:0cm 0cm 0cm 0cm;
height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>北京<span
lang=EN-US>-</span>朝阳区<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width="11%" style='width:11.0%;padding:0cm 0cm 0cm 0cm;
height:20.0pt'></td>
<td width="20%" style='width:20.0%;padding:0cm 0cm 0cm 0cm;
height:20.0pt'></td>
</tr>
<tr style='mso-yfti-irow:2;height:20.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>电 话:<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
<td colspan=3 style='padding:0cm 0cm 0cm 0cm;height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>13439995259</span><span style='font-size:9.0pt;
line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>(手机)
<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes;height:20.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>E-mail</span><span style='font-size:9.0pt;
line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>:<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
<td colspan=3 style='padding:0cm 0cm 0cm 0cm;height:20.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'><a
href="mailto:[email protected]%0A%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%09%20%20%20">[email protected]
</a><o:p></o:p></span></p>
</td>
<span>
</tr>
<![if !supportMisalignedColumns]>
<tr height=0>
<td width=73 style='border:none'></td>
<td width=306 style='border:none'></td>
<td width=80 style='border:none'></td>
<td width=146 style='border:none'></td>
<td width=124 style='border:none'></td>
</tr>
<![endif]>
</table>
</td>
</tr>
</table>
</div>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman";display:none;mso-hide:all'><o:p> </o:p></span></p>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="97%" style='width:97.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td width="45%" style='width:45.0%;padding:0cm 0cm 0cm 0cm'>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="100%" style='width:100.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 6.0pt'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td colspan=2 style='padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
class=blue3><b><span style='font-size:10.5pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'>最近工作</span></b></span><span
class=blue3><span style='font-size:10.5pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'> </span></span><b><span
lang=EN-US style='font-size:9.0pt;line-height:150%;font-family:宋体;
mso-bidi-font-family:"Times New Roman";color:#676767'>[ 1</span></b><b><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman";color:#676767'>年<span lang=EN-US>5</span>个月<span
lang=EN-US>] </span></span></b><span lang=EN-US style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1'>
<td width=59 style='width:59.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>公 司:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width=230 style='width:230.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>凡想知行网络科技<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2'>
<td style='padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>行 业:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td style='padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>互联网<span lang=EN-US>/</span>电子商务<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes'>
<td style='padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>职 位:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td style='padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>整体系统的架构以及手机端的架构设计实现<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
</table>
</td>
<td width=43 style='width:43.0pt;padding:0cm 0cm 0cm 0cm'></td>
<td width="49%" style='width:49.0%;padding:0cm 0cm 0cm 0cm'>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="100%" style='width:100.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 7.5pt'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td colspan=2 style='padding:0cm 0cm 0cm 7.5pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
class=blue3><b><span style='font-size:10.5pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'>最高学历</span></b></span><span
class=blue3><span style='font-size:10.5pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'> </span></span><span
lang=EN-US style='font-size:9.0pt;line-height:150%;font-family:宋体;
mso-bidi-font-family:"Times New Roman"'><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1'>
<td width=59 style='width:59.0pt;padding:0cm 0cm 0cm 7.5pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>学 历:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width=230 style='width:230.0pt;padding:0cm 0cm 0cm 7.5pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>本科<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2'>
<td style='padding:0cm 0cm 0cm 7.5pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>专 业:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td style='padding:0cm 0cm 0cm 7.5pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>软件工程嵌入式<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes;height:22.0pt'>
<td style='padding:0cm 0cm 0cm 7.5pt;height:22.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>学 校:<span lang=EN-US><o:p></o:p></span></span></p>
</td>
<td style='padding:0cm 0cm 0cm 7.5pt;height:22.0pt'>
<p class=MsoNormal style='margin-top:6.0pt;margin-right:0cm;
margin-bottom:6.0pt;margin-left:0cm;line-height:150%'><span
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>哈尔滨理工大学<span lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div class=MsoNormal align=center style='text-align:center;line-height:
150%'><span lang=EN-US style='font-size:9.0pt;line-height:150%;
font-family:宋体;mso-bidi-font-family:"Times New Roman"'>
<hr size=2 width="100%" align=center>
</span></div>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="97%" style='width:97.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 6.0pt'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td width=97 style='width:97.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>目前年薪:<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width=188 style='width:188.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'>15-30</span><span style='font-size:9.0pt;line-height:
150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>万人民币<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
<td width=80 style='width:80.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'> <o:p></o:p></span></p>
</td>
<td width=219 style='width:219.0pt;padding:0cm 0cm 0cm 6.0pt'>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman"'> <o:p></o:p></span></p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman";display:none;mso-hide:all'><o:p> </o:p></span></p>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="97%" style='width:97.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td style='padding:3.75pt 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><b><span style='font-size:
10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman";
color:#256FB8'>自我评价<span lang=EN-US><o:p></o:p></span></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:4.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:4.0pt'>
<p class=MsoNormal align=center style='text-align:center;mso-line-height-alt:
4.0pt'><span lang=EN-US style='font-size:9.0pt;font-family:宋体;
mso-bidi-font-family:"Times New Roman"'><img border=0 width=34
height=6 id="_x0000_i1031"
src="http://img01.51jobcdn.com/im/2009/resumetemplate/line1_1.gif"><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:10.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:10.0pt'></td>
</tr>
<tr style='mso-yfti-irow:3'>
<td valign=top style='padding:0cm 0cm 0cm 0cm' id="Cur_Val">
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>资深<span
lang=EN-US>android</span>开发人员<span lang=EN-US>(3</span>年以上<span
lang=EN-US>),</span>资深软件开发人员,独立和团队均有开发经验。尤其擅长底层开发。在企业从事软件研发和软件工程工作达五年<span
lang=EN-US>, </span>但独立编程已经有十余年之久。对流行开源软件<span lang=EN-US>,</span>手机软件(尤其<span
lang=EN-US>android</span>)<span lang=EN-US>,</span>软件工程有丰富的经验。曾独自负责需求和设计并独自个人完成<span
lang=EN-US>android</span>流媒体通讯平台的完整功能。包括:可视(音视频)电话功能实现和网络媒体采集、播放、共享平台,整个会话状态的设计实现和音视频数据的全程转换和编解码以及网络资源的获取分析播放分享的设计实现(移动公司定制,已验收)。此外,更独立开发过嵌入式浏览器、小型服务器、各种类型的商务网站等,全程独自负责需求和设计。团队主持开发过大型<span
lang=EN-US>sns</span>社交软件以及其他许多互联网以及终端软件等。主持并设计过国内某大型品牌应用的全程流程的完整功能性能测试(已通过验收,应用已上市)。喜爱智能手机编程,尤其喜爱<span
lang=EN-US>android</span>编程开发,曾开发过很多商用<span lang=EN-US>android</span>应用,并且下载量不低。<span
lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes;height:10.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:10.0pt'></td>
</tr>
</table>
</div>
<p class=MsoNormal style='line-height:150%'><span lang=EN-US
style='font-size:9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:
"Times New Roman";display:none;mso-hide:all'><o:p> </o:p></span></p>
<div align=center>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="97%" style='width:97.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td style='padding:3.75pt 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><b><span style='font-size:
10.5pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman";
color:#256FB8'>求职意向<span lang=EN-US><o:p></o:p></span></span></b></p>
</td>
</tr>
<tr style='mso-yfti-irow:1;height:4.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:4.0pt'>
<p class=MsoNormal align=center style='text-align:center;mso-line-height-alt:
4.0pt'><span lang=EN-US style='font-size:9.0pt;font-family:宋体;
mso-bidi-font-family:"Times New Roman"'><img border=0 width=34
height=6 id="_x0000_i1032"
src="http://img01.51jobcdn.com/im/2009/resumetemplate/line1_1.gif"><o:p></o:p></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2;height:10.0pt'>
<td style='padding:0cm 0cm 0cm 0cm;height:10.0pt'></td>
</tr>
<tr style='mso-yfti-irow:3'>
<td style='padding:0cm 0cm 0cm 0cm'>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
width="100%" style='width:100.0%;mso-cellspacing:0cm;mso-yfti-tbllook:
1184;mso-padding-alt:0cm 0cm 0cm 0cm'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes'>
<td style='padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>到岗时间:
<span class=text><span style='font-family:宋体'>一个月内</span></span> <span
lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:1'>
<td style='padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>工作性质:
<span class=text><span style='font-family:宋体'>全职</span></span> <span
lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:2'>
<td style='padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>希望行业:
<span class=text><span style='font-family:宋体'>计算机软件</span></span> <span
lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:3'>
<td style='padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>目标地点:
<span class=text><span style='font-family:宋体'>北京</span></span> <span
lang=EN-US><o:p></o:p></span></span></p>
</td>
</tr>
<tr style='mso-yfti-irow:4'>
<td style='padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal style='line-height:150%'><span style='font-size:
9.0pt;line-height:150%;font-family:宋体;mso-bidi-font-family:"Times New Roman"'>期望月薪:
<span class=text><span lang=EN-US style='font-family:宋体'>20000-29999/</span></span><span
class=text><span style='font-family:宋体'>月</span></span> <span
lang=EN-US><o:p></o:p></span></span></p>
</td>