-
Notifications
You must be signed in to change notification settings - Fork 0
/
production.log
executable file
·5171 lines (4170 loc) · 350 KB
/
production.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Processing MainController#index (for 201.29.148.80 at 2008-10-26 07:32:36) [GET]
Session ID: 8a56075bd462a0923bcbd3f6148364dc
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.09954 (10 reqs/sec) | Rendering: 0.09554 (95%) | DB: 0.00062 (0%) | 200 OK [http://teste.suaempreza.com.br/]
Processing SessionsController#create (for 201.29.148.80 at 2008-10-26 07:32:48) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlYjcyNTI2YjU3NmQ0MWIzYTliM2ZmYTI4NTlhODFl
ZDgiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7AAY6CkB1c2VkewA=--86d426a2ce2ab04390d3214dd7f80cbe27896c7d
Parameters: {"x"=>"0", "y"=>"0", "authenticity_token"=>"640412b8a260bf2fb1a8b55d0400b98c52dad3ec", "action"=>"create", "controller"=>"sessions", "password"=>"admin", "login"=>"admin"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.07811 (12 reqs/sec) | DB: 0.00838 (10%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 201.29.148.80 at 2008-10-26 07:32:48) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiViNzI1MjZiNTc2ZDQxYjNhOWIz
ZmZhMjg1OWE4MWVkOCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--3ddc80ab559aaa5a5c13f51a14809813c14c5ae3
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.11578 (8 reqs/sec) | Rendering: 0.10550 (91%) | DB: 0.00529 (4%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing UsersController#edit (for 201.29.148.80 at 2008-10-26 07:32:57) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiViNzI1MjZiNTc2ZDQxYjNhOWIz
ZmZhMjg1OWE4MWVkOCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--ee416c4179aa3c19e144b9462ff42b52577cc8fb
Parameters: {"authenticity_token"=>"640412b8a260bf2fb1a8b55d0400b98c52dad3ec", "action"=>"edit", "id"=>"4", "controller"=>"users"}
Completed in 0.24714 (4 reqs/sec) | Rendering: 0.23757 (96%) | DB: 0.00875 (3%) | 200 OK [http://teste.suaempreza.com.br/users/4/edit?authenticity_token=640412b8a260bf2fb1a8b55d0400b98c52dad3ec]
Processing CompanyManagementController#index (for 201.29.148.80 at 2008-10-26 07:33:03) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiViNzI1MjZiNTc2ZDQxYjNhOWIz
ZmZhMjg1OWE4MWVkOCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b976ae443a44342d5a10754ebdac6b4034236c96
Parameters: {"authenticity_token"=>"640412b8a260bf2fb1a8b55d0400b98c52dad3ec", "action"=>"index", "controller"=>"company_management"}
Rendering company_management/index
Completed in 0.11790 (8 reqs/sec) | Rendering: 0.01155 (9%) | DB: 0.00381 (3%) | 200 OK [http://teste.suaempreza.com.br/company_management]
Processing MainController#index (for 189.24.120.56 at 2008-10-26 09:58:48) [GET]
Session ID: 7ec23bf824010b75afc3f6f859d50b2d
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.19004 (5 reqs/sec) | Rendering: 0.18667 (98%) | DB: 0.00046 (0%) | 200 OK [http://teste.suaempreza.com.br/]
Processing SessionsController#create (for 189.24.120.56 at 2008-10-26 09:59:28) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlOThkMTZhYjM5Yjk2OWJlOGI3YmFjYWViMTM3YjM0
YTUiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7AAY6CkB1c2VkewA=--0ddfabb159a511469b00df593118a187d7207ae9
Parameters: {"x"=>"0", "y"=>"0", "authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"create", "controller"=>"sessions", "password"=>"admin", "login"=>"admin"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.47589 (2 reqs/sec) | DB: 0.21622 (45%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 189.24.120.56 at 2008-10-26 09:59:29) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--19199dcca14d0020e83939466205994c342b3df6
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.07083 (14 reqs/sec) | Rendering: 0.05132 (72%) | DB: 0.01422 (20%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing UsersController#new (for 189.24.120.56 at 2008-10-26 10:00:22) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--d3b7a37acc55a414bd5c22469a0a70b986fe6104
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 1.28606 (0 reqs/sec) | Rendering: 1.08611 (84%) | DB: 0.06649 (5%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing UsersController#new (for 189.24.120.56 at 2008-10-26 10:00:24) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--d3b7a37acc55a414bd5c22469a0a70b986fe6104
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.06121 (16 reqs/sec) | Rendering: 0.03986 (65%) | DB: 0.01992 (32%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing UsersController#change_user_type (for 189.24.120.56 at 2008-10-26 10:00:46) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "type"=>"UserCompany", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.06726 (14 reqs/sec) | Rendering: 0.01928 (28%) | DB: 0.00968 (14%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing SubsidiariesController#index (for 189.24.120.56 at 2008-10-26 10:01:02) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.02164 (46 reqs/sec) | Rendering: 0.01558 (71%) | DB: 0.00165 (7%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing SubsidiariesController#new (for 189.24.120.56 at 2008-10-26 10:01:06) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"new", "controller"=>"subsidiaries"}
Rendering subsidiaries/new
Completed in 0.02282 (43 reqs/sec) | Rendering: 0.01899 (83%) | DB: 0.00211 (9%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries/new?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing SubsidiariesController#create (for 189.24.120.56 at 2008-10-26 10:01:28) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"commit"=>"Criar", "authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"create", "subsidiary"=>{"title"=>"Filial Rio de Janeiro"}, "controller"=>"subsidiaries"}
Redirected to http://teste.suaempreza.com.br/subsidiaries/1
Completed in 0.11018 (9 reqs/sec) | DB: 0.10666 (96%) | 302 Found [http://teste.suaempreza.com.br/subsidiaries]
Processing SubsidiariesController#show (for 189.24.120.56 at 2008-10-26 10:01:28) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiH0ZpbGlhbCBjcmlhZGEgY29tIHN1
Y2Vzc28uBjoKQHVzZWR7BjsIRg==--95ab7ac643f4f9cc6683c5c4cb04558027955e7f
Parameters: {"action"=>"show", "id"=>"1", "controller"=>"subsidiaries"}
Rendering subsidiaries/show
Completed in 0.01586 (63 reqs/sec) | Rendering: 0.01183 (74%) | DB: 0.00243 (15%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries/1]
Processing SubsidiariesController#index (for 189.24.120.56 at 2008-10-26 10:01:36) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiH0ZpbGlhbCBjcmlhZGEgY29tIHN1
Y2Vzc28uBjoKQHVzZWR7BjsIVA==--08cdf17a1ace26f3f577633eeb8753d7cb361bf5
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.01288 (77 reqs/sec) | Rendering: 0.00239 (18%) | DB: 0.00882 (68%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing SubsidiariesController#edit_range (for 189.24.120.56 at 2008-10-26 10:01:43) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"edit_range", "id"=>"1", "controller"=>"subsidiaries"}
Rendering subsidiaries/edit_range
Completed in 0.08781 (11 reqs/sec) | Rendering: 0.06251 (71%) | DB: 0.02405 (27%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries/edit_range/1?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing SubsidiariesController#change_range (for 189.24.120.56 at 2008-10-26 10:01:53) [PUT]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"_method"=>"put", "authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"change_range", "id"=>"1", "controller"=>"subsidiaries", "state"=>"19"}
Rendering subsidiaries/edit_range
Completed in 0.98978 (1 reqs/sec) | Rendering: 0.01097 (1%) | DB: 0.97169 (98%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries/change_range/1?state=19]
Processing SubsidiariesController#change_range (for 189.24.120.56 at 2008-10-26 10:02:03) [PUT]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"_method"=>"put", "authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"change_range", "id"=>"1", "controller"=>"subsidiaries", "state"=>"8"}
Rendering subsidiaries/edit_range
Completed in 0.54766 (1 reqs/sec) | Rendering: 0.09947 (18%) | DB: 0.44073 (80%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries/change_range/1?state=8]
Processing PeopleController#index (for 189.24.120.56 at 2008-10-26 10:02:11) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.02467 (40 reqs/sec) | Rendering: 0.01745 (70%) | DB: 0.00215 (8%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing PeopleController#new (for 189.24.120.56 at 2008-10-26 10:02:17) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"new", "controller"=>"people"}
Rendering people/new
Completed in 0.04448 (22 reqs/sec) | Rendering: 0.04144 (93%) | DB: 0.00155 (3%) | 200 OK [http://teste.suaempreza.com.br/people/new?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing CompanySellerController#index (for 189.24.120.56 at 2008-10-26 10:02:40) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.02493 (40 reqs/sec) | Rendering: 0.01902 (76%) | DB: 0.00183 (7%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing PeopleController#people_to_confirm (for 189.24.120.56 at 2008-10-26 10:03:19) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.01530 (65 reqs/sec) | Rendering: 0.01249 (81%) | DB: 0.00177 (11%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing CompanyManagementController#index (for 189.24.120.56 at 2008-10-26 10:03:57) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"company_management"}
Rendering company_management/index
Completed in 0.02441 (40 reqs/sec) | Rendering: 0.01644 (67%) | DB: 0.00301 (12%) | 200 OK [http://teste.suaempreza.com.br/company_management]
Processing SubsidiariesController#index (for 189.24.120.56 at 2008-10-26 10:04:20) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.00486 (205 reqs/sec) | Rendering: 0.00181 (37%) | DB: 0.00150 (30%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing SubsidiariesController#destroy (for 189.24.120.56 at 2008-10-26 10:04:24) [DELETE]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"_method"=>"delete", "authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"destroy", "id"=>"1", "controller"=>"subsidiaries"}
Redirected to http://teste.suaempreza.com.br/subsidiaries
Completed in 0.04489 (22 reqs/sec) | DB: 0.04087 (91%) | 302 Found [http://teste.suaempreza.com.br/subsidiaries/1]
Processing SubsidiariesController#index (for 189.24.120.56 at 2008-10-26 10:04:25) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.00373 (268 reqs/sec) | Rendering: 0.00061 (16%) | DB: 0.00176 (47%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries]
Processing UsersController#edit (for 189.24.120.56 at 2008-10-26 10:04:28) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"edit", "id"=>"4", "controller"=>"users"}
Completed in 0.05285 (18 reqs/sec) | Rendering: 0.04957 (93%) | DB: 0.00247 (4%) | 200 OK [http://teste.suaempreza.com.br/users/4/edit?authenticity_token=6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654]
Processing AccountsController#edit (for 189.24.120.56 at 2008-10-26 10:04:31) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"authenticity_token"=>"6f3d7f5d56f2d0bf6fccb1bc1e4a6be72e40b654", "action"=>"edit", "controller"=>"accounts"}
Rendering accounts/edit
Completed in 0.03288 (30 reqs/sec) | Rendering: 0.02815 (85%) | DB: 0.00088 (2%) | 200 OK [http://teste.suaempreza.com.br/change_password]
Processing SessionsController#destroy (for 189.24.120.56 at 2008-10-26 10:04:34) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU5OGQxNmFiMzliOTY5YmU4Yjdi
YWNhZWIxMzdiMzRhNSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--745aabff60ff3ece5a7b49a3c6fc9c7e2c77d65e
Parameters: {"action"=>"destroy", "controller"=>"sessions"}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.00453 (220 reqs/sec) | DB: 0.00148 (32%) | 302 Found [http://teste.suaempreza.com.br/logout]
Processing MainController#index (for 189.24.120.56 at 2008-10-26 10:04:38) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiHVZvY8OqIHNhaXUgZGEgc3VhIGNvbnRhLgY6CkB1
c2VkewY7BkY=--d93d882730e6892b62d858fc068d7706ddc160de
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.00230 (435 reqs/sec) | Rendering: 0.00204 (88%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing MainController#index (for 201.51.112.117 at 2008-10-26 15:39:29) [GET]
Session ID: f96da21f2c38d6124df23128a89bde47
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.10308 (9 reqs/sec) | Rendering: 0.09935 (96%) | DB: 0.00103 (0%) | 200 OK [http://teste.suaempreza.com.br/]
Processing SessionsController#create (for 201.51.112.117 at 2008-10-26 15:40:07) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlMzM4MTQ4Mjc1Yzc3MGY2ZjI2ZTNlNjE4NDA5NTU4
MzkiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7AAY6CkB1c2VkewA=--762ddaa266afa080708007934fbac9ceb4835776
Parameters: {"x"=>"32", "y"=>"10", "authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"create", "controller"=>"sessions", "password"=>"admin", "login"=>"admin"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.79885 (1 reqs/sec) | DB: 0.42313 (52%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 201.51.112.117 at 2008-10-26 15:40:09) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--6a47a81a10b0ec12f1171a9249f1e9694cbb4d51
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.13993 (7 reqs/sec) | Rendering: 0.12719 (90%) | DB: 0.00708 (5%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing UsersController#new (for 201.51.112.117 at 2008-10-26 15:41:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--121a938f314d855ccf799e67c440ddfbec6d90dd
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.38988 (2 reqs/sec) | Rendering: 0.13262 (34%) | DB: 0.03672 (9%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:53) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserGeneralManager", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.09578 (10 reqs/sec) | Rendering: 0.00713 (7%) | DB: 0.00396 (4%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:55) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserSegmentManager", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00397 (251 reqs/sec) | Rendering: 0.00216 (54%) | DB: 0.00092 (23%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:55) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministrator", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00458 (218 reqs/sec) | Rendering: 0.00279 (60%) | DB: 0.00084 (18%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:56) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministratorSenior", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00425 (235 reqs/sec) | Rendering: 0.00253 (59%) | DB: 0.00080 (18%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:56) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministratorTrainee", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00529 (188 reqs/sec) | Rendering: 0.00250 (47%) | DB: 0.00088 (16%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:57) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserCompany", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.07443 (13 reqs/sec) | Rendering: 0.03401 (45%) | DB: 0.01874 (25%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministratorTrainee", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00576 (173 reqs/sec) | Rendering: 0.00247 (42%) | DB: 0.00231 (40%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministratorSenior", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00892 (112 reqs/sec) | Rendering: 0.00668 (74%) | DB: 0.00121 (13%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserWebAdministrator", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00424 (235 reqs/sec) | Rendering: 0.00245 (57%) | DB: 0.00089 (20%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserSegmentManager", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00425 (235 reqs/sec) | Rendering: 0.00243 (57%) | DB: 0.00081 (19%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#change_user_type (for 201.51.112.117 at 2008-10-26 15:46:59) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "type"=>"UserGeneralManager", "action"=>"change_user_type", "controller"=>"users"}
Completed in 0.00456 (219 reqs/sec) | Rendering: 0.00267 (58%) | DB: 0.00098 (21%) | 200 OK [http://teste.suaempreza.com.br/users/change_user_type]
Processing UsersController#create (for 201.51.112.117 at 2008-10-26 15:47:58) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"user"=>{"password_confirmation"=>"3864", "login"=>"balzana", "password"=>"3864", "email"=>"[email protected]"}, "commit"=>"Sign up", "type"=>"UserGeneralManager", "authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"create", "controller"=>"users", "person"=>{"name"=>"adilson balzana martins", "city"=>"Rio de Janeiro", "rg_exp"=>"ifp - rj", "zip"=>"21021350", "number"=>"318", "cpf"=>"92131611749", "rg_exp_date(1i)"=>"1988", "rg_exp_date(2i)"=>"11", "rg_exp_date(3i)"=>"7", "date_birth(1i)"=>"1968", "date_birth(2i)"=>"5", "subsidiary_id"=>"", "date_birth(3i)"=>"8", "street"=>"Rua Prof. Plinio Bastos", "neighborhood"=>"Olaria", "rg"=>"067516690"}}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Sent mail to [email protected]
Rendering users/show_users
Completed in 2.13327 (0 reqs/sec) | Rendering: 0.01432 (0%) | DB: 1.85036 (86%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing SubsidiariesController#index (for 201.51.112.117 at 2008-10-26 15:48:25) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiZ09icmlnYWRvIHBvciBzZSBjYWRh
c3RyYXIhIFBvciBmYXZvciBjaGVxdWUgc2V1IGVtYWlsIHBhcmEgYXRpdmFy
IHN1YSBjb250YSBlIHNlIGxvZ2FyIG5vIHNpc3RlbWEuBjoKQHVzZWR7BjsI
Rg==--ec6d3a99a49cea48a3d8180e9bfa77c04df2c8b7
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.02961 (33 reqs/sec) | Rendering: 0.01263 (42%) | DB: 0.00177 (5%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries?authenticity_token=552d5de49f33968282b9e641785eb8bbf09ad240]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:48:36) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiZ09icmlnYWRvIHBvciBzZSBjYWRh
c3RyYXIhIFBvciBmYXZvciBjaGVxdWUgc2V1IGVtYWlsIHBhcmEgYXRpdmFy
IHN1YSBjb250YSBlIHNlIGxvZ2FyIG5vIHNpc3RlbWEuBjoKQHVzZWR7BjsI
VA==--a0fecbd3911c842665ea7e09c3ca89dc1f4cc530
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.02940 (34 reqs/sec) | Rendering: 0.02208 (75%) | DB: 0.00189 (6%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=552d5de49f33968282b9e641785eb8bbf09ad240]
Processing CompanySellerController#index (for 201.51.112.117 at 2008-10-26 15:48:43) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.03386 (29 reqs/sec) | Rendering: 0.01890 (55%) | DB: 0.01034 (30%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=552d5de49f33968282b9e641785eb8bbf09ad240]
Processing PeopleController#people_to_confirm (for 201.51.112.117 at 2008-10-26 15:48:57) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.01462 (68 reqs/sec) | Rendering: 0.01191 (81%) | DB: 0.00164 (11%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing CompanyManagementController#index (for 201.51.112.117 at 2008-10-26 15:49:02) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"index", "controller"=>"company_management"}
Rendering company_management/index
Completed in 0.01971 (50 reqs/sec) | Rendering: 0.01131 (57%) | DB: 0.00330 (16%) | 200 OK [http://teste.suaempreza.com.br/company_management]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:49:15) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00065 (17%) | DB: 0.00177 (46%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=552d5de49f33968282b9e641785eb8bbf09ad240]
Processing UsersController#new (for 201.51.112.117 at 2008-10-26 15:49:25) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"authenticity_token"=>"552d5de49f33968282b9e641785eb8bbf09ad240", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.16147 (6 reqs/sec) | Rendering: 0.14502 (89%) | DB: 0.01450 (8%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing SessionsController#destroy (for 201.51.112.117 at 2008-10-26 15:50:11) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiUzMzgxNDgyNzVjNzcwZjZmMjZl
M2U2MTg0MDk1NTgzOSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--63b61654ebcebbf7b9d87e5bf4b0019e4b8ed7aa
Parameters: {"action"=>"destroy", "controller"=>"sessions"}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.00881 (113 reqs/sec) | DB: 0.00271 (30%) | 302 Found [http://teste.suaempreza.com.br/logout]
Processing MainController#index (for 201.51.112.117 at 2008-10-26 15:50:15) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiHVZvY8OqIHNhaXUgZGEgc3VhIGNvbnRhLgY6CkB1
c2VkewY7BkY=--d93d882730e6892b62d858fc068d7706ddc160de
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.02904 (34 reqs/sec) | Rendering: 0.02569 (88%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing SessionsController#create (for 201.51.112.117 at 2008-10-26 15:50:29) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlMDUzNjFhODlhODY2Y2Q4OWJjNTc1YjA2NWMxYTFi
ODIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7BjoLbm90aWNlIh1Wb2PDqiBzYWl1IGRhIHN1YSBjb250YS4GOgpAdXNl
ZHsGOwdU--07abd472881dc6fc65ff3104a67086b2545363ca
Parameters: {"x"=>"26", "y"=>"7", "authenticity_token"=>"c6e573ace4a18b2e438f9aa180a49b4481e011aa", "action"=>"create", "controller"=>"sessions", "password"=>"3864", "login"=>"balzana"}
Redirected to http://teste.suaempreza.com.br/
Completed in 0.00281 (355 reqs/sec) | DB: 0.00083 (29%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing MainController#index (for 201.51.112.117 at 2008-10-26 15:50:30) [GET]
Session ID: BAh7BzoMY3NyZl9pZCIlMDUzNjFhODlhODY2Y2Q4OWJjNTc1YjA2NWMxYTFi
ODIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7BjoKZXJyb3IiTlN1YSBjb250YSBuw6NvIGVzdMOhIGF0aXZhLiBGYXZv
ciB2ZXJpZmljYXIgbyBlLW1haWwgcGFyYSBhdGl2YXIgYSBjb250YS4GOgpA
dXNlZHsGOwdG--f06721a44ec5dd7663e96b6e3aa2419b16173b0a
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.00217 (459 reqs/sec) | Rendering: 0.00193 (88%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/]
Processing AccountsController#show (for 201.51.112.117 at 2008-10-26 15:51:30) [GET]
Session ID: 08b778e07ca695fcd6ba2f4e30e075e0
Parameters: {"action"=>"show", "id"=>"af74b841754b31797505d6e7af51dc150c9e3de1", "controller"=>"accounts"}
Sent mail to [email protected]
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.38507 (2 reqs/sec) | DB: 0.34068 (88%) | 302 Found [http://teste.suaempreza.com.br/activate/af74b841754b31797505d6e7af51dc150c9e3de1]
Processing MainController#index (for 201.51.112.117 at 2008-10-26 15:51:30) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiVFNldSBlbWFpbCBmb2kgdmFsaWRhZG8uIEFww7Nz
IGEgY29uZmlybWHDp8OjbyBkYSBzdWEgY29udGEsIHZvY8OqIHBvZGUgc2Ug
bG9nYXIGOgpAdXNlZHsGOwZG--c6a198df1e25844629e77100d2162041dda5740c
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.00203 (491 reqs/sec) | Rendering: 0.00179 (88%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing SessionsController#create (for 201.51.112.117 at 2008-10-26 15:52:09) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlZGRjZmMzZTQ5MmI2ZDA4Zjk3ZjYwMjk0ZWNiZmI5
ZjMiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7BjoLbm90aWNlIlRTZXUgZW1haWwgZm9pIHZhbGlkYWRvLiBBcMOzcyBh
IGNvbmZpcm1hw6fDo28gZGEgc3VhIGNvbnRhLCB2b2PDqiBwb2RlIHNlIGxv
Z2FyBjoKQHVzZWR7BjsHVA==--6ba15e670b28b8c841d9158e46acb5004ac4d222
Parameters: {"x"=>"31", "y"=>"9", "authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"create", "controller"=>"sessions", "password"=>"3864", "login"=>"balzana"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.00580 (172 reqs/sec) | DB: 0.00262 (45%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 201.51.112.117 at 2008-10-26 15:52:09) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--a79c06f72d68e8f2ece0679408f8b8a0cae74b55
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.02549 (39 reqs/sec) | Rendering: 0.01925 (75%) | DB: 0.00397 (15%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing UsersController#new (for 201.51.112.117 at 2008-10-26 15:52:31) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--9154985f7e1ce2c8a21ba0617a1534afe39fb41e
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.05624 (17 reqs/sec) | Rendering: 0.05364 (95%) | DB: 0.00110 (1%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:52:59) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.00385 (259 reqs/sec) | Rendering: 0.00067 (17%) | DB: 0.00168 (43%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#new (for 201.51.112.117 at 2008-10-26 15:53:10) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"new", "controller"=>"people"}
Rendering people/new
Completed in 0.05318 (18 reqs/sec) | Rendering: 0.03705 (69%) | DB: 0.01447 (27%) | 200 OK [http://teste.suaempreza.com.br/people/new?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#create (for 201.51.112.117 at 2008-10-26 15:56:43) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"commit"=>"Criar", "authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"create", "controller"=>"people", "person"=>{"name"=>"Cleite Veras", "city"=>"rio de janeiro", "rg_exp"=>"ifp - rj", "zip"=>"21021350", "number"=>"300", "cpf"=>"80432913734", "rg_exp_date(1i)"=>"1987", "rg_exp_date(2i)"=>"5", "rg_exp_date(3i)"=>"15", "date_birth(1i)"=>"1964", "date_birth(2i)"=>"11", "date_birth(3i)"=>"10", "street"=>"prof. plinio bastos", "neighborhood"=>"olaria", "rg"=>"083972919"}}
Redirected to http://teste.suaempreza.com.br/people/3
Completed in 0.25267 (3 reqs/sec) | DB: 0.24650 (97%) | 302 Found [http://teste.suaempreza.com.br/people]
Processing PeopleController#show (for 201.51.112.117 at 2008-10-26 15:56:44) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiH1Blc3NvYSBjcmlhZGEgY29tIHN1
Y2Vzc28hBjoKQHVzZWR7BjsIRg==--17b1850efc6b49b638564770a169af30f1fc01e8
Parameters: {"action"=>"show", "id"=>"3", "controller"=>"people"}
Rendering people/show
Completed in 0.39036 (2 reqs/sec) | Rendering: 0.38537 (98%) | DB: 0.00295 (0%) | 200 OK [http://teste.suaempreza.com.br/people/3]
Processing PeopleController#confirm_signup (for 201.51.112.117 at 2008-10-26 15:56:54) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiH1Blc3NvYSBjcmlhZGEgY29tIHN1
Y2Vzc28hBjoKQHVzZWR7BjsIVA==--7209cdb7b0a542bb647f05cef9d5412902c3e354
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"confirm_signup", "id"=>"3", "controller"=>"people"}
Rendering people/show
Completed in 0.00597 (167 reqs/sec) | Rendering: 0.00161 (26%) | DB: 0.00236 (39%) | 200 OK [http://teste.suaempreza.com.br/people/confirm_signup/3]
Processing UsersController#new (for 201.51.112.117 at 2008-10-26 15:57:09) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiUU7Do28gZm9pIHBvc3PDrXZlbCBj
b25maXJtYXIgYSB2YWxpZGFkZSBkbyB1c3XDoXJpbyBjb20gbyB1c3XDoXJp
byBjb3JyZW50ZS4GOgpAdXNlZHsGOwhG--f9a7fbdc51975bd4a97da9fd74f66894002f6e50
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.06611 (15 reqs/sec) | Rendering: 0.04645 (70%) | DB: 0.01817 (27%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing PeopleController#confirm_signup (for 201.51.112.117 at 2008-10-26 15:57:11) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiUU7Do28gZm9pIHBvc3PDrXZlbCBj
b25maXJtYXIgYSB2YWxpZGFkZSBkbyB1c3XDoXJpbyBjb20gbyB1c3XDoXJp
byBjb3JyZW50ZS4GOgpAdXNlZHsGOwhG--f9a7fbdc51975bd4a97da9fd74f66894002f6e50
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"confirm_signup", "id"=>"3", "controller"=>"people"}
Rendering people/show
Completed in 0.01685 (59 reqs/sec) | Rendering: 0.00164 (9%) | DB: 0.01258 (74%) | 200 OK [http://teste.suaempreza.com.br/people/confirm_signup/3]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:57:17) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiUU7Do28gZm9pIHBvc3PDrXZlbCBj
b25maXJtYXIgYSB2YWxpZGFkZSBkbyB1c3XDoXJpbyBjb20gbyB1c3XDoXJp
byBjb3JyZW50ZS4GOgpAdXNlZHsGOwhU--642bf85335716fe4ce5a96e614b607edc1e7ee35
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.03691 (27 reqs/sec) | Rendering: 0.00145 (3%) | DB: 0.03367 (91%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#show (for 201.51.112.117 at 2008-10-26 15:57:28) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"show", "id"=>"3", "controller"=>"people"}
Rendering people/show
Completed in 0.00474 (211 reqs/sec) | Rendering: 0.00140 (29%) | DB: 0.00167 (35%) | 200 OK [http://teste.suaempreza.com.br/people/3?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:57:41) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.00448 (222 reqs/sec) | Rendering: 0.00131 (29%) | DB: 0.00172 (38%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#edit (for 201.51.112.117 at 2008-10-26 15:57:51) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"edit", "id"=>"3", "controller"=>"people"}
Rendering people/edit
Completed in 0.03973 (25 reqs/sec) | Rendering: 0.03690 (92%) | DB: 0.00168 (4%) | 200 OK [http://teste.suaempreza.com.br/people/3/edit?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:58:10) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.04561 (21 reqs/sec) | Rendering: 0.00135 (2%) | DB: 0.04246 (93%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 15:58:10) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.01873 (53 reqs/sec) | Rendering: 0.00139 (7%) | DB: 0.01555 (83%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing CompanySellerController#index (for 201.51.112.117 at 2008-10-26 15:58:33) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.00312 (320 reqs/sec) | Rendering: 0.00059 (18%) | DB: 0.00164 (52%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing PeopleController#people_to_confirm (for 201.51.112.117 at 2008-10-26 15:58:43) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.00477 (209 reqs/sec) | Rendering: 0.00068 (14%) | DB: 0.00221 (46%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing CompanyManagementController#index (for 201.51.112.117 at 2008-10-26 15:58:46) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"company_management"}
Rendering company_management/index
Completed in 0.00840 (119 reqs/sec) | Rendering: 0.00255 (30%) | DB: 0.00354 (42%) | 200 OK [http://teste.suaempreza.com.br/company_management]
Processing UsersController#new (for 201.51.112.117 at 2008-10-26 16:09:19) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.75137 (1 reqs/sec) | Rendering: 0.45486 (60%) | DB: 0.14864 (19%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-26 16:12:53) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.12550 (7 reqs/sec) | Rendering: 0.02221 (17%) | DB: 0.01146 (9%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing CompanySellerController#index (for 201.51.112.117 at 2008-10-26 16:13:04) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"authenticity_token"=>"0d1c06c6b8660e1ef292a94aa49f3758c6f01910", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.26630 (3 reqs/sec) | Rendering: 0.00901 (3%) | DB: 0.22599 (84%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=0d1c06c6b8660e1ef292a94aa49f3758c6f01910]
Processing SessionsController#destroy (for 201.51.112.117 at 2008-10-26 16:13:11) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVkZGNmYzNlNDkyYjZkMDhmOTdm
NjAyOTRlY2JmYjlmMyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--d146e9a32c041d85f3aaac8d486aa6cae8e6c61c
Parameters: {"action"=>"destroy", "controller"=>"sessions"}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.25386 (3 reqs/sec) | DB: 0.00179 (0%) | 302 Found [http://teste.suaempreza.com.br/logout]
Processing MainController#index (for 201.51.112.117 at 2008-10-26 16:13:12) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiHVZvY8OqIHNhaXUgZGEgc3VhIGNvbnRhLgY6CkB1
c2VkewY7BkY=--d93d882730e6892b62d858fc068d7706ddc160de
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.04835 (20 reqs/sec) | Rendering: 0.04483 (92%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing MainController#index (for 139.82.86.2 at 2008-10-27 03:57:29) [GET]
Session ID: f80f706f3888dd2b7e14f4e580de1182
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.14234 (7 reqs/sec) | Rendering: 0.13876 (97%) | DB: 0.00937 (6%) | 200 OK [http://teste.suaempreza.com.br/]
Processing SessionsController#create (for 139.82.86.2 at 2008-10-27 04:00:31) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlNjk3NjEwZWEzY2JjOGUyZmFlNGNjYThiYWE2M2Qw
MzEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7AAY6CkB1c2VkewA=--5efdbd804b03fb132915ce03cd6a13d04c59a831
Parameters: {"x"=>"0", "y"=>"0", "authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"create", "controller"=>"sessions", "password"=>"admin", "login"=>"admin"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.21021 (4 reqs/sec) | DB: 0.07258 (34%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 139.82.86.2 at 2008-10-27 04:00:32) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--8010fc4977d8e4162476c76a565d8ce29b280c7a
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.12907 (7 reqs/sec) | Rendering: 0.08373 (64%) | DB: 0.00365 (2%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing SubsidiariesController#index (for 139.82.86.2 at 2008-10-27 04:00:46) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--390b3f46f82d1faac333ea382974f3ab8ff1a496
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"subsidiaries"}
Rendering subsidiaries/index
Completed in 0.07505 (13 reqs/sec) | Rendering: 0.01390 (18%) | DB: 0.02186 (29%) | 200 OK [http://teste.suaempreza.com.br/subsidiaries?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing PeopleController#index (for 139.82.86.2 at 2008-10-27 04:00:48) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.13729 (7 reqs/sec) | Rendering: 0.04651 (33%) | DB: 0.00383 (2%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing CompanySellerController#index (for 139.82.86.2 at 2008-10-27 04:00:53) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.10868 (9 reqs/sec) | Rendering: 0.00882 (8%) | DB: 0.07543 (69%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing PeopleController#index (for 139.82.86.2 at 2008-10-27 04:00:59) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.00451 (221 reqs/sec) | Rendering: 0.00139 (30%) | DB: 0.00169 (37%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing CompanySellerController#index (for 139.82.86.2 at 2008-10-27 04:01:02) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.00299 (334 reqs/sec) | Rendering: 0.00060 (19%) | DB: 0.00152 (50%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing PeopleController#people_to_confirm (for 139.82.86.2 at 2008-10-27 04:01:03) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.02871 (34 reqs/sec) | Rendering: 0.02590 (90%) | DB: 0.00176 (6%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing PeopleController#people_to_confirm (for 139.82.86.2 at 2008-10-27 04:01:13) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.00371 (269 reqs/sec) | Rendering: 0.00059 (15%) | DB: 0.00193 (52%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing PeopleController#people_to_confirm (for 139.82.86.2 at 2008-10-27 04:01:15) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"people_to_confirm", "controller"=>"people"}
Rendering people/people_to_confirm
Completed in 0.00326 (306 reqs/sec) | Rendering: 0.00053 (16%) | DB: 0.00170 (52%) | 200 OK [http://teste.suaempreza.com.br/people/people_to_confirm]
Processing CompanyManagementController#index (for 139.82.86.2 at 2008-10-27 04:01:16) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"company_management"}
Rendering company_management/index
Completed in 0.01819 (54 reqs/sec) | Rendering: 0.01008 (55%) | DB: 0.00316 (17%) | 200 OK [http://teste.suaempreza.com.br/company_management]
Processing CompanySellerController#index (for 139.82.86.2 at 2008-10-27 04:01:20) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"index", "controller"=>"company_seller"}
Rendering company_seller/index
Completed in 0.00290 (345 reqs/sec) | Rendering: 0.00054 (18%) | DB: 0.00152 (52%) | 200 OK [http://teste.suaempreza.com.br/company_seller?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing UsersController#edit (for 139.82.86.2 at 2008-10-27 04:01:22) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"authenticity_token"=>"19da5004930fc5ae468ea540972ed2869d0fa277", "action"=>"edit", "id"=>"4", "controller"=>"users"}
Completed in 0.09749 (10 reqs/sec) | Rendering: 0.09471 (97%) | DB: 0.00201 (2%) | 200 OK [http://teste.suaempreza.com.br/users/4/edit?authenticity_token=19da5004930fc5ae468ea540972ed2869d0fa277]
Processing SessionsController#destroy (for 139.82.86.2 at 2008-10-27 04:01:30) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkJOgxjc3JmX2lkIiU2OTc2MTBlYTNjYmM4ZTJmYWU0
Y2NhOGJhYTYzZDAzMSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--b30aca33b3a4e90f74df0dbe43d648c15ad23419
Parameters: {"action"=>"destroy", "controller"=>"sessions"}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.00507 (197 reqs/sec) | DB: 0.00198 (39%) | 302 Found [http://teste.suaempreza.com.br/logout]
Processing MainController#index (for 139.82.86.2 at 2008-10-27 04:01:30) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiHVZvY8OqIHNhaXUgZGEgc3VhIGNvbnRhLgY6CkB1
c2VkewY7BkY=--d93d882730e6892b62d858fc068d7706ddc160de
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.00201 (496 reqs/sec) | Rendering: 0.00178 (88%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing AccountsController#show (for 201.51.112.117 at 2008-10-27 08:56:30) [GET]
Session ID: 665c82d975175efa06ea1a506f702595
Parameters: {"action"=>"show", "id"=>"af74b841754b31797505d6e7af51dc150c9e3de1", "controller"=>"accounts"}
Redirected to http://teste.suaempreza.com.br/login
Completed in 0.09583 (10 reqs/sec) | DB: 0.02554 (26%) | 302 Found [http://teste.suaempreza.com.br/activate/af74b841754b31797505d6e7af51dc150c9e3de1]
Processing MainController#index (for 201.51.112.117 at 2008-10-27 08:56:31) [GET]
Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
SGFzaHsGOgtub3RpY2UiWFNldSBlbWFpbCBqw6EgZm9pIHZhbGlkYWRvLiBB
cMOzcyBhIGNvbmZpcm1hw6fDo28gZGEgc3VhIGNvbnRhLCB2b2PDqiBwb2Rl
IHNlIGxvZ2FyBjoKQHVzZWR7BjsGRg==--a4b7bf5abe8963ad0c478683db88b38bfec967c0
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.11079 (9 reqs/sec) | Rendering: 0.10736 (96%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/login]
Processing MainController#index (for 201.51.112.117 at 2008-10-27 08:58:43) [GET]
Session ID: dff571cff50bffb1a7e260b25dbf70c6
Parameters: {"action"=>"index", "controller"=>"main"}
Rendering main/index
Completed in 0.00247 (405 reqs/sec) | Rendering: 0.00222 (89%) | DB: 0.00000 (0%) | 200 OK [http://teste.suaempreza.com.br/]
Processing SessionsController#create (for 201.51.112.117 at 2008-10-27 08:59:33) [POST]
Session ID: BAh7BzoMY3NyZl9pZCIlYWVhYzIzNDk1YTJjZjBkYzVhZjIzNmNhOTFlZjZh
ODciCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
c2h7AAY6CkB1c2VkewA=--dcf1e0c33a241ef29a2492bb65979dab46aa5a70
Parameters: {"x"=>"0", "y"=>"0", "authenticity_token"=>"fe5930fa77e4de52d7a2336143cfdc35dc22911b", "action"=>"create", "controller"=>"sessions", "password"=>"3864", "login"=>"balzana"}
Redirected to http://teste.suaempreza.com.br/users
Completed in 0.24125 (4 reqs/sec) | DB: 0.10615 (43%) | 302 Found [http://teste.suaempreza.com.br/session]
Processing UsersController#index (for 201.51.112.117 at 2008-10-27 08:59:34) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVhZWFjMjM0OTVhMmNmMGRjNWFm
MjM2Y2E5MWVmNmE4NyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CEY=--f6912072ea151c16b7f83a23b912c23ea96a6163
Parameters: {"action"=>"index", "controller"=>"users"}
Rendering template within layouts/admin
Rendering users/show_users
Completed in 0.13957 (7 reqs/sec) | Rendering: 0.08169 (58%) | DB: 0.02694 (19%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-27 08:59:44) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVhZWFjMjM0OTVhMmNmMGRjNWFm
MjM2Y2E5MWVmNmE4NyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiF0xvZ2FkbyBjb20gc3VjZXNzbwY6
CkB1c2VkewY7CFQ=--33bf7b53e4ca049504b530336b940bed2131deb9
Parameters: {"authenticity_token"=>"fe5930fa77e4de52d7a2336143cfdc35dc22911b", "action"=>"index", "controller"=>"people"}
Rendering people/index
Completed in 0.14743 (6 reqs/sec) | Rendering: 0.03746 (25%) | DB: 0.00516 (3%) | 200 OK [http://teste.suaempreza.com.br/people?authenticity_token=fe5930fa77e4de52d7a2336143cfdc35dc22911b]
Processing UsersController#new (for 201.51.112.117 at 2008-10-27 08:59:57) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVhZWFjMjM0OTVhMmNmMGRjNWFm
MjM2Y2E5MWVmNmE4NyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--a42750db66714a4b27ef21ec37363cfe4456dea4
Parameters: {"authenticity_token"=>"fe5930fa77e4de52d7a2336143cfdc35dc22911b", "action"=>"new", "controller"=>"users"}
Rendering users/new
Completed in 0.11101 (9 reqs/sec) | Rendering: 0.10866 (97%) | DB: 0.00087 (0%) | 200 OK [http://teste.suaempreza.com.br/signup]
Processing UsersController#create (for 201.51.112.117 at 2008-10-27 09:04:04) [POST]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVhZWFjMjM0OTVhMmNmMGRjNWFm
MjM2Y2E5MWVmNmE4NyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA==--a42750db66714a4b27ef21ec37363cfe4456dea4
Parameters: {"user"=>{"password_confirmation"=>"1234", "login"=>"Pugliese", "password"=>"1234", "email"=>"[email protected]"}, "commit"=>"Sign up", "type"=>"UserSegmentManager", "authenticity_token"=>"fe5930fa77e4de52d7a2336143cfdc35dc22911b", "action"=>"create", "controller"=>"users", "person"=>{"name"=>"Guilherme Pugliese", "city"=>"Niterói", "rg_exp"=>"ifp - rj", "zip"=>"21021330", "number"=>"98", "cpf"=>"92133614749", "rg_exp_date(1i)"=>"1993", "rg_exp_date(2i)"=>"10", "rg_exp_date(3i)"=>"27", "date_birth(1i)"=>"1986", "date_birth(2i)"=>"4", "date_birth(3i)"=>"13", "street"=>"Praia de Icaraí", "neighborhood"=>"Icaraí", "rg"=>"06751140"}}
Cookie set: auth_token=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT
Sent mail to [email protected]
Rendering users/show_users
Completed in 1.52491 (0 reqs/sec) | Rendering: 0.41811 (27%) | DB: 0.36874 (24%) | 200 OK [http://teste.suaempreza.com.br/users]
Processing PeopleController#index (for 201.51.112.117 at 2008-10-27 09:04:22) [GET]
Session ID: BAh7CDoMdXNlcl9pZGkKOgxjc3JmX2lkIiVhZWFjMjM0OTVhMmNmMGRjNWFm
MjM2Y2E5MWVmNmE4NyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxh
c2g6OkZsYXNoSGFzaHsGOgtub3RpY2UiZ09icmlnYWRvIHBvciBzZSBjYWRh