summaryrefslogblamecommitdiffstats
path: root/gui/devices/1080x1920/res/ui.xml
blob: c336dbade75e88db978750d09ba95ea9353fe4f0 (plain) (tree)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921








































                                                                                          
                                                                         




























































                                                                      
                                                                          









































































                                                                                      
                                                                  



                                                                   
                                                                    

                                                                 






                                                                          

                    





                                                                  









































































































































































                                                                                                                                       
                                                                                







                                                                                                                                                                                                                                                                  
                                                                                                           







































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                  


                                                                       
                                                                                                                                                          
                                                                                    
                                                                          



                                                                                       



                                                                                    
                                                                                                                            











                                                                                                                                                                                                                                                  



                                                                                                 



                                                                                                                                                 
                                                          
                                         
















                                                                                                                                                 


































































                                                                                                                                                 

                                                                                                 








































                                                                                                                                                  









                                                                                    



                                                                                    
                                                                                                      








                                                                               
                                                                                                      






                                                                             
                                                                                                      






                                                                               

















































































































































                                                                                                                                           

































































                                                                                                                                                                                                                                                  
                                                                                     















                                                                     









































































































































                                                                                                                                                      




































































































































































































                                                                                                                                                                                                                                                  











                                                                                                      

















































































































































































































































































































































                                                                                                                                                                                                                                                  









                                                                                    

















































































































































                                                                                                                                                                                                                                                  
                                              


                                                                                           
                                                                                          

                                                                   



                                                                                         


                                                                                            
                                                                                          


                                                                                        

                                 

                                                                                            
                                                                                          





                                                                                                                                                                              

                                 
                                                   
                                                                                     





                                                                                                                                                                              
                                         



                                                                                                                               















                                                                         











                                                                                              

















                                                                                                          















                                                                                                          







































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                  

                
<?xml version="1.0"?>

