PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / trunk
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler vtrunk
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
fluent-cart / app / Services / Tax / rates / europe.php

europe.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler trunk, at app/Services/Tax/rates/europe.php

1,198 lines 30.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit;
2
3 return [
4 "AT" => [
5 "group" => "EU",
6 "tax" => [
7 [
8 'rate' => 20,
9 'compound' => false,
10 'type' => 'standard',
11 'name' => 'MwSt',
12 ],
13 [
14 'rate' => 13,
15 'compound' => false,
16 'type' => 'reduced',
17 ],
18 [
19 'rate' => 0,
20 'compound' => false,
21 'type' => 'zero',
22 ],
23 ],
24 ],
25 "BE" => [
26 "group" => "EU",
27 "tax" => [
28 [
29 'rate' => 21,
30 'compound' => false,
31 'type' => 'standard',
32 'name' => 'BTW/TVA',
33 ],
34 [
35 'rate' => 6,
36 'compound' => false,
37 'type' => 'reduced',
38 ],
39 [
40 'rate' => 0,
41 'compound' => false,
42 'type' => 'zero',
43 ],
44 ],
45 ],
46 "BG" => [
47 "group" => "EU",
48 "tax" => [
49 [
50 'rate' => 20,
51 'compound' => false,
52 'type' => 'standard',
53 'name' => 'DDS',
54 ],
55 [
56 'rate' => 9,
57 'compound' => false,
58 'type' => 'reduced',
59 ],
60 [
61 'rate' => 0,
62 'compound' => false,
63 'type' => 'zero',
64 ],
65 ],
66 ],
67 "HR" => [
68 "group" => "EU",
69 "tax" => [
70 [
71 'rate' => 25,
72 'compound' => false,
73 'type' => 'standard',
74 'name' => 'PDV',
75 ],
76 [
77 'rate' => 13,
78 'compound' => false,
79 'type' => 'reduced',
80 ],
81 [
82 'rate' => 0,
83 'compound' => false,
84 'type' => 'zero',
85 ],
86 ],
87 ],
88 "CY" => [
89 "group" => "EU",
90 "tax" => [
91 [
92 'rate' => 19,
93 'compound' => false,
94 'type' => 'standard',
95 'name' => 'VAT',
96 ],
97 [
98 'rate' => 9,
99 'compound' => false,
100 'type' => 'reduced',
101 ],
102 [
103 'rate' => 0,
104 'compound' => false,
105 'type' => 'zero',
106 ],
107 ],
108 ],
109 "CZ" => [
110 "group" => "EU",
111 "tax" => [
112 [
113 'rate' => 21,
114 'compound' => false,
115 'type' => 'standard',
116 'name' => 'DPH',
117 ],
118 [
119 'rate' => 15,
120 'compound' => false,
121 'type' => 'reduced',
122 ],
123 [
124 'rate' => 0,
125 'compound' => false,
126 'type' => 'zero',
127 ],
128 ],
129 ],
130 "DK" => [
131 "group" => "EU",
132 "tax" => [
133 [
134 'rate' => 25,
135 'compound' => false,
136 'type' => 'standard',
137 'name' => 'moms',
138 ],
139 [
140 'rate' => 0,
141 'compound' => false,
142 'type' => 'zero',
143 ],
144 ],
145 ],
146 "EE" => [
147 "group" => "EU",
148 "tax" => [
149 [
150 'rate' => 24,
151 'compound' => false,
152 'type' => 'standard',
153 'name' => 'KM',
154 ],
155 [
156 'rate' => 9,
157 'compound' => false,
158 'type' => 'reduced',
159 ],
160 [
161 'rate' => 0,
162 'compound' => false,
163 'type' => 'zero',
164 ],
165 ],
166 ],
167 "FI" => [
168 "group" => "EU",
169 "tax" => [
170 [
171 'rate' => 25.5,
172 'compound' => false,
173 'type' => 'standard',
174 'name' => 'ALV',
175 ],
176 [
177 'rate' => 14,
178 'compound' => false,
179 'type' => 'reduced',
180 ],
181 [
182 'rate' => 0,
183 'compound' => false,
184 'type' => 'zero',
185 ],
186 ],
187 ],
188 "FR" => [
189 "group" => "EU",
190 "tax" => [
191 [
192 'rate' => 20,
193 'compound' => false,
194 'type' => 'standard',
195 'name' => 'TVA',
196 ],
197 [
198 'rate' => 10,
199 'compound' => false,
200 'type' => 'reduced',
201 ],
202 [
203 'rate' => 0,
204 'compound' => false,
205 'type' => 'zero',
206 ],
207 [
208 'rate' => 8.5,
209 'compound' => false,
210 'state' => 'GP',
211 'name' => 'Guadeloupe Standard',
212 'type' => 'standard',
213 ],
214 [
215 'rate' => 2.1,
216 'compound' => false,
217 'state' => 'GP',
218 'name' => 'Guadeloupe Reduced',
219 'type' => 'reduced',
220 ],
221 [
222 'rate' => 8.5,
223 'compound' => false,
224 'state' => 'MQ',
225 'name' => 'Martinique Standard',
226 'type' => 'standard',
227 ],
228 [
229 'rate' => 2.1,
230 'compound' => false,
231 'state' => 'MQ',
232 'name' => 'Martinique Reduced',
233 'type' => 'reduced',
234 ],
235 [
236 'rate' => 8.5,
237 'compound' => false,
238 'state' => 'RE',
239 'name' => 'Réunion Standard',
240 'type' => 'standard',
241 ],
242 [
243 'rate' => 2.1,
244 'compound' => false,
245 'state' => 'RE',
246 'name' => 'Réunion Reduced',
247 'type' => 'reduced',
248 ],
249 ],
250 ],
251 "DE" => [
252 "group" => "EU",
253 "tax" => [
254 [
255 'rate' => 19,
256 'compound' => false,
257 'type' => 'standard',
258 'name' => 'MwSt',
259 ],
260 [
261 'rate' => 7,
262 'compound' => false,
263 'type' => 'reduced',
264 ],
265 [
266 'rate' => 0,
267 'compound' => false,
268 'type' => 'zero',
269 ],
270 ],
271 ],
272 "GR" => [
273 "group" => "EU",
274 "tax" => [
275 [
276 'rate' => 24,
277 'compound' => false,
278 'type' => 'standard',
279 'name' => 'FPA',
280 ],
281 [
282 'rate' => 13,
283 'compound' => false,
284 'type' => 'reduced',
285 ],
286 [
287 'rate' => 0,
288 'compound' => false,
289 'type' => 'zero',
290 ],
291 ],
292 ],
293 "HU" => [
294 "group" => "EU",
295 "tax" => [
296 [
297 'rate' => 27,
298 'compound' => false,
299 'type' => 'standard',
300 'name' => 'AFA',
301 ],
302 [
303 'rate' => 18,
304 'compound' => false,
305 'type' => 'reduced',
306 ],
307 [
308 'rate' => 0,
309 'compound' => false,
310 'type' => 'zero',
311 ],
312 ],
313 ],
314 "IE" => [
315 "group" => "EU",
316 "tax" => [
317 [
318 'rate' => 23,
319 'compound' => false,
320 'type' => 'standard',
321 'name' => 'VAT',
322 ],
323 [
324 'rate' => 13.5,
325 'compound' => false,
326 'type' => 'reduced',
327 ],
328 [
329 'rate' => 0,
330 'compound' => false,
331 'type' => 'zero',
332 ],
333 ],
334 ],
335 "IT" => [
336 "group" => "EU",
337 "tax" => [
338 [
339 'rate' => 22,
340 'compound' => false,
341 'type' => 'standard',
342 'name' => 'IVA',
343 ],
344 [
345 'rate' => 10,
346 'compound' => false,
347 'type' => 'reduced',
348 ],
349 [
350 'rate' => 0,
351 'compound' => false,
352 'type' => 'zero',
353 ],
354 ],
355 ],
356 "LV" => [
357 "group" => "EU",
358 "tax" => [
359 [
360 'rate' => 21,
361 'compound' => false,
362 'type' => 'standard',
363 'name' => 'PVN',
364 ],
365 [
366 'rate' => 12,
367 'compound' => false,
368 'type' => 'reduced',
369 ],
370 [
371 'rate' => 0,
372 'compound' => false,
373 'type' => 'zero',
374 ],
375 ],
376 ],
377 "LT" => [
378 "group" => "EU",
379 "tax" => [
380 [
381 'rate' => 21,
382 'compound' => false,
383 'type' => 'standard',
384 'name' => 'PVM',
385 ],
386 [
387 'rate' => 9,
388 'compound' => false,
389 'type' => 'reduced',
390 ],
391 [
392 'rate' => 0,
393 'compound' => false,
394 'type' => 'zero',
395 ],
396 ],
397 ],
398 "LU" => [
399 "group" => "EU",
400 "tax" => [
401 [
402 'rate' => 17,
403 'compound' => false,
404 'type' => 'standard',
405 'name' => 'TVA',
406 ],
407 [
408 'rate' => 8,
409 'compound' => false,
410 'type' => 'reduced',
411 ],
412 [
413 'rate' => 0,
414 'compound' => false,
415 'type' => 'zero',
416 ],
417 ],
418 ],
419 "MT" => [
420 "group" => "EU",
421 "tax" => [
422 [
423 'rate' => 18,
424 'compound' => false,
425 'type' => 'standard',
426 'name' => 'VAT',
427 ],
428 [
429 'rate' => 7,
430 'compound' => false,
431 'type' => 'reduced',
432 ],
433 [
434 'rate' => 0,
435 'compound' => false,
436 'type' => 'zero',
437 ],
438 ],
439 ],
440 "NL" => [
441 "group" => "EU",
442 "tax" => [
443 [
444 'rate' => 21,
445 'compound' => false,
446 'type' => 'standard',
447 'name' => 'BTW',
448 ],
449 [
450 'rate' => 9,
451 'compound' => false,
452 'type' => 'reduced',
453 ],
454 [
455 'rate' => 0,
456 'compound' => false,
457 'type' => 'zero',
458 ],
459 ],
460 ],
461 "PL" => [
462 "group" => "EU",
463 "tax" => [
464 [
465 'rate' => 23,
466 'compound' => false,
467 'type' => 'standard',
468 'name' => 'VAT',
469 ],
470 [
471 'rate' => 8,
472 'compound' => false,
473 'type' => 'reduced',
474 ],
475 [
476 'rate' => 0,
477 'compound' => false,
478 'type' => 'zero',
479 ],
480 ],
481 ],
482 "PT" => [
483 "group" => "EU",
484 "tax" => [
485 [
486 'rate' => 23,
487 'compound' => false,
488 'type' => 'standard',
489 'name' => 'IVA',
490 ],
491 [
492 'rate' => 13,
493 'compound' => false,
494 'type' => 'reduced',
495 ],
496 [
497 'rate' => 0,
498 'compound' => false,
499 'type' => 'zero',
500 ],
501 [
502 'rate' => 23,
503 'compound' => false,
504 'state' => 'PT-Mainland',
505 'name' => 'Portugal Mainland Standard',
506 'type' => 'standard',
507 ],
508 [
509 'rate' => 6,
510 'compound' => false,
511 'state' => 'PT-Mainland',
512 'name' => 'Portugal Mainland Reduced',
513 'type' => 'reduced',
514 ],
515 [
516 'rate' => 22,
517 'compound' => false,
518 'state' => 'PT-Madeira',
519 'name' => 'Madeira Standard',
520 'type' => 'standard',
521 ],
522 [
523 'rate' => 4,
524 'compound' => false,
525 'state' => 'PT-Madeira',
526 'name' => 'Madeira Reduced',
527 'type' => 'reduced',
528 ],
529 [
530 'rate' => 16,
531 'compound' => false,
532 'state' => 'PT-Azores',
533 'name' => 'Azores Standard',
534 'type' => 'standard',
535 ],
536 [
537 'rate' => 4,
538 'compound' => false,
539 'state' => 'PT-Azores',
540 'name' => 'Azores Reduced',
541 'type' => 'reduced',
542 ],
543 ],
544 ],
545 "RO" => [
546 "group" => "EU",
547 "tax" => [
548 [
549 'rate' => 21,
550 'compound' => false,
551 'type' => 'standard',
552 'name' => 'TVA',
553 ],
554 [
555 'rate' => 9,
556 'compound' => false,
557 'type' => 'reduced',
558 ],
559 [
560 'rate' => 0,
561 'compound' => false,
562 'type' => 'zero',
563 ],
564 ],
565 ],
566 "SK" => [
567 "group" => "EU",
568 "tax" => [
569 [
570 'rate' => 23,
571 'compound' => false,
572 'type' => 'standard',
573 'name' => 'DPH',
574 ],
575 [
576 'rate' => 19,
577 'compound' => false,
578 'type' => 'reduced',
579 ],
580 [
581 'rate' => 0,
582 'compound' => false,
583 'type' => 'zero',
584 ],
585 ],
586 ],
587 "SI" => [
588 "group" => "EU",
589 "tax" => [
590 [
591 'rate' => 22,
592 'compound' => false,
593 'type' => 'standard',
594 'name' => 'DDV',
595 ],
596 [
597 'rate' => 9.5,
598 'compound' => false,
599 'type' => 'reduced',
600 ],
601 [
602 'rate' => 0,
603 'compound' => false,
604 'type' => 'zero',
605 ],
606 ],
607 ],
608 "ES" => [
609 "group" => "EU",
610 "tax" => [
611 [
612 'rate' => 21,
613 'compound' => false,
614 'type' => 'standard',
615 'name' => 'IVA',
616 ],
617 [
618 'rate' => 10,
619 'compound' => false,
620 'type' => 'reduced',
621 ],
622 [
623 'rate' => 0,
624 'compound' => false,
625 'type' => 'zero',
626 ],
627 [
628 'rate' => 21,
629 'compound' => false,
630 'state' => 'ES-Mainland',
631 'name' => 'Spain Mainland Standard',
632 'type' => 'standard',
633 ],
634 [
635 'rate' => 10,
636 'compound' => false,
637 'state' => 'ES-Mainland',
638 'name' => 'Spain Mainland Reduced',
639 'type' => 'reduced',
640 ],
641 [
642 'rate' => 7,
643 'compound' => false,
644 'state' => 'ES-Canary',
645 'name' => 'Canary Islands IGIC Standard',
646 'type' => 'standard',
647 ],
648 [
649 'rate' => 3,
650 'compound' => false,
651 'state' => 'ES-Canary',
652 'name' => 'Canary Islands IGIC Reduced',
653 'type' => 'reduced',
654 ],
655 [
656 'rate' => 0,
657 'compound' => false,
658 'state' => 'ES-Canary',
659 'name' => 'Canary Islands IGIC Zero',
660 'type' => 'zero',
661 ],
662 [
663 'rate' => 4,
664 'compound' => false,
665 'state' => 'ES-CeutaMelilla',
666 'name' => 'Ceuta & Melilla IPSI General',
667 'type' => 'standard',
668 ],
669 ],
670 ],
671 "SE" => [
672 "group" => "EU",
673 "tax" => [
674 [
675 'rate' => 25,
676 'compound' => false,
677 'type' => 'standard',
678 'name' => 'moms',
679 ],
680 [
681 'rate' => 12,
682 'compound' => false,
683 'type' => 'reduced',
684 ],
685 [
686 'rate' => 0,
687 'compound' => false,
688 'type' => 'zero',
689 ],
690 ],
691 ],
692 "GB" => [
693 "group" => "REST",
694 "tax" => [
695 [
696 'rate' => 20,
697 'compound' => false,
698 'type' => 'standard',
699 ],
700 [
701 'rate' => 5,
702 'compound' => false,
703 'type' => 'reduced',
704 ],
705 [
706 'rate' => 0,
707 'compound' => false,
708 'type' => 'zero',
709 ],
710 ],
711 ],
712 "XI" => [
713 "group" => "REST",
714 "tax" => [
715 [
716 'rate' => 20,
717 'compound' => false,
718 'type' => 'standard',
719 ],
720 [
721 'rate' => 5,
722 'compound' => false,
723 'type' => 'reduced',
724 ],
725 [
726 'rate' => 0,
727 'compound' => false,
728 'type' => 'zero',
729 ],
730 ],
731 ],
732 "NO" => [
733 "group" => "REST",
734 "tax" => [
735 [
736 'rate' => 25,
737 'compound' => false,
738 'type' => 'standard',
739 ],
740 [
741 'rate' => 15,
742 'compound' => false,
743 'type' => 'reduced',
744 ],
745 [
746 'rate' => 0,
747 'compound' => false,
748 'type' => 'zero',
749 ],
750 ],
751 ],
752 "CH" => [
753 "group" => "REST",
754 "tax" => [
755 [
756 'rate' => 8.1,
757 'compound' => false,
758 'type' => 'standard',
759 ],
760 [
761 'rate' => 2.6,
762 'compound' => false,
763 'type' => 'reduced',
764 ],
765 [
766 'rate' => 0,
767 'compound' => false,
768 'type' => 'zero',
769 ],
770 ],
771 ],
772 "IS" => [
773 "group" => "REST",
774 "tax" => [
775 [
776 'rate' => 24,
777 'compound' => false,
778 'type' => 'standard',
779 ],
780 [
781 'rate' => 11,
782 'compound' => false,
783 'type' => 'reduced',
784 ],
785 [
786 'rate' => 0,
787 'compound' => false,
788 'type' => 'zero',
789 ],
790 ],
791 ],
792 "LI" => [
793 "group" => "REST",
794 "tax" => [
795 [
796 'rate' => 8.1,
797 'compound' => false,
798 'type' => 'standard',
799 ],
800 [
801 'rate' => 2.6,
802 'compound' => false,
803 'type' => 'reduced',
804 ],
805 [
806 'rate' => 0,
807 'compound' => false,
808 'type' => 'zero',
809 ],
810 ],
811 ],
812 "MC" => [
813 "group" => "REST",
814 "tax" => [
815 [
816 'rate' => 20,
817 'compound' => false,
818 'type' => 'standard',
819 ],
820 [
821 'rate' => 10,
822 'compound' => false,
823 'type' => 'reduced',
824 ],
825 [
826 'rate' => 0,
827 'compound' => false,
828 'type' => 'zero',
829 ],
830 ],
831 ],
832 "AD" => [
833 "group" => "REST",
834 "tax" => [
835 [
836 'rate' => 4.5,
837 'compound' => false,
838 'type' => 'standard',
839 ],
840 [
841 'rate' => 1,
842 'compound' => false,
843 'type' => 'reduced',
844 ],
845 [
846 'rate' => 0,
847 'compound' => false,
848 'type' => 'zero',
849 ],
850 ],
851 ],
852 "AL" => [
853 "group" => "REST",
854 "tax" => [
855 [
856 'rate' => 20,
857 'compound' => false,
858 'type' => 'standard',
859 ],
860 [
861 'rate' => 6,
862 'compound' => false,
863 'type' => 'reduced',
864 ],
865 [
866 'rate' => 0,
867 'compound' => false,
868 'type' => 'zero',
869 ],
870 ],
871 ],
872 "BA" => [
873 "group" => "REST",
874 "tax" => [
875 [
876 'rate' => 17,
877 'compound' => false,
878 'type' => 'standard',
879 ],
880 [
881 'rate' => 0,
882 'compound' => false,
883 'type' => 'zero',
884 ],
885 ],
886 ],
887 "MK" => [
888 "group" => "REST",
889 "tax" => [
890 [
891 'rate' => 18,
892 'compound' => false,
893 'type' => 'standard',
894 ],
895 [
896 'rate' => 5,
897 'compound' => false,
898 'type' => 'reduced',
899 ],
900 [
901 'rate' => 0,
902 'compound' => false,
903 'type' => 'zero',
904 ],
905 ],
906 ],
907 "RS" => [
908 "group" => "REST",
909 "tax" => [
910 [
911 'rate' => 20,
912 'compound' => false,
913 'type' => 'standard',
914 ],
915 [
916 'rate' => 10,
917 'compound' => false,
918 'type' => 'reduced',
919 ],
920 [
921 'rate' => 0,
922 'compound' => false,
923 'type' => 'zero',
924 ],
925 ],
926 ],
927 "ME" => [
928 "group" => "REST",
929 "tax" => [
930 [
931 'rate' => 21,
932 'compound' => false,
933 'type' => 'standard',
934 ],
935 [
936 'rate' => 7,
937 'compound' => false,
938 'type' => 'reduced',
939 ],
940 [
941 'rate' => 0,
942 'compound' => false,
943 'type' => 'zero',
944 ],
945 ],
946 ],
947 "TR" => [
948 "group" => "REST",
949 "tax" => [
950 [
951 'rate' => 20,
952 'compound' => false,
953 'type' => 'standard',
954 ],
955 [
956 'rate' => 10,
957 'compound' => false,
958 'type' => 'reduced',
959 ],
960 [
961 'rate' => 0,
962 'compound' => false,
963 'type' => 'zero',
964 ],
965 ],
966 ],
967 "UA" => [
968 "group" => "REST",
969 "tax" => [
970 [
971 'rate' => 20,
972 'compound' => false,
973 'type' => 'standard',
974 ],
975 [
976 'rate' => 7,
977 'compound' => false,
978 'type' => 'reduced',
979 ],
980 [
981 'rate' => 0,
982 'compound' => false,
983 'type' => 'zero',
984 ],
985 ],
986 ],
987 "RU" => [
988 "group" => "REST",
989 "tax" => [
990 [
991 'rate' => 20,
992 'compound' => false,
993 'type' => 'standard',
994 ],
995 [
996 'rate' => 10,
997 'compound' => false,
998 'type' => 'reduced',
999 ],
1000 [
1001 'rate' => 0,
1002 'compound' => false,
1003 'type' => 'zero',
1004 ],
1005 ],
1006 ],
1007 "BY" => [
1008 "group" => "REST",
1009 "tax" => [
1010 [
1011 'rate' => 20,
1012 'compound' => false,
1013 'type' => 'standard',
1014 ],
1015 [
1016 'rate' => 10,
1017 'compound' => false,
1018 'type' => 'reduced',
1019 ],
1020 [
1021 'rate' => 0,
1022 'compound' => false,
1023 'type' => 'zero',
1024 ],
1025 ],
1026 ],
1027 "MD" => [
1028 "group" => "REST",
1029 "tax" => [
1030 [
1031 'rate' => 20,
1032 'compound' => false,
1033 'type' => 'standard',
1034 ],
1035 [
1036 'rate' => 12,
1037 'compound' => false,
1038 'type' => 'reduced',
1039 ],
1040 [
1041 'rate' => 0,
1042 'compound' => false,
1043 'type' => 'zero',
1044 ],
1045 ],
1046 ],
1047 "SM" => [
1048 "group" => "REST",
1049 "tax" => [
1050 [
1051 'rate' => 22,
1052 'compound' => false,
1053 'type' => 'standard',
1054 ],
1055 [
1056 'rate' => 10,
1057 'compound' => false,
1058 'type' => 'reduced',
1059 ],
1060 [
1061 'rate' => 0,
1062 'compound' => false,
1063 'type' => 'zero',
1064 ],
1065 ],
1066 ],
1067 "VA" => [
1068 "group" => "REST",
1069 "tax" => [
1070 [
1071 'rate' => 0,
1072 'compound' => false,
1073 'type' => 'standard',
1074 ],
1075 [
1076 'rate' => 0,
1077 'compound' => false,
1078 'type' => 'zero',
1079 ],
1080 ],
1081 ],
1082 "GI" => [
1083 "group" => "REST",
1084 "tax" => [
1085 [
1086 'rate' => 0,
1087 'compound' => false,
1088 'type' => 'standard',
1089 ],
1090 [
1091 'rate' => 0,
1092 'compound' => false,
1093 'type' => 'zero',
1094 ],
1095 ],
1096 ],
1097 "JE" => [
1098 "group" => "REST",
1099 "tax" => [
1100 [
1101 'rate' => 5,
1102 'compound' => false,
1103 'type' => 'standard',
1104 ],
1105 [
1106 'rate' => 0,
1107 'compound' => false,
1108 'type' => 'zero',
1109 ],
1110 ],
1111 ],
1112 "GG" => [
1113 "group" => "REST",
1114 "tax" => [
1115 [
1116 'rate' => 0,
1117 'compound' => false,
1118 'type' => 'standard',
1119 ],
1120 [
1121 'rate' => 0,
1122 'compound' => false,
1123 'type' => 'zero',
1124 ],
1125 ],
1126 ],
1127 "IM" => [
1128 "group" => "REST",
1129 "tax" => [
1130 [
1131 'rate' => 20,
1132 'compound' => false,
1133 'type' => 'standard',
1134 ],
1135 [
1136 'rate' => 5,
1137 'compound' => false,
1138 'type' => 'reduced',
1139 ],
1140 [
1141 'rate' => 0,
1142 'compound' => false,
1143 'type' => 'zero',
1144 ],
1145 ],
1146 ],
1147 "FO" => [
1148 "group" => "REST",
1149 "tax" => [
1150 [
1151 'rate' => 25,
1152 'compound' => false,
1153 'type' => 'standard',
1154 ],
1155 [
1156 'rate' => 0,
1157 'compound' => false,
1158 'type' => 'zero',
1159 ],
1160 ],
1161 ],
1162 "SJ" => [
1163 "group" => "REST",
1164 "tax" => [
1165 [
1166 'rate' => 0,
1167 'compound' => false,
1168 'type' => 'standard',
1169 ],
1170 [
1171 'rate' => 0,
1172 'compound' => false,
1173 'type' => 'zero',
1174 ],
1175 ],
1176 ],
1177 "AX" => [
1178 "group" => "REST",
1179 "tax" => [
1180 [
1181 'rate' => 0,
1182 'compound' => false,
1183 'type' => 'zero',
1184 ],
1185 ],
1186 ],
1187 "BV" => [
1188 "group" => "REST",
1189 "tax" => [
1190 [
1191 'rate' => 0,
1192 'compound' => false,
1193 'type' => 'zero',
1194 ],
1195 ],
1196 ],
1197 ];
1198