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
const M='M'
const O='O'
const Tags=[
{tag:'27',status:M,tno:1,letter:[],label:"Sequence of Total"},
{tag:'40A',status:M,tno:2,letter:[],label:"Form of Documentary Credit"},
{tag:'20',status:M,tno:3,letter:[],label:"Documentary Credit Number"},
{tag:'23',status:O,tno:4,letter:[],label:"Reference to Pre-Advice"},
{tag:'31C',status:M,tno:5,letter:[],label:"Date of Issue"},
{tag:'40E',status:M,tno:6,letter:[],label:"Applicable Rules"},
{tag:'31D',status:M,tno:7,letter:[],label:"Date and Place of Expiry"},
{tag:'51A',status:O,tno:8,letter:["51A","51D"],label:"Applicant Bank"},
{tag:'50',status:M,tno:9,letter:[],label:"Applicant"},
{tag:'59',status:M,tno:10,letter:[],label:"Beneficiary"},
{tag:'32B',status:M,tno:11,letter:[],label:"Currency Code, Amount"},
{tag:'39A',status:O,tno:12,letter:[],label:"Percentage Credit Amount Tolerance"},
{tag:'39C',status:O,tno:13,letter:[],label:"Additional Amounts Covered"},
{tag:'41A',status:M,tno:14,letter:["41A","41D"],label:"Available With ... By ..."},
{tag:'42C',status:O,tno:15,letter:[],label:"Drafts at ..."},
{tag:'42A',status:O,tno:16,letter:["42A","42D"],label:"Drawee"},
{tag:'42M',status:O,tno:17,letter:[],label:"Mixed Payment Details"},
{tag:'42P',status:O,tno:18,letter:[],label:"Negotiation/Deferred Payment Details"},
{tag:'43P',status:O,tno:19,letter:[],label:"Partial Shipments"},
{tag:'43T',status:O,tno:20,letter:[],label:"Transhipment"},
{tag:'44A',status:O,tno:21,letter:[],label:"Place of Taking in Charge/Dispatch from .../Place of Receipt"},
{tag:'44E',status:O,tno:22,letter:[],label:"Port of Loading/Airport of Departure"},
{tag:'44F',status:O,tno:23,letter:[],label:"Port of Discharge/Airport of Destination"},
{tag:'44B',status:O,tno:24,letter:[],label:"Place of Final Destination/For Transportation to .../Place of Delivery"},
{tag:'44C',status:O,tno:25,letter:[],label:"Latest Date of Shipment"},
{tag:'44D',status:O,tno:26,letter:[],label:"Shipment Period"},
{tag:'45A',status:O,tno:27,letter:[],label:"Description of Goods and/or Services"},
{tag:'46A',status:O,tno:28,letter:[],label:"Documents Required"},
{tag:'47A',status:O,tno:29,letter:[],label:"Additional Conditions"},
{tag:'49G',status:O,tno:30,letter:[],label:"Special Payment Conditions for Beneficiary"},
{tag:'49H',status:O,tno:31,letter:[],label:"Special Payment Conditions for Receiving Bank"},
{tag:'71D',status:O,tno:32,letter:[],label:"Charges"},
{tag:'48',status:O,tno:33,letter:[],label:"Period for Presentation in Days"},
{tag:'49',status:M,tno:34,letter:[],label:"Confirmation Instructions"},
{tag:'58A',status:O,tno:35,letter:["58A","58D"],label:"Requested Confirmation Party"},
{tag:'53A',status:O,tno:36,letter:["53A","53D"],label:"Reimbursing Bank"},
{tag:'78',status:O,tno:37,letter:[],label:"Instructions to the Paying/Accepting/Negotiating Bank"},
{tag:'57A',status:O,tno:38,letter:["57A","57B","57D"],label:"'Advise Through' Bank"},
{tag:'72Z',status:O,tno:39,letter:[],label:"Sender to Receiver Information"},
]
const Title="MT 700 Issue of a Documentary Credit"
export default { Tags,Title}