-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml
3410 lines (3410 loc) · 100 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.takobear.tw/2015/11/20/%25e3%2580%2590camr%25e3%2580%2591%25e5%258c%25af%25e5%2585%25a5%25e8%25b2%25bc%25e5%259c%2596%25e6%2595%2599%25e5%25ad%25b8/</loc>
<lastmod>2015-11-20T16:21:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/09/04/%25e3%2580%2590camr%25e3%2580%2591-import-stickers-tutorial/</loc>
<lastmod>2015-09-04T18:40:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/24/%25e6%2589%258b%25e6%258c%2581%25e5%25bc%258f%25e6%258e%259b%25e7%2587%2599%25e6%25a9%259f-%25e6%2597%25a5%25e6%259c%25actwinbird-%25e8%2588%2587-%25e9%25a3%259b%25e5%2588%25a9%25e6%25b5%25a6gc310-%25e5%25a4%25a7%25e5%25b0%258d%25e6%25b1%25ba%25ef%25bc%2581/</loc>
<lastmod>2015-08-24T16:22:00+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/19/neogence-%25e9%259c%2593%25e6%25b7%25a8%25e6%2580%259d%25e9%259f%25b3%25e6%25b3%25a2%25e6%25b7%25a8%25e5%258c%2596%25e6%25bd%2594%25e8%2586%259a%25e5%2584%2580-milli-2-%25e6%25b8%2585%25e9%2599%25a4%25e7%25b2%2589%25e5%2588%25ba%25e8%25b6%2585%25e7%25b0%25a1%25e6%2598%2593%25ef%25bc%2581/</loc>
<lastmod>2015-08-19T01:39:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/18/%25e6%25a0%25bc%25e6%259e%2597-grimm-%25e9%25a1%259b%25e8%25a6%2586%25e4%25bd%25a0%25e7%259a%2584%25e7%25ab%25a5%25e8%25a9%25b1%25e6%2595%2585%25e4%25ba%258b/</loc>
<lastmod>2015-08-18T16:58:26+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/18/%25e9%2587%2591%25e8%25a3%259d%25e5%25be%258b%25e5%25b8%25ab-suits-%25e8%25a5%25bf%25e8%25a3%259d%25e6%258e%25a7%25e4%25b8%258d%25e8%2583%25bd%25e4%25b8%258d%25e7%259c%258b/</loc>
<lastmod>2015-08-18T16:47:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/18/%25e9%2596%2583%25e9%259b%25bb%25e4%25bf%25a0-the-flash/</loc>
<lastmod>2015-08-18T16:24:47+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/17/%25e6%25b3%25b0%25e5%259c%258b%25e6%259b%25bc%25e8%25b0%25b7%25e5%25a4%25a7%25e7%2588%2586%25e7%2582%25b8%25ef%25bc%2581%25e7%25ac%25ac%25e4%25b8%2580%25e6%2589%258b%25e7%259b%25b8%25e9%2597%259c%25e6%2596%25b0%25e8%2581%259e%25e6%2595%25b4%25e7%2590%2586/</loc>
<lastmod>2015-08-17T21:31:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/17/%25e9%25ab%2598%25e8%25ad%259a%25e5%25b8%2582-gotham/</loc>
<lastmod>2015-08-17T20:20:21+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/17/%25e5%2586%25b0%25e8%2588%2587%25e7%2581%25ab%25e4%25b9%258b%25e6%25ad%258c-game-of-thrones/</loc>
<lastmod>2015-08-17T19:58:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/16/%25e7%25a5%259e%25e7%259b%25be%25e5%25b1%2580%25e7%2589%25b9%25e5%25b7%25a5-agents-of-s-h-i-e-l-d/</loc>
<lastmod>2015-08-16T21:54:46+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/16/%25e5%25a4%259c%25e9%25ad%2594%25e4%25bf%25a0-daredevil/</loc>
<lastmod>2015-08-16T21:18:50+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/14/house-of-cards-%25e7%25b4%2599%25e7%2589%258c%25e5%25b1%258b/</loc>
<lastmod>2015-08-14T18:48:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/14/silicon-valley-%25e7%259f%25bd%25e8%25b0%25b7%25e7%25be%25a4%25e7%259e%258e%25e5%2582%25b3/</loc>
<lastmod>2015-08-14T18:00:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/13/%25e5%25a4%25a9%25e6%25b4%25a5%25e5%25a4%25a7%25e7%2588%2586%25e7%2582%25b8/</loc>
<lastmod>2015-08-13T01:37:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/12/%25e6%2595%2591%25e6%2595%2591%25e5%25b0%258f%25e9%25bb%2583%25e6%25b0%25b4%25e4%25b9%258b-brita-vs-3m-%25e6%25bf%25be%25e6%25b0%25b4%25e5%2599%25a8%25e5%25a4%25a7%25e4%25ba%2582%25e9%25ac%25a5/</loc>
<lastmod>2015-08-12T22:40:39+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/12/%25e8%25b6%2585%25e5%25be%258c%25e6%2582%2594%25e6%258a%2595%25e7%25b5%25a6%25e6%259f%25afp/</loc>
<lastmod>2015-08-12T16:32:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/12/%25e5%259c%25a8%25e6%2597%25a5%25e6%259c%25ac%25e8%25a2%25ab%25e4%25b8%2580%25e6%258e%2583%25e8%2580%258c%25e7%25a9%25ba%25e7%259a%2584%25e9%2580%25a0%25e5%259e%258b%25e7%25a5%259e%25e5%2599%25a8-panasonic-eh-na95na05/</loc>
<lastmod>2015-08-12T00:44:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/11/%25e7%25be%2585%25e8%25b3%2593%25e5%25a8%2581%25e5%25bb%2589%25e6%2596%25af/</loc>
<lastmod>2015-08-11T21:41:06+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/11/manto-%25e6%2595%25b8%25e5%25ad%2597%25e6%25b2%25b9%25e7%2595%25ab/</loc>
<lastmod>2015-08-11T17:28:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/10/mantraband-%25e6%2582%2584%25e6%2582%2584%25e8%25a9%25b1%25e6%2589%258b%25e7%2592%25b0/</loc>
<lastmod>2015-08-10T18:14:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/09/%25e6%25ad%25aa%25e8%2585%25b0-%25e9%2583%25b5%25e7%25ad%2592-%25e5%25bd%258e%25e5%25bd%258eder/</loc>
<lastmod>2015-08-09T18:59:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/09/microsoft-surface-3/</loc>
<lastmod>2015-08-09T17:23:20+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/08/%25e8%2598%2587%25e8%25bf%25aa%25e5%258b%2592%25e9%25a2%25b1%25e9%25a2%25a8%25e6%259c%2580%25e6%2596%25b0%25e6%25b6%2588%25e6%2581%25af%25e5%25bd%2599%25e6%2595%25b4%25ef%25bc%2581%25e7%25b6%25b2%25e5%258f%258b%25e5%2587%25ba%25e9%2596%2580%25e5%25b0%258f%25e5%25bf%2583%25e7%259c%258b%25ef%25bc%2581/</loc>
<lastmod>2015-08-08T11:22:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/08/macinari-%25e6%259c%25a8%25e6%25a9%259f%25e9%2597%259c%25e8%2587%25aa%25e5%258b%2595%25e9%2589%259b%25e7%25ad%2586/</loc>
<lastmod>2015-08-08T11:09:43+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/08/%25e5%259b%259b%25e8%25bb%25b8%25e5%25b0%258f%25e5%259e%258b%25e7%2584%25a1%25e4%25ba%25ba%25e6%25a9%259f-parrot-rolling-spider/</loc>
<lastmod>2015-08-08T11:05:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/08/bmw-i8/</loc>
<lastmod>2015-08-08T01:29:56+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/08/tesla/</loc>
<lastmod>2015-08-08T01:04:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/06/apple-watch-2/</loc>
<lastmod>2015-08-06T18:18:15+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/06/secret-garden-%25e7%25a7%2598%25e5%25af%2586%25e8%258a%25b1%25e5%259c%2592-%25e7%25b9%25aa%25e6%259c%25ac/</loc>
<lastmod>2015-08-06T16:23:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/06/lago-scratch-night-view-%25e5%2588%25ae%25e6%259c%25ac/</loc>
<lastmod>2015-08-06T15:35:26+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/08/06/lamy-%25e9%258b%25bc%25e7%25ad%2586/</loc>
<lastmod>2015-08-06T11:51:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/07/24/gopro-hero-4-%25e6%25a5%25b5%25e9%2599%2590%25e9%2581%258b%25e5%258b%2595%25e6%2594%259d%25e5%25bd%25b1%25e6%25a9%259f/</loc>
<lastmod>2015-07-24T17:04:46+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/07/24/gogoro-%25e6%2599%25ba%25e6%2585%25a7%25e9%259b%25bb%25e5%258b%2595%25e6%25a9%259f%25e8%25bb%258a/</loc>
<lastmod>2015-07-24T16:04:34+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/15/applehomekit/</loc>
<lastmod>2015-05-15T08:00:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/12/patentmonkxff0-2/</loc>
<lastmod>2015-05-12T08:30:32+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/11/207x5b-2/</loc>
<lastmod>2015-05-11T07:52:30+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/07/grooveshark-2/</loc>
<lastmod>2015-05-07T07:55:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/06/google-dartskyandroidtakobear-2/</loc>
<lastmod>2015-05-06T08:16:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/05/rpi2arch-linux/</loc>
<lastmod>2015-05-05T08:10:40+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/05/iphonegta-varduinoxff0/</loc>
<lastmod>2015-05-05T07:57:53+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/04/rpi2arch-linuxwifi-2/</loc>
<lastmod>2015-05-04T23:44:57+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/04/pagerfacebook-2/</loc>
<lastmod>2015-05-04T08:02:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/05/01/visual-studio-codeiosandroidwindows-10-takobear-2/</loc>
<lastmod>2015-05-01T08:03:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/29/rpi2arch-linux-2/</loc>
<lastmod>2015-04-29T22:31:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/29/ubereats-2/</loc>
<lastmod>2015-04-29T08:17:36+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/28/fb-messenger-2/</loc>
<lastmod>2015-04-28T08:17:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/23/rpi2raspberry-pi-2-model-barchliunx-2/</loc>
<lastmod>2015-04-23T23:47:31+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/22/google-24/</loc>
<lastmod>2015-04-22T08:17:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/20/apple-watch/</loc>
<lastmod>2015-04-20T08:15:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/17/mac-x-2/</loc>
<lastmod>2015-04-17T07:17:44+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/16/androidgoogle/</loc>
<lastmod>2015-04-16T08:23:21+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/14/fluid30macapp-2/</loc>
<lastmod>2015-04-14T08:06:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/13/printfriendlyx-2/</loc>
<lastmod>2015-04-13T07:45:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/09/facebookmessengerx300b-2/</loc>
<lastmod>2015-04-09T07:40:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/08/2013x4/</loc>
<lastmod>2015-04-08T08:32:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/07/down-for-everyone-or-just-for-me-x5927-2/</loc>
<lastmod>2015-04-07T08:16:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/04/acorns/</loc>
<lastmod>2015-04-04T13:22:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/04/02/githubcss/</loc>
<lastmod>2015-04-02T08:08:09+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/31/adobe-app-comp-ccx677f/</loc>
<lastmod>2015-03-31T08:20:01+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/30/pos-2/</loc>
<lastmod>2015-03-30T07:54:18+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/26/facebook-f8facebookx52-2/</loc>
<lastmod>2015-03-26T08:26:56+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/25/facebook-atcgithubx7dd/</loc>
<lastmod>2015-03-25T07:07:18+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/23/facebook-whoscallfacebook-2/</loc>
<lastmod>2015-03-23T08:22:32+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/20/adobedocument-cloud-2/</loc>
<lastmod>2015-03-20T08:17:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/18/facebook-14/</loc>
<lastmod>2015-03-18T08:03:07+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/18/39/</loc>
<lastmod>2015-03-18T07:37:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/17/android-iphoneapplex55-2/</loc>
<lastmod>2015-03-17T08:18:27+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/16/siriussirix80f-2/</loc>
<lastmod>2015-03-16T08:12:36+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/14/youtubeyoutube360/</loc>
<lastmod>2015-03-14T08:15:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/13/mozilla-memory-scanning/</loc>
<lastmod>2015-03-13T08:19:04+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/12/apple-itunesitunes-connecticloud-430/</loc>
<lastmod>2015-03-12T08:19:46+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/10/2015-apple/</loc>
<lastmod>2015-03-10T08:05:11+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/09/amazon-2/</loc>
<lastmod>2015-03-09T08:11:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/06/mac-office-for-mac-2016retinax-2/</loc>
<lastmod>2015-03-06T08:18:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/05/1800perfect-effects-9-2/</loc>
<lastmod>2015-03-05T07:54:50+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/03/appleprismatic/</loc>
<lastmod>2015-03-03T08:07:36+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/02/htc-valvevive-2/</loc>
<lastmod>2015-03-02T00:06:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/03/01/iosandroidhtcuahtc-grip/</loc>
<lastmod>2015-03-01T23:51:50+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/26/chrome-4/</loc>
<lastmod>2015-02-26T09:53:48+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/25/facebookapp-storeapp-appx770b/</loc>
<lastmod>2015-02-25T08:15:30+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/24/youtubeiosandroid-x66/</loc>
<lastmod>2015-02-24T08:27:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/24/xcode-6-3-beta-crash-log-report-2/</loc>
<lastmod>2015-02-24T08:09:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/22/pablo-by-buffer30x5b-2/</loc>
<lastmod>2015-02-22T17:50:06+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/21/apple-mac-app-store5x9/</loc>
<lastmod>2015-02-21T22:15:24+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/19/facebook-2/</loc>
<lastmod>2015-02-19T23:07:00+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/18/google-2/</loc>
<lastmod>2015-02-18T12:46:21+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/16/appleapplex300/</loc>
<lastmod>2015-02-16T08:08:11+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/15/whoscall/</loc>
<lastmod>2015-02-15T22:10:27+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/15/815/</loc>
<lastmod>2015-02-15T21:39:13+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/14/apple-payapple-payx4ed-2/</loc>
<lastmod>2015-02-14T10:38:07+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/14/google-helpouts/</loc>
<lastmod>2015-02-14T10:23:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/13/66/</loc>
<lastmod>2015-02-13T08:25:36+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/11/google-drive2gb-2/</loc>
<lastmod>2015-02-11T09:50:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/09/eva3d-eva-2/</loc>
<lastmod>2015-02-09T08:07:07+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/06/photos-uxkitiosuikitx/</loc>
<lastmod>2015-02-06T07:38:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/06/iphoto-apple-os-x-10-10-3-app-photos-2/</loc>
<lastmod>2015-02-06T07:08:22+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/05/youtube/</loc>
<lastmod>2015-02-05T08:22:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/04/raspberry-pi-ii-windows-10/</loc>
<lastmod>2015-02-04T08:14:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/03/open-data-github-2/</loc>
<lastmod>2015-02-03T08:04:56+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/02/02/21bt-2/</loc>
<lastmod>2015-02-02T00:39:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/28/facebook2gfacebook-lite-2/</loc>
<lastmod>2015-01-28T08:15:40+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/26/apple-watchx62/</loc>
<lastmod>2015-01-26T08:16:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/25/neeo/</loc>
<lastmod>2015-01-25T21:21:39+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/22/hololens/</loc>
<lastmod>2015-01-22T08:15:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/21/79/</loc>
<lastmod>2015-01-21T11:15:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/20/facebook-3/</loc>
<lastmod>2015-01-20T08:06:22+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/19/facebook-page-unliker/</loc>
<lastmod>2015-01-19T08:04:18+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/15/google-x5230/</loc>
<lastmod>2015-01-15T08:12:13+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/13/google-chromeios-x/</loc>
<lastmod>2015-01-13T08:03:35+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/09/cnn34x/</loc>
<lastmod>2015-01-09T08:21:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/08/sitekite-x7/</loc>
<lastmod>2015-01-08T08:37:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/04/chrome-5/</loc>
<lastmod>2015-01-04T23:25:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/03/nexus-player-2/</loc>
<lastmod>2015-01-03T19:00:00+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2015/01/01/ezprice/</loc>
<lastmod>2015-01-01T13:17:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/30/89/</loc>
<lastmod>2014-12-30T08:03:28+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/29/how-secure-is-my-password/</loc>
<lastmod>2014-12-29T08:07:45+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/25/sony-google-playyoutube/</loc>
<lastmod>2014-12-25T08:15:35+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/24/line-4-9-0-2/</loc>
<lastmod>2014-12-24T01:04:48+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/22/volvox-2/</loc>
<lastmod>2014-12-22T08:26:17+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/22/846/</loc>
<lastmod>2014-12-22T08:15:17+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/19/95/</loc>
<lastmod>2014-12-19T07:49:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/18/ios21app64-bit-2/</loc>
<lastmod>2014-12-18T07:49:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/17/2014googlex639-2/</loc>
<lastmod>2014-12-17T08:13:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/15/appx63/</loc>
<lastmod>2014-12-15T08:13:59+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/13/htc-re-camera-1215x96/</loc>
<lastmod>2014-12-13T23:37:17+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/12/facebook-xff01/</loc>
<lastmod>2014-12-12T07:58:41+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/10/facebook-x585-2/</loc>
<lastmod>2014-12-10T08:05:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/08/liveanyx4e0d/</loc>
<lastmod>2014-12-08T07:55:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/07/rpiraspberry-pibt-2/</loc>
<lastmod>2014-12-07T10:53:34+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/07/rpiphp5-fpmrutorrent/</loc>
<lastmod>2014-12-07T10:46:07+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/04/chrome-allow-copy-x/</loc>
<lastmod>2014-12-04T07:57:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/02/856/</loc>
<lastmod>2014-12-02T07:52:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/12/01/fingerkeymac/</loc>
<lastmod>2014-12-01T08:02:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/30/858/</loc>
<lastmod>2014-11-30T21:11:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/30/x598-2/</loc>
<lastmod>2014-11-30T20:34:25+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/28/apple-carplayiphone-6x/</loc>
<lastmod>2014-11-28T07:23:22+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/25/applevirtual-reality/</loc>
<lastmod>2014-11-25T07:54:26+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/24/x96f/</loc>
<lastmod>2014-11-24T08:02:49+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/21/starry-night/</loc>
<lastmod>2014-11-21T08:04:23+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/20/hush/</loc>
<lastmod>2014-11-20T08:19:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/19/android-android-auto/</loc>
<lastmod>2014-11-19T07:54:34+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/19/apple-watchkit/</loc>
<lastmod>2014-11-19T07:42:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/17/867/</loc>
<lastmod>2014-11-17T07:45:50+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/13/android-lollipop-nexus-ota/</loc>
<lastmod>2014-11-13T08:10:49+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/12/869/</loc>
<lastmod>2014-11-12T22:13:01+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/11/rest/</loc>
<lastmod>2014-11-11T08:11:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/11/asuszenwatch119-199-2/</loc>
<lastmod>2014-11-11T07:44:05+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/10/applebeats-solo2fcc-2/</loc>
<lastmod>2014-11-10T08:09:06+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/10/facebook-x8ab/</loc>
<lastmod>2014-11-10T00:30:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/09/googleandroid-lollipop-nexus-4-5-7-10x53ca/</loc>
<lastmod>2014-11-09T12:08:41+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/07/officeapp-2/</loc>
<lastmod>2014-11-07T07:43:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/06/maid/</loc>
<lastmod>2014-11-06T08:12:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/05/dropbox-office/</loc>
<lastmod>2014-11-05T08:00:31+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/04/fake-name-generator-2/</loc>
<lastmod>2014-11-04T08:14:37+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/03/iosairdrop-googleandroidiosx5-2/</loc>
<lastmod>2014-11-03T08:10:49+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/11/02/128/</loc>
<lastmod>2014-11-02T21:56:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/30/twitch/</loc>
<lastmod>2014-10-30T08:18:20+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/29/opensource-google-opensource-androidyoutube-live/</loc>
<lastmod>2014-10-29T08:02:15+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/28/4g-5g/</loc>
<lastmod>2014-10-28T08:33:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/28/wifi-2/</loc>
<lastmod>2014-10-28T08:08:57+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/27/133/</loc>
<lastmod>2014-10-27T07:57:07+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/27/apple-iphonex/</loc>
<lastmod>2014-10-27T07:40:12+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/24/facebookmark-zuckerberg-2/</loc>
<lastmod>2014-10-24T07:48:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/24/chromecastncc-2/</loc>
<lastmod>2014-10-24T07:23:54+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/23/google-113android-lollipop-5-0-release/</loc>
<lastmod>2014-10-23T07:58:09+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/22/eva-power/</loc>
<lastmod>2014-10-22T08:14:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/21/gmail-app-yahoo-2/</loc>
<lastmod>2014-10-21T08:22:40+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/21/ios-8-1/</loc>
<lastmod>2014-10-21T08:09:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/20/google-26/</loc>
<lastmod>2014-10-20T08:08:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/19/open-source-os-x-10-10-yosemite-homebrew-ruby-bad-interpreter-no-such-file-or-directory/</loc>
<lastmod>2014-10-19T11:40:06+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/17/apple-sim-ipadsimx4fe/</loc>
<lastmod>2014-10-17T08:44:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/17/imac-retina-5k/</loc>
<lastmod>2014-10-17T08:21:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/16/android-5-0-l-lollipop-nexus-6-nexus-9-nexus-player/</loc>
<lastmod>2014-10-16T08:44:41+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/15/android-googleandroid-2/</loc>
<lastmod>2014-10-15T08:17:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/14/bear-ios/</loc>
<lastmod>2014-10-14T16:48:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/14/ios-8objective-cswift-uialertcontrolleruialertview-uiactionsheet-objective-c/</loc>
<lastmod>2014-10-14T16:48:11+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/14/facebook-facebook-debuggerx80-2/</loc>
<lastmod>2014-10-14T09:17:53+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/14/apple-pay-applex820/</loc>
<lastmod>2014-10-14T08:50:12+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/13/google-x67/</loc>
<lastmod>2014-10-13T08:42:28+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/12/snapchat-2/</loc>
<lastmod>2014-10-12T10:52:57+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/09/apple-1016-1017-ipadmac/</loc>
<lastmod>2014-10-09T07:50:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/08/2015/</loc>
<lastmod>2014-10-08T07:47:10+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/07/iphone-ebay10-2/</loc>
<lastmod>2014-10-07T07:23:54+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/06/apple-watch-android-wear-windows-95/</loc>
<lastmod>2014-10-06T08:04:17+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/06/facebookmessenger-2/</loc>
<lastmod>2014-10-06T07:55:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/03/bear-opensource/</loc>
<lastmod>2014-10-03T07:46:56+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/03/opensource-google-the-physical-web/</loc>
<lastmod>2014-10-03T07:45:02+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/02/ms-windows10-takobear-2/</loc>
<lastmod>2014-10-02T21:06:54+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/02/yosemite-gm-ios-8-1-betasms/</loc>
<lastmod>2014-10-02T08:03:34+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/10/01/windows-9-2015windows-10/</loc>
<lastmod>2014-10-01T10:24:21+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/30/apple-ios-8-icloud-icloud-drive/</loc>
<lastmod>2014-09-30T08:08:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/29/instagram-x4e/</loc>
<lastmod>2014-09-29T07:57:16+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/28/chrome-fbx6-2/</loc>
<lastmod>2014-09-28T22:34:34+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/26/appleiphone/</loc>
<lastmod>2014-09-26T08:06:04+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/25/100/</loc>
<lastmod>2014-09-25T08:10:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/24/stylify/</loc>
<lastmod>2014-09-24T07:52:24+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/23/googlechrome-ios-8-app/</loc>
<lastmod>2014-09-23T01:15:29+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/22/intel/</loc>
<lastmod>2014-09-22T08:01:09+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/20/x653-2/</loc>
<lastmod>2014-09-20T11:37:44+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/17/airvripadx5-2/</loc>
<lastmod>2014-09-17T08:03:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/16/100-android-one/</loc>
<lastmod>2014-09-16T01:33:51+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/16/ios-8-popkey-gifx804-2/</loc>
<lastmod>2014-09-16T01:10:01+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/15/windows-9-os-xlinux/</loc>
<lastmod>2014-09-15T00:29:26+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/14/chrome-osandroid-app-googleapp/</loc>
<lastmod>2014-09-14T23:58:28+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/12/iphone-6-x9060/</loc>
<lastmod>2014-09-12T07:57:28+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/11/apple-iphone-one-more-thing-2/</loc>
<lastmod>2014-09-11T07:46:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/11/gmail-500gmail/</loc>
<lastmod>2014-09-11T01:45:18+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/09/iphone/</loc>
<lastmod>2014-09-09T08:00:51+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/08/apple-4/</loc>
<lastmod>2014-09-08T21:24:25+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/07/x6-2/</loc>
<lastmod>2014-09-07T22:52:20+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/05/firefox-beta-33-webrtc-androidchromecastroku-2/</loc>
<lastmod>2014-09-05T08:17:26+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/04/google-mapmap-maker/</loc>
<lastmod>2014-09-04T07:36:57+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/03/google-27/</loc>
<lastmod>2014-09-03T07:34:09+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/02/icloud/</loc>
<lastmod>2014-09-02T19:56:01+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/01/facebook-4/</loc>
<lastmod>2014-09-01T08:04:45+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/09/01/iwatch/</loc>
<lastmod>2014-09-01T07:42:06+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/29/99-wish-we-could-say-more/</loc>
<lastmod>2014-08-29T07:38:51+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/28/iphone-6-apple/</loc>
<lastmod>2014-08-28T07:53:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/27/x901/</loc>
<lastmod>2014-08-27T08:03:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/26/facebook-5/</loc>
<lastmod>2014-08-26T08:08:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/26/kickstarter-takumi-pen-2/</loc>
<lastmod>2014-08-26T07:46:17+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/25/iphone-6-iphone-6/</loc>
<lastmod>2014-08-25T07:32:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/24/x670/</loc>
<lastmod>2014-08-24T23:40:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/24/ios-4/</loc>
<lastmod>2014-08-24T22:53:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/22/2000/</loc>
<lastmod>2014-08-22T07:39:14+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/21/ios-googleapp-360google-map/</loc>
<lastmod>2014-08-21T01:34:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/21/mailbox-for-mac-beta-takobear/</loc>
<lastmod>2014-08-21T01:33:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/20/x641-2/</loc>
<lastmod>2014-08-20T08:17:46+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/19/googleyoutube-music-key/</loc>
<lastmod>2014-08-19T08:13:13+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/18/9-iphone-windows-9x4/</loc>
<lastmod>2014-08-18T00:50:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/18/ios-app-normalappx6-2/</loc>
<lastmod>2014-08-18T00:30:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/17/ios-8-objective-cswift-5swift-delegate/</loc>
<lastmod>2014-08-17T17:37:55+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/15/youtube-x4ee3/</loc>
<lastmod>2014-08-15T07:51:08+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/14/om-audio-360-2/</loc>
<lastmod>2014-08-14T08:05:21+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/13/9apple-1014playstation-tv/</loc>
<lastmod>2014-08-13T07:51:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/12/x5/</loc>
<lastmod>2014-08-12T07:32:40+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/10/google-5/</loc>
<lastmod>2014-08-10T23:47:16+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/10/siri-siri-for-mac-2/</loc>
<lastmod>2014-08-10T23:23:49+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/10/listen-now-google-2/</loc>
<lastmod>2014-08-10T22:11:52+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/10/chrome-chrome-history-timeline/</loc>
<lastmod>2014-08-10T01:09:47+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/08/facebookoculus-rift/</loc>
<lastmod>2014-08-08T07:50:32+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/07/google-29/</loc>
<lastmod>2014-08-07T08:06:13+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/07/android-wear-fb-messenger-2/</loc>
<lastmod>2014-08-07T07:37:33+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/06/google-mapgoogle-maps-x90fd/</loc>
<lastmod>2014-08-06T08:02:38+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/06/apple-99-iphone-6-2/</loc>
<lastmod>2014-08-06T07:41:19+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/05/ios-8-betabeta-5-2/</loc>
<lastmod>2014-08-05T07:49:58+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/05/googlegoogle-news-publisher-center/</loc>
<lastmod>2014-08-05T07:30:20+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/05/youtube-mvmp3-peggo/</loc>
<lastmod>2014-08-05T00:43:42+08:00</lastmod>
</url>
<url>
<loc>http://www.takobear.tw/2014/08/04/ios-android-facebook-2/</loc>