<recovery>
	<details>
		<resolution width="1080" height="1920" />
		<author>TeamWin</author>
		<title>Backup Naowz</title>
		<description>Default basic theme</description>
		<preview>preview.jpg</preview>
	</details>

	<resources>
		<resource name="font" type="font" filename="Roboto-Condensed-40" />
		<resource name="mediumfont" type="font" filename="Roboto-Condensed-40" />
		<resource name="filelist" type="font" filename="Roboto-Condensed-40" />
		<resource name="top_bar" type="image" filename="top-bar.jpg" />
		<resource name="main_button" type="image" filename="menu-button" />
		<resource name="file_icon" type="image" filename="file" />
		<resource name="folder_icon" type="image" filename="folder" />
		<resource name="slideout" type="image" filename="slideout" />
		<resource name="progress" type="animation" filename="indeterminate" />
		<resource name="progress_empty" type="image" filename="progress_empty" />
		<resource name="progress_full" type="image" filename="progress_fill" />
		<resource name="checkbox_false" type="image" filename="checkbox_empty" />
		<resource name="checkbox_true" type="image" filename="checkbox_checked" />
		<resource name="radio_false" type="image" filename="radio_empty" />
		<resource name="radio_true" type="image" filename="radio_selected" />
		<resource name="medium_button" type="image" filename="medium-button" />
		<resource name="sort_button" type="image" filename="sort-button" />
		<resource name="minus_button" type="image" filename="minus-button" />
		<resource name="plus_button" type="image" filename="plus-button" />
		<resource name="home_icon" type="image" filename="home-icon" />
		<resource name="back_icon" type="image" filename="back-icon" />
		<resource name="slider" type="image" filename="slider" />
		<resource name="slider-used" type="image" filename="slider-used" />
		<resource name="slider-touch" type="image" filename="slider-touch" />
		<resource name="unlock-icon" type="image" filename="unlock" />
		<resource name="keyboard1" type="image" filename="keyboard1" />
		<resource name="keyboard2" type="image" filename="keyboard2" />
		<resource name="keyboard3" type="image" filename="keyboard3" />
		<resource name="keyboard4" type="image" filename="keyboard4" />
		<resource name="cursor" type="image" filename="cursor" />
	</resources>

	<variables>
		<variable name="col1_x" value="10" />
		<variable name="col2_x" value="565" />
		<variable name="col_center_x" value="288" />
		<variable name="col_center_medium_x" value="414" />
		<variable name="center_x" value="540" />
		<variable name="row1_y" value="255" />
		<variable name="row2_y" value="615" />
		<variable name="row3_y" value="975" />
		<variable name="row4_y" value="1335" />
		<variable name="col1_center_x" value="179" />
		<variable name="col2_center_x" value="552" />
		<variable name="row1_text2_y" value="310" />
		<variable name="row2_text2_y" value="550" />
		<variable name="row_queue_y" value="1140" />
		<variable name="row1_header_y" value="180" />
		<variable name="row1_text_y" value="255" />
		<variable name="row2_text_y" value="330" />
		<variable name="row3_text_y" value="405" />
		<variable name="row4_text_y" value="480" />
		<variable name="row5_text_y" value="555" />
		<variable name="row6_text_y" value="630" />
		<variable name="row7_text_y" value="705" />
		<variable name="row8_text_y" value="780" />
		<variable name="row9_text_y" value="855" />
		<variable name="row10_text_y" value="930" />
		<variable name="row11_text_y" value="1005" />
		<variable name="row12_text_y" value="1080" />
		<variable name="row13_text_y" value="1155" />
		<variable name="row14_text_y" value="1230" />
		<variable name="row15_text_y" value="1305" />
		<variable name="row16_text_y" value="1380" />
		<variable name="row17_text_y" value="1455" />
		<variable name="row18_text_y" value="1530" />
		<variable name="zip_status_y" value="922" />
		<variable name="tz_selected_y" value="240" />
		<variable name="tz_set_y" value="1500" />
		<variable name="tz_current_y" value="1425" />
		<variable name="col_progressbar_x" value="351" />
		<variable name="row_progressbar_y" value="1650" />
		<variable name="col1_medium_x" value="10" />
		<variable name="col2_medium_x" value="282" />
		<variable name="col3_medium_x" value="545" />
		<variable name="col4_medium_x" value="817" />
		<variable name="row1_medium_y" value="195" />
		<variable name="row2_medium_y" value="345" />
		<variable name="row3_medium_y" value="392" />
		<variable name="row4_medium_y" value="645" />
		<variable name="row5_medium_y" value="795" />
		<variable name="row6_medium_y" value="1260" />
		<variable name="row7_medium_y" value="730" />
		<variable name="slider_x" value="101" />
		<variable name="slider_y" value="1575" />
		<variable name="slider_text_y" value="1676" />
		<variable name="button_text_color" value="#AAAAAA" />
		<variable name="text_color" value="#FFFFFF" />
		<variable name="text_success_color" value="#33B5E5" />
		<variable name="text_fail_color" value="#FF0101" />
		<variable name="highlight_color" value="#90909080" />
		<variable name="caps_highlight_color" value="#33B5E580" />
		<variable name="home_button_x" value="10" />
		<variable name="home_button_y" value="1839" />
		<variable name="back_button_x" value="944" />
		<variable name="back_button_y" value="1839" />
		<variable name="sort_text_x" value="10" />
		<variable name="sort_asc_text_y" value="1635" />
		<variable name="sort_asc_button_y" value="1620" />
		<variable name="sort_desc_text_y" value="1725" />
		<variable name="sort_desc_button_y" value="1710" />
		<variable name="sort_col1_button_x" value="390" />
		<variable name="sort_col2_button_x" value="540" />
		<variable name="sort_col3_button_x" value="690" />
		<variable name="input_width" value="1060" />
		<variable name="input_height" value="75" />
		<variable name="input_background_color" value="#303030" />
		<variable name="input_cursor_color" value="#33B5E5" />
		<variable name="input_cursor_width" value="4" />
		<variable name="console_x" value="0" />
		<variable name="console_width" value="1080" />
		<variable name="console_foreground" value="#A0A0A0" />
		<variable name="console_background" value="#303030" />
		<variable name="console_scroll" value="#303030" />
		<variable name="console_action_height" value="705" />
		<variable name="console_install_height" value="900" />
		<variable name="console_installdone_height" value="660" />
		<variable name="fileselector_x" value="5" />
		<variable name="fileselector_width" value="1070" />
		<variable name="fileselector_install_height" value="1170" />
		<variable name="fileselector_header_background" value="#202020" />
		<variable name="fileselector_header_textcolor" value="#AAAAAA" />
		<variable name="fileselector_header_separatorcolor" value="#33B5E5" />
		<variable name="fileselector_header_separatorheight" value="4" />
		<variable name="fileselector_separatorcolor" value="#505050" />
		<variable name="fileselector_separatorheight" value="3" />
		<variable name="fileselector_background" value="#303030" />
		<variable name="fileselector_highlight_color" value="#505050" />
		<variable name="fileselector_highlight_font_color" value="#33B5E5" />
		<variable name="fileselector_spacing" value="48" />
		<variable name="fastscroll_linecolor" value="#808080" />
		<variable name="fastscroll_rectcolor" value="#808080" />
		<variable name="fastscroll_w" value="90" />
		<variable name="fastscroll_linew" value="3" />
		<variable name="fastscroll_rectw" value="60" />
		<variable name="fastscroll_recth" value="105" />
		<variable name="listbox_x" value="5" />
		<variable name="listbox_width" value="1070" />
		<variable name="listbox_tz_height" value="885" />
		<variable name="listbox_background" value="#303030" />
		<variable name="listbox_spacing" value="24" />
		<variable name="sd_plus_x" value="525" />
		<variable name="sdext_text_x" value="165" />
		<variable name="sdext_text_y" value="270" />
		<variable name="sdswap_button_y" value="390" />
		<variable name="sdswap_text_x" value="165" />
		<variable name="sdswap_text_y" value="405" />
		<variable name="sdfilesystem_text_y" value="510" />
		<variable name="sdfilesystem_button_y" value="570" />
		<variable name="lock_x" value="240" />
		<variable name="lock_y" value="600" />
		<variable name="filemanager_select_x" value="840" />
		<variable name="filemanager_select_y" value="1620" />
		<variable name="backup_name_y" value="825" />
		<variable name="terminal_console_height" value="1050" />
		<variable name="terminal_text_y" value="1095" />
		<variable name="terminal_button_y" value="1050" />
		<variable name="row_dst_text_y" value="1080" />
		<variable name="row_offset_text_y" value="1155" />
		<variable name="row_offset_medium_y" value="1260" />
		<variable name="button_fill_color" value="#303030" />
		<variable name="button_fill_full_width" value="1060" />
		<variable name="button_fill_main_width" value="505" />
		<variable name="button_fill_main_height" value="324" />
		<variable name="button_fill_half_height" value="162" />
		<variable name="button_fill_quarter_height" value="81" />
		<variable name="backup_list_height" value="780" />
		<variable name="backup_button_row1" value="1118" />
		<variable name="backup_button_row2" value="1220" />
		<variable name="mount_list_height" value="1035" />
		<variable name="mount_storage_row" value="1240" />
		<variable name="storage_list_height" value="1000" />
		<variable name="wipe_list_height" value="1305" />
		<variable name="wipe_button_y" value="975" />
		<variable name="slidervalue_w" value="1060" />
		<variable name="slidervalue_line_clr" value="#FFFFFF" />
		<variable name="slidervalue_slider_clr" value="#33B5E5" />
		<variable name="slidervalue_lineh" value="3" />
		<variable name="slidervalue_padding" value="30" />
		<variable name="slidervalue_sliderw" value="15" />
		<variable name="slidervalue_sliderh" value="90" />
	</variables>

	<mousecursor>
		<placement w="15" h="15" />
		<background color="#FFFF00FF" resource="cursor" />
		<speed multiplier="2.5" />
	</mousecursor>

	<templates>
		<template name="header">
			<background color="#000000FF" />

			<object type="image">
				<image resource="top_bar" />
				<placement x="0" y="0" />
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="180" y="15" />
				<text>Team Win Recovery Project  v%tw_version%</text>
			</object>

			<object type="text" color="%text_color%">
				<condition var1="tw_simulate_actions" var2="1" />
				<font resource="font" />
				<placement x="180" y="60" />
				<text>SIMULATING ACTIONS</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="180" y="114" />
				<text>%tw_time%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="405" y="114" />
				<conditions>
					<condition var1="tw_no_battery_percent" var2="0" />
					<condition var1="tw_battery" op=">" var2="0" />
					<condition var1="tw_battery" op="<" var2="101" />
				</conditions>
				<text>Battery: %tw_battery%</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%home_button_x%" y="%home_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="home_icon" />
				<condition var1="tw_busy" var2="0" />
				<action function="key">home</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%back_button_x%" y="%back_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="back_icon" />
				<condition var1="tw_busy" var2="0" />
				<action function="key">back</action>
			</object>

			<object type="action">
				<touch key="power" />
				<action function="overlay">lock</action>
			</object>
		</template>

		<template name="progress_bar">
			<object type="progressbar">
				<placement x="%col_progressbar_x%" y="%row_progressbar_y%" />
				<resource  empty="progress_empty" full="progress_full" />
				<data name="ui_progress" />
			</object>

			<object type="animation">
				<placement x="%col_progressbar_x%" y="%row_progressbar_y%" />
				<resource name="progress" />
				<speed fps="15" render="2" />
				<loop frame="1" />
			</object>
		</template>

		<template name="sort_options">
			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%sort_text_x%" y="%sort_asc_text_y%" />
				<text>Sort Ascending:</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col1_button_x%" y="%sort_asc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Name</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=1</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col2_button_x%" y="%sort_asc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Date</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=2</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col3_button_x%" y="%sort_asc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Size</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=3</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%sort_text_x%" y="%sort_desc_text_y%" />
				<text>Sort Descending:</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col1_button_x%" y="%sort_desc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Name</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=-1</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col2_button_x%" y="%sort_desc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Date</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=-2</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sort_col3_button_x%" y="%sort_desc_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Size</text>
				<image resource="sort_button" />
				<action function="set">tw_gui_sort_order=-3</action>
			</object>
		</template>

		<template name="action_page_console">
			<object type="console">
				<placement x="0" y="%row2_y%" w="1080" h="705" />
				<color foreground="%console_foreground%" background="%console_background%" scroll="%console_scroll%" />
				<font resource="fixed" />
			</object>
		</template>

		<template name="footer">
			<object type="console">
				<slideout resource="slideout" x="500" y="1841" />
				<placement x="%console_x%" y="0" w="%console_width%" h="1841" />
				<color foreground="%console_foreground%" background="%console_background%" scroll="%console_scroll%" />
				<font resource="fixed" />
			</object>
		</template>

		<template name="keyboardtemplate">
			<object type="keyboard">
				<placement x="0" y="1200" />
				<layout resource1="keyboard1" resource2="keyboard2" resource3="keyboard3" resource4="keyboard4" />
				<highlight color="%highlight_color%" />
				<capshighlight color="%caps_highlight_color%" />
				<layout1>
					<keysize height="161" width="108" />
					<row1 key01="q" long01="1" key02="w" long02="2" key03="e" long03="3" key04="r" long04="4" key05="t" long05="5" key06="y" long06="6" key07="u" long07="7" key08="i" long08="8" key09="o" long09="9" key10="p" long10="0" />
					<row2 key01="162:a" long01="@" key02="s" long02="#" key03="d" long03="$" key04="f" long04="%" key05="g" long05="&" key06="h" long06="*" key07="j" long07="-" key08="k" long08="+" key09="162:l" long09="_" />
					<row3 key01="162:layout2" key02="z" long02="!" key03="x" key04="c" long04="'" key05="v" long05=":" key06="b" long06=";" key07="n" long07="/" key08="m" long08="?" key09="162:c:8" />
					<row4 key01="162:layout3" key02="108:c:47" key03="108:" key04="432: " key05="." key06="162:action" />
				</layout1>
				<layout2>
					<keysize height="161" width="108" capslock="0" revert_layout="1" />
					<row1 key01="Q" long01="1" key02="W" long02="2" key03="E" long03="3" key04="R" long04="4" key05="T" long05="5" key06="Y" long06="6" key07="U" long07="7" key08="I" long08="8" key09="O" long09="9" key10="P" long10="0" />
					<row2 key01="162:A" long01="@" key02="S" long02="#" key03="D" long03="$" key04="F" long04="%" key05="G" long05="&" key06="H" long06="*" key07="J" long07="-" key08="K" long08="+" key09="162:L" long09="_" />
					<row3 key01="162:layout1" key02="Z" long02="!" key03="X" key04="C" long04="'" key05="V" long05=":" key06="B" long06=";" key07="N" long07="/" key08="M" long08="?" key09="162:c:8" />
					<row4 key01="162:layout3" key02="/" key03="108:" key04="432: " key05="." key06="162:action" />
				</layout2>
				<layout3>
					<keysize height="161" width="108" />
					<row1 key01="1" key02="2" key03="3" key04="4" key05="5" key06="6" key07="7" key08="8" key09="9" key10="0" />
					<row2 key01="@" key02="#" key03="$" key04="%" key05="&" key06="*" key07="-" key08="+" key09="(" key10=")" />
					<row3 key01="162:layout4" key02="!" key03="108:c:34" key04="'" key05=":" key06=";" key07="/" key08="?" key09="162:c:8" />
					<row4 key01="162:layout1" key02="," key03="108:" key04="432: " key05="." key06="162:action" />
				</layout3>
				<layout4>
					<keysize height="161" width="108" />
					<row1 key01="~" key02="`" key03="|" key04="108:" key05="108:" key06="108:" key07="%" key08="108:" key09="{" key10="}" />
					<row2 key01="108:" key02="108:" key03="108:" key04="108:" key05="108:" key06="^" key07="_" key08="=" key09="[" key10="]" />
					<row3 key01="162:layout3" key02="108:" key03="108:" key04="108:" key05="108:" key06="\" key07="<" key08=">" key09="162:c:8" />
					<row4 key01="162:layout1" key02="108:c:34" key03="108:" key04="432: " key05="." key06="162:action" />
				</layout4>
			</object>
		</template>
	</templates>

	<pages>
		<page name="main">
			<object type="action">
				<actions>
					<action function="set">tw_clear_destination=main2</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>
		</page>

		<page name="main2">
			<object type="template" name="header" />

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Install</text>
				<image resource="main_button" />
				<actions>
					<action function="queueclear"></action>
					<action function="page">install</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Wipe</text>
				<image resource="main_button" />
				<action function="page">wipe</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Backup</text>
				<image resource="main_button" />
				<action function="page">backup</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Restore</text>
				<image resource="main_button" />
				<action function="page">restore</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Mount</text>
				<image resource="main_button" />
				<action function="page">mount</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Settings</text>
				<image resource="main_button" />
				<action function="page">settings</action>
			</object>


			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Advanced</text>
				<image resource="main_button" />
				<action function="page">advanced</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Reboot</text>
				<image resource="main_button" />
				<action function="page">reboot</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="install">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Select Zip to Install</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%row1_text_y%" w="%button_fill_full_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Storage: %tw_storage_display_name% (%tw_storage_free_size% MB)</text>
				<actions>
					<action function="set">tw_back=install</action>
					<action function="page">selectstorage</action>
				</actions>
			</object>

			<object type="fileselector">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%fileselector_x%" y="%row3_text_y%" w="%fileselector_width%" h="%fileselector_install_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>%tw_zip_location%</text>
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<sort name="tw_gui_sort_order" />
				<icon folder="folder_icon" file="file_icon" />
				<background color="%fileselector_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<filter extn=".zip" folders="1" files="1" />
				<path name="tw_zip_location" default="/sdcard" />
				<data name="tw_filename" />
				<selection name="tw_file" />
			</object>

			<object type="template" name="sort_options" />

			<object type="action">
				<condition var1="tw_filename" op="modified" />
				<actions>
					<action function="queuezip"></action>
					<action function="page">flash_confirm</action>
				</actions>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="flash_confirm">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>This operation may install incompatible</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>software and render your device unusable.</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>Folder:</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="mediumfont" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>%tw_zip_location%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row5_text_y%" placement="5" />
				<text>File to flash:</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="mediumfont" />
				<placement x="%center_x%" y="%row6_text_y%" placement="5" />
				<text>%tw_file%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row7_text_y%" placement="5" />
				<text>Press back to cancel adding this zip.</text>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row8_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Zip file signature verification.</text>
				<data variable="tw_signed_zip_verify" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<condition var1="tw_has_injecttwrp" var2="1" />
				<placement x="%col1_x%" y="%row10_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Inject TWRP after install.</text>
				<data variable="tw_inject_after_zip" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row11_text_y%" placement="5" />
				<text>File %tw_zip_queue_count% of max of 10</text>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" placement="5" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="flash">flash_zip</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Confirm Flash</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_zip_queue_count" op="!=" var2="10"></condition>
				<placement x="%col1_x%" y="%row_queue_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Add More Zips</text>
				<image resource="main_button" />
				<action function="page">install</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row_queue_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Clear Zip Queue</text>
				<image resource="main_button" />
				<actions>
					<action function="queueclear"></action>
					<action function="page">install</action>
				</actions>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="cancelzip"></action>
					<action function="page">install</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="flash_zip">
			<object type="template" name="header" />

			<object type="console">
				<placement x="%console_x%" y="%row1_y%" w="%console_width%" h="%console_install_height%" />
				<color foreground="%console_foreground%" background="%console_background%" scroll="%console_scroll%" />
				<font resource="fixed" />
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row17_text_y%" placement="5" />
				<text>Flashing file %tw_zip_index% of %tw_zip_queue_count%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="mediumfont" />
				<placement x="%center_x%" y="%row18_text_y%" placement="5" />
				<text>%tw_filename%</text>
			</object>

			<object type="template" name="progress_bar" />

			<object type="action">
				<condition var1="tw_operation_state" var2="1" />
				<action function="page">flash_done</action>
			</object>
		</page>

		<page name="flash_done">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Zip Install Complete</text>
			</object>

			<object type="console">
				<placement x="%console_x%" y="%row1_y%" w="%console_width%" h="%console_installdone_height%" />
				<color foreground="%console_foreground%" background="%console_background%" scroll="%console_scroll%" />
				<font resource="fixed" />
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Wipe cache/dalvik</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=flash_done</action>
					<action function="set">tw_action=wipe</action>
					<action function="set">tw_action_param=/cache</action>
					<action function="set">tw_has_action2=1</action>
					<action function="set">tw_action2=wipe</action>
					<action function="set">tw_action2_param=dalvik</action>
					<action function="set">tw_text1=Wipe Cache & Dalvik?</action>
					<action function="set">tw_action_text1=Wiping Cache & Dalvik...</action>
					<action function="set">tw_complete_text1=Cache & Dalvik Wipe Complete</action>
					<action function="set">tw_slider_text=Swipe to Wipe</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Reboot System</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=main2</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=system</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_text3=</action>
					<action function="set">tw_text4=</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_action_text2=</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Home</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_clear_destination=main2</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_operation_status" op="!=" var2="0" />
				<font resource="font" />
				<placement x="%center_x%" y="%zip_status_y%" placement="5" />
				<text>Failed</text>
			</object>

			<object type="text" color="%text_success_color%">
				<condition var1="tw_operation_status" var2="0" />
				<font resource="font" />
				<placement x="%center_x%" y="%zip_status_y%" placement="5" />
				<text>Successful</text>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="set">tw_clear_destination=install</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<actions>
					<action function="set">tw_clear_destination=main2</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>
		</page>

		<page name="clear_vars">
			<object type="action">
				<action function="set">tw_operation_state=0</action>
				<action function="set">tw_text1=</action>
				<action function="set">tw_text2=</action>
				<action function="set">tw_text3=</action>
				<action function="set">tw_text4=</action>
				<action function="set">tw_action_text1=</action>
				<action function="set">tw_action_text2=</action>
				<action function="set">tw_action_param=</action>
				<action function="set">tw_has_action2=0</action>
				<action function="set">tw_action2=</action>
				<action function="set">tw_action2_param=</action>
				<action function="set">tw_has_cancel=0</action>
				<action function="set">tw_cancel_action=</action>
				<action function="set">tw_cancel_param=</action>
				<action function="set">tw_show_exclamation=0</action>
				<action function="set">tw_show_reboot=0</action>
				<action function="page">%tw_clear_destination%</action>
			</object>
		</page>

		<page name="confirm_action">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_text1%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>%tw_text2%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>%tw_text3%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>%tw_text4%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row15_text_y%" placement="5" />
				<text>Press back button to cancel.</text>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="page">action_page</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>%tw_slider_text%</text>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="set">tw_clear_destination=%tw_back%</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="action_page">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_action_text1%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>%tw_action_text2%</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_has_cancel" var2="1" />
				<placement x="%col_center_medium_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="medium_button" />
				<action function="%tw_cancel_action%">%tw_cancel_param%</action>
			</object>

			<object type="template" name="progress_bar" />

			<object type="action">
				<condition var1="tw_operation_state" var2="1" />
				<actions>
					<action function="page">action_complete</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_has_action2" var2="0" />
				<actions>
					<action function="%tw_action%">%tw_action_param%</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_has_action2" var2="1" />
				<actions>
					<action function="%tw_action%">%tw_action_param%</action>
					<action function="%tw_action2%">%tw_action2_param%</action>
				</actions>
			</object>
		</page>

		<page name="singleaction_page">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_action_text1%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>%tw_action_text2%</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<condition var1="tw_operation_state" var2="1" />
				<actions>
					<action function="set">tw_page_done=1</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_has_action2" var2="0" />
				<actions>
					<action function="%tw_action%">%tw_action_param%</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_has_action2" var2="1" />
				<actions>
					<action function="%tw_action%">%tw_action_param%</action>
					<action function="%tw_action2%">%tw_action2_param%</action>
				</actions>
			</object>
		</page>

		<page name="action_complete">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_complete_text1%</text>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_operation_status" op="!=" var2="0" />
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Failed</text>
			</object>

			<object type="text" color="%text_success_color%">
				<condition var1="tw_operation_status" var2="0" />
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Successful</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_reboot" var2="0" />
				<placement x="%col_center_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Back</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_clear_destination=%tw_back%</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_reboot" var2="1" />
				<placement x="%col_center_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Reboot System</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=main2</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=system</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_text3=</action>
					<action function="set">tw_text4=</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_action_text2=</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<actions>
					<action function="set">tw_clear_destination=main2</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="set">tw_clear_destination=%tw_back%</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>
		</page>

		<page name="filecheck">
			<object type="action">
				<action function="fileexists">%tw_filecheck%</action>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_fileexists=1</action>
					<action function="page">%tw_existpage%</action>
				</actions>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" var2="1" />
				</conditions>
				<actions>
					<action function="set">tw_fileexists=0</action>
					<action function="page">%tw_notexistpage%</action>
				</actions>
			</object>
		</page>

		<page name="rebootcheck">
			<object type="action">
				<condition var1="tw_backup_system_size" op=">=" var2="%tw_min_system%" />
				<action function="reboot">%tw_action_param%</action>
			</object>

			<object type="action">
				<condition var1="tw_backup_system_size" op="<" var2="%tw_min_system%" />
				<action function="page">confirm_action</action>
			</object>
		</page>

		<page name="wipe">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>Factory Reset</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Wipes Data, Cache, and Dalvik</text>
			</object>

			<object type="text" color="%text_color%">
				<condition var1="tw_has_data_media" var2="0" />
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>.android_secure</text>
			</object>

			<object type="text" color="%text_color%">
				<condition var1="tw_has_data_media" var2="1" />
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>(not including internal storage)</text>
			</object>

			<object type="text" color="%text_color%">
				<condition var1="tw_has_sdext_partition" var2="1" />
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>SD-EXT</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row5_text_y%" placement="5" />
				<text>Most of the time this is</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row6_text_y%" placement="5" />
				<text>the only wipe that you need.</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row16_text_y%" placement="5" />
				<text>Press back button to cancel.</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%wipe_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Advanced Wipe</text>
				<image resource="main_button" />
				<action function="page">advancedwipe</action>
			</object>

			<object type="button">
				<conditions>
					<condition var1="tw_has_internal" var2="1" />
					<condition var1="tw_has_data_media" var2="1" />
				</conditions>
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%wipe_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Format Data</text>
				<image resource="main_button" />
				<actions>
					<action function="page">formatdata</action>
				</actions>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<actions>
					<action function="set">tw_back=wipe</action>
					<action function="set">tw_action=wipe</action>
					<action function="set">tw_action_param=data</action>
					<action function="set">tw_action_text1=Factory Reset...</action>
					<action function="set">tw_complete_text1=Factory Reset Complete</action>
					<action function="page">action_page</action>
				</actions>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Factory Reset</text>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="advancedwipe">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Wipe Menu</text>
			</object>

			<object type="partitionlist">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row1_header_y%" w="%listbox_width%" h="%wipe_list_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Partitions to Wipe:</text>
				<icon selected="checkbox_true" unselected="checkbox_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<data name="tw_wipe_list" />
				<listtype name="wipe" />
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<actions>
					<action function="set">tw_back=advancedwipe</action>
					<action function="set">tw_action=wipe</action>
					<action function="set">tw_action_param=LIST</action>
					<action function="set">tw_text1=Wipe Selected Partition(s)?</action>
					<action function="set">tw_action_text1=Wiping Partition(s)...</action>
					<action function="set">tw_complete_text1=Wipe Complete</action>
					<action function="page">action_page</action>
				</actions>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Wipe</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">wipe</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="formatdata">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Format Data will wipe all of your apps,</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>backups, pictures, videos, media, and</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>removes encryption on internal storage.</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5" />
				<text>This cannot be undone. Press back to cancel.</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>Type yes to continue.</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row6_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_confirm_formatdata%</text>
				<data name="tw_confirm_formatdata" />
				<restrict minlen="3" maxlen="3" allow="yes" />
				<action function="page">formatdata_confirm</action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">wipe</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="formatdata_confirm">
			<object type="action">
				<condition var1="tw_confirm_formatdata" op="=" var2="yes" />
				<actions>
					<action function="set">tw_back=formatdata</action>
					<action function="set">tw_action=wipe</action>
					<action function="set">tw_action_param=DATAMEDIA</action>
					<action function="set">tw_action_text1=Formatting Data...</action>
					<action function="set">tw_complete_text1=Data Format Complete</action>
					<action function="page">action_page</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_confirm_formatdata" op="!=" var2="yes" />
				<action function="page">formatdata</function>
			</object>
		</page>

		<page name="backup">
			<object type="template" name="header" />

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%row1_header_y%" w="%button_fill_full_width%" h="%button_fill_quarter_height%" placement="5" />
				<font resource="font" color="%button_text_color%" />
				<text>Backup Name: %tw_backup_name%</text>
				<actions>
					<action function="set">tw_fileexists=0</action>
					<action function="page">backupname1</action>
				</actions>
			</object>

			<object type="partitionlist">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row2_text_y%" w="%listbox_width%" h="%backup_list_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Partitions to Back Up:</text>
				<icon selected="checkbox_true" unselected="checkbox_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<data name="tw_backup_list" />
				<listtype name="backup" />
			</object>

			<object type="button">
				<conditions>
					<condition var1="tw_include_encrypted_backup" var2="1" />
					<condition var1="tw_encrypt_backup" var2="0" />
				</conditions>
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%backup_button_row1%" w="%button_fill_main_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>No Encryption</text>
				<actions>
					<action function="page">backupencryption</action>
				</actions>
			</object>

			<object type="button">
				<conditions>
					<condition var1="tw_include_encrypted_backup" var2="1" />
					<condition var1="tw_encrypt_backup" var2="1" />
				</conditions>
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%backup_button_row1%" w="%button_fill_main_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Using Encryption</text>
				<actions>
					<action function="set">tw_password_not_match=0</action>
					<action function="page">backupencryption</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col2_x%" y="%backup_button_row1%" w="%button_fill_main_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Refresh Sizes</text>
				<action function="refreshsizes"></action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%backup_button_row2%" w="%button_fill_full_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Storage: %tw_storage_display_name% (%tw_storage_free_size% MB)</text>
				<actions>
					<action function="set">tw_back=backup</action>
					<action function="page">selectstorage</action>
				</actions>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row15_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Enable compression.</text>
				<data variable="tw_use_compression" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row16_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Skip MD5 generation during backup.</text>
				<data variable="tw_skip_md5_generate" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="slider_y" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="page">backup_run</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Back Up</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="backupname1">
			<object type="action">
				<condition var1="tw_backup_name" op="=" var2="(Auto Generate)" />
				<action function="generatebackupname"></function>
			</object>

			<object type="action">
				<action function="page">backupname2</function>
			</object>
		</page>

		<page name="backupname2">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<font resource="font" />
				<text>Please Enter a Backup Name</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_backup_name%</text>
				<data name="tw_backup_name" />
				<restrict minlen="1" maxlen="64" allow=" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-_.{}[]" />
				<actions>
					<action function="set">tw_filecheck=%tw_backups_folder%/%tw_backup_name%</action>
					<action function="set">tw_existpage=backupname2</action>
					<action function="set">tw_notexistpage=backup</action>
					<action function="page">filecheck</action>
				</actions>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_fileexists" var2="1" />
				<placement x="%center_x%" y="%row5_text_y%" placement="5" />
				<font resource="font" />
				<text>A backup with that name already exists!</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Append Date</text>
				<image resource="main_button" />
				<action function="appenddatetobackupname"></action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_backup_name=(Auto Generate)</action>
					<action function="page">backup</action>
				</actions>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<actions>
					<action function="set">tw_backup_name=(Auto Generate)</action>
					<action function="page">main</action>
				</actions>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="set">tw_backup_name=(Auto Generate)</action>
					<action function="page">backup</action>
				</actions>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="backupencryption">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Encrypt your backup?</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Please Enter A Password:</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_backup_encrypt_display%</text>
				<data name="tw_backup_password" mask="*" maskvariable="tw_backup_encrypt_display" />
				<restrict minlen="1" maxlen="32" allow="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_" />
				<action function="page">backupencryption2</action>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_password_not_match" var2="1" />
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>Passwords Do Not Match</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_encrypt_backup=0</action>
					<action function="set">tw_backup_password=</action>
					<action function="set">tw_backup_password2=</action>
					<action function="set">tw_backup_encrypt_display=</action>
					<action function="set">tw_backup_encrypt_display2=</action>
					<action function="page">backup</action>
				</actions>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">backup</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="backupencryption2">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Encrypt your backup?</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Please Enter Password Again:</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_backup_encrypt_display2%</text>
				<data name="tw_backup_password2" mask="*" maskvariable="tw_backup_encrypt_display2" />
				<restrict minlen="1" maxlen="32" allow="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_" />
				<actions>
					<action function="page">checkbackuppassword</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_encrypt_backup=0</action>
					<action function="set">tw_backup_password=</action>
					<action function="set">tw_backup_password2=</action>
					<action function="set">tw_backup_encrypt_display=</action>
					<action function="set">tw_backup_encrypt_display2=</action>
					<action function="page">backup</action>
				</actions>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">backup</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="checkbackuppassword">
			<object type="action">
				<condition var1="tw_backup_password2" var2="tw_backup_password" />
				<actions>
					<action function="set">tw_encrypt_backup=1</action>
					<action function="page">backup</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_backup_password2" op="!=" var2="tw_backup_password" />
				<actions>
					<action function="set">tw_encrypt_backup=0</action>
					<action function="set">tw_password_not_match=1</action>
					<action function="set">tw_backup_password=</action>
					<action function="set">tw_backup_password2=</action>
					<action function="set">tw_backup_encrypt_display=</action>
					<action function="set">tw_backup_encrypt_display2=</action>
					<action function="page">backupencryption</action>
				</actions>
			</object>
		</page>

		<page name="backup_run">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_operation% %tw_partition%</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<action function="nandroid">backup</action>
			</object>

			<object type="action">
				<condition var1="tw_operation_state" var2="1" />
				<actions>
					<action function="set">tw_back=backup</action>
					<action function="set">tw_complete_text1=Backup Complete</action>
					<action function="set">tw_show_reboot=1</action>
					<action function="page">action_complete</action>
				</actions>
			</object>
		</page>

		<page name="restore">
			<object type="template" name="header" />

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%row1_header_y%" w="%button_fill_full_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Storage: %tw_storage_display_name% (%tw_storage_free_size% MB)</text>
				<actions>
					<action function="set">tw_back=restore</action>
					<action function="page">selectstorage</action>
				</actions>
			</object>

			<object type="fileselector">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%fileselector_x%" y="%row2_text_y%" w="%fileselector_width%" h="%fileselector_install_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Package to Restore:</text>
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<sort name="tw_gui_sort_order" />
				<icon folder="folder_icon" file="file_icon" />
				<background color="%fileselector_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<filter folders="1" files="0" nav="0" />
				<path name="tw_backups_folder" />
				<data name="tw_restore" default="" />
				<selection name="tw_restore_name" />
			</object>

			<object type="template" name="sort_options" />

			<object type="action">
				<condition var1="tw_restore" op="modified" />
				<actions>
					<action function="readBackup"></action>
					<action function="page">restore_read</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="restore_read">
			<object type="action">
				<condition var1="tw_restore_encrypted" var2="1" />
				<actions>
					<action function="set">tw_password_fail=0</action>
					<action function="page">restore_decrypt</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_restore_encrypted" var2="0" />
				<actions>
					<action function="page">restore_select</action>
				</actions>
			</object>
		</page>

		<page name="restore_decrypt">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Backup Encrypted</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5" />
				<text>Please Enter Your Password:</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_restore_display%</text>
				<data name="tw_restore_password" mask="*" maskvariable="tw_restore_display" />
				<restrict minlen="1" maxlen="32" allow="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_" />
				<actions>
					<action function="page">try_restore_decrypt</action>
				</actions>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_password_fail" var2="1" />
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>Password Failed, Please Try Again</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_page_done=1</action>
					<action function="page">restore</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Delete</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=restore</action>
					<action function="set">tw_action=cmd</action>
					<action function="set">tw_action_param=cd %tw_backups_folder% && rm -rf &quot;%tw_restore_name%&quot;</action>
					<action function="set">tw_text1=Delete Backup? %tw_restore_name%</action>
					<action function="set">tw_text2=This cannot be undone!</action>
					<action function="set">tw_action_text1=Deleting Backup...</action>
					<action function="set">tw_complete_text1=Backup Delete Complete</action>
					<action function="set">tw_slider_text=Swipe to Delete</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">restore</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="try_restore_decrypt">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>Trying Decryption with Your Password</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<action function="decrypt_backup"></action>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" op="!=" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_password_fail=1</action>
					<action function="page">restore_decrypt</action>
				</actions>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" op="=" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_page_done=1</action>
					<action function="page">restore_select</action>
				</actions>
			</object>
		</page>

		<page name="restore_select">
			<object type="template" name="header" />

			<object type="partitionlist">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row1_header_y%" w="%listbox_width%" h="%backup_list_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Restoring: %tw_restore_name%</text>
				<icon selected="checkbox_true" unselected="checkbox_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<data name="tw_restore_list" selectedlist="tw_restore_selected" />
				<listtype name="restore" />
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%backup_button_row1%" w="%button_fill_main_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Rename Backup</text>
				<actions>
					<action function="set">tw_backup_rename=</action>
					<action function="set">tw_fileexists=0</action>
					<action function="page">renamebackup</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col2_x%" y="%backup_button_row1%" w="%button_fill_main_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Delete Backup</text>
				<actions>
					<action function="set">tw_back=restore</action>
					<action function="set">tw_action=cmd</action>
					<action function="set">tw_action_param=cd %tw_backups_folder% && rm -rf &quot;%tw_restore_name%&quot;</action>
					<action function="set">tw_text1=Delete Backup? %tw_restore_name%</action>
					<action function="set">tw_text2=This cannot be undone!</action>
					<action function="set">tw_action_text1=Deleting Backup...</action>
					<action function="set">tw_complete_text1=Backup Delete Complete</action>
					<action function="set">tw_slider_text=Swipe to Delete</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row15_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Enable MD5 verification of backup files.</text>
				<data variable="tw_skip_md5_check" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row16_text_y%" placement="5" />
				<text>Package Date: %tw_restore_file_date%</text>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="page">restore_run</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Restore</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">restore</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="renamebackup">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<font resource="font" />
				<text>Please Enter a New Backup Name</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_backup_rename%</text>
				<data name="tw_backup_rename" />
				<restrict minlen="1" maxlen="64" allow=" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-_.{}[]" />
				<actions>
					<action function="set">tw_back=restore</action>
					<action function="set">tw_action=cmd</action>
					<action function="set">tw_action_param=cd %tw_backups_folder% && mv &quot;%tw_restore_name%&quot; &quot;%tw_backup_rename%&quot;</action>
					<action function="set">tw_text1=Rename Backup?</action>
					<action function="set">tw_text2=This cannot be undone!</action>
					<action function="set">tw_action_text1=Renaming Backup...</action>
					<action function="set">tw_complete_text1=Backup Rename Complete</action>
					<action function="set">tw_slider_text=Swipe to Rename</action>
					<action function="set">tw_filecheck=%tw_backups_folder%/%tw_backup_rename%</action>
					<action function="set">tw_existpage=renamebackup</action>
					<action function="set">tw_notexistpage=confirm_action</action>
					<action function="page">filecheck</action>
				</actions>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_fileexists" var2="1" />
				<placement x="%center_x%" y="%row5_text_y%" placement="5" />
				<font resource="font" />
				<text>A backup with that name already exists!</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<action function="page">restore_select</action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">restore_select</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="restore_run">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_operation% %tw_partition%</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<condition var1="tw_operation_state" var2="1" />
				<actions>
					<action function="set">tw_back=restore_select</action>
					<action function="set">tw_complete_text1=Restore Complete</action>
					<action function="set">tw_show_reboot=1</action>
					<action function="page">action_complete</action>
				</actions>
			</object>

			<object type="action">
				<action function="nandroid">restore</action>
			</object>
		</page>

		<page name="selectstorage">
			<object type="template" name="header" />

			<object type="partitionlist">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row1_header_y%" w="%listbox_width%" h="%storage_list_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Storage:</text>
				<icon selected="radio_true" unselected="radio_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<data name="tw_storage_path" />
				<listtype name="storage" />
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>OK</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_clear_destination=%tw_back%</action>
					<action function="page">clear_vars</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<actions>
					<action function="page">%tw_back%</action>
				</actions>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="mount">
			<object type="template" name="header" />

			<object type="partitionlist">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row1_header_y%" w="%listbox_width%" h="%mount_list_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Partitions to Mount:</text>
				<icon selected="checkbox_true" unselected="checkbox_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<listtype name="mount" />
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<fill color="%button_fill_color%" />
				<placement x="%col1_x%" y="%mount_storage_row%" w="%button_fill_full_width%" h="%button_fill_quarter_height%" />
				<font resource="font" color="%button_text_color%" />
				<text>Storage: %tw_storage_display_name% (%tw_storage_free_size% MB)</text>
				<actions>
					<action function="set">tw_back=mount</action>
					<action function="page">selectstorage</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_has_usb_storage" var2="1" />
				<placement x="%col1_x%" y="row4_y" />
				<font resource="font" color="%button_text_color%" />
				<text>Mount USB Storage</text>
				<image resource="main_button" />
				<action function="page">usb_mount</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<conditions>
					<condition var1="tw_is_encrypted" var2="1" />
					<condition var1="tw_is_decrypted" var2="0" />
				</conditions>
				<placement x="%col2_x%" y="row4_y" />
				<font resource="font" color="%button_text_color%" />
				<text>Decrypt Data</text>
				<image resource="main_button" />
				<action function="page">decrypt</action>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="usb_mount">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>USB Storage Mounted</text>
			</object>

			<object type="text" color="%text_color%">
				<placement x="%col1_x%" y="%row1_text_y%" />
				<font resource="font" />
				<text>Be sure to safely remove your device</text>
			</object>

			<object type="text" color="%text_color%">
				<placement x="%col1_x%" y="%row2_text_y%" />
				<font resource="font" />
				<text>from your computer before unmounting!</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Unmount</text>
				<image resource="main_button" />
				<action function="page">usb_umount</action>
			</object>

			<object type="action">
				<action function="mount">usb</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="usb_umount">
			<object type="action">
				<action function="unmount">usb</action>
			</object>

			<object type="action">
				<action function="page">mount</action>
			</object>
		</page>

		<page name="reboot">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Reboot Menu</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_reboot_system" var2="1" />
				<placement x="%col1_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>System</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=reboot</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=system</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_reboot_poweroff" var2="1" />
				<placement x="%col2_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Power Off</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=reboot</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=poweroff</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to power off?</action>
					<action function="set">tw_action_text1=Turning Off...</action>
					<action function="set">tw_complete_text1=Turning Off...</action>
					<action function="set">tw_slider_text=Swipe to Power Off</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_reboot_recovery" var2="1" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Recovery</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=reboot</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=recovery</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_reboot_bootloader" var2="1" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Bootloader</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=reboot</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=bootloader</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_download_mode" var2="1" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Download</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=reboot</action>
					<action function="set">tw_action=reboot</action>
					<action function="set">tw_action_param=download</action>
					<action function="set">tw_has_action2=0</action>
					<action function="set">tw_text1=No OS Installed! Are you</action>
					<action function="set">tw_text2=sure you wish to reboot?</action>
					<action function="set">tw_action_text1=Rebooting...</action>
					<action function="set">tw_complete_text1=Rebooting...</action>
					<action function="set">tw_slider_text=Swipe to Reboot</action>
					<action function="page">rebootcheck</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="settings">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Settings</text>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row1_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Zip file signature verification.</text>
				<data variable="tw_signed_zip_verify" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row2_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Use rm -rf instead of formatting.</text>
				<data variable="tw_rm_rf" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row3_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Skip MD5 generation during backup.</text>
				<data variable="tw_skip_md5_generate" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row4_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Enable MD5 verification of backup files.</text>
				<data variable="tw_skip_md5_check" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row5_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Use Military Time.</text>
				<data variable="tw_military_time" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row6_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Simulate actions for theme testing.</text>
				<data variable="tw_simulate_actions" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<condition var1="tw_simulate_actions" var2="1" />
				<placement x="%col1_x%" y="%row7_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Simulate failure for actions.</text>
				<data variable="tw_simulate_fail" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Time Zone</text>
				<image resource="main_button" />
				<action function="page">timezone</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Screen</text>
				<image resource="main_button" />
				<action function="page">screen</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Vibration Duration</text>
				<image resource="main_button" />
				<action function="page">Vibrate</action>
			</object>

			<object type="button">
				<placement x="%col_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Restore Defaults</text>
				<image resource="main_button" />
				<action function="restoredefaultsettings"></action>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="timezone">
			<object type="template" name="header" />

			<object type="listbox">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%listbox_x%" y="%row1_header_y%" w="%listbox_width%" h="%listbox_tz_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>Select Time Zone:</text>
				<icon selected="radio_true" unselected="radio_false" />
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<background color="%listbox_background%" />
				<font resource="font" spacing="%listbox_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<data name="tw_time_zone_guisel" />
				<listitem name="(UTC -11) Samoa, Midway Island">BST11;BDT</listitem>
				<listitem name="(UTC -10) Hawaii">HST10;HDT</listitem>
				<listitem name="(UTC -9) Alaska">AST9;ADT</listitem>
				<listitem name="(UTC -8) Pacific Time">PST8;PDT</listitem>
				<listitem name="(UTC -7) Mountain Time">MST7;MDT</listitem>
				<listitem name="(UTC -6) Central Time">CST6;CDT</listitem>
				<listitem name="(UTC -5) Eastern Time">EST5;EDT</listitem>
				<listitem name="(UTC -4) Atlantic Time">AST4;ADT</listitem>
				<listitem name="(UTC -3) Brazil, Buenos Aires">GRNLNDST3;GRNLNDDT</listitem>
				<listitem name="(UTC -2) Mid-Atlantic">FALKST2;FALKDT</listitem>
				<listitem name="(UTC -1) Azores, Cape Verde">AZOREST1;AZOREDT</listitem>
				<listitem name="(UTC  0) London, Dublin, Lisbon">GMT0;BST</listitem>
				<listitem name="(UTC +1) Berlin, Brussels, Paris">NFT-1;DFT</listitem>
				<listitem name="(UTC +2) Athens, Istanbul, South Africa">WET-2;WET</listitem>
				<listitem name="(UTC +3) Moscow, Baghdad">SAUST-3;SAUDT</listitem>
				<listitem name="(UTC +4) Abu Dhabi, Tbilisi, Muscat">WST-4;WDT</listitem>
				<listitem name="(UTC +5) Yekaterinburg, Islamabad">PAKST-5;PAKDT</listitem>
				<listitem name="(UTC +6) Almaty, Dhaka, Colombo">TASHST-6;TASHDT</listitem>
				<listitem name="(UTC +7) Bangkok, Hanoi, Jakarta">THAIST-7;THAIDT</listitem>
				<listitem name="(UTC +8) Beijing, Singapore, Hong Kong">TAIST-8;TAIDT</listitem>
				<listitem name="(UTC +9) Tokyo, Seoul, Yakutsk">JST-9;JSTDT</listitem>
				<listitem name="(UTC +10) Eastern Australia, Guam">EET-10;EETDT</listitem>
				<listitem name="(UTC +11) Vladivostok, Solomon Islands">MET-11;METDT</listitem>
				<listitem name="(UTC +12) Auckland, Wellington, Fiji">NZST-12;NZDT</listitem>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row_dst_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Do you use daylight savings time (DST)?</text>
				<data variable="tw_time_zone_guidst" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row_offset_text_y%" placement="5" />
				<text>Offset (usually 0): %tw_time_zone_guioffset%</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_medium_x%" y="%row_offset_medium_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>None</text>
				<image resource="medium_button" />
				<action function="set">tw_time_zone_guioffset=0</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_medium_x%" y="%row_offset_medium_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>15</text>
				<image resource="medium_button" />
				<action function="set">tw_time_zone_guioffset=15</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col3_medium_x%" y="%row_offset_medium_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>30</text>
				<image resource="medium_button" />
				<action function="set">tw_time_zone_guioffset=30</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col4_medium_x%" y="%row_offset_medium_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>45</text>
				<image resource="medium_button" />
				<action function="set">tw_time_zone_guioffset=45</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%tz_set_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Set Time Zone</text>
				<image resource="main_button" />
				<action function="setguitimezone"></action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%tz_current_y%" placement="5" />
				<text>Current Time Zone: %tw_time_zone%</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">settings</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="screen">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Screen Settings</text>
			</object>

			<object type="button">
				<placement x="%col1_x%" y="%row2_text_y%" />
				<font resource="font" color="%text_color%" />
				<condition var1="tw_screen_timeout_secs" op="=" var2="0" />
				<condition var1="tw_no_screen_timeout" op="!=" var2="1" />
				<text>Enable screen timeout.</text>
				<image resource="checkbox_false" />
				<action function="set">tw_screen_timeout_secs=60</action>
			</object>

			<object type="button">
				<placement x="%col1_x%" y="%row2_text_y%" />
				<font resource="font" color="%text_color%" />
				<condition var1="tw_screen_timeout_secs" op="!=" var2="0" />
				<condition var1="tw_no_screen_timeout" op="!=" var2="1" />
				<text>Enable screen timeout.</text>
				<image resource="checkbox_true" />
				<action function="set">tw_screen_timeout_secs=0</action>
			</object>

			<object type="slidervalue">
				<condition var1="tw_screen_timeout_secs" op="!=" var2="0" />
				<condition var1="tw_no_screen_timeout" op="!=" var2="1" />
				<placement x="col1_x" y="%row4_text_y%" w="%slidervalue_w%" />
				<font resource="font" color="%text_color%" />
				<colors line="%slidervalue_line_clr%" slider="%slidervalue_slider_clr%" />
				<dimensions lineh="%slidervalue_lineh%" linepadding="%slidervalue_padding%" sliderw="%slidervalue_sliderw%" sliderh="%slidervalue_sliderh%" />
				<text>Screen timeout in seconds:</text>
				<data variable="tw_screen_timeout_secs" min="15" max="300" />
			</object>

			<object type="slidervalue">
				<condition var1="tw_has_brightnesss_file" var2="1" />
				<placement x="col1_x" y="%row12_text_y%" w="%slidervalue_w%" />
				<font resource="font" color="%text_color%" />
				<colors line="%slidervalue_line_clr%" slider="%slidervalue_slider_clr%" />
				<dimensions lineh="%slidervalue_lineh%" linepadding="%slidervalue_padding%" sliderw="%slidervalue_sliderw%" sliderh="%slidervalue_sliderh%" />
				<text>Brightness: %tw_brightness_pct%%</text>
				<data variable="tw_brightness_pct" min="10" max="100" />
				<actions>
					<action function="set">tw_brightness=%tw_brightness_max%</action>
					<action function="compute">tw_brightness*%tw_brightness_pct%</action>
					<action function="compute">tw_brightness/100</action>
					<action function="cmd">echo %tw_brightness% > &quot;%tw_brightness_file%&quot;</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">settings</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="Vibrate">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Vibration Settings :</text>
			</object>

			<object type="slidervalue">
				<placement x="col1_x" y="%row4_text_y%" w="%slidervalue_w%" />
				<font resource="font" color="%text_color%" />
				<text>Button Vibration:</text>
				<data variable="tw_button_vibrate" min="0" max="300" />
				<colors line="%slidervalue_line_clr%" slider="%slidervalue_slider_clr%" />
			</object>

			<object type="slidervalue">
				<placement x="col1_x" y="%row8_text_y%" w="%slidervalue_w%" />
				<font resource="font" color="%text_color%" />
				<text>Keyboard Vibration:</text>
				<data variable="tw_keyboard_vibrate" min="0" max="300" />
				<colors line="%slidervalue_line_clr%" slider="%slidervalue_slider_clr%" />
			</object>

			<object type="slidervalue">
				<placement x="col1_x" y="%row12_text_y%" w="%slidervalue_w%" />
				<font resource="font" color="%text_color%" />
				<text>Action Vibration:</text>
				<data variable="tw_action_vibrate" min="0" max="500" />
				<colors line="%slidervalue_line_clr%" slider="%slidervalue_slider_clr%" />
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">settings</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="advanced">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Advanced</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Copy Log to SD</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=advanced</action>
					<action function="set">tw_action=copylog</action>
					<action function="set">tw_text1=Copy Log to SD Card?</action>
					<action function="set">tw_action_text1=Copying Log to SD Card...</action>
					<action function="set">tw_complete_text1=Log Copy Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Fix Permissions</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=advanced</action>
					<action function="set">tw_action=fixpermissions</action>
					<action function="set">tw_text1=Fix Permissions?</action>
					<action function="set">tw_action_text1=Fixing Permissions...</action>
					<action function="set">tw_complete_text1=Fix Permissions Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="set">tw_show_reboot=1</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_allow_partition_sdcard" var2="1" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Partition SD Card</text>
				<image resource="main_button" />
				<action function="page">partsdcard</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>File Manager</text>
				<image resource="main_button" />
				<action function="page">filemanagerlist</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Terminal Command</text>
				<image resource="main_button" />
				<action function="page">terminalfolder</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Reload Theme</text>
				<image resource="main_button" />
				<action function="reload"></action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>ADB Sideload</text>
				<image resource="main_button" />
				<action function="page">sideload</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_dumlock" var2="1" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>HTC Dumlock</text>
				<image resource="main_button" />
				<action function="page">htcdumlock</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_has_injecttwrp" var2="1" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Re-Inject TWRP</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=advanced</action>
					<action function="set">tw_action=reinjecttwrp</action>
					<action function="set">tw_text1=Re-Inject TWRP?</action>
					<action function="set">tw_action_text1=Re-Injecting TWRP...</action>
					<action function="set">tw_complete_text1=TWRP Injection Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">main</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="partsdcard">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Partition SD Card</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="minus_button" />
				<action function="addsubtract">tw_sdext_size-128</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sd_plus_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="plus_button" />
				<action function="addsubtract">tw_sdext_size+128</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%sdext_text_x%" y="%sdext_text_y%" />
				<text>EXT Size: %tw_sdext_size%</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%sdswap_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="minus_button" />
				<action function="addsubtract">tw_swap_size-32</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%sd_plus_x%" y="%sdswap_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text></text>
				<image resource="plus_button" />
				<action function="addsubtract">tw_swap_size+32</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%sdswap_text_x%" y="%sdswap_text_y%" />
				<text>Swap Size: %tw_swap_size%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%col1_x%" y="%sdfilesystem_text_y%" />
				<text>File system: %tw_sdpart_file_system%</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%sdfilesystem_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>EXT3</text>
				<image resource="main_button" />
				<action function="set">tw_sdpart_file_system=ext3</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_sdext_disable_ext4" var2="0" />
				<placement x="%col2_x%" y="%sdfilesystem_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>EXT4</text>
				<image resource="main_button" />
				<action function="set">tw_sdpart_file_system=ext4</action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%col1_x%" y="%row12_text_y%" />
				<text>You will lose all files on your SD card!</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%col1_x%" y="%row13_text_y%" />
				<text>This action cannot be undone!</text>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="page">partsdcardaction</action>
				<actions>
					<action function="set">tw_back=partsdcard</action>
					<action function="set">tw_action=partitionsd</action>
					<action function="set">tw_has_action2=1</action>
					<action function="set">tw_action2=set</action>
					<action function="set">tw_action2_param=tw_zip_location=/sdcard</action>
					<action function="set">tw_action_text1=Partitioning SD Card...</action>
					<action function="set">tw_action_text2=This will take a few minutes.</action>
					<action function="set">tw_complete_text1=Partitioning Complete</action>
					<action function="page">action_page</action>
				</actions>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Partition</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">advanced</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="htcdumlock">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>HTC Dumlock</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_dumlock" var2="1" />
				<placement x="%col1_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Restore Original Boot</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=htcdumlock</action>
					<action function="set">tw_action=htcdumlockrestoreboot</action>
					<action function="set">tw_text1=Restore original boot image?</action>
					<action function="set">tw_action_text1=Restoring Original Boot...</action>
					<action function="set">tw_complete_text1=Restore Original Boot Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_dumlock" var2="1" />
				<placement x="%col2_x%" y="%row1_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Reflash Recovery</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=htcdumlock</action>
					<action function="set">tw_action=htcdumlockreflashrecovery</action>
					<action function="set">tw_text1=Reflash recovery to boot?</action>
					<action function="set">tw_action_text1=Flashing recovery to boot...</action>
					<action function="set">tw_complete_text1=Recovery Flash to Boot Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_show_dumlock" var2="1" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Install HTC Dumlock</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_back=htcdumlock</action>
					<action function="set">tw_action=installhtcdumlock</action>
					<action function="set">tw_text1=Install HTC dumlock files to ROM?</action>
					<action function="set">tw_action_text1=Installing HTC Dumlock...</action>
					<action function="set">tw_complete_text1=HTC Dumlock Install Complete</action>
					<action function="set">tw_slider_text=Swipe to Confirm</action>
					<action function="page">confirm_action</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">advanced</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="lock">
			<background color="#000000A0" />

			<object type="image">
				<image resource="unlock-icon" />
				<placement x="%lock_x%" y="%lock_y%" />
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="overlay"></action>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Unlock</text>
			</object>
		</page>

		<page name="filemanagerlist">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>File Manager: Select a File or Folder</text>
			</object>

			<object type="fileselector">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%fileselector_x%" y="%row1_y%" w="%fileselector_width%" h="%fileselector_install_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>%tw_file_location1%</text>
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<sort name="tw_gui_sort_order" />
				<icon folder="folder_icon" file="file_icon" />
				<background color="%fileselector_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<folders="1" files="1" />
				<path name="tw_file_location1" default="/" />
				<data name="tw_filename1" />
				<selection name="tw_selection1" />
			</object>

			<object type="template" name="sort_options" />

			<object type="action">
				<actions>
					<action function="set">tw_fm_type=File</action>
					<action function="set">tw_fm_isfolder=0</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">advanced</action>
			</object>

			<object type="action">
				<condition var1="tw_filename1" op="modified" />
				<actions>
					<action function="page">filemanageroptions</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%filemanager_select_x%" y="%filemanager_select_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Select</text>
				<image resource="medium_button" />
				<actions>
					<action function="set">tw_filename1=tw_file_location1</action>
					<action function="set">tw_fm_isfolder=1</action>
					<action function="set">tw_fm_type=Folder</action>
					<action function="page">filemanageroptions</action>
				</actions>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="filemanageroptions">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5"/>
				<text>%tw_fm_type% Selected:</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5"/>
				<text>%tw_filename1%</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_fm_isfolder" var2="0" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Copy File</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_command=cp</action>
					<action function="set">tw_fm_text1=Copying</action>
					<action function="page">choosedestinationfolder</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_fm_isfolder" var2="1" />
				<placement x="%col1_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Copy Folder</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_command=cd &quot;%tw_file_location1%&quot; && cd .. && cp -R</action>
					<action function="set">tw_fm_text1=Copying</action>
					<action function="page">choosedestinationfolder</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Move</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_command=mv</action>
					<action function="set">tw_fm_text1=Moving</action>
					<action function="page">choosedestinationfolder</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>chmod 755</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_command=chmod 755</action>
					<action function="set">tw_fm_text1=chmod 755</action>
					<action function="set">tw_fm_text2=</action>
					<action function="set">tw_fm_text3=</action>
					<action function="set">tw_include_text3=0</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col2_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>chmod</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_rename=0000</action>
					<action function="set">tw_fm_text2=</action>
					<action function="set">tw_fm_text3=</action>
					<action function="set">tw_include_text3=0</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerchmod</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col1_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Delete</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_command=rm -rf</action>
					<action function="set">tw_fm_text1=Deleting</action>
					<action function="set">tw_fm_text2=</action>
					<action function="set">tw_fm_text3=</action>
					<action function="set">tw_include_text3=0</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_fm_isfolder" var2="0" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Rename File</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_rename=tw_selection1</action>
					<action function="set">tw_fm_text1=Renaming</action>
					<action function="set">tw_filemanager_command=mv</action>
					<action function="page">filemanagerrenamefile</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_fm_isfolder" var2="1" />
				<placement x="%col2_x%" y="%row4_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Rename Folder</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_filemanager_rename=tw_selection1</action>
					<action function="set">tw_fm_text1=Renaming</action>
					<action function="set">tw_filemanager_command=cd &quot;%tw_file_location1%&quot; && cd .. && mv</action>
					<action function="page">filemanagerrenamefolder</action>
				</actions>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">filemanagerlist</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="choosedestinationfolder">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5"/>
				<text>Browse to Destination Folder & Press Select</text>
			</object>

			<object type="fileselector">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%fileselector_x%" y="%row1_y%" w="%fileselector_width%" h="%fileselector_install_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>%tw_file_location2%</text>
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<sort name="tw_gui_sort_order" />
				<icon folder="folder_icon" file="file_icon" />
				<background color="%fileselector_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<filter folders="1" files="0" />
				<path name="tw_file_location2" default="/" />
				<data name="tw_filename2" />
				<selection name="tw_selection2" />
			</object>

			<object type="template" name="sort_options" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%filemanager_select_x%" y="%filemanager_select_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Select</text>
				<image resource="medium_button" />
				<actions>
					<action function="set">tw_fm_text2=to</action>
					<action function="set">tw_fm_text3=%tw_file_location2%</action>
					<action function="set">tw_include_text3=1</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="filemanagerrenamefile">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<font resource="font" />
				<text>Please Enter a New %tw_fm_type% Name</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_filemanager_rename%</text>
				<data name="tw_filemanager_rename" />
				<restrict minlen="1" maxlen="128" />
				<actions>
					<action function="set">tw_fm_text2=to</action>
					<action function="set">tw_fm_text3=&quot;%tw_file_location1%/%tw_filemanager_rename%&quot;</action>
					<action function="set">tw_include_text3=1</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="filemanagerrenamefolder">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<font resource="font" />
				<text>Please Enter a New %tw_fm_type% Name</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_filemanager_rename%</text>
				<data name="tw_filemanager_rename" />
				<restrict minlen="1" maxlen="128" />
				<actions>
					<action function="set">tw_fm_text2=to</action>
					<action function="set">tw_fm_text3=%tw_filemanager_rename%</action>
					<action function="set">tw_include_text3=1</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="filemanagerchmod">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<font resource="font" />
				<text>Please Enter New Permissions</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_filemanager_rename%</text>
				<data name="tw_filemanager_rename" />
				<restrict minlen="3" maxlen="4" allow="0123456789" />
				<actions>
					<action function="set">tw_filemanager_command=chmod %tw_filemanager_rename%</action>
					<action function="set">tw_fm_text1=chmod %tw_filemanager_rename%</action>
					<action function="set">tw_back=filemanageroptions</action>
					<action function="page">filemanagerconfirm</action>
				</actions>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">filemanageroptions</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="filemanagerconfirm">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5"/>
				<text>%tw_fm_text1%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5"/>
				<text>%tw_filename1%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5"/>
				<text>%tw_fm_text2%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5"/>
				<text>%tw_fm_text3%</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row10_text_y%" placement="5"/>
				<text>Press back button to cancel.</text>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<action function="page">filemanageracction</action>
			</object>
			
			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Confirm</text>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">%tw_back%</action>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>
				
			<object type="template" name="footer" />
		</page>

		<page name="filemanageracction">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">

				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>%tw_fm_text1%</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_back=filemanagerlist</action>
					<action function="set">tw_complete_text1=File Operation Complete</action>
					<action function="page">action_complete</action>
				</actions>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" op="!=" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_complete_text1=File Operation Complete</action>
					<action function="page">action_complete</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_include_text3" var2="0" />
				<actions>
					<action function="cmd">%tw_filemanager_command% &quot;%tw_filename1%&quot;</action>
				</actions>
			</object>

			<object type="action">
				<condition var1="tw_include_text3" var2="1" />
				<actions>
					<action function="cmd">%tw_filemanager_command% &quot;%tw_filename1%&quot; &quot;%tw_fm_text3%&quot;</action>
				</actions>
			</object>
		</page>

		<page name="decrypt">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5" />
				<text>Please Enter Your Password</text>
			</object>

			<object type="input">
				<placement x="%col1_x%" y="%row3_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_crypto_display%</text>
				<data name="tw_crypto_password" mask="*" maskvariable="tw_crypto_display" />
				<restrict minlen="1" maxlen="254" />
				<actions>
					<action function="page">trydecrypt</action>
				</actions>
			</object>

			<object type="text" color="%text_fail_color%">
				<condition var1="tw_password_fail" var2="1" />
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5" />
				<text>Password Failed, Please Try Again</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row2_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Cancel</text>
				<image resource="main_button" />
				<actions>
					<action function="set">tw_page_done=1</action>
					<action function="page">main</action>
				</actions>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="template" name="footer" />
		</page>

		<page name="trydecrypt">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_text_y%" placement="5" />
				<text>Trying Decryption with Your Password</text>
			</object>

			<object type="template" name="action_page_console" />

			<object type="template" name="progress_bar" />

			<object type="action">
				<action function="decrypt"></action>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" op="!=" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_password_fail=1</action>
					<action function="page">decrypt</action>
				</actions>
			</object>

			<object type="action">
				<conditions>
					<condition var1="tw_operation_state" var2="1" />
					<condition var1="tw_operation_status" op="=" var2="0" />
				</conditions>
				<actions>
					<action function="set">tw_page_done=1</action>
					<action function="page">main</action>
				</actions>
			</object>
		</page>

		<page name="terminalfolder">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5"/>
				<text>Browse to Starting Folder</text>
			</object>

			<object type="fileselector">
				<highlight color="%fileselector_highlight_color%" />
				<placement x="%fileselector_x%" y="%row1_y%" w="%fileselector_width%" h="%fileselector_install_height%" />
				<header background="%fileselector_header_background%" textcolor="%fileselector_header_textcolor%" separatorcolor="%fileselector_header_separatorcolor%" separatorheight="%fileselector_header_separatorheight%" />
				<fastscroll linecolor="%fastscroll_linecolor%" rectcolor="%fastscroll_rectcolor%" w="%fastscroll_w%" linew="%fastscroll_linew%" rectw="%fastscroll_rectw%" recth="%fastscroll_recth%" />
				<text>%tw_terminal_location%</text>
				<separator color="%fileselector_separatorcolor%" height="%fileselector_separatorheight%" />
				<sort name="tw_gui_sort_order" />
				<icon folder="folder_icon" file="file_icon" />
				<background color="%fileselector_background%" />
				<font resource="filelist" spacing="%fileselector_spacing%" color="%text_color%" highlightcolor="%fileselector_highlight_font_color%" />
				<filter folders="1" files="0" />
				<path name="tw_terminal_location" default="/" />
				<data name="tw_terminal" />
				<selection name="tw_terminal_selection" />
			</object>

			<object type="template" name="sort_options" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">advanced</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%filemanager_select_x%" y="%filemanager_select_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Select</text>
				<image resource="medium_button" />
				<actions>
					<action function="page">terminalcommand</action>
				</actions>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="terminalcommand">
			<object type="template" name="header" />

			<object type="console">
				<placement x="%console_x%" y="0" w="%console_width%" h="%terminal_console_height%" />
				<color foreground="%console_foreground%" background="%console_background%" scroll="%console_scroll%" />
				<font resource="fixed" />
			</object>

			<object type="text" color="%text_color%">
				<placement x="%col1_x%" y="%terminal_text_y%" placement="0" />
				<font resource="font" />
				<text>Starting Path: %tw_terminal_location%</text>
			</object>

			<object type="input">
				<condition var1="tw_terminal_state" var2="0" />
				<placement x="%col1_x%" y="%terminal_text_y%" w="%input_width%" h="%input_height%" placement="0" />
				<background color="%input_background_color%" />
				<cursor color="%input_cursor_color%" hasfocus="1" width="%input_cursor_width%" />
				<font resource="font" color="%text_color%" />
				<text>%tw_terminal_command%</text>
				<data name="tw_terminal_command" />
				<restrict minlen="1" />
				<action function="terminalcommand">%tw_terminal_command%</action>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<condition var1="tw_terminal_state" var2="1" />
				<placement x="%filemanager_select_x%" y="%terminal_button_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>KILL</text>
				<image resource="medium_button" />
				<action function="killterminal"></action>
			</object>

			<object type="template" name="keyboardtemplate" />

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">terminalfolder</action>
			</object>
		</page>

		<page name="sideload">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5"/>
				<text>ADB Sideload</text>
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row2_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Wipe Dalvik Cache.</text>
				<data variable="tw_wipe_dalvik" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="checkbox">
				<placement x="%col1_x%" y="%row3_text_y%" />
				<font resource="font" color="%text_color%" />
				<text>Wipe Cache.</text>
				<data variable="tw_wipe_cache" />
				<image checked="checkbox_true" unchecked="checkbox_false" />
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<actions>
					<action function="set">tw_back=advanced</action>
					<action function="set">tw_action=adbsideload</action>
					<action function="set">tw_action_text1=ADB Sideload</action>
					<action function="set">tw_action_text2=Usage: adb sideload filename.zip</action>
					<action function="set">tw_complete_text1=ADB Sideload Complete</action>
					<action function="set">tw_has_cancel=1</action>
					<action function="set">tw_show_reboot=1</action>
					<action function="set">tw_cancel_action=adbsideloadcancel</action>
					<action function="page">action_page</action>
				</actions>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Start Sideload</text>
			</object>

			<object type="action">
				<touch key="home" />
				<action function="page">main</action>
			</object>

			<object type="action">
				<touch key="back" />
				<action function="page">advanced</action>
			</object>

			<object type="template" name="footer" />
		</page>

		<page name="installsu">
			<object type="template" name="header" />

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row1_header_y%" placement="5"/>
				<text>Install SuperSU?</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row2_text_y%" placement="5"/>
				<text>Your device does not appear to be rooted.</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row3_text_y%" placement="5"/>
				<text>Install SuperSU now?</text>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%row4_text_y%" placement="5"/>
				<text>This will root your device.</text>
			</object>

			<object type="button">
				<highlight color="%highlight_color%" />
				<placement x="%col_center_x%" y="%row3_y%" />
				<font resource="font" color="%button_text_color%" />
				<text>Do Not Install</text>
				<image resource="main_button" />
				<action function="set">tw_page_done=1</action>
			</object>

			<object type="slider">
				<placement x="%slider_x%" y="%slider_y%" />
				<resource base="slider" used="slider-used" touch="slider-touch" />
				<actions>
					<action function="set">tw_action=installsu</action>
					<action function="set">tw_action_text1=Installing SuperSU</action>
					<action function="set">tw_action_text2=</action>
					<action function="page">singleaction_page</action>
				</actions>
			</object>

			<object type="text" color="%text_color%">
				<font resource="font" />
				<placement x="%center_x%" y="%slider_text_y%" placement="4" />
				<text>Swipe to Install</text>
			</object>
		</page>
	</pages>
</recovery>