-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.json
More file actions
1135 lines (1135 loc) · 95.1 KB
/
form.json
File metadata and controls
1135 lines (1135 loc) · 95.1 KB
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
{
"3" : {
"chi" : {
"代理的委任及本協議的有效期" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">賣方</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">現按照本協議的條款並在該等條款的規限下委任</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_015\"><sup>(1)</sup></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\" id=\"exclusive\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">以推銷位於</span>",
"<span class=\"cls_003\" id=\"property\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">的物業</span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">物業</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_003\">本協議由</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日起生效</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">並於</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日屆滿</span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">首尾</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_003\">兩天包括在內</span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">有效期</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">注意</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_007\">如屬獨家代理的關係</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">則即使物業在有效期內並非經由</span>",
"<span class=\"cls_007\">代理出售</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">賣方仍可能須向代理支付佣金</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">因此當賣方與代理建立獨家代理關係時應謹慎考慮</span>",
"<span class=\"cls_008\">。</span>",
"<span class=\"cls_007\">代理以獨家代理身分行事時須履行的特別責任</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">可在第</span>",
"<span class=\"cls_008\"> 13</span>",
"<span class=\"cls_007\">條下以額外條款的形式指明。</span>",
"<span class=\"cls_008\">]</span>"
],
"代理關係及代理的責任" : [
"<span class=\"cls_003\">代理與賣方同意</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>代理與賣方之間就物業而有的代理關係屬<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup>關係</span></li>",
"<li>如屬雙邊代理關係,則代理須在切實可行的範圍內,盡快以書面向賣方披露代理將向買方收取的佣金的數額或收費率;</li>",
"<li>如屬有可能代表雙方的代理關係,則代理須在建立雙邊代理關係後,在切實可行的範圍內,盡快以書面向賣方披露該代理關係以及代理將向買方收取的佣金的數額或收費率 ; 及</li>",
"<li>代理除須履行本協議或任何成文法則委予代理的責任外,亦須履行本協議附表 1 內所列的 責任。</li>",
"</ol>"
],
"放盤價[注意:賣方並沒有藉本條授權代理代賣方接受任何要約。放盤價只供放盤及作廣告宣傳之用。 ]" : [
"<span class=\"cls_003\">放盤價為港幣</span>",
"<span class=\"cls_003\" id=\"dollar\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">萬元</span>",
"<span class=\"cls_002\">(HK$</span>",
"<span class=\"cls_003\" id=\"dollarHK\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">。放盤價只</span>",
"<span class=\"cls_003\">只在賣方的書面指示下方可更改</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">而該等指示將構成本協議一部分。</span>"
],
"佣金" : [
"<span class=\"cls_003\">本協議適用於賣方須向代理支付的佣金的規定</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">列於本協議附表</span>",
"<span class=\"cls_013\"> 2 </span>",
"<span class=\"cls_003\">及</span>",
"<span class=\"cls_013\"> 4 </span>",
"<span class=\"cls_003\">內</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">。</span>"
],
"物業資料" : [
"<span class=\"cls_003\">代理須向賣方提供《 地產代理常規</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">一般責任及香港住宅物業</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">規例 》訂明並經代理</span>",
"<span class=\"cls_003\">填妥和簽署的物業資料表格</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">包括賣方的陳述</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">。</span>"
],
"視察物業" : [
"<ol type=\"a\">",
"<li>賣方<span class=\"cls_003\" id=\"showProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>容許<span class=\"cls_003\" id=\"userAgreeSeeProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>於雙方議定的時間查看物業。</li>",
"<li>賣方<span class=\"cls_003\" id=\"keepProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>將物業的鎖匙交由代理妥為保管,以供查看物業之用。</li>",
"<li>賣方<span class=\"cls_003\" id=\"watchProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理將鎖匙交予 <span class=\"cls_003\" id=\"userAgreeKeepKey\" style=\"color:lightblue;text-decoration:underline;\"></span>,以供查看物業之用。</li>",
"</ol>"
],
"分銷放盤" : [
"<ol type=\"a\">",
"<li>賣方<span class=\"cls_003\" id=\"distributProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理將物業分銷放盤,並將由賣方提供的關於賣方及物業的資料交予其他地產代理以供分銷放盤之用。</li>",
"<li>如代理將物業交由另一地產代理( “分銷放盤代理” )分銷放盤則代理須確保分銷放盤代理遵守《地產代理常規一般責任及香港住宅物業規例》中關於廣告宣傳的規定。</li>",
"</ol>"
],
"廣告宣傳" : [
"<ol type=\"a\">",
"<li>賣方<span class=\"cls_003\" id=\"advertisements\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理發出關於物業的廣告。</li>",
"<li>如對以上問題的回答是 “同意” 的話,則除本協議另有指明外,廣告宣傳費將由代理承擔。</li>",
"</ol>"
],
"代理須披露權益" : [
"<ol type=\"a\">",
"<li>代表代理簽署本協議的人現披露 : 他或其指明親屬 (5) , 或其任何代名人 , 或其指明親屬的任何代名人, 或代理或代理的任何僱員 / 大股東 (6) / 合夥人 / 董事對物業<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>金錢上的或其他實益的權益 (7) :</li>",
"<li>如對以上問題的回答是 “ 有 ” 的話 , 則必須在本協議附表 3 述明有關權益的詳情。</li>",
"<li>代表代理簽署本協議的人須在切實可行的範圍內 , 盡快以書面向賣方披露在有效期內產生的上述 (a) 段所提述的任何權益。</li>",
"</ol>"
],
"賣方的確認" : [
"<span class=\"cls_003\">賣方確認他已</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>閱讀並明白本協議的條款 ; 及</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>收取本協議第5條規定提供的物業資料表格(包括賣方的陳述)。</label></li>",
"<li><input type=\"checkbox\" name=\"salePurchaseAgreement\" value=1><label for=1> 同意於賣方與一名買方訂立具約束力的買賣協議之前收取物業資料表格(包括賣方的陳述)。</label></li>",
"</ol>"
],
"附表" : [
"<p>本協議的附表構成本協議的一部分。</p>"
],
"如物業不容許作住宅用途則本協議即屬無效" : [
"<p>如物業的佔用許可證所規定的用途並不包括住宅用途或不容許作住宅用途 , 則本協議即屬無效。</p>"
],
"額外條款 [ 注意 : 這些額外條款不得與本協議的其他條款有所抵觸 , 亦不得限制本協議的其他條款。] " : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
},
"eng" : {
"Appointment of Agent and Validity Period of this Agreement" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Vendor</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">appoint</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">Agent</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_015\"><sup>(1)</sup></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">subject to and in accordance with the terms of this Agreement to act as</span>",
"<span class=\"cls_003\" id=\"exclusive\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">agent in the marketing of</span>",
"<span class=\"cls_003\" id=\"property\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Property</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">.</span>",
"<span class=\"cls_003\">This Agreement shall take effect on</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">and expire on</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">both days inclusive</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Validity Period</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">CAUTION</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_007\">In the case of exclusive agency</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">the Vendor may be liable to pay commission to the Agent even if the Property is not sold through the Agent within the Validity Period.The Vendor should therefore consider carefully when he enters into an exclusive agency relationship with the Agent.Special obligations to be performed by the Agent under exclusive agency may be specified as extra terms under clause</span>",
"<span class=\"cls_008\"> 13</span>",
"<span class=\"cls_008\">]</span>"
],
"Agency Relationship and Duties of Agent" : [
"<span class=\"cls_003\">The Agent agrees with the Vendor that</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>the agency relationship between them in respect of the Property shall be a<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup></span></li>",
"<li>in the case of dual agency, the Agent shall as soon as is practicable disclose in writing to the Vendor the amount or rate of commission to be received by the Agent from a purchaser;</li>",
"<li>in the case of potentially dual agency, the Agent shall as soon as is practicable after dual agency arises disclose in writing to the Vendor such agency relationship and the amount or rate of commission to be received by the Agent from a purchaser; and</li>",
" <li>The Agent’s duties shall be as set out in Schedule 1 to this Agreement, in addition to the duties placed on the Agent by this Agreement or any enactment.</li>",
"</ol>"
],
"List Price [CAUTION: The Vendor does not confer upon the Agent, by virtue of this clause, the right to accept an offer on behalf of the Vendor. The list price is for the purpose of listing and advertising only.]" : [
"<span class=\"cls_003\">The list price shall be Hong Kong Dollar</span>",
"<span class=\"cls_003\" id=\"dollar\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(HK$</span>",
"<span class=\"cls_003\" id=\"dollarHK\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">The list price can only be varied with written instructions of the Vendor and such instructions shall form part of this Agreement.</span>"
],
"Commission" : [
"<span class=\"cls_003\"> The provisions of this Agreement applicable to the commission to be paid by the Vendor to the Agent shall be as set out in Schedules</span>",
"<span class=\"cls_013\"> 2 </span>",
"<span class=\"cls_003\">and</span>",
"<span class=\"cls_013\"> 4 </span>",
"<span class=\"cls_003\">to this Agreement</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">.</span>"
],
"Property Information" : [
"<span class=\"cls_003\">The Agent shall provide to the Vendor the Property Information Form including the Vendor’s Statement prescribed under the Estate Agents Practice</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">General Duties and Hong Kong Residential Properties</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">Regulation duly completed and signed by the Agent.</span>"
],
"Property Inspection" : [
"<ol type=\"a\">",
"<li>The Vendor<span class=\"cls_003\" id=\"showProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>to allow viewing of the Property by the<span class=\"cls_003\" id=\"userAgreeSeeProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>at a mutually agreeable time.</li>",
"<li>The Vendor<span class=\"cls_003\" id=\"keepProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>to pass the keys of the Property to the Agent for safe custody and for the viewing of the Property.</li>",
"<li>The Vendor<span class=\"cls_003\" id=\"watchProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to pass the keys to other estate<span class=\"cls_003\" id=\"userAgreeKeepKey\" style=\"color:lightblue;text-decoration:underline;\"></span>for the viewing of the Property.</li>",
"</ol>"
],
"Sub-listing" : [
"<ol type=\"a\">",
"<li>The Vendor<span class=\"cls_003\" id=\"distributProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to sub-list the Property and pass relevant information about the Vendor and the Property supplied by the Vendor to other estate agents for sub-listing purposes.</li>",
"<li>If the Agent sub-lists the Property to another estate agent (“sub-listing agent”), the Agent shall ensure that the sub-listing agent shall observe the Estate Agents Practice (General Duties and Hong Kong Residential Properties) Regulation regarding advertising.</li>",
"</ol>"
],
"Advertising" : [
"<ol type=\"a\">",
"<li>The Vendor<span class=\"cls_003\" id=\"advertisements\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to issue advertisement in respect of the Property.</li>",
"<li>If the answer to the above is “yes”, then the advertising fees will be borne by the Agent unless otherwise specified in this Agreement.</li>",
"</ol>"
],
"Disclosure of Interest by Agent" : [
"<ol type=\"a\">",
"<li>The person signing this Agreement on behalf of the Agent discloses that he or his specified relative (5), or anynominee of his or of his specified relative, or the Agent or any employee/substantial shareholder(6) /partner/director of the Agent<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>a pecuniary or other beneficial interest(7) in the Property.</li>",
"<li>If the answer to the above is “yes”, then the particulars of the interest must be specified in Schedule 3 to this Agreement.</li>",
"<li>The person signing this Agreement on behalf of the Agent shall as soon as is practicable disclose in writing to the Vendor any interest referred to in paragraph (a) above that may arise during the Validity Period.</li>",
"</ol>"
],
"Acknowledgement by Vendor" : [
"<span class=\"cls_003\">The Vendor acknowledges that he has</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>read and understood the terms of this Agreement; and</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>received the Property Information Form including the Vendor’s Statement required to be provided under clause 5 of this Agreement.</label></li>",
"<li><input type=\"checkbox\" name=\"salePurchaseAgreement\" value=1><label for=1> agreed to receive the Property Information Form including the Vendor’s Statement before entering into a binding agreement for sale and purchase between the Vendor and a purchaser.</label></li>",
"</ol>"
],
"Schedules" : [
"<p>The Schedules to this Agreement form part of this Agreement.</p>"
],
"Agreement void if domestic purpose or use not allowed" : [
"<p>This Agreement shall be void if the occupation permit for the Property does not include or allow domestic purpose or use.</p>"
],
"Extra Terms [CAUTION: These extra terms cannot conflict with or limit the other terms of this Agreement.]" : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
}
},
"4" : {
"chi" : {
"代理的委任及本協議的有效期" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">買方</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">現按照本協議的條款並在該等條款的規限下</span>",
"<span class=\"cls_003\">就擬購買本協議附表</span>",
"<span class=\"cls_010\"> 1 </span>",
"<span class=\"cls_003\">所列物業</span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">物業</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">一事委</span>",
"<span class=\"cls_003\">任</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_012\"><sup>(1)</sup></span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\" id=\"agencyContract\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">本協議由</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日起生效</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">並於</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日屆滿</span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">首尾</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_003\">兩天包括在內</span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">有效期</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">注意</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_006\">建議有效期不應超過</span>",
"<span class=\"cls_007\"> 3 </span>",
"<span class=\"cls_006\">個月。</span>",
"<span class=\"cls_007\">]</span>"
],
"代理關係及代理的責任" : [
"<span class=\"cls_003\">代理與買方同意</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>代理與買方之間就物業而有的代理關係屬<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup>關係</span></li>",
"<li>如屬雙邊代理關係,則代理須在切實可行的範圍內,盡快以書面向買方披露代理將向買方收取的佣金的數額或收費率;</li>",
"<li>如屬有可能代表雙方的代理關係,則代理須在建立雙邊代理關係後,在切實可行的範圍內,盡快以書面向買方披露該代理關係以及代理將向賣方收取的佣金的數額或收費率 ; 及</li>",
"<li>代理除須履行本協議或任何成文法則委予代理的責任外,亦須履行本協議附表2內所列的責任。</li>",
"</ol>"
],
"佣金" : [
"<span class=\"cls_003\">本協議適用於買方須向代理支付的佣金的規定</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">列於本協議附表</span>",
"<span class=\"cls_013\"> 1 、 3 </span>",
"<span class=\"cls_003\">及</span>",
"<span class=\"cls_013\"> 5 </span>",
"<span class=\"cls_003\">內</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">。</span>"
],
"物業資料" : [
"<span class=\"cls_003\">代理須向買方提供《 地產代理常規</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">一般責任及香港住宅物業</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">規例 》訂明並經代理</span>",
"<span class=\"cls_003\">填妥和簽署的物業資料表格</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">包括賣方的陳述</span>",
"<span class=\"cls_013\">) —</span>",
"<ol type=\"a\">",
"<li>如屬單邊代理關係,該等表格須向各別賣方的持牌地產代理取得;</li>",
"<li>如屬雙邊代理關係,或在賣方並沒有持牌地產代理代表的情況下,該等表格須由代理填妥和簽署,但如買方明確表示放棄收取該等表格的權利則代理無須提供有關表格。</li>",
"</ol>",
"<span class=\"cls_003\">但如買方明確表示放棄收取任何該等表格的權利,則代理無須提供有關表格。</span>"
],
"代理須披露權益" : [
"<ol type=\"a\">",
"<li>代表代理簽署本協議的人現披露 : 他或其指明親屬 (5) , 或其任何代名人 , 或其指明親屬的任何代名人, 或代理或代理的任何僱員 / 大股東 (6) / 合夥人 / 董事對物業<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>金錢上的或其他實益的權益 (7) :</li>",
"<li>如對以上問題的回答是 “ 有 ” 的話 , 則必須在本協議附表 3 述明有關權益的詳情。</li>",
"<li>代表代理簽署本協議的人須在切實可行的範圍內 , 盡快以書面向買方披露在有效期內產生的上述 (a) 段所提述的任何權益。</li>",
"</ol>"
],
"買方的確認" : [
"<span class=\"cls_003\">買方確認他已</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>閱讀並明白本協議的條款 ; 及</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>收取本協議第4條規定提供的而買方並沒有明確表示放棄收取的所有有關的物業資料表格(包括賣方的陳述)。</label></li>",
"</ol>"
],
"附表" : [
"<p>本協議的附表構成本協議的一部分。</p>"
],
"如物業不容許作住宅用途則本協議即屬無效" : [
"<p>如物業的佔用許可證所規定的用途並不包括住宅用途或不容許作住宅用途 , 則本協議即屬無效。</p>"
],
"額外條款 [ 注意 : 這些額外條款不得與本協議的其他條款有所抵觸 , 亦不得限制本協議的其他條款。] " : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
},
"eng" : {
"Appointment of Agent and Validity Period of this Agreement" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Purchaser</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">appoint</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Agent</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_012\"><sup>(1)</sup></span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">subject to and in accordance with the terms of this Agreement to act as</span>",
"<span class=\"cls_003\" id=\"agencyContract\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">agent in the intended purchase of the properties listed in Schedule 1 to this Agreement (“Properties”).This Agreement shall take effect on</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">and expire on</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">both days inclusive</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">Validity Period</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">.</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">CAUTION</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_006\">It is recommended that the Validity Period should be not more than</span>",
"<span class=\"cls_007\"> 3 </span>",
"<span class=\"cls_006\">months.</span>",
"<span class=\"cls_007\">]</span>"
],
"Agency Relationship and Duties of Agent" : [
"<span class=\"cls_003\">The Agent agrees with the Purchaser that</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>the agency relationship between them in respect of the Property shall be a<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup>as specified in column 4 of Schedule 1 to this Agreement;</span></li>",
"<li>in the case of each dual agency, the Agent shall as soon as is practicable disclose in writing to the Purchaser the amount or rate of commission to be received by the Agent from the relevant vendor;</li>",
"<li>in the case of each potentially dual agency, the Agent shall as soon as is practicable after dual agency arises disclose in writing to the Purchaser such agency relationship and the amount or rate of commission to be received by the Agent from the relevant vendor; and</li>",
"<li>The Agent’s duties shall be as set out in Schedule 2 to this Agreement, in addition to the duties placed on the Agent by this Agreement or any enactment.</li>",
"</ol>"
],
"Commission" : [
"<span class=\"cls_003\">The provisions of this Agreement applicable to the commission to be paid by the Purchaser to the Agent shall be as(4)</span>",
"<span class=\"cls_013\"> 1 、 3 </span>",
"<span class=\"cls_003\">and</span>",
"<span class=\"cls_013\"> 5 </span>",
"<span class=\"cls_003\">to this Agreement</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">.</span>"
],
"Property Information" : [
"<span class=\"cls_003\">The Agent shall provide to the Purchaser in respect of the Properties all relevant Property Information Forms including Vendor’s Statements prescribed under the Estate Agents Practice</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">General Duties and Hong Kong Residential Properties</span>",
"<span class=\"cls_013\">) Regulation —</span>",
"<ol type=\"a\">",
"<li>obtained from the respective vendors’ licensed estate agents in the case of single agency;</li>",
"<li>duly completed and signed by the Agent in the case of dual agency or where a vendor is not represented by a licensed estate agent,</li>",
"</ol>",
"<span class=\"cls_003\"> unless the Purchaser expressly waives his right to receive any of them.</span>"
],
"Disclosure of Interest by Agent" : [
"<ol type=\"a\">",
"<li>The person signing this Agreement on behalf of the Agent discloses that he or his specified relative (5), or anynominee of his or of his specified relative, or the Agent or any employee/substantial shareholder(6) /partner/director of the Agent<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>a pecuniary or other beneficial interest(7) in the Property.</li>",
"<li>If the answer to the above is “yes”, then the particulars of the interest must be specified in Schedule 3 to this Agreement.</li>",
"<li>The person signing this Agreement on behalf of the Agent shall as soon as is practicable disclose in writing to the Purchaser any interest referred to in paragraph (a) above that may arise during the Validity Period.</li>",
"</ol>"
],
"Acknowledgement by Purchaser" : [
"<span class=\"cls_003\">The Purchaser acknowledges that he has</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>read and understood the terms of this Agreement; and</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>received all relevant Property Information Forms including Vendor’s Statements required to be provided under clause 4 of this Agreement which the Purchaser has not expressly waived his right to receive.</label></li>",
"</ol>"
],
"Schedules" : [
"<p>The Schedules to this Agreement form part of this Agreement.</p>"
],
"Agreement void if domestic purpose or use not allowed" : [
"<p>This Agreement shall be void with regard to a property listed in Schedule 1 if the occupation permit for that property does not include or allow domestic purpose or use.</p>"
],
"Extra Terms [CAUTION: These extra terms cannot conflict with or limit the other terms of this Agreement]" : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
}
},
"5" : {
"chi" : {
"代理的委任及本協議的有效期" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">業主</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">現按照本協議的條款並在該等條款的規限下委任</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_015\"><sup>(1)</sup></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\" id=\"exclusive\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">為出租</span>",
"<span class=\"cls_003\" id=\"property\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">物業</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_003\">本協議由</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日起生效</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">並於</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日屆滿</span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">首尾</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_003\">兩天包括在內</span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">有效期</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">注意</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_007\">如屬獨家代理的關係</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">則即使物業在有效期內並非經由</span>",
"<span class=\"cls_007\">代理出售</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">業主仍可能須向代理支付佣金</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">因此當業主與代理建立獨家代理關係時應謹慎考慮</span>",
"<span class=\"cls_008\">。</span>",
"<span class=\"cls_007\">代理以獨家代理身分行事時須履行的特別責任</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">可在第</span>",
"<span class=\"cls_008\"> 13</span>",
"<span class=\"cls_007\">條下以額外條款的形式指明。</span>",
"<span class=\"cls_008\">]</span>"
],
"代理關係及代理的責任" : [
"<span class=\"cls_003\">代理與業主同意</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>代理與業主之間就物業而有的代理關係屬<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup>關係</span></li>",
"<li>如屬雙邊代理關係,則代理須在切實可行的範圍內,盡快以書面向業主披露代理將向租客收取的佣金的數額或收費率;</li>",
"<li>如屬有可能代表雙方的代理關係,則代理須在建立雙邊代理關係後,在切實可行的範圍內,盡快以書面向業主披露該代理關係以及代理將向租客收取的佣金的數額或收費率 ; 及</li>",
"<li>代理除須履行本協議或任何成文法則委予代理的責任外,亦須履行本協議附表1內所列的責任。</li>",
"</ol>"
],
"放盤租金[注意:業主並沒有藉本條授權代理代業主接受任何要約。放盤租金只供放盤及作廣告宣傳之用。 ]" : [
"<span class=\"cls_003\">放盤租金為港幣</span>",
"<span class=\"cls_003\" id=\"dollarTenThoursand\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">萬</span>",
"<span class=\"cls_003\" id=\"dollarThoursand\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">千元</span>",
"<span class=\"cls_002\">(HK$</span>",
"<span class=\"cls_003\" id=\"dollarHK\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\" id=\"included\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">差餉及管理費</span>",
"<span class=\"cls_003\">。放盤租金</span>",
"<span class=\"cls_003\">只在的書面指示下方可更改</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">而該等指示將構成本協議一部分。</span>"
],
"佣金" : [
"<span class=\"cls_003\">本協議適用於業主須向代理支付的佣金的規定</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">列於本協議附表</span>",
"<span class=\"cls_013\"> 2 </span>",
"<span class=\"cls_003\">及</span>",
"<span class=\"cls_013\"> 4 </span>",
"<span class=\"cls_003\">內</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">。</span>"
],
"物業資料" : [
"<span class=\"cls_003\">代理須向業主提供《 地產代理常規</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">一般責任及香港住宅物業</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">規例 》訂明並經代理</span>",
"<span class=\"cls_003\">填妥和簽署的物業資料表格</span>",
"<span class=\"cls_003\">。</span>"
],
"視察物業" : [
"<ol type=\"a\">",
"<li>業主<span class=\"cls_003\" id=\"showProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>容許<span class=\"cls_003\" id=\"userAgreeSeeProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>於雙方議定的時間查看物業。</li>",
"<li>業主<span class=\"cls_003\" id=\"keepProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>將物業的鎖匙交由代理妥為保管,以供查看物業之用。</li>",
"<li>業主<span class=\"cls_003\" id=\"watchProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理將鎖匙交予 <span class=\"cls_003\" id=\"userAgreeKeepKey\" style=\"color:lightblue;text-decoration:underline;\"></span>,以供查看物業之用。</li>",
"</ol>"
],
"分銷放盤" : [
"<ol type=\"a\">",
"<li>業主<span class=\"cls_003\" id=\"distributProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理將物業分銷放盤,並將由業主提供的關於業主及物業的資料交予其他地產代理以供分銷放盤之用。</li>",
"<li>如代理將物業交由另一地產代理( “分銷放盤代理” )分銷放盤則代理須確保分銷放盤代理遵守《地產代理常規一般責任及香港住宅物業規例》中關於廣告宣傳的規定。</li>",
"</ol>"
],
"廣告宣傳" : [
"<ol type=\"a\">",
"<li>業主<span class=\"cls_003\" id=\"advertisements\" style=\"color:lightblue;text-decoration:underline;\"></span>授權代理發出關於物業的廣告。</li>",
"<li>如對以上問題的回答是 “同意” 的話,則除本協議另有指明外,廣告宣傳費將由代理承擔。</li>",
"</ol>"
],
"代理須披露權益" : [
"<ol type=\"a\">",
"<li>代表代理簽署本協議的人現披露 : 他或其指明親屬 (5) , 或其任何代名人 , 或其指明親屬的任何代名人, 或代理或代理的任何僱員 / 大股東 (6) / 合夥人 / 董事對物業<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>金錢上的或其他實益的權益 (7) :</li>",
"<li>如對以上問題的回答是 “ 有 ” 的話 , 則必須在本協議附表 3 述明有關權益的詳情。</li>",
"<li>代表代理簽署本協議的人須在切實可行的範圍內 , 盡快以書面向賣方披露在有效期內產生的上述 (a) 段所提述的任何權益。</li>",
"</ol>"
],
"業主的確認" : [
"<span class=\"cls_003\">業主確認他已</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>閱讀並明白本協議的條款 ; 及</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>收取本協議第5條規定提供的物業資料表格。</label></li>",
"<li><input type=\"checkbox\" name=\"salePurchaseAgreement\" value=1><label for=1>同意於業主與一名租客訂立具約束力的租契之前收取出租資料表格。</label></li>",
"</ol>"
],
"附表" : [
"<p>本協議的附表構成本協議的一部分。</p>"
],
"額外條款 [ 注意 : 這些額外條款不得與本協議的其他條款有所抵觸 , 亦不得限制本協議的其他條款。] " : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
},
"eng" : {
"Appointment of Agent and Validity Period of this Agreement" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Landlord</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">appoint</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">Agent</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_015\"><sup>(1)</sup></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">subject to and in accordance with the terms of this Agreement to act as</span>",
"<span class=\"cls_003\" id=\"exclusive\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">agent in the marketing for letting purpose of</span>",
"<span class=\"cls_003\" id=\"property\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Property</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">.</span>",
"<span class=\"cls_003\">This Agreement shall take effect on</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">and expire on</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">both days inclusive</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Validity Period</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">CAUTION</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_007\">In the case of exclusive agency</span>",
"<span class=\"cls_008\">,</span>",
"<span class=\"cls_007\">the Landlord may be liable to pay commission to the Agent even if the Property is not sold through the Agent within the Validity Period.The Landlord should therefore consider carefully when he enters into an exclusive agency relationship with the Agent.Special obligations to be performed by the Agent under exclusive agency may be specified as extra terms under clause</span>",
"<span class=\"cls_008\"> 13</span>",
"<span class=\"cls_008\">]</span>"
],
"Agency Relationship and Duties of Agent" : [
"<span class=\"cls_003\">The Agent agrees with the Landlord that</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>the agency relationship between them in respect of the Property shall be a<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup></span></li>",
"<li>in the case of dual agency, the Agent shall as soon as is practicable disclose in writing to the Landlord the amount or rate of commission to be received by the Agent from a tenant;</li>",
"<li>in the case of potentially dual agency, the Agent shall as soon as is practicable after dual agency arises disclose in writing to the Landlord such agency relationship and the amount or rate of commission to be received by the Agent from a tenant; and</li>",
" <li>The Agent’s duties shall be as set out in Schedule 1 to this Agreement, in addition to the duties placed on the Agent by this Agreement or any enactment.</li>",
"</ol>"
],
"List Rental [CAUTION: The Landlord does not confer upon the Agent, by virtue of this clause, the right to accept an offer on behalf of the Landlord. The list rental is for the purpose of listing and advertising only.]" : [
"<span class=\"cls_003\">The list rental shall be Hong Kong Dollars</span>",
"<span class=\"cls_003\" id=\"dollar\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(HK$</span>",
"<span class=\"cls_003\" id=\"dollarHK\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">The list rental can only be varied with written instructions of the Landlord and such instructions shall form part of this Agreement.</span>"
],
"Commission" : [
"<span class=\"cls_003\"> The provisions of this Agreement applicable to the commission to be paid by the Landlord to the Agent shall be as set out in Schedules</span>",
"<span class=\"cls_013\"> 2 </span>",
"<span class=\"cls_003\">and</span>",
"<span class=\"cls_013\"> 4 </span>",
"<span class=\"cls_003\">to this Agreement</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">.</span>"
],
"Property Information" : [
"<span class=\"cls_003\">The Agent shall provide to the Landlord the Leasing Information Form prescribed under the Estate Agents Practice</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">General Duties and Hong Kong Residential Properties</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">Regulation duly completed and signed by the Agent.</span>"
],
"Property Inspection" : [
"<ol type=\"a\">",
"<li>The Landlord<span class=\"cls_003\" id=\"showProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>to allow viewing of the Property by the<span class=\"cls_003\" id=\"userAgreeSeeProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>at a mutually agreeable time.</li>",
"<li>The Landlord<span class=\"cls_003\" id=\"keepProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>to pass the keys of the Property to the Agent for safe custody and for the viewing of the Property.</li>",
"<li>The Landlord<span class=\"cls_003\" id=\"watchProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to pass the keys to other estate<span class=\"cls_003\" id=\"userAgreeKeepKey\" style=\"color:lightblue;text-decoration:underline;\"></span>for the viewing of the Property.</li>",
"</ol>"
],
"Sub-listing" : [
"<ol type=\"a\">",
"<li>The Landlord<span class=\"cls_003\" id=\"distributProperty\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to sub-list the Property and pass relevant information about the Vendor and the Property supplied by the Vendor to other estate agents for sub-listing purposes.</li>",
"<li>If the Agent sub-lists the Property to another estate agent (“sub-listing agent”), the Agent shall ensure that the sub-listing agent shall observe the Estate Agents Practice (General Duties and Hong Kong Residential Properties) Regulation regarding advertising.</li>",
"</ol>"
],
"Advertising" : [
"<ol type=\"a\">",
"<li>The Landlord<span class=\"cls_003\" id=\"advertisements\" style=\"color:lightblue;text-decoration:underline;\"></span>the Agent to issue advertisement in respect of the Property.</li>",
"<li>If the answer to the above is “yes”, then the advertising fees will be borne by the Agent unless otherwise specified in this Agreement.</li>",
"</ol>"
],
"Disclosure of Interest by Agent" : [
"<ol type=\"a\">",
"<li>The person signing this Agreement on behalf of the Agent discloses that he or his specified relative (5), or anynominee of his or of his specified relative, or the Agent or any employee/substantial shareholder(6) /partner/director of the Agent<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>a pecuniary or other beneficial interest(7) in the Property.</li>",
"<li>If the answer to the above is “yes”, then the particulars of the interest must be specified in Schedule 3 to this Agreement.</li>",
"<li>The person signing this Agreement on behalf of the Agent shall as soon as is practicable disclose in writing to the Vendor any interest referred to in paragraph (a) above that may arise during the Validity Period.</li>",
"</ol>"
],
"Acknowledgement by Landlord" : [
"<span class=\"cls_003\">The Landlord acknowledges that he has</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>read and understood the terms of this Agreement; and</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>received the Leasing Information Form required to be provided under clause 5 of this Agreement.</label></li>",
"<li><input type=\"checkbox\" name=\"salePurchaseAgreement\" value=1><label for=1> agreed to receive the Leasing Information Form before entering into a binding lease between the Landlord and a tenant.</label></li>",
"</ol>"
],
"Schedules" : [
"<p>The Schedules to this Agreement form part of this Agreement.</p>"
],
"Extra Terms [CAUTION: These extra terms cannot conflict with or limit the other terms of this Agreement.]" : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
}
},
"6" : {
"chi" : {
"代理的委任及本協議的有效期" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">租客</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">現按照本協議的條款並在該等條款的規限下</span>",
"<span class=\"cls_003\">就擬購買本協議附表</span>",
"<span class=\"cls_010\"> 1 </span>",
"<span class=\"cls_003\">所列物業</span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">物業</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">一事委</span>",
"<span class=\"cls_003\">任</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">代理</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_012\"><sup>(1)</sup></span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\" id=\"agencyContract\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">的代理。本協議由</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日起生效</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">並於</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">日屆滿</span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">首尾</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_003\">兩天包括在內</span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">有效期</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">。</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">注意</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_006\">建議有效期不應超過</span>",
"<span class=\"cls_007\"> 3 </span>",
"<span class=\"cls_006\">個月。</span>",
"<span class=\"cls_007\">]</span>"
],
"代理關係及代理的責任" : [
"<span class=\"cls_003\">代理與租客同意</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>代理與租客之間就物業而有的代理關係屬<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(3)</sup>關係</span></li>",
"<li>如屬雙邊代理關係,則代理須在切實可行的範圍內,盡快以書面向租客披露代理將向業主收取的佣金的數額或收費率;</li>",
"<li>如屬有可能代表雙方的代理關係,則代理須在建立雙邊代理關係後,在切實可行的範圍內,盡快以書面向租客披露該代理關係以及代理將向業主收取的佣金的數額或收費率 ; 及</li>",
"<li>代理除須履行本協議或任何成文法則委予代理的責任外,亦須履行本協議附表2內所列的責任。</li>",
"</ol>"
],
"佣金" : [
"<span class=\"cls_003\">本協議適用於租客須向代理支付的佣金的規定</span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\">列於本協議附表</span>",
"<span class=\"cls_013\"> 1 、 3 </span>",
"<span class=\"cls_003\">及</span>",
"<span class=\"cls_013\"> 5 </span>",
"<span class=\"cls_003\">內</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">。</span>"
],
"物業資料" : [
"<span class=\"cls_003\">代理須向租客提供《 地產代理常規</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">一般責任及香港住宅物業</span>",
"<span class=\"cls_013\">)</span>",
"<span class=\"cls_003\">規例 》訂明並經代理</span>",
"<span class=\"cls_003\">填妥和簽署的物業資料表格</span>",
"<span class=\"cls_013\"> —</span>",
"<ol type=\"a\">",
"<li>如屬單邊代理關係,該等表格須向各別業主的持牌地產代理取得;</li>",
"<li>如屬雙邊代理關係,或在業主並沒有持牌地產代理代表的情況下,該等表格須由代理填妥和簽署,但如租客明確表示放棄收取該等表格的權利則代理無須提供有關表格。</li>",
"</ol>",
"<span class=\"cls_003\">但如租客明確表示放棄收取任何該等表格的權利,則代理無須提供有關表格。</span>"
],
"代理須披露權益" : [
"<ol type=\"a\">",
"<li>代表代理簽署本協議的人現披露 : 他或其指明親屬 (5) , 或其任何代名人 , 或其指明親屬的任何代名人, 或代理或代理的任何僱員 / 大股東 (6) / 合夥人 / 董事對物業<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>金錢上的或其他實益的權益 (7) :</li>",
"<li>如對以上問題的回答是 “ 有 ” 的話 , 則必須在本協議附表 3 述明有關權益的詳情。</li>",
"<li>代表代理簽署本協議的人須在切實可行的範圍內 , 盡快以書面向買方披露在有效期內產生的上述 (a) 段所提述的任何權益。</li>",
"</ol>"
],
"租客的確認" : [
"<span class=\"cls_003\">租客確認他已</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>閱讀並明白本協議的條款 ; 及</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>收取本協議第4條規定提供的而租客並沒有明確表示放棄收取的所有有關的出租資料表格。</label></li>",
"</ol>"
],
"附表" : [
"<p>本協議的附表構成本協議的一部分。</p>"
],
"額外條款 [ 注意 : 這些額外條款不得與本協議的其他條款有所抵觸 , 亦不得限制本協議的其他條款。] " : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
},
"eng" : {
"Appointment of Agent and Validity Period of this Agreement" : [
"<span class=\"cls_003\" id=\"opening\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">,</span>",
"<span class=\"cls_003\" id=\"userEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\" id=\"userChi\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Tenant</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">appoint</span>",
"<span class=\"cls_003\" id=\"agency\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_010\">(</span>",
"<span class=\"cls_010\">“</span>",
"<span class=\"cls_003\">Agent</span>",
"<span class=\"cls_010\">”</span>",
"<span class=\"cls_012\"><sup>(1)</sup></span>",
"<span class=\"cls_010\">)</span>",
"<span class=\"cls_003\">subject to and in accordance with the terms of this Agreement to act as</span>",
"<span class=\"cls_003\" id=\"agencyContract\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">agent in the intended purchase of the properties listed in Schedule 1 to this Agreement (“Properties”).This Agreement shall take effect on</span>",
"<span class=\"cls_003\" id=\"createDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_003\">and expire on</span>",
"<span class=\"cls_003\" id=\"expiresDay\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_002\">(</span>",
"<span class=\"cls_003\">both days inclusive</span>",
"<span class=\"cls_003\"></span>",
"<span class=\"cls_002\">)(</span>",
"<span class=\"cls_013\">“</span>",
"<span class=\"cls_003\">Validity Period</span>",
"<span class=\"cls_013\">”</span>",
"<span class=\"cls_002\">)</span>",
"<span class=\"cls_003\">.</span>",
"<span class=\"cls_008\"><br />[</span>",
"<span class=\"cls_021\">CAUTION</span>",
"<span class=\"cls_008\">﹕</span>",
"<span class=\"cls_006\">It is recommended that the Validity Period should be not more than</span>",
"<span class=\"cls_007\"> 3 </span>",
"<span class=\"cls_006\">months.</span>",
"<span class=\"cls_007\">]</span>"
],
"Agency Relationship and Duties of Agent" : [
"<span class=\"cls_003\">The Agent agrees with the Tenant that</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>the agency relationship between them in respect of the Property shall be a<span class=\"cls_003\" id=\"relationship\" style=\"color:lightblue;text-decoration:underline;\"></span><sup>(2)</sup>as specified in column 4 of Schedule 1 to this Agreement;</span></li>",
"<li>in the case of each dual agency, the Agent shall as soon as is practicable disclose in writing to the Tenant the amount or rate of commission to be received by the Agent from the relevant landlord;</li>",
"<li>in the case of each potentially dual agency, the Agent shall as soon as is practicable after dual agency arises disclose in writing to the Tenant such agency relationship and the amount or rate of commission to be received by the Agent from the relevant landlord; and</li>",
"<li>The Agent’s duties shall be as set out in Schedule 2 to this Agreement, in addition to the duties placed on the Agent by this Agreement or any enactment.</li>",
"</ol>"
],
"Commission" : [
"<span class=\"cls_003\">The provisions of this Agreement applicable to the commission to be paid by the Tenant to the Agent shall be as(4)</span>",
"<span class=\"cls_013\"> 1 、 3 </span>",
"<span class=\"cls_003\">and</span>",
"<span class=\"cls_013\"> 5 </span>",
"<span class=\"cls_003\">to this Agreement</span>",
"<span class=\"cls_016\"><sup>(3)</sup></span>",
"<span class=\"cls_003\">.</span>"
],
"Property Information" : [
"<span class=\"cls_003\">The Agent shall provide to the Tenant in respect of the Properties all relevant Property Information Forms including Vendor’s Statements prescribed under the Estate Agents Practice</span>",
"<span class=\"cls_013\">(</span>",
"<span class=\"cls_003\">General Duties and Hong Kong Residential Properties</span>",
"<span class=\"cls_013\">) Regulation —</span>",
"<ol type=\"a\">",
"<li>obtained from the respective landlord's licensed estate agents in the case of single agency;</li>",
"<li>duly completed and signed by the Agent in the case of dual agency or where a landlord is not represented by a licensed estate agent,</li>",
"</ol>",
"<span class=\"cls_003\"> unless the Tenant expressly waives his right to receive any of them.</span>"
],
"Disclosure of Interest by Agent" : [
"<ol type=\"a\">",
"<li>The person signing this Agreement on behalf of the Agent discloses that he or his specified relative (5), or anynominee of his or of his specified relative, or the Agent or any employee/substantial shareholder(6) /partner/director of the Agent<span class=\"cls_003\" id=\"showRightInterests\" style=\"color:lightblue;text-decoration:underline;\"></span>a pecuniary or other beneficial interest(7) in the Property.</li>",
"<li>If the answer to the above is “yes”, then the particulars of the interest must be specified in Schedule 3 to this Agreement.</li>",
"<li>The person signing this Agreement on behalf of the Agent shall as soon as is practicable disclose in writing to the Purchaser any interest referred to in paragraph (a) above that may arise during the Validity Period.</li>",
"</ol>"
],
"Acknowledgement by Tenant" : [
"<span class=\"cls_003\">The Tenant acknowledges that he has</span><span class=\"cls_002\"> </span><span class=\"cls_013\">—</span>",
"<ol type=\"a\">",
"<li>read and understood the terms of this Agreement; and</li>",
"<li><input type=\"checkbox\" name=\"fiveAgreement\" value=1><label for=1>received all relevant Property Information Forms required to be provided under clause 4 of this Agreement which the Tenant has not expressly waived his right to receive.</label></li>",
"</ol>"
],
"Schedules" : [
"<p>The Schedules to this Agreement form part of this Agreement.</p>"
],
"Extra Terms [CAUTION: These extra terms cannot conflict with or limit the other terms of this Agreement]" : [
"<span class=\"cls_003\" id=\"additionalLaw\" style=\"color:lightblue;text-decoration:underline;\"></span>"
]
}
},
"8" : {
"chi" : {
"申請人(1)" : [
"<span class=\"cls_013\"><span class=\"cls_003\" id=\"userAEng\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_014\">(</span>",
"<span class=\"cls_013\">英文</span>",
"<span class=\"cls_014\">)(</span>",
"<span class=\"cls_003\" id=\"userAExclusive\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_014\">) </span>",
"<span class=\"cls_013\">身份證號碼</span>",
"<span class=\"cls_014\">: </span>",
"<span class=\"cls_003\" id=\"userAIDNumber\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_014\">(</span>",
"<span class=\"cls_003\" id=\"userAIDBRNumber\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_014\">)</span>",
"<span class=\"cls_013\">出生日期</span>",
"<span class=\"cls_014\">:</span>",
"<span class=\"cls_003\" id=\"userABirthday\" style=\"color:lightblue;text-decoration:underline;\"></span>",
"<span class=\"cls_013\">教育程度</span>",
"<span class=\"cls_014\">:</span>",
"<span class=\"cls_003\" id=\"userAEducation\" style=\"color:lightblue;text-decoration:underline;\"></span>",