-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpii-ner-exclude.txt
5342 lines (5342 loc) · 113 KB
/
pii-ner-exclude.txt
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
pii-ner-exclude.txt
kwargs={'mailshot_pk
class="button
hadErrors
FormData(form
event.preventDefault
Convert
convertToSet(formData
class="three columns"></div
class="prompt
x.type
x.commission_code
XMLTABLE('/
PATH
VARCHAR2
NULL
country_group_id
ON xcg.country_group_detail_id
Content-Disposition"
Config
Admin
"Load the SearchTerms
Import and Export
submitted_to
licence_to
issue_to
Test Constabulary
That Constabulary
ExporterAccessRequest
By</dt
application_pk
Approval Request
date_of_birth
LETTER_FRAGMENT
ENDORSEMENT
ImporterApprovalRequest
Name / Address
request.pk}}</span
Licences</h4
li><a
download">Download
SERVICE_NAME
\n\ - FOR
United
STD NUMBER\n\
+36
12345678\n\ - FOR International
Strip
V2
target_id
file_ptr_id
ImportContact
V1
LO
RU
SC
SE
East Midlands
Eastern
North East
South East
West Midlands
>Checklist</h4
0.0.0.34
ner_output_file.txt
AIR
REF
Test Rifle
5_1_ABA
Test Revolver
firearmsauthority_id
Edit Note
process.get_reference
HSE Emails'
Response Preparation'
View Application'
Endorsement Usage Template (ICMSLST-638
Add Firearm Details
Edit Firearm Details
web.tests.file_upload_handler
StreamHandler
Maintain Web User Accounts
job_title"
Account Status
Password Disposition"
Account Status Changed
Organisation Address
save_manual_address
POST
GDS
DIT
name__icontains
Commodity
>Cancel</button>' +
e.preventDefault
this.d.find('.approve').click
el.on('click
get_workbasket_applicant_sections
Access Request
Matching Matching Obsolete Calibres</th>
fields.field(form.password
value="Sign and Authorise" />
Import Case Management System{%
Case Management System</p>
View Config
application_pk: Application
Best Importers Ltd.
Outward Processing Trade Import Licence - Edit
Outward Processing Trade Import Licence - Edit Compensating Products
Outward Processing Trade Import Licence - Edit Temporary Exported Goods
Outward Processing Trade Import Licence - Edit Further Questions
OPT
Compensating Products
Temporary Exported Goods
Further Questions - "
Outward Processing Trade Import Licence - Submit
f"Invalid
Outward Processing Trade Licence - Add
Outward Processing Trade Licence - Checklist
the View Application
View Application
Submit Update
mkdir
DFL
IMA/2022/00002
DFL Organisation
Russian
Model PGL6-40LR
No PGR 123
Section 5 of the Firearms Act 1968
9mm
Section 5(1)(aba
the Firearms Act 1968
GBSIL3333333H
GBSAN4444444A
mandatory_files - List
file.get_file_type_display
ICMS - Data Migration
extract_v1_xml
/user
f"/user
cubic metres
Customs Integrated Tariff Book
the Stationery Office
the Classification Advisory Service
SIGL Wood
container.classList.add('hidden
gmp_files
sanction_application_files
ON sld.id = DEREF(fv.secure_lob_ref).id
ON fft.ff_id = ff.id
fv.id version_id
CONCAT(id
NUMBER PATH '
ON fv.fft_id
SPS
ADHOC1
TEX
fv.version_id
fv.path
ia_id
INTEGER PATH '
/AUTHORITY/DOCUMENTS_FF_ID
create_by_wua_id created_by
ON fv.target_id
ON fft.ff_id
RECEIVED
customs_office_address
cp_commodities
Copy Recipients
class="prompt west">Acknowledgement
workbasket.</li
Authorised Contacts
Information Contacts
notifications.</li
x.commodity_code commodity_group_id
x.additional_comments
x.no_report_reason
XMLTYPE.getClobVal(XMLELEMENT("FA_GOODS_CERTS
fa_certs_xml
know_bought_from VARCHAR2(10
fa_certs_xml XMLTYPE PATH '
fa_authorities_xml XMLTYPE PATH '
XMLTYPE PATH '
is_complete
FA_REPORTS/HISTORICAL_REPORT_COMPLETION_LIST/HISTORICAL_REPORT_COMPLETION[last()]/REPORT_COMPLETED_BY_WUA_ID[last()]/text
FA_REPORTS/HISTORICAL_REPORT_COMPLETION_LIST
user__first_name__icontains
user__email__icontains
Firearms and Ammunition - Certificates"
Firearms and Ammunition - Create Certificate
Edit Firearm Supplementary Report
f"Unknown Firearm
kls
submit-inline.html' %
x.chemical_name
country_group_legacy_id
country_of_manufacture_cg_id"
process_ptr_id
exportapplication_ptr_id"
BRCGS
param
-pk
npm
Ownership" class="button
R1C1
R1C2
R2C2
R3C1
R3C3
ST</STREET_AND_NUMBER> <
REGION</REGION
TOWN</TOWN_CITY
TARGET_ID>1234</TARGET_ID
REF A</CERTIFICATE_REF
REF B</CERTIFICATE_REF
AUTHORITY
COMMODITY_ID>2</COMMODITY_ID
COMMODITY_ID>3</COMMODITY_ID
r"(?:\r\n|\r|\n){2
f'<li class="{class_attr}"><a
Response Preparation
Test Legislation
an Import Case Management System
fields.field(form.email
>Wood
Firearm
Goods Description
Application Type
the Health and Safety Executive
f"CaseEmail
CAS
"Write the pdf data
Split
Cover Letter Preview
section 5
>SIGL</h4
EC SIGLWood
fa_authorities
issuing_constabulary_id INTEGER PATH '
ON xialo.ia_id
SECTION5
Received Mailshots
Title"
Maintain Mailshots
QuerySet[Mailshot]"
mailshot_pk
Next
Buckingham Palace
Roden St
Townsville
Stevens
Dave
Jones
Sally
Davis
Cameron
GMP
Old Admiralty Building\nLondon\n
Acme Wonder Product
/></li>
header(field
config.date_format %
config.show_all %
headers(display
docker_flake8
-O codecov.sh https://codecov.io/bash
Create{%
obsolete calibre
Commodity Code
Ammunition</h4
class="tabs
note</button
aria-labelledby="tks1Kzx6n_plrnqVW43-tg-notesARCHIVED
import_order_style
E203
downloadForm.addEventListener("click
A</NAME
\s
Matches
Case Reference
Licence Reference
Reassignment User
Case Status
Applicant's Reference
Application Contact
Pending Further Information Requests
Pending Update Requests
Closed Date"
Certificate Reference
CFS
schedules.final_product_end_use
xcas.start_datetime created_at
xcas.last_updated_datetime updated_at
schedules.legislation_xml
ON xcas.cad_id
x.schedule_ordinal
XMLTABLE('/CA/APPLICATION/PRODUCTS/SCHEDULE_LIST/
uk_market
ON schedules.cad_id = xcas.cad_id
ON st_rp.cad_id =
Wood
Import Licence - Add
Contract Document"
Edit Goods
firearms/<int
Importer Agents
ca_type
country_group_id country_group_legacy_id
ON xcad.cad_id
xcad.variation_number variation_no
xcad.exporter_office_id
2 contact_id
cat.id application_type_id
Invokes
p)!r
ICMSMiddlewareContext
LockManager
Respond
Mobile
Central Contact
kwargs={'org_type
the Exporting Company
Schedule
id="btnLogout">Logout</button
reassignmentCB
#id_reassignment_user").djangoSelect2().empty
ref 1
ref 2
7208370010
6205908010
Jordan
222222
Sheet 1
Licence Start Date
Application Sub-Type
Commodity Code(s
Certificate Countries
Countries of Manufacture
Oustanding Open Requests
test_search_by_status(wt
HSE
In Progress
bar/1110
xx555555xx
xx888888xx
xx5%5xx"
GBSIL0000002C
CFS/2021/00003
Test Export
Sort
created_by
Maintain Constabularies
New Constabulary
f"/constabulary/{self.constabulary.id}/edit/
Edit Firearms Authority
firearms_authority.pk
class="small-button
Create Organisation
Declaration Title
Declaration Text
Email Template Name
Email Subject
Email Body
Endorsement Name
Endorsement Text
Letter Template Name
Fragment Name
Fragment Text
Application Domain
Template Type
Template Title
Template Status
f"These
r"\[\[[A-Z_]+\]\
Section 1
Section 2
Section 5
Section 58(2) - Other
Section 5 Authority
Section 5 Authorities
Firearms and Ammunition (Specific Import Licence
AC & AY
LICENCE_NUMBER
COUNTRY_OF_CONSIGNMENT
Export Certificate Reference
the European Union
Customs
Integrated Tariff Book
Classification Advisory Service
Goods Description"
AC
ON ird.ir_id =
ON xiad.imad_id
ON ia.id =
ird.variation_no
dd.id
COVER
xdd.title
dd.created_datetime
ON ird.ir_id
ON
ON xird.ird_id
ON xdd.di_id
ON dd.id
xdd.dd_id
ON sld.id = DEREF(dd.secure_lob_ref).id
LICENCE
class="small-button">Close</button
fir.status
manual_add_button(report
Manual Add Firearm
upload_document_button(report
delete_firearm_button(firearm
Firearms and Ammunition (Open Individual Import Licence
IAR
Import Applications
Access Requests
"Paragraphs for Certificate of Free Sale Schedule and Certificate of Free Sale Schedule Translation
Edit Commodity Group
kwargs={"pk
commodity_id VARCHAR2(100
VARCHAR2(100
purpose_of_request
Main Application
@access
ILB Case Officers
ILB Case Officers:Import Application Case Officer
Resume Task
Review
Pal Ltd
Close Request
Access Approval
Approved"
Constabulary Region
Email Address
Section 5 Clauses
Server-Authorization"
f"Invalid Hawk ID {access_id
Raise Django's
BadRequest
MULTI STATUS
OPTIONS
PUT
Hawk
ImportApplication
get_or_create
this.usages.hasOwnProperty(category) && this.usages[category].hasOwnProperty(country
&& quantity > maxAllocation
Create Office
class="content">Unlimited</p>
Retracted Mailshot"
web.domains.template.urls
web.domains.firearms.urls
web.domains.exporter.urls
Maintain Obsolete Calibres
Obsolete Calibre Group
VersionsPanel
debug_toolbar.panels.timer
TimerPanel
ProfilingPanel
html5shiv.min.js
minifi html
document.querySelector("#id_variation_refuse_reason
legacy_id
parent_oc_id calibre_group_id
Document Pack
west">Proof checked</label
EU
Constabulary
Certificates of Free Sale
Template Description"
/CA/APPLICATION/GMP_DETAILS
/CA/APPLICATION/GMP_DETAILS/MANUFACTURER_ADDRESS_DETAILS
/CA/APPLICATION/GMP_DETAILS/GMP_DOCUMENTS
/CA/
PATH '/CA/
/CA/APPLICATION
Countries
Kilos
View Case
Application View
button">Save</button
form.instance.offices.all
"Return FA DFL
"Return FA OIL
Section 58(2
Matrix
value="Start Authorisation (Close Case Processing
assign_to
button.addEventListener('click'
Sanctions Import Ban")
Applicant Reference
Contract Sign Date
Provide
the Syrian National Coalition for Opposition and
Revolutionary Forces
Article 2 of
EU Regulations 2580/2001
881/2002
Article 14 of
EU Regulation
Syrian
Unit
FA
Reopen
Report Completed
application_field(process.supplementary_info.completed_datetime.strftime('%d-%b-%Y
Date Reporting Completed
fields.field(form.no_report_reason
name="add_to_role
this).closest('.country').remove
Content-Type'
id_importer').change(post_form
class="prompt west">Country
value="{{group.id}
CLAM_AV_DOMAIN=
CLAM_AV_PASSWORD=
DJANGO_SESSION_COOKIE_AGE=7200
test_agent_export_user
GB1234567890
Maintain Templates
New Endorsement
address_1
Test Town
an Import Company
"van Rossum
newCountry
has_search_permission(user
imp_or_exp
ilb_admin
Security Answer
Organisation Name (Employer
Share Contact Deails
Floor/Room/Bay/Location
Work Address
Ms
Robert (Bob
Baz"
responsible_person_postcode"
TestUser
F1"
/></button
inline_field_with_label(field
HiddenInput
class="prompt {
name=
name="name_field
name="postcode_field
name="row_available_addresses
class="prompt west">Please
item.</div
International Trade
Log in</a>
Jodit('textarea
Admin Case
view_mailshot.css
target="blank
Dear
Create Firearms Authority
act_form
class="nine
Don
ON cd.con_id
UID=$(shell
@awk
\nUsage:\n make \033[36m
substr($$0
unset UID && .venv/bin
unset UID && \
ICMS_ALLOWED_HOSTS="unset" && \
SQL
python manage.py npm &&
shell
##
@unset UID && \
PGPASSWORD
http://localhost:4566
s3
--rm
release_patch
address_5
>Commodities</h4
Display Archived
Start Date"
updates.</div
Humanitarian
Contract Sign Date"
Importers or Guidance
Contract Completion Date
Provide the name
Article 2 of"
Article 14
"Syria National Coalition for Opposition and Revolutionary Forces (SNCORF
certificate</h4
class="calibre
class="calibre-status">{{calibre.status}}</td
ContentLength
New Product Legislation
Eu Test Cosmetics Regulation
skip_ia
XML Parsing
Jane
Hey Ltd"'
non-European
id_status
f'[data-label="{field
Address
f"Unknown Office
Importer Name / Importer Entity Type
search_records|length
case.</p></div
document.cookie && document.cookie
function(boolean
ICMS</h1
The DIT Import Licensing Branch's
Import Case Management System
Guidance</h2
Need an Import Licence?</a
Login Failed
DLL
var/
PyInstaller
# Installer
pip-delete-this-directory.txt
local_settings.py
Scrapy
Sphinx
PyBuilder
Jupyter Notebook
env/
ENV/
# Rope
dmypy.json
Pyre
Add Licence
Create Import Application
Import Case Management System Account
Iron and Steel (Quota
ICMS1
Import Licence - Edit Goods
Import Licence - Edit Certificate
Archived Endorsement
Endorsement Title
Active Letter Template
Letter Title
Email Title
Test Endorsement
f"IMA/{year}/00003
GBSAN0000001B
GBSIL0000004E
GBAOG0000005F
GBTEX0000009J
0000010K
0000014B
Firearm Reports Management
value="Add"/>
ABC
CTest
NA
submitted_by_email
Request Type
fields.inline_field_with_label(form.issue_to
fields.field(form.reassignment
north">Case Reference</label></div>
target="_blank
"Load the commodity details section
the ON clause
Prior Authorisation
Past Beneficiary"
Barrel
Latin
Arabic
x.section58_other
x.other_description
XMLTYPE.getClobVal(user_import_certs_xml
section5_authorities_xml XMLTYPE PATH '
hash="fake
Group Comments
Approval Request Flow
Resume
Application Submitted
Application Update Requested
Resume Update
Application Update in Progress
Pending Withdrawal"
Request Withdrawal
VariationRequest
Revisit
Acknowledge
View
Provide Report
Checklist
Supporting Documents
Create Usage for Commodity Group
>Countries</h4
>Manufacturer</h4
name="close_request
ISO
action.as_html(item
Adhoc License Application - Edit
Adhoc License Application
Commodity List
Goods - Commodity Code
# Specific
DerogationsApplication
TextilesApplication
Common
value="Send Request
non-CFS_SCHEDULE
Access Request</h3
aria-required="true
aria-required="false
aria-label="Click
OpenSans/OpenSans.css'
UAT
name="login_id
value='reset_password
Reset
Test OC Group
report__supplementary_info__imad
Exp A"
TX
Variation Request
application_field(vr.requested_datetime.strftime('%d-%b-%Y
Request Date
application_field(vr.when_varied.strftime('%d-%b-%Y
Closed Date
kwargs={"case_type
Request</button>
Reject/Cancel Variation Request
Opened Date
Closed Date" %
vr.closed_by
Editing All Countries
Maintain Country Groups
add.html
New Country Group
Chapter 97
f"import
scope="col">Is Dealer?</th>
contact.last_name
page_no=1
PermissionRequiredMixin
Dashboard
Search Mailshots
Importers/Exporters
Importer Access Requests
Exporter Access Requests
Obsolete Calibres
Certificate Application Templates
section 1 and 2
Home Office
the Home Office Guide on Firearms Licensing Law
fields.field(form.acknowledgement
Companies House
Importer Entity Type
filter_agent_name
Filter
class="prompt west
Chapter 93
Revisit this - See
Section 1 of the Firearms Act 1968
Section 2 of the Firearms Act 1968
Section 5(1)(ac
Section 58(2) of the Firearms Act 1968
EORI
"Firearms Specific Import Licence Application
the Firearms Act
Unlimited Quantity"
Cup
6mm
2 7/8 inch
RFD
Maintain Commodity
goodsOnUKMarketRadios.forEach
constructor(legislationSelect2
return isEUCosmeticsRegulation && notExportOnly
Maintain Importers
Importer Reg No
Quota
Application Reference
Exporter Address
application_field(process.exporter_vat_nr
Exporter VAT Number
OPEN & VariationRequest
ProcessTypes
AOG
"Creates an export application certificate reference
f"{xxx}/{timezone.now().year}/{next_sequence_value:05
Override EORI Number
f"{object.id}/edit/
CFS_SCHEDULE
Initialize Sentry
GET/POST
style="width
class="bold">End Date</span
Compensating Products'
Prior Authorisation'
New Application'
Further Authorisation'
fir.email_cc_address_list
Exporter Access Approval
Importer Access Approval
f"/importer/{self.importer.id}/edit/
Commodity Types
gte
Valid
quantity_threshold
Iron, Steel and Aluminium
"Mandatory for Iron, Steel, Aluminium and Textile
the Group Code
" For Auto Groups
Category Groups
Group
Display Name
Pick an Application Type
LD_LIBRARY_PATH=$ORACLE_HOME:$LD_LIBRARY_PATH
Request Importer/
som_user
Access Request Type
Access Request Type | True
| Organisation
Agents Ltd
Test Imports
Agents Ltd"
Export Agents Ltd
text</th>
Endorsement</h4
Cover Letter
View Case'
Submit Variation Request'
Assert
Assert ICMS
is_superuser
Shotgun Certificate
Legal Person
Street and Number
Town/City
Road
f"{self.date_received:%d-%b-%Y
Make and Model"
Response
firearms/{firearms.pk}/edit/
http://stellarchariot.com/blog/2011/02/dynamically-add-form-to-formset-using-javascript-and-django/
function addForm(btn
Insert
row).removeAttr('id').hide().insertAfter(".item
Exporter
access_request.response_reason
Manage Countries
Importers and Agents
Exporters and Agents
Steel (Quota
Editing Astoria
Asian
American
European Countries
European
African Countries
f"/country/groups/{self.group.id}/edit/
African
Chinese
Persian
Editing Arabic Translation Set
Editing New Country 4
New Country 5
Logs in the test_import_user
"Creates a fa-dfl
Firearms and Ammunition (Deactivated Firearms Licence) - Edit
f"{url}?validate
Firearms and Ammunition (Deactivated) Issuing Countries
Firearms and Ammunition (Deactivated Firearms Licence
Firearms and Ammunition (Deactivated Firearms Licence) - Edit Goods Certificate
test-file.txt
Proof Checked"
Goods Certificate
Save
section5_files
bin button
Exporter Status
Brand
Product Eligibility
Schedule Statements
Address Type
NIR
Cosmetic Products Legislation
NI
Country of Responsible Person
Good Manufacturing Practice
ISO 17021
Export Application
https://developer-specs.company-information.service.gov.uk/companies-house-public-data-api/reference/company-profile/company-profile
https://developer-specs.company-information.service.gov.uk/companies-house-public-data-api/reference/search/search-companies
COMPANIES_HOUSE_DOMAIN}search/companies?q={query}&items_per_page=20
Section 1</p>{%
Section 5</p>{%
process.military_police
Country of Origin
f"Obsolete Calibre Group
f"Obsolete Calibre
Obsolete Calibre (New
{ category_descriptions|tojson }
Logout
File</th
ILB Case Officers:Certificate Application Case Officer
Link Exporter
checkbox_label="These
the Good Manufacturing Practice
Cosmetic Regulation
application_field((schedule.manufacturer_address
>Products</h4
class="icon
Download Template
Home 2
Home.as_view
Queensway House
Success / Error
*************************** SKIPPING FOR NOW
exc
"HMRC Controlled
QUANTITY
GB
GB123456789012345
folder_id
IMP_SUPPORTING_DOC
CFS Products
Product Type Numbers
Spreadsheet
CFS Products'
ProductData
CFSProductForm
product_type_number
Create Certificate Application
Maintain Sanction Emails
Create Sanction Email
Edit Sanction Email
Display"
Add Goods Certificate
Edit Goods Certificate
Submit Application
Blind Forest
Bros. Plumbers Ltd.
Windsor House
Applicant Case Management" Views
ILB Admin
Close Case Processing
get_import_licence_reference
"Creates document reference records for Export
f"Authorise Success: Application
PermissionRequiredMixin Config
Application {self.application.reference}
name</label></td>
value="Send
LICENCE_PREVIEW
COVER_LETTER
pdf
Supplementary Report
Create Commodity
Request
location.reload(
Application Updates
Sent Further Information Requests
Biocidal
EU Cosmetics Regulation
Biocidal Claim
GB Legislation
Product Legislation (new)
MAC
Convert Django
FieldError
PageErrors
./OBSOLETE_CALIBRE/OC_ID
dfl_application_id
/AUTHORITY_LIST/AUTHORITY
GOODS_CATEGORY
Importer Limited
GB3423453234
4402100010"
importer_office_legacy__id
document_id"
Create Commodity Group
Maintain Commodity Groups
north disabledLink">Case Reference</span></div>
north">Licence Validity</label></div>
cs.application_sub_type
Import & Export
WITHDRAWN
Maintain Exporters
Create Exporter
Precious Metals and Stones
Global Trade Tariff: Look
VAT
master_country_group
consignment_country_group_id
paper_licence_flag
quantity_unlimited_flag
agent_id"
variation_no
exporter_vat_nr