File size: 210,455 Bytes
21626e7 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 | [
{
"id": "C.R.C.,_c._1041-s1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "1",
"marginal_note": "",
"part": "",
"division": "",
"heading": "",
"text": "1 [Repealed, SOR/2019-169, s. 2]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-1.html"
},
{
"id": "C.R.C.,_c._1041-s2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "2",
"marginal_note": "Definitions",
"part": "",
"division": "",
"heading": "Interpretation",
"text": "2\n(1) The following definitions apply in these Regulations.\nAct means the Controlled Drugs and Substances Act. (Loi)\nadvertisement includes any representation by any means for the purpose of promoting, directly or indirectly, the sale or other disposal of a narcotic. (publicité.)\ncommon-law partner, in relation to an individual, means a person who is cohabiting with the individual in a conjugal relationship, having so cohabited for a period of at least one year. (conjoint de fait)\ncompetent authority means a public authority of a foreign country that is authorized under the laws of the country to approve the importation or exportation of narcotics into or from the country. (autorité compétente)\ncompound includes a preparation. (composé)\ndesignated criminal offence means\n(a) an offence involving the financing of terrorism against any of sections 83.02 to 83.04 of the Criminal Code;\n(b) an offence involving fraud against any of sections 380 to 382 of the Criminal Code;\n(c) the offence of laundering proceeds of crime against section 462.31 of the Criminal Code;\n(d) an offence involving a criminal organization against any of sections 467.11 to 467.13 of the Criminal Code; or\n(e) a conspiracy or an attempt to commit, being an accessory after the fact in relation to, or any counselling in relation to, an offence referred to in any of paragraphs (a) to (d). (infraction désignée en matière criminelle)\ndestroy means, in respect of a narcotic, to alter or denature it to such an extent that its consumption is rendered impossible or improbable. (destruction)\ndiacetylmorphine (heroin) includes the salts of diacetylmorphine. (diacétylmorphine (héroïne))\nhospital means a facility\n(a) that is licensed, approved or designated by a province in accordance with the laws of the province to provide care or treatment to persons or animals suffering from any form of disease or illness; or\n(b) that is owned or operated by the Government of Canada or the government of a province and that provides health services. (hôpital)\ninternational obligation means an obligation in respect of a narcotic set out in a convention, treaty or other multilateral or bilateral instrument that Canada has ratified or to which Canada adheres. (obligation internationale)\nlicensed dealer means the holder of a licence issued under section 10.1. (distributeur autorisé)\nmethadone includes the salts of methadone. (méthadone)\nmidwife has the same meaning as in section 1 of the New Classes of Practitioners Regulations. (sage-femme)\nnarcotic means\n(a) a controlled substance set out in the schedule; or\n(b) in respect of a midwife, nurse practitioner or podiatrist, a controlled substance set out in the schedule that the midwife, nurse practitioner or podiatrist may prescribe, possess or conduct an activity with, in accordance with sections 3 and 4 of the New Classes of Practitioners Regulations. (stupéfiant)\nnurse practitioner has the same meaning as in section 1 of the New Classes of Practitioners Regulations. (infirmier praticien)\npharmacist means a person who is entitled under the laws of a province to practise pharmacy and who is practising pharmacy in that province. (pharmacien)\npodiatrist has the same meaning as in section 1 of the New Classes of Practitioners Regulations. (podiatre)\nprescription means an authorization given by a practitioner that a stated amount of a narcotic be dispensed for the person named in it or the animal identified in it. (ordonnance)\nqualified person in charge means the individual designated under subsection 9.2(1). (responsable qualifié)\nSecurity Directive means the Directive on Physical Security Requirements for Controlled Substances and Drugs Containing Cannabis, as amended from time to time and published by the Government of Canada on its website. (Directive en matière de sécurité)\nsenior person in charge means the individual designated under section 9.1. (responsable principal)\ntest kit means a kit\n(a) that contains a narcotic and a reagent system or buffering agent;\n(b) that is used during the course of a chemical or analytical procedure to test for the presence or quantity of a narcotic for a medical, laboratory, industrial, educational, law administration or enforcement, or research purpose; and\n(c) the contents of which are not intended or likely to be consumed by, or administered to, a person or an animal. (nécessaire d’essai)\nverbal prescription narcotic means a narcotic that is contained in medication that may be prescribed verbally and that has the following characteristics:\n(a) it contains two or more medicinal ingredients that are not narcotics, in a recognized therapeutic dose;\n(b) it is not intended for parenteral administration; and\n(c) it does not contain diacetylmorphine (heroin), hydrocodone, methadone, oxycodone or pentazocine. (stupéfiant d’ordonnance verbale)\n(2) [Repealed, SOR/2021-271, s. 3]",
"history": "SOR/78-154, s. 1; SOR/81-361, s. 1; SOR/85-588, s. 1; SOR/85-930, s. 1; SOR/86-173, s. 1; SOR/88-279, s. 1(F); SOR/90-189, s. 1; SOR/97-227, s. 1; SOR/2003-134, s. 1; SOR/2004-237, s. 1; SOR/2010-221, s. 1; SOR/2012-230, s. 14; SOR/2013-119, s. 200; SOR/2013-172, s. 3; SOR/2015-132, s. 1; SOR/2016-230, ss. 261, 278; SOR/2016-239, s. 2; SOR/2018-147, s. 1; SOR/2019-169, s. 3; SOR/2021-271, s. 3",
"last_amended": "2022-01-05",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-2.html"
},
{
"id": "C.R.C.,_c._1041-s2.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "2.1",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Interpretation",
"text": "2.1 [Repealed, SOR/2016-230, s. 262]",
"history": "",
"last_amended": "2016-08-24",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 2.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-2.1.html"
},
{
"id": "C.R.C.,_c._1041-s3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "3",
"marginal_note": "Authorized persons",
"part": "",
"division": "",
"heading": "Possession",
"text": "3\n(1) A person is authorized to possess a narcotic if the person has obtained the narcotic in accordance with these Regulations, in the course of activities conducted in connection with the administration or enforcement of an Act or regulation, or from a person who is exempt under section 56 of the Act from the application of subsection 5(1) of the Act with respect to that narcotic, and the person\n(a) requires the narcotic for their business or profession and is\n(i) a licensed dealer,\n(ii) a pharmacist, or\n(iii) a practitioner who is registered and entitled to practise in the province in which they possess the narcotic;\n(b) is a practitioner who is registered and entitled to practise in a province other than the province in which they possess the narcotic for emergency medical purposes only;\n(c) is a hospital employee or a practitioner in a hospital;\n(d) has obtained the narcotic for their own use\n(i) from a practitioner,\n(ii) in accordance with a prescription that was not issued or obtained in contravention of these Regulations, or\n(iii) from a pharmacist under section 36;\n(e) is a practitioner of medicine who received the narcotic under subsection 68(1) or (2) and their possession is for the purpose of providing or delivering it to a person referred to in subsection 68(3);\n(f) is an agent or mandatary of a practitioner of medicine who received the narcotic under subsection 68(1) and their possession is for the purpose of providing or delivering it to a person referred to in subsection 68(2);\n(g) is employed as an inspector, a member of the Royal Canadian Mounted Police, a police constable, a peace officer or a member of the technical or scientific staff of the Government of Canada, the government of a province or a university in Canada and their possession is in connection with that employment;\n(h) is not a practitioner of medicine referred to in paragraph (e) or an agent or mandatary referred to in paragraph (f), is exempted under section 56 of the Act with respect to the possession of that narcotic and their possession is for a purpose set out in the exemption; or\n(i) is the Minister.\n(2) [Agent or mandatary] A person is authorized to possess a narcotic if the person is acting as the agent or mandatary of any person who is authorized to possess it in accordance with any of paragraphs (1)(a) to (e), (h) and (i).\n(3) [Agent or mandatary — person referred to in paragraph (1)(g)] A person is authorized to possess a narcotic if\n(a) the person is acting as the agent or mandatary of a person who they have reasonable grounds to believe is a person referred to in paragraph (1)(g); and\n(b) their possession of the narcotic is for the purpose of assisting that person in the administration or enforcement of an Act or regulation.",
"history": "SOR/85-588, s. 2; SOR/85-930, s. 2; SOR/97-227, s. 2; SOR/99-124, s. 1; SOR/2012-230, s. 15; SOR/2013-119, s. 202; SOR/2013-172, s. 4; SOR/2016-230, s. 263; SOR/2016-239, s. 3; SOR/2018-37, s. 1; SOR/2018-69, ss. 75, 76; SOR/2018-147, s. 2; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-3.html"
},
{
"id": "C.R.C.,_c._1041-s4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "4",
"marginal_note": "Authorized activities",
"part": "",
"division": "",
"heading": "Test Kits",
"text": "4 A person may sell, possess or otherwise deal in a test kit if the following conditions are met:\n(a) a registration number has been issued for the test kit under section 6 and has not been cancelled under section 7;\n(b) the test kit bears, on its external surface,\n(i) the manufacturer’s name,\n(ii) the trade name or trademark, and\n(iii) the registration number; and\n(c) the test kit will be used for a medical, laboratory, industrial, educational, law administration or enforcement, or research purpose.",
"history": "2014, c. 20, s. 366(E); SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-4.html"
},
{
"id": "C.R.C.,_c._1041-s5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "5",
"marginal_note": "Application for registration number",
"part": "",
"division": "",
"heading": "Test Kits",
"text": "5\n(1) The manufacturer of a test kit may obtain a registration number for it by submitting to the Minister an application containing\n(a) a detailed description of the design and construction of the test kit;\n(b) a detailed description of the narcotic and other substances, if any, contained in the test kit, including the qualitative and quantitative composition of each component; and\n(c) a description of the proposed use of the test kit.\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the person authorized by the applicant for that purpose; and\n(b) include an attestation by that person that all of the information submitted in support of the application is correct and complete to the best of their knowledge.\n(3) [Additional information or document] The applicant must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2018-69, s. 71; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-5.html"
},
{
"id": "C.R.C.,_c._1041-s6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "6",
"marginal_note": "Issuance of registration number",
"part": "",
"division": "",
"heading": "Test Kits",
"text": "6 On completion of the review of the application for a registration number, the Minister must issue a registration number for the test kit, preceded by the letters “TK”, if the Minister determines that the test kit will only be used for a medical, laboratory, industrial, educational, law administration or enforcement, or research purpose and that it contains\n(a) a narcotic and an adulterating or denaturing agent in such a manner, combination, quantity, proportion or concentration that the preparation or mixture has no significant drug abuse potential; or\n(b) such small quantities or concentrations of a narcotic as to have no significant drug abuse potential.",
"history": "SOR/81-22, s. 1; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-6.html"
},
{
"id": "C.R.C.,_c._1041-s7",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "7",
"marginal_note": "Cancellation of registration number",
"part": "",
"division": "",
"heading": "Test Kits",
"text": "7 The Minister must cancel the registration number for a test kit if\n(a) the test kit is removed from the market by the manufacturer;\n(b) the Minister has reasonable grounds to believe that the test kit is used or is likely to be used for any purpose other than a medical, laboratory, industrial, educational, law administration or enforcement, or research purpose; or\n(c) the Minister has reasonable grounds to believe that the cancellation is necessary to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 7",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-7.html"
},
{
"id": "C.R.C.,_c._1041-s8",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "8",
"marginal_note": "General",
"part": "",
"division": "",
"heading": "Authorized Activities",
"text": "8\n(1) A licensed dealer may produce, assemble, sell, provide, transport, send, deliver, import or export a narcotic if they comply with these Regulations and the terms and conditions of their dealer’s licence and any permit issued under these Regulations.\n(2) [Qualified person in charge present] A licensed dealer may conduct an activity in relation to a narcotic at their site only if the qualified person in charge or an alternate qualified person in charge is present at the site.\n(3) [Permit — import and export] A licensed dealer must obtain a permit in order to import or export a narcotic.\n(4) [Possession for export] A licensed dealer may possess a narcotic for the purpose of exporting it if they have obtained it in accordance with these Regulations.\n(5) [Opium poppy — production] A licensed dealer may cultivate, propagate or harvest opium poppy only for scientific purposes.",
"history": "SOR/2004-237, s. 3; SOR/2013-119, s. 203; SOR/2016-123, s. 1; SOR/2016-230, ss. 264, 278; SOR/2018-147, s. 3; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 8",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-8.html"
},
{
"id": "C.R.C.,_c._1041-s8.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "8.1",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Authorized Activities",
"text": "8.1 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 8.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-8.1.html"
},
{
"id": "C.R.C.,_c._1041-s8.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "8.2",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Authorized Activities",
"text": "8.2 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 8.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-8.2.html"
},
{
"id": "C.R.C.,_c._1041-s8.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "8.3",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Authorized Activities",
"text": "8.3 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 8.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-8.3.html"
},
{
"id": "C.R.C.,_c._1041-s9",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9",
"marginal_note": "Eligible persons",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9 The following persons may apply for a dealer’s licence:\n(a) an individual who ordinarily resides in Canada;\n(b) a corporation that has its head office in Canada or operates a branch office in Canada; or\n(c) the holder of a position that includes responsibility for narcotics on behalf of the Government of Canada or of a government of a province, a police force, a hospital or a university in Canada.",
"history": "SOR/85-588, s. 3(F); SOR/2004-237, s. 4; SOR/2010-221, s. 3; SOR/2012-230, s. 17; SOR/2014-260, ss. 17, 27(F); SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.html"
},
{
"id": "C.R.C.,_c._1041-s9.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.1",
"marginal_note": "Senior person in charge",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.1 An applicant for a dealer’s licence must designate only one individual as the senior person in charge, who has overall responsibility for management of the activities with respect to narcotics that are specified in the licence application. The applicant may designate themself if the applicant is an individual.",
"history": "SOR/2004-237, s. 4; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.1.html"
},
{
"id": "C.R.C.,_c._1041-s9.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.2",
"marginal_note": "Qualified person in charge",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.2\n(1) An applicant for a dealer’s licence must designate only one individual as the qualified person in charge, who is responsible for supervising the activities with respect to narcotics that are specified in the licence application and for ensuring that those activities comply with these Regulations. The applicant may designate themself if the applicant is an individual.\n(2) [Alternate qualified person in charge] An applicant for a dealer’s licence may designate an individual as an alternate qualified person in charge, who is authorized to replace the qualified person in charge when that person is absent. The applicant may designate themself if the applicant is an individual.\n(3) [Qualifications] Only an individual who meets the following requirements may be designated as a qualified person in charge or an alternate qualified person in charge:\n(a) they work at the site specified in the dealer’s licence;\n(b) they\n(i) are entitled or, if applicable, registered and entitled by a provincial professional licensing authority or a professional association in Canada and entitled to practise a profession that is relevant to their duties, such as pharmacist, practitioner, pharmacy technician or laboratory technician,\n(ii) hold a diploma, certificate or credential awarded by a post-secondary educational institution in Canada in a field or occupation that is relevant to their duties, such as pharmacy, medicine, dentistry, veterinary medicine, pharmacology, chemistry, biology, pharmacy technician, laboratory technician, pharmaceutical regulatory affairs or supply chain management or security, or\n(iii) hold a diploma, certificate or credential that is awarded by a foreign educational institution in a field or occupation referred to in subparagraph (ii) and hold\n(A) an equivalency assessment as defined in subsection 73(1) of the Immigration and Refugee Protection Regulations, or\n(B) an equivalency assessment issued by an organization or institution that is responsible for issuing equivalency assessments and is recognized by a province;\n(c) they have sufficient knowledge of and experience with the use and handling of the narcotics specified in the dealer’s licence to properly carry out their duties; and\n(d) they have sufficient knowledge of the provisions of the Act and these Regulations that are applicable to the activities specified in the dealer’s licence to properly carry out their duties.\n(4) [Exception] An applicant for a dealer’s licence may designate an individual who does not meet any of the requirements of paragraph (3)(b) as a qualified person in charge or an alternate qualified person in charge if\n(a) no other individual working at the site meets those requirements;\n(b) those requirements are not necessary for the activities specified in the licence; and\n(c) the individual has sufficient knowledge — acquired from a combination of education, training or work experience — to properly carry out their duties.",
"history": "SOR/2004-237, s. 4; SOR/2010-221, ss. 4, 18(F); SOR/2014-260, s. 18; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.2.html"
},
{
"id": "C.R.C.,_c._1041-s9.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.3",
"marginal_note": "Ineligibility",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.3 An individual is not eligible to be a senior person in charge, a qualified person in charge or an alternate qualified person in charge if, during the 10 years before the day on which the dealer’s licence application is submitted,\n(a) in respect of a designated substance offence or a designated criminal offence or a designated offence as defined in subsection 2(1) of the Cannabis Act, the individual\n(i) was convicted as an adult, or\n(ii) was a young person who received an adult sentence, as those terms are defined in subsection 2(1) of the Youth Criminal Justice Act; or\n(b) in respect of an offence committed outside Canada that, if committed in Canada, would have constituted a designated substance offence or a designated criminal offence or a designated offence as defined in subsection 2(1) of the Cannabis Act,\n(i) the individual was convicted as an adult, or\n(ii) if they committed the offence when they were at least 14 years old but less than 18 years old, the individual received a sentence that was longer than the maximum youth sentence, as that term is defined in subsection 2(1) of the Youth Criminal Justice Act, that could have been imposed under that Act for such an offence.",
"history": "SOR/2004-237, s. 4; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.3.html"
},
{
"id": "C.R.C.,_c._1041-s9.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.4",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.4 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.4.html"
},
{
"id": "C.R.C.,_c._1041-s9.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.5",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.5 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.5.html"
},
{
"id": "C.R.C.,_c._1041-s9.6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.6",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.6 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.6.html"
},
{
"id": "C.R.C.,_c._1041-s9.7",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.7",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.7 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.7",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.7.html"
},
{
"id": "C.R.C.,_c._1041-s9.8",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.8",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.8 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.8",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.8.html"
},
{
"id": "C.R.C.,_c._1041-s9.9",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.9",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.9 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.9",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.9.html"
},
{
"id": "C.R.C.,_c._1041-s9.91",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.91",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.91 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.91",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.91.html"
},
{
"id": "C.R.C.,_c._1041-s9.92",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "9.92",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Preliminary Requirements",
"text": "9.92 [Repealed, SOR/2019-169, s. 3]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 9.92",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-9.92.html"
},
{
"id": "C.R.C.,_c._1041-s10",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "10",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Issuance of Licence",
"text": "10\n(1) A person who intends to conduct an activity referred to in section 8 must obtain a dealer’s licence for each site at which they intend to conduct activities by submitting an application to the Minister that contains the following information:\n(a) if the licence is requested by\n(i) an individual, the individual’s name,\n(ii) a corporation, its corporate name and any other name registered with a province under which it intends to conduct the activities specified in its dealer’s licence or by which it intends to identify itself, and\n(iii) the holder of a position described in paragraph 9(c), the applicant’s name and the title of the position;\n(b) the municipal address, telephone number and, if applicable, the email address of the proposed site and, if different from the municipal address, its mailing address;\n(c) the name, date of birth, telephone number and email address of the proposed senior person in charge;\n(d) with respect to each of the proposed qualified person in charge and any proposed alternate qualified person in charge,\n(i) their name, date of birth, telephone number and email address,\n(ii) the title of their position at the site,\n(iii) the name and title of the position of their immediate supervisor at the site,\n(iv) if applicable, the profession they practise that is relevant to their duties, the name of the province that authorizes them to practise it and their authorization number, and\n(v) their education, training and work experience that are relevant to their duties;\n(e) the activities that are to be conducted and the narcotics in respect of which each of the activities is to be conducted;\n(f) if the licence is requested to manufacture or assemble a product or compound that contains a narcotic, other than a test kit, a list that includes, for each product or compound,\n(i) the brand name of the product or the name of the compound,\n(ii) the drug identification number that is assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any,\n(iii) the name of the narcotic in the product or compound,\n(iv) the strength per unit of the narcotic in it, the number of units per package and the number of packages,\n(v) if it is to be manufactured or assembled by or for another licensed dealer under a custom order, the name, municipal address and licence number of the other licensed dealer, and\n(vi) if the applicant’s name appears on the label of the product or compound, a copy of the inner label, as defined in section A.01.010 of the Food and Drug Regulations;\n(g) if the licence is requested in order to produce a narcotic other than a product or compound that contains a narcotic,\n(i) the name of the narcotic,\n(ii) the quantity that the applicant expects to produce under their licence and the period during which that quantity would be produced, and\n(iii) if it is to be produced for another licensed dealer under a custom order, the name, municipal address and licence number of the other licensed dealer;\n(h) if the licence is requested for an activity that is not described in paragraph (f) or (g), the name of the narcotic for which the activity is to be conducted and the purpose of the activity;\n(i) a detailed description of the security measures in place at the site, determined in accordance with the Security Directive; and\n(j) a detailed description of the method for recording information that the applicant proposes to use for the purpose of section 28.\n(2) [Documents] An application for a dealer’s licence must be accompanied by the following documents:\n(a) if the applicant is a corporation, a copy of\n(i) the certificate of incorporation or other constituting instrument, and\n(ii) any document filed with the province in which its site is located that states its corporate name and any other name registered with the province under which the applicant intends to conduct the activities specified in its dealer’s licence or by which it intends to identify itself;\n(b) individual declarations signed and dated by each of the proposed senior person in charge, and qualified person in charge and any proposed alternate qualified person in charge, attesting that the person is not ineligible for a reason specified in section 9.3;\n(c) a document issued by a Canadian police force in relation to each person referred to in paragraph (b), indicating whether, during 10 years before the day on which the application is submitted, the person was convicted as specified in subparagraph 9.3(a)(i) or received a sentence as specified in subparagraph 9.3(a)(ii);\n(d) if any of the persons referred to in paragraph (b) has ordinarily resided in a country other than Canada during the 10 years before the day on which the application is submitted, a document issued by a police force of that country indicating whether in that period that person was convicted as specified in subparagraph 9.3(b)(i) or received a sentence as specified in subparagraph 9.3(b)(ii);\n(e) declaration, signed and dated by the proposed senior person in charge, attesting that the proposed qualified person in charge and any proposed alternate qualified person in charge have the knowledge and experience required under paragraphs 9.2(3)(c) and (d); and\n(f) if the proposed qualified person in charge or any proposed alternate qualified person in charge does not meet the requirement of subparagraph 9.2(3)(b)(i), either\n(i) a copy of the person’s diploma, certificate or credential referred to in subparagraph 9.2(3)(b)(ii) or (iii), or\n(ii) a detailed description of the education, training and work experience that is required under paragraph 9.2(4)(c), together with supporting evidence, such as a copy of a course transcript or an attestation by the person who provided the training.\n(3) [Signature and attestation] The application must\n(a) be signed and dated by the proposed senior person in charge; and\n(b) include an attestation by that person that\n(i) all of the information and documents submitted in support of the application are correct and complete to the best of their knowledge, and\n(ii) they have the authority to bind the applicant.\n(4) [Additional information and documents] The applicant must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 10",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-10.html"
},
{
"id": "C.R.C.,_c._1041-s10.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "10.1",
"marginal_note": "Issuance",
"part": "",
"division": "",
"heading": "Issuance of Licence",
"text": "10.1 Subject to section 10.3, on completion of the review of the licence application, the Minister must issue a dealer’s licence, with or without terms and conditions, that contains\n(a) the licence number;\n(b) the name of the licensed dealer, their corporate name or the title of the position they hold;\n(c) the activities that are authorized and the names of the narcotics in respect of which each activity may be conducted;\n(d) the municipal address of the site at which the dealer may conduct the authorized activities;\n(e) the security level at the site, determined in accordance with the Security Directive;\n(f) the effective date of the licence;\n(g) the expiry date of the licence, which must be not later than three years after its effective date;\n(h) any terms and conditions that the Minister has reasonable grounds to believe are necessary to\n(i) ensure that an international obligation is respected,\n(ii) ensure conformity with the requirements associated with the security level that is referred to in paragraph (e), or\n(iii) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use; and\n(i) if the licensed dealer produces a narcotic, the quantity that they may produce and the authorized production period.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 10.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-10.1.html"
},
{
"id": "C.R.C.,_c._1041-s10.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "10.2",
"marginal_note": "Validity",
"part": "",
"division": "",
"heading": "Issuance of Licence",
"text": "10.2 A dealer’s licence is valid until the expiry date set out in the licence or, if it is earlier, the date of the suspension or revocation of the licence under section 16 or 17.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 10.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-10.2.html"
},
{
"id": "C.R.C.,_c._1041-s10.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "10.3",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Issuance of Licence",
"text": "10.3\n(1) The Minister must refuse to issue a dealer’s licence if\n(a) the applicant may not apply for a licence under section 9;\n(b) during the 10 years before the day on which the licence application is submitted, the applicant has contravened\n(i) a provision of the Act, the Cannabis Act or their regulations, or\n(ii) a term or condition of a licence or permit issued to the applicant under any regulations made under the Act or issued to the applicant under the Cannabis Act or its regulations;\n(c) during the 10 years before the day on which the licence application is submitted, the proposed senior person in charge or qualified person in charge or any proposed alternate qualified person in charge was convicted as specified in subparagraph 9.3(a)(i) or (b)(i) or received a sentence as specified in subparagraph 9.3(a)(ii) or (b)(ii);\n(d) an activity for which the licence is requested would contravene an international obligation;\n(e) an activity for which the licence is requested is the cultivation, propagation or harvesting of opium poppy other than for scientific purposes;\n(f) the applicant does not have in place at the site the security measures set out in the Security Directive in respect of an activity for which the licence is requested;\n(g) the method referred to in paragraph 10(1)(j) does not permit the recording of information as required by section 28;\n(h) the applicant has not complied with the requirements of subsection 10(4) or the information or documents that they have provided are not sufficient to complete the review of the licence application;\n(i) the Minister has reasonable grounds to believe that the applicant has submitted false or misleading information or false or falsified documents in or in support of the licence application;\n(j) information received from a competent authority or the United Nations gives the Minister reasonable grounds to believe that the applicant has been involved in the diversion of a narcotic to an illicit market or use or has been involved in an activity that contravened an international obligation; or\n(k) the Minister has reasonable grounds to believe that the issuance of the licence would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Exceptions] The Minister must not refuse to issue a licence under paragraph (1)(b) or (i) if the applicant meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the applicant does not have a history of non-compliance with the Act, the Cannabis Act or their regulations; and\n(b) the applicant has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their regulations.\n(3) [Notice] Before refusing to issue a licence, the Minister must send the applicant a notice that sets out the Minister’s reasons and gives the applicant an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 10.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-10.3.html"
},
{
"id": "C.R.C.,_c._1041-s11",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "11",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Renewal of Licence",
"text": "11\n(1) To apply to renew a dealer’s licence, a licensed dealer must submit to the Minister an application that contains the information and documents referred to in subsections 10(1) and (2).\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the senior person in charge of the site specified in the application; and\n(b) include an attestation by that person that\n(i) all of the information and documents submitted in support of the application are correct and complete to the best of their knowledge, and\n(ii) they have the authority to bind the licensed dealer.\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 11",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-11.html"
},
{
"id": "C.R.C.,_c._1041-s11.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "11.1",
"marginal_note": "Renewal",
"part": "",
"division": "",
"heading": "Renewal of Licence",
"text": "11.1\n(1) Subject to section 11.3, on completion of the review of the renewal application, the Minister must issue a renewed dealer’s licence that contains the information specified in section 10.1.\n(2) [Terms and conditions] When renewing a dealer’s licence, the Minister may, if he or she has reasonable grounds to believe that it is necessary to do so, add a term or condition to it or modify or delete one in order to\n(a) ensure that an international obligation is respected;\n(b) ensure conformity with the requirements associated with the security level specified in the licence or the new level required as a result of the licence renewal; or\n(c) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 11.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-11.1.html"
},
{
"id": "C.R.C.,_c._1041-s11.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "11.2",
"marginal_note": "Validity",
"part": "",
"division": "",
"heading": "Renewal of Licence",
"text": "11.2 A renewed dealer’s licence is valid until the expiry date set out in the licence or, if it is earlier, the date of the suspension or revocation of the licence under section 16 or 17.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 11.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-11.2.html"
},
{
"id": "C.R.C.,_c._1041-s11.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "11.3",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Renewal of Licence",
"text": "11.3\n(1) The Minister must refuse to renew a dealer’s licence if\n(a) the licensed dealer may no longer apply for a licence under section 9;\n(b) during the 10 years before the day on which the renewal application is submitted, the licensed dealer has contravened\n(i) a provision of the Act, the Cannabis Act or their Regulations, or\n(ii) a term or condition of a licence or permit issued to the dealer under a regulation made under the Act or issued to the dealer under the Cannabis Act or its regulations;\n(c) during the 10 years before the day on which the renewal application is submitted, the proposed senior person in charge or qualified person in charge or any proposed alternate qualified person in charge was convicted as specified in subparagraph 9.3(a)(i) or (b)(i) or received a sentence as specified in subparagraph 9.3(a)(ii) or (b)(ii);\n(d) an activity for which the renewal is requested would contravene an international obligation;\n(e) an activity for which the licence is requested is the cultivation, propagation or harvesting of opium poppy other than for scientific purposes;\n(f) the licensed dealer does not have in place at the site the security measures set out in the Security Directive in respect of an activity for which the renewal is requested;\n(g) the method referred to in paragraph 10(1)(j) does not permit the recording of information as required by section 28;\n(h) the licensed dealer has not complied with the requirements of subsection 11(3) or the information or documents that they have provided are not sufficient to complete the review of the renewal application;\n(i) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the renewal application;\n(j) information received from a competent authority or the United Nations gives the Minister reasonable grounds to believe that the licensed dealer has been involved in the diversion of a narcotic to an illicit market or use or has been involved in an activity that contravened an international obligation; or\n(k) the Minister has reasonable grounds to believe that the renewal of the licence would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Exceptions] The Minister must not refuse to renew a licence under paragraph (1)(b) or (i) if the licensed dealer meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the licensed dealer does not have a history of non-compliance with the Act or the Cannabis Act or their regulations; and\n(b) the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their regulations.\n(3) [Notice] Before refusing to renew a licence, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 11.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-11.3.html"
},
{
"id": "C.R.C.,_c._1041-s12",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "12",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Amendment of Licence",
"text": "12\n(1) Before making a change affecting any information referred to in section 10.1 that is contained in their dealer’s licence, a licensed dealer must submit to the Minister an application to amend the licence that contains a description of the proposed amendment, as well as the information and documents referred to in section 10 that are relevant to the proposed amendment.\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the senior person in charge of the site specified in the application; and\n(b) include an attestation by that person that\n(i) all of the information and documents submitted in support of the application are correct and complete to the best of their knowledge, and\n(ii) they have the authority to bind the licensed dealer.\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2013-119, s. 208; SOR/2016-230, s. 278; SOR/2018-147, s. 8; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 12",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-12.html"
},
{
"id": "C.R.C.,_c._1041-s12.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "12.1",
"marginal_note": "Amendment",
"part": "",
"division": "",
"heading": "Amendment of Licence",
"text": "12.1\n(1) Subject to section 12.3, on completion of the review of the amendment application, the Minister must amend the dealer’s licence.\n(2) [Terms and conditions] When amending a dealer’s licence, the Minister may, if he or she has reasonable grounds to believe that it is necessary to do so, add a term or condition to it or modify or delete one in order to\n(a) ensure that an international obligation is respected;\n(b) ensure conformity with the requirements associated with the security level specified in the licence or the new level required as a result of the amendment; or\n(c) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 12.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-12.1.html"
},
{
"id": "C.R.C.,_c._1041-s12.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "12.2",
"marginal_note": "Validity",
"part": "",
"division": "",
"heading": "Amendment of Licence",
"text": "12.2 An amended dealer’s licence is valid until the expiry date set out in the licence or, if it is earlier, the date of the suspension or revocation of the licence under section 16 or 17.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 12.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-12.2.html"
},
{
"id": "C.R.C.,_c._1041-s12.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "12.3",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Amendment of Licence",
"text": "12.3\n(1) The Minister must refuse to amend a dealer’s licence if\n(a) an activity for which the amendment is requested would contravene an international obligation;\n(b) an activity for which the licence is requested is the cultivation, propagation or harvesting of opium poppy other than for scientific purposes;\n(c) the licensed dealer does not have in place at the site the security measures set out in the Security Directive in respect of an activity for which the amendment is requested;\n(d) the method referred to in paragraph 10(1)(j) does not permit the recording of information as required by section 28;\n(e) the licensed dealer has not complied with the requirements of subsection 12(3) or the information or documents that they have provided are not sufficient to complete the review of the amendment application;\n(f) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the amendment application; or\n(g) the Minister has reasonable grounds to believe that the amendment of the licence would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Exceptions] The Minister must not refuse to amend a licence under paragraph (1)(f) if the licensed dealer meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the licensed dealer does not have a history of non-compliance with the Act, the Cannabis Act or their regulations; and\n(b) the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their Regulations.\n(3) [Notice] Before refusing to amend a licence, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 12.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-12.3.html"
},
{
"id": "C.R.C.,_c._1041-s13",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "13",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Changes Requiring Prior Approval by Minister",
"text": "13\n(1) A licensed dealer must obtain the Minister’s approval before making any of the following changes by submitting a written application to the Minister:\n(a) a change affecting the security measures in place at the site specified in the dealer’s licence;\n(b) the replacement of the senior person in charge;\n(c) the replacement of the qualified person in charge; or\n(d) the replacement or addition of an alternate qualified person in charge.\n(2) [Information and documents] The licensed dealer must provide the Minister with the following with respect to a change referred to in subsection (1):\n(a) in the case of a change affecting the security measures in place at the site specified in the dealer’s licence, details of the change;\n(b) in the case of the senior person in charge,\n(i) the information specified in paragraph 10(1)(c), and\n(ii) the declaration specified in paragraph 10(2)(b) and the documents specified in paragraphs 10(2)(c) and (d); and\n(c) in the case of the qualified person in charge or an alternate qualified person in charge,\n(i) the information specified in paragraph 10(1)(d), and\n(ii) the declarations specified in paragraphs 10(2)(b) and (e) and the documents specified in paragraphs 10(2)(c), (d) and (f).\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2004-237, s. 6; SOR/2010-221, s. 8; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 13",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-13.html"
},
{
"id": "C.R.C.,_c._1041-s13.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "13.1",
"marginal_note": "Approval",
"part": "",
"division": "",
"heading": "Changes Requiring Prior Approval by Minister",
"text": "13.1\n(1) Subject to section 13.2, on completion of the review of the application for approval of the change, the Minister must approve the change.\n(2) [Terms and conditions] When approving a change, the Minister may, if he or she has reasonable grounds to believe that it is necessary to do so, add a term or condition to the licence or modify or delete one in order to\n(a) ensure that an international obligation is respected;\n(b) ensure conformity with the requirements associated with the security level specified in the licence; or\n(c) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.",
"history": "SOR/2010-221, s. 8; SOR/2014-260, s. 21; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 13.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-13.1.html"
},
{
"id": "C.R.C.,_c._1041-s13.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "13.2",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Changes Requiring Prior Approval by Minister",
"text": "13.2\n(1) The Minister must refuse to approve the change if\n(a) during the 10 years before the day on which the application for approval of the change is submitted, the proposed senior person in charge or qualified person in charge or any proposed alternate qualified person in charge was convicted as specified in subparagraph 9.3(a)(i) or (b)(i) or received a sentence as specified in subparagraph 9.3(a)(ii) or (b)(ii);\n(b) the licensed dealer has not complied with the requirements of subsection 13(3) or the information or documents that they have provided are not sufficient to complete the review of the application for approval of the change;\n(c) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the application for approval of the change; or\n(d) the Minister has reasonable grounds to believe that the change would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Exceptions] The Minister must not refuse to approve a change under paragraph (1)(c) if the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their regulations, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use.\n(3) [Notice] Before refusing to approve a change, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard in respect of them.",
"history": "SOR/2010-221, s. 8; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 13.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-13.2.html"
},
{
"id": "C.R.C.,_c._1041-s14",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "14",
"marginal_note": "Prior notice",
"part": "",
"division": "",
"heading": "Changes Requiring Notice to Minister",
"text": "14\n(1) A licensed dealer must notify the Minister in writing before\n(a) manufacturing or assembling a product or compound that is not set out in the most recent version of the list referred to in paragraph 10(1)(f) that has been submitted to the Minister; or\n(b) making a change to a product or compound that is set out in the list, if the change affects any of the information that has previously been submitted.\n(2) [Information and list] The notice must contain the information referred to in paragraph 10(1)(f) that is necessary to update the list and be accompanied by the revised version of the list.",
"history": "SOR/2004-237, s. 7; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 14",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-14.html"
},
{
"id": "C.R.C.,_c._1041-s14.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "14.1",
"marginal_note": "Notice — five days",
"part": "",
"division": "",
"heading": "Changes Requiring Notice to Minister",
"text": "14.1 A licensed dealer must notify the Minister in writing within five days after a person ceases to act as the qualified person in charge or an alternate qualified person in charge.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 14.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-14.1.html"
},
{
"id": "C.R.C.,_c._1041-s14.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "14.2",
"marginal_note": "Notice — 10 days",
"part": "",
"division": "",
"heading": "Changes Requiring Notice to Minister",
"text": "14.2\n(1) A licensed dealer must notify the Minister in writing within 10 days after one of the following changes occurs:\n(a) a person ceases to act as the senior person in charge; or\n(b) the licensed dealer ceases to manufacture or assemble a product or compound that is set out in the most recent version of the list referred to in paragraph 10(1)(f) that has been submitted to the Minister.\n(2) [Information and list] A notice submitted under paragraph (1)(b) must specify which information referred to in paragraph 10(1)(f) is being changed and be accompanied by the revised version of the list.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 14.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-14.2.html"
},
{
"id": "C.R.C.,_c._1041-s14.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "14.3",
"marginal_note": "Notice of cessation of activities",
"part": "",
"division": "",
"heading": "Changes Requiring Notice to Minister",
"text": "14.3\n(1) A licensed dealer that intends to cease conducting activities at their site — whether on or before the expiry of their licence — must notify the Minister in writing to that effect at least 30 days before ceasing those activities.\n(2) [Content of notice] The notice must be signed and dated by the senior person in charge and contain the following information:\n(a) the expected date of the cessation of activities at the site;\n(b) a description of the manner in which any remaining narcotics on the site as of that date will be disposed of by the licensed dealer, including\n(i) if some or all of them will be sold or provided to another licensed dealer that will be conducting activities at the same site, the name of that dealer,\n(ii) if some or all of them will be sold or provided to another licensed dealer that will not be conducting activities at the same site, the name of that dealer and the municipal address of their site, and\n(iii) if some or all of them will be destroyed, the date on which and the municipal address of the location at which the destruction is to take place;\n(c) the municipal address of the location at which the licensed dealer’s documents will be kept after activities have ceased; and\n(d) the name, municipal address, telephone number and, if applicable, the email address of a person who the Minister may contact for further information after activities have ceased.\n(3) [Update] After having ceased to conduct the activities, the licensed dealer must submit to the Minister a detailed update of the information referred to in subsection (2) if it differs from what was set out in the notice. The update must be signed and dated by the senior person in charge.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 14.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-14.3.html"
},
{
"id": "C.R.C.,_c._1041-s15",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "15",
"marginal_note": "Addition of or modification to term or condition",
"part": "",
"division": "",
"heading": "Changes to Terms and Conditions of Licence",
"text": "15\n(1) The Minister may, at any time other than at the issuance, renewal or amendment of a dealer’s licence, add a term or condition to it or modify one if the Minister has reasonable grounds to believe that it is necessary to do so to\n(a) ensure that an international obligation is respected;\n(b) ensure conformity with the requirements associated with the security level specified in the licence; or\n(c) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Notice] Before adding a term or condition to a licence or modifying one, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.\n(3) [Urgent circumstances] Despite subsection (2), the Minister may add a term or condition to a licence or modify one without prior notice if the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use.\n(4) [Urgent circumstances — notice] The addition or modification of a term or condition that is made under subsection (3) takes effect as soon as the Minister sends the licensed dealer a notice that\n(a) sets out the reasons for the addition or modification;\n(b) gives the dealer an opportunity to be heard; and\n(c) if applicable, specifies the corrective measures that must be carried out and the date by which they must be carried out.",
"history": "SOR/2004-237, s. 8; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 15",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-15.html"
},
{
"id": "C.R.C.,_c._1041-s15.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "15.1",
"marginal_note": "Deletion of term or condition",
"part": "",
"division": "",
"heading": "Changes to Terms and Conditions of Licence",
"text": "15.1\n(1) The Minister may delete a term or condition of a dealer’s licence that the Minister determines is no longer necessary.\n(2) [Notice] The deletion takes effect as soon as the Minister sends the licensed dealer a notice to that effect.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 15.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-15.1.html"
},
{
"id": "C.R.C.,_c._1041-s16",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "16",
"marginal_note": "Suspension",
"part": "",
"division": "",
"heading": "Suspension and Revocation of Licence",
"text": "16\n(1) The Minister must suspend a dealer’s licence without prior notice if the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use.\n(2) [Notice] The suspension takes effect as soon as the Minister sends the licensed dealer a notice that\n(a) sets out the reasons for the suspension;\n(b) gives the dealer an opportunity to be heard; and\n(c) if applicable, specifies the corrective measures that must be carried out and the date by which they must be carried out.\n(3) [Reinstatement of licence] The Minister must reinstate the licence if the Minister has reasonable grounds to believe that the suspension is no longer necessary.",
"history": "SOR/2004-237, s. 9; SOR/2010-221, s. 9; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 16",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-16.html"
},
{
"id": "C.R.C.,_c._1041-s17",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "17",
"marginal_note": "Revocation",
"part": "",
"division": "",
"heading": "Suspension and Revocation of Licence",
"text": "17\n(1) Subject to subsection (2), the Minister must revoke a dealer’s licence if\n(a) the licensed dealer is no longer eligible to apply for a licence under section 9;\n(b) the licensed dealer requests the Minister to do so or informs the Minister of the loss or theft of the licence or the actual or potential unauthorized use of the licence;\n(c) the licensed dealer ceases to conduct activities at their site before the expiry of their licence;\n(d) the licensed dealer does not take the corrective measures specified in an undertaking or notice;\n(e) the licensed dealer has contravened\n(i) a provision of the Act, the Cannabis Act or their regulations, or\n(ii) a term or condition of a licence or permit issued to the dealer under a regulation made under the Act or issued to the dealer under the Cannabis Act or its regulations;\n(f) during the 10 years before the day on which the application is submitted, the senior person in charge, the qualified person in charge or any alternate qualified person in charge was convicted as specified in subparagraph 9.3(a)(i) or (b)(i) or received a sentence as specified in subparagraph 9.3(a)(ii) or (b)(ii);\n(g) the Minister has reasonable grounds to believe that the licensed dealer submitted false or misleading information or false or falsified documents in or in support of an application relating to the licence; or\n(h) information received from a competent authority or the United Nations gives the Minister reasonable grounds to believe that the licensed dealer has been involved in the diversion of a narcotic to an illicit market or use.\n(2) [Exceptions] The Minister must not revoke a dealer’s licence for a ground set out in paragraph (1)(e) or (g) if the licensed dealer meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the licensed dealer does not have a history of non-compliance with the Act, the Cannabis Act or their regulations; and\n(b) the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their regulations.\n(3) [Notice] Before revoking a licence, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 17",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-17.html"
},
{
"id": "C.R.C.,_c._1041-s17.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "17.1",
"marginal_note": "Return of licence",
"part": "",
"division": "",
"heading": "Suspension and Revocation of Licence",
"text": "17.1 The licensed dealer must return the original of the licence to the Minister within 15 days after the effective date of the revocation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 17.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-17.1.html"
},
{
"id": "C.R.C.,_c._1041-s18",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18\n(1) A licensed dealer must submit to the Minister, before each importation of a narcotic, an application for an import permit that contains the following information:\n(a) their name, municipal address and dealer’s licence number;\n(b) with respect to the narcotic to be imported,\n(i) its name, as specified in the dealer’s licence,\n(ii) if it is a salt, the name of the salt,\n(iii) its quantity, and\n(iv) in the case of a raw material, its purity and its anhydrous content;\n(c) if the narcotic is contained in a product to be imported,\n(i) the brand name of the product,\n(ii) the drug identification number that has been assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any, and\n(iii) the strength per unit of the narcotic in the product, the number of units per package and the number of packages;\n(d) the name and municipal address of the exporter in the country of export from whom the narcotic is being obtained;\n(e) the name of the customs office where the importation is anticipated; and\n(f) each proposed mode of transportation and any proposed country of transit or transhipment.\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the qualified person in charge or an alternate qualified person in charge; and\n(b) include an attestation by that person that all of the information submitted in support of the application is correct and complete to the best of their knowledge.\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.html"
},
{
"id": "C.R.C.,_c._1041-s18.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.1",
"marginal_note": "Issuance",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.1 Subject to section 18.4, on completion of the review of the import permit application, the Minister must issue to the licensed dealer an import permit that contains\n(a) the permit number;\n(b) the information set out in subsection 18(1);\n(c) the effective date of the permit;\n(d) the expiry date of the permit, being the earlier of\n(i) a date specified by the Minister that is not more than 180 days after its effective date, and\n(ii) the expiry date of the dealer’s licence; and\n(e) any terms and conditions that the Minister has reasonable grounds to believe are necessary to\n(i) ensure that an international obligation is respected, or\n(ii) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.1.html"
},
{
"id": "C.R.C.,_c._1041-s18.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.2",
"marginal_note": "Validity",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.2 An import permit is valid until the earliest of\n(a) the expiry date set out in the permit,\n(b) the date of the suspension or revocation of the permit under section 19 or 20,\n(c) the date of the suspension or revocation of the dealer’s licence under section 16 or 17, and\n(d) the date of the suspension or revocation of the export permit that applies to the narcotic to be imported and that is issued by the competent authority in the country of export.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.2.html"
},
{
"id": "C.R.C.,_c._1041-s18.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.3",
"marginal_note": "Return of permit",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.3 If an import permit expires, the licensed dealer must return the original of the permit to the Minister within 15 days after its expiry.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.3.html"
},
{
"id": "C.R.C.,_c._1041-s18.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.4",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.4\n(1) The Minister must refuse to issue an import permit if\n(a) the licensed dealer is not authorized by their dealer’s licence to import the relevant narcotic or their licence will expire before the date of importation;\n(b) the Minister has reasonable grounds to believe that the importation would contravene an international obligation;\n(c) the licensed dealer does not have in place at the site the security measures set out in the Security Directive in respect of the importation;\n(d) the licensed dealer has not complied with the requirements of subsection 18(3) or the information or documents that they have provided are not sufficient to complete the review of the permit application;\n(e) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the permit application;\n(f) the licensed dealer has been notified that their application to renew or amend their licence will be refused;\n(g) the Minister has reasonable grounds to believe that the importation would contravene the laws of the country of export or any country of transit or transhipment; or\n(h) the Minister has reasonable grounds to believe that the issuance of the permit would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Notice] Before refusing to issue the import permit, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.4.html"
},
{
"id": "C.R.C.,_c._1041-s18.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.5",
"marginal_note": "Providing copy of permit",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.5 The holder of an import permit must provide a copy of the permit to the customs office at the time of importation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.5.html"
},
{
"id": "C.R.C.,_c._1041-s18.6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "18.6",
"marginal_note": "Declaration",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "18.6 The holder of an import permit must provide the Minister, within 15 days after the day of release of the narcotic specified in the permit in accordance with the Customs Act, with a declaration that contains the following information:\n(a) their name and the numbers of their dealer’s licence and the import permit that applies to the narcotic;\n(b) with respect to the narcotic,\n(i) its name, as set out in the dealer’s licence,\n(ii) if it is a salt, the name of the salt, and\n(iii) its quantity;\n(c) if the narcotic is contained in a product that they have imported,\n(i) the brand name of the product,\n(ii) the drug identification number that has been assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any, and\n(iii) the strength per unit of the narcotic in the product, the number of units per package and the number of packages; and\n(d) the name of the customs office from which the narcotic was released and the date of the release.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 18.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-18.6.html"
},
{
"id": "C.R.C.,_c._1041-s19",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "19",
"marginal_note": "Suspension",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "19\n(1) The Minister must suspend an import permit without prior notice if\n(a) the dealer’s licence is suspended;\n(b) the Minister has reasonable grounds to believe that the suspension is necessary to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use; or\n(c) the importation would contravene the laws of the country of export or any country of transit or transhipment.\n(2) [Notice] The suspension takes effect as soon as the Minister sends the licensed dealer a notice that\n(a) sets out the reasons for the suspension;\n(b) gives the dealer an opportunity to be heard; and\n(c) if applicable, specifies the corrective measures that must be carried out and the date by which they must be carried out.\n(3) [Reinstatement of permit] The Minister must reinstate the import permit if the Minister has reasonable grounds to believe that the suspension is no longer necessary.",
"history": "SOR/2004-237, s. 10; SOR/2010-221, s. 10; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 19",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-19.html"
},
{
"id": "C.R.C.,_c._1041-s20",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "20",
"marginal_note": "Revocation",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "20\n(1) Subject to subsection (2), the Minister must revoke an import permit if\n(a) the licensed dealer requests the Minister to do so or informs the Minister of the loss or theft of the permit or the actual or potential unauthorized use of the permit;\n(b) the licensed dealer does not carry out the corrective measures specified by the Minister under paragraph 19(2)(c) by the specified date;\n(c) the licensed dealer has contravened a term or condition of the permit;\n(d) the Minister has reasonable grounds to believe that the licensed dealer submitted false or misleading information or false or falsified documents in or in support of the application for the permit;\n(e) information received from a competent authority or the United Nations gives the Minister reasonable grounds to believe that the licensed dealer has been involved in the diversion of a narcotic to an illicit market or use; or\n(f) the dealer’s licence has been revoked.\n(2) [Exceptions] The Minister must not revoke an import permit for a ground set out in paragraph (1)(d) or 17(1)(e) or (g) if the licensed dealer meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the licensed dealer does not have a history of non-compliance with the Act, the Cannabis Act or their regulations; and\n(b) the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act and their regulations.\n(3) [Notice] Before revoking an import permit, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 20",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-20.html"
},
{
"id": "C.R.C.,_c._1041-s20.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "20.1",
"marginal_note": "Return of permit",
"part": "",
"division": "",
"heading": "Import Permits",
"text": "20.1 If an import permit is revoked, the licensed dealer must return the original of the permit to the Minister within 15 days after the effective date of the revocation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 20.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-20.1.html"
},
{
"id": "C.R.C.,_c._1041-s21",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21",
"marginal_note": "Application",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21\n(1) A licensed dealer must submit to the Minister, before each exportation of a narcotic, an application for an export permit that contains the following information and document:\n(a) their name, municipal address and dealer’s licence number;\n(b) with respect to the narcotic to be exported,\n(i) its name, as specified in the dealer’s licence,\n(ii) if it is a salt, the name of the salt,\n(iii) its quantity, and\n(iv) in the case of a raw material, its purity and its anhydrous content;\n(c) in the case of the exportation of a product that contains the narcotic,\n(i) the brand name of the product,\n(ii) the drug identification number that has been assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any, and\n(iii) the strength per unit of the narcotic in the product, the number of units per package and the number of packages;\n(d) the name and municipal address of the importer in the country of final destination;\n(e) the name of the customs office where the exportation is anticipated;\n(f) each proposed mode of transportation to be used and any proposed country of transit or transhipment; and\n(g) a copy of the import permit issued by the competent authority in the country of final destination that sets out the name of the importer and the municipal address of their site in that country.\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the qualified person in charge or an alternate qualified person in charge; and\n(b) include an attestation by that person that, to the best of their knowledge,\n(i) the exportation does not contravene any requirement of the laws of the country of final destination or any country of transit or transhipment, and\n(ii) all of the information and documents submitted in support of the application are correct and complete.\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.html"
},
{
"id": "C.R.C.,_c._1041-s21.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.1",
"marginal_note": "Issuance",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.1 Subject to section 21.4, on completion of the review of the export permit application, the Minister must issue to the licensed dealer an export permit that contains\n(a) the permit number;\n(b) the information set out in paragraphs 21(1)(a) to (f);\n(c) the effective date of the permit;\n(d) the expiry date of the permit, being the earliest of\n(i) a date specified by the Minister that is not more than 180 days after its effective date,\n(ii) the expiry date of the dealer’s licence, and\n(iii) the expiry date of the import permit issued by the competent authority in the country of final destination; and\n(e) any terms and conditions that the Minister has reasonable grounds to believe are necessary to\n(i) ensure that an international obligation is respected, or\n(ii) reduce a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.1.html"
},
{
"id": "C.R.C.,_c._1041-s21.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.2",
"marginal_note": "Validity",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.2 An export permit is valid until the earliest of\n(a) the expiry date set out in the permit,\n(b) the date of the suspension or revocation of the permit under section 22 or 23,\n(c) the date of the suspension or revocation of the dealer’s licence under section 16 or 17, and\n(d) the date of the expiry, suspension or revocation of the import permit that applies to the narcotic to be exported and that is issued by the competent authority in the country of final destination.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.2.html"
},
{
"id": "C.R.C.,_c._1041-s21.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.3",
"marginal_note": "Return of permit",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.3 If an export permit expires, the licensed dealer must return the original of the permit to the Minister within 15 days after its expiry.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.3.html"
},
{
"id": "C.R.C.,_c._1041-s21.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.4",
"marginal_note": "Refusal",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.4\n(1) The Minister must refuse to issue an export permit if\n(a) the licensed dealer is not authorized by their dealer’s licence to export the relevant narcotic or their dealer’s licence will expire before the date of export;\n(b) the Minister has reasonable grounds to believe that the exportation would contravene an international obligation;\n(c) the licensed dealer has not complied with the requirements of subsection 21(3) or the information or documents that they have provided are not sufficient to complete the review of the permit application;\n(d) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the permit application;\n(e) the licensed dealer has been notified that their application to renew or amend their licence will be refused;\n(f) the Minister has reasonable grounds to believe that the exportation would not be in conformity with the import permit issued by the competent authority of the country of final destination;\n(g) the Minister has reasonable grounds to believe that the exportation would contravene the laws of the country of final destination or any country of transit or transhipment; or\n(h) the Minister has reasonable grounds to believe that the issuance of the permit would likely create a risk to public health or safety, including the risk of a narcotic being diverted to an illicit market or use.\n(2) [Notice] Before refusing to issue the export permit, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.4.html"
},
{
"id": "C.R.C.,_c._1041-s21.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.5",
"marginal_note": "Providing copy of permit",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.5 The holder of an export permit must provide a copy of the permit to the customs office at the time of exportation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.5.html"
},
{
"id": "C.R.C.,_c._1041-s21.6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "21.6",
"marginal_note": "Declaration",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "21.6 The holder of an export permit must provide the Minister, within 15 days after the day of export of the narcotic specified in the permit, with a declaration that contains the following information:\n(a) their name and the numbers of their dealer’s licence and the export permit that applies to the narcotic;\n(b) with respect to the narcotic,\n(i) its name, as specified in the dealer’s licence,\n(ii) if it is a salt, the name of the salt, and\n(iii) its quantity;\n(c) if the narcotic is contained in a product that they have exported,\n(i) the brand name of the product,\n(ii) the drug identification number that has been assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any, and\n(iii) the strength per unit of the narcotic in the product, the number of units per package and the number of packages; and\n(d) the name of the customs office from which the narcotic was exported and the date of export.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 21.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-21.6.html"
},
{
"id": "C.R.C.,_c._1041-s22",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "22",
"marginal_note": "Suspension",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "22\n(1) The Minister must suspend an export permit without prior notice if\n(a) the dealer’s licence is suspended;\n(b) the Minister has reasonable grounds to believe that the suspension is necessary to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use; or\n(c) the exportation would contravene the laws of the country of final destination or any country of transit or transhipment.\n(2) [Notice] The suspension takes effect as soon as the Minister sends the licensed dealer a notice that\n(a) sets out the reasons for the suspension;\n(b) gives the dealer an opportunity to be heard; and\n(c) if applicable, specifies the corrective measures that must be carried out by the dealer and the date by which the dealer must do so.\n(3) [Reinstatement of permit] The Minister must reinstate the export permit if the Minister has reasonable grounds to believe that the suspension is no longer necessary.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 22",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-22.html"
},
{
"id": "C.R.C.,_c._1041-s23",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "23",
"marginal_note": "Revocation",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "23\n(1) Subject to subsection (2), the Minister must revoke an export permit if\n(a) the licensed dealer requests the Minister to do so or informs the Minister of the loss or theft of the permit or the actual or potential unauthorized use of the permit;\n(b) the licensed dealer does not carry out the corrective measures specified by the Minister under paragraph 22(2)(c) by the specified date;\n(c) the licensed dealer has contravened a term or condition of the permit;\n(d) the Minister has reasonable grounds to believe that the licensed dealer submitted false or misleading information or false or falsified documents in or in support of the application for the permit;\n(e) information received from a competent authority or the United Nations gives the Minister reasonable grounds to believe that the licensed dealer has been involved in the diversion of a narcotic to an illicit market or use; or\n(f) the dealer’s licence has been revoked.\n(2) [Exceptions] The Minister must not revoke an export permit for a ground set out in paragraph (1)(d) or 17(1)(e) or (g) if the licensed dealer meets the following conditions, unless the Minister has reasonable grounds to believe that it is necessary to do so to protect public health or safety, including to prevent a narcotic from being diverted to an illicit market or use:\n(a) the licensed dealer does not have a history of non-compliance with the Act, the Cannabis Act or their regulations; and\n(b) the licensed dealer has carried out, or signed an undertaking to carry out, the necessary corrective measures to ensure compliance with the Act, the Cannabis Act or their regulations.\n(3) [Notice] Before revoking an export permit, the Minister must send the licensed dealer a notice that sets out the Minister’s reasons and gives the dealer an opportunity to be heard.",
"history": "SOR/85-588, s. 4(E); SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 23",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-23.html"
},
{
"id": "C.R.C.,_c._1041-s23.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "23.1",
"marginal_note": "Return of permit",
"part": "",
"division": "",
"heading": "Export Permits",
"text": "23.1 If an export permit is revoked, the licensed dealer must return the original of the permit to the Minister within 15 days after the effective date of the revocation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 23.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-23.1.html"
},
{
"id": "C.R.C.,_c._1041-s24",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "24",
"marginal_note": "Name",
"part": "",
"division": "",
"heading": "Identification",
"text": "24 A licensed dealer must include their name, as set out in their dealer’s licence, on all the means by which they identify themself in regard to their activities in relation to narcotics, including labels, orders, shipping documents, invoices and advertising.",
"history": "SOR/78-154, s. 3; SOR/85-588, s. 5; SOR/85-930, s. 3; SOR/86-173, s. 2; SOR/99-124, s. 2; SOR/2004-237, s. 11; SOR/2010-221, s. 11; SOR/2012-230, s. 18; SOR/2013-119, s. 209; SOR/2013-172, s. 5; SOR/2014-260, s. 22; SOR/2016-230, s. 266; SOR/2016-239, s. 4; SOR/2018-37, s. 2; SOR/2018-147, s. 9; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 24",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-24.html"
},
{
"id": "C.R.C.,_c._1041-s25",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25",
"marginal_note": "Sale to another licensed dealer",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25 A licensed dealer may sell or provide a narcotic to another licensed dealer.",
"history": "SOR/85-588, s. 6(E); SOR/85-930, s. 4; SOR/2003-134, s. 2; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.html"
},
{
"id": "C.R.C.,_c._1041-s25.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.1",
"marginal_note": "Sale to pharmacist",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.1\n(1) Subject to subsection (2), a licensed dealer may sell or provide a narcotic to a pharmacist.\n(2) [Exception — pharmacist named in notice] A licensed dealer must not sell or provide to a pharmacist who is named in a notice issued under subsection 48(1) the narcotics referred to in the notice.\n(3) [Retraction] Subsection (2) does not apply to a licensed dealer that has received a notice of retraction issued under section 49 in respect of a pharmacist named in a notice issued under subsection 48(1).",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.1.html"
},
{
"id": "C.R.C.,_c._1041-s25.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.2",
"marginal_note": "Sale to practitioner",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.2\n(1) Subject to subsections (2) and (3), a licensed dealer may sell or provide to a practitioner a narcotic other than diacetylmorphine (heroin).\n(2) [Exception — heroin] A licensed dealer may sell or provide diacetylmorphine (heroin) to the following practitioners:\n(a) a practitioner of medicine;\n(b) a practitioner of dentistry, if practising in a hospital that provides care or treatment to persons; or\n(c) a nurse practitioner.\n(3) [Exception — practitioner named in notice] A licensed dealer must not sell or provide to a practitioner who is named in a notice issued under subsection 59(1) the narcotics referred to in the notice unless the dealer has received a notice of retraction issued under section 60.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.2.html"
},
{
"id": "C.R.C.,_c._1041-s25.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.3",
"marginal_note": "Provision to hospital employee",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.3\n(1) Subject to subsection (2), a licensed dealer may provide a narcotic to a hospital employee.\n(2) [Exception — heroin] A licensed dealer may provide diacetylmorphine (heroin) to a hospital employee only if that hospital provides care or treatment to persons.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.3.html"
},
{
"id": "C.R.C.,_c._1041-s25.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.4",
"marginal_note": "Sale to exempted person",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.4 A licensed dealer may sell or provide a narcotic to a person who is exempted under section 56 of the Act with respect to the possession of that narcotic.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.4.html"
},
{
"id": "C.R.C.,_c._1041-s25.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.5",
"marginal_note": "Sale to Minister",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.5 A licensed dealer may sell or provide a narcotic to the Minister.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.5.html"
},
{
"id": "C.R.C.,_c._1041-s25.6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.6",
"marginal_note": "Written order",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.6 A licensed dealer may sell or provide a narcotic under any of sections 25 to 25.5 if\n(a) the dealer has received a written order that specifies the name and quantity of the narcotic to be supplied and is signed and dated\n(i) in the case of a narcotic to be provided to a hospital employee or a practitioner in a hospital, by the pharmacist in charge of the hospital’s pharmacy or by a practitioner authorized by the person in charge of the hospital to sign the order, and\n(ii) in any other case, by the person to whom the narcotic is to be sold or provided; and\n(b) the dealer has verified the signature, if it is unknown to them.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.6.html"
},
{
"id": "C.R.C.,_c._1041-s25.7",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "25.7",
"marginal_note": "Verbal order",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "25.7\n(1) A licensed dealer may sell or provide a verbal prescription narcotic under sections 25 to 25.5 if\n(a) the dealer has received a verbal order that specifies the name and quantity of the narcotic to be supplied; and\n(b) in the case of the provision of the narcotic to a hospital employee or a practitioner in a hospital, the order has been placed by the pharmacist in charge of the hospital’s pharmacy or by a practitioner authorized by the person in charge of the hospital to place the order.\n(2) [Receipt] A licensed dealer that receives a verbal order from a pharmacist or practitioner must, within five working days after filling the order, obtain and keep a receipt that includes\n(a) the signature of the pharmacist or practitioner who received the narcotic;\n(b) the date on which the pharmacist or practitioner received the narcotic; and\n(c) the name and quantity of the narcotic.\n(3) [No further sale without receipt] If the licensed dealer has not obtained the receipt within five working days, the dealer must not sell or provide a narcotic to the pharmacist or practitioner in accordance with a further verbal order received from them until after obtaining the receipt.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 25.7",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-25.7.html"
},
{
"id": "C.R.C.,_c._1041-s26",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "26",
"marginal_note": "Packaging — sale and provision",
"part": "",
"division": "",
"heading": "Packaging and Transportation",
"text": "26\n(1) A licensed dealer that sells or provides a narcotic, other than a preparation described in section 36, must securely package it in its immediate container, which must be sealed in such a manner that the container cannot be opened without breaking the seal.\n(2) [Packaging — transport and export] A licensed dealer that transports or exports a narcotic must ensure that its package is sealed in such a manner that the package cannot be opened without breaking the seal.\n(3) [Exception] Subsection (1) does not apply to a test kit that contains a narcotic and that has a registration number.",
"history": "SOR/2003-134, s. 2; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 26",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-26.html"
},
{
"id": "C.R.C.,_c._1041-s26.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "26.1",
"marginal_note": "Transport",
"part": "",
"division": "",
"heading": "Packaging and Transportation",
"text": "26.1\n(1) A licensed dealer must, in taking delivery of a narcotic that they have imported or in making delivery of a narcotic,\n(a) take any measures that are necessary to ensure the security of the narcotic while it is being transported;\n(b) subject to subsection (2), use a method of transportation that permits an accurate record to be kept of all handling of the narcotic as well as of the signatures of every person handling the narcotic until it is delivered to the consignee;\n(c) in the case of an imported narcotic, transport it directly to the site specified in their licence after it is released under the Customs Act; and\n(d) in the case of a narcotic that is to be exported, transport it directly from the site specified in their licence to the customs office where it will be exported.\n(2) [Exception] A licensed dealer may have a verbal prescription narcotic transported by a common carrier.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 26.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-26.1.html"
},
{
"id": "C.R.C.,_c._1041-s27",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27",
"marginal_note": "Protective measures",
"part": "",
"division": "",
"heading": "Thefts, Losses and Suspicious Transactions",
"text": "27 A licensed dealer must take any measures that are necessary to ensure the security of any narcotic in their possession and any licence or permit in their possession.",
"history": "SOR/78-154, s. 4; SOR/85-588, s. 7; SOR/85-930, s. 5; SOR/99-124, s. 3; SOR/2004-237, s. 12; SOR/2010-221, s. 12; SOR/2012-230, s. 19; SOR/2013-119, s. 210; SOR/2013-172, s. 6; SOR/2014-260, ss. 23(E), 26(F); SOR/2016-239, s. 5; SOR/2018-37, s. 3; SOR/2018-147, s. 10; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.html"
},
{
"id": "C.R.C.,_c._1041-s27.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.1",
"marginal_note": "Theft or loss — licences and permits",
"part": "",
"division": "",
"heading": "Thefts, Losses and Suspicious Transactions",
"text": "27.1 A licensed dealer that becomes aware of a theft or loss of their licence or permit must provide a written report to the Minister within 72 hours after becoming aware of it.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.1.html"
},
{
"id": "C.R.C.,_c._1041-s27.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.2",
"marginal_note": "Theft or unexplainable loss — narcotics",
"part": "",
"division": "",
"heading": "Thefts, Losses and Suspicious Transactions",
"text": "27.2 A licensed dealer that becomes aware of a theft of a narcotic or of a loss of a narcotic that cannot be explained on the basis of normally accepted business activities must\n(a) provide a written report to a member of a police force within 24 hours after becoming aware of the theft or loss; and\n(b) provide a written report to the Minister within 72 hours after becoming aware of the theft or loss and include a confirmation that the report required under paragraph (a) has been provided.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.2.html"
},
{
"id": "C.R.C.,_c._1041-s27.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.3",
"marginal_note": "Suspicious transaction",
"part": "",
"division": "",
"heading": "Thefts, Losses and Suspicious Transactions",
"text": "27.3\n(1) A licensed dealer must provide a written report containing the following information to the Minister within 72 hours after becoming aware of a transaction occurring in the course of their activities that they have reasonable grounds to suspect may be related to the diversion of a narcotic to an illicit market or use:\n(a) their name, municipal address, telephone number and, if the licensed dealer is a corporation, the position held by the individual making the report;\n(b) the name and municipal address of the other party to the transaction;\n(c) details of the transaction, including its date and time, its type, the name and quantity of the narcotic and, in the case of a product or compound, the quantity of every narcotic that it contains;\n(d) in the case of a product that contains the narcotic, other than a test kit, the drug identification number that is assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any; and\n(e) a detailed description of the reasons for those suspicions.\n(2) [Good faith] No civil proceedings lie against a licensed dealer for having provided the report in good faith.\n(3) [Non-disclosure] A licensed dealer must not disclose that they have provided the report or disclose details of it, with the intent to prejudice a criminal investigation, whether or not a criminal investigation has begun.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.3.html"
},
{
"id": "C.R.C.,_c._1041-s27.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.4",
"marginal_note": "Partial protection against self-incrimination",
"part": "",
"division": "",
"heading": "Thefts, Losses and Suspicious Transactions",
"text": "27.4 A report made under any of sections 27.1 to 27.3, or any evidence derived from it, is not to be used or received to incriminate the licensed dealer in any criminal proceeding against them other than a prosecution under section 132, 136 or 137 of the Criminal Code.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.4.html"
},
{
"id": "C.R.C.,_c._1041-s27.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.5",
"marginal_note": "Destruction at site",
"part": "",
"division": "",
"heading": "Destruction of Narcotics",
"text": "27.5 A licensed dealer that intends to destroy a narcotic at the site specified in their licence must ensure that the following conditions are met:\n(a) the licensed dealer obtains the prior approval of the Minister;\n(b) the destruction is carried out in the presence of two of the following persons, at least one of whom must be a person referred to in subparagraph (i):\n(i) the senior person in charge, the qualified person in charge or an alternate qualified person in charge, and\n(ii) a person who works for or provides services to the licensed dealer and holds a senior position;\n(c) the destruction is carried out in accordance with a method that complies with all federal, provincial and municipal environmental protection legislation applicable to the place of destruction; and\n(d) as soon as the destruction is completed, the person who carried out the destruction and each of the two persons referred to in paragraph (b) who were present at the destruction sign and date a joint declaration attesting that the narcotic was completely destroyed, to which each signatory must add their name in printed letters.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.5.html"
},
{
"id": "C.R.C.,_c._1041-s27.6",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.6",
"marginal_note": "Destruction elsewhere than at site",
"part": "",
"division": "",
"heading": "Destruction of Narcotics",
"text": "27.6 A licensed dealer that intends to destroy a narcotic elsewhere than at the site specified in their licence must ensure that the following conditions are met:\n(a) the licensed dealer obtains the prior approval of the Minister;\n(b) the licensed dealer takes any measures that are necessary to ensure the security of the narcotic while it is being transported in order to prevent its diversion to an illicit market or use;\n(c) the destruction is carried out by a person working for a business that specializes in the destruction of dangerous goods and in the presence of another person working for that business;\n(d) the destruction is carried out in accordance with a method that complies with all federal, provincial and municipal environmental protection legislation applicable to the place of destruction; and\n(e) as soon as the destruction is completed, the person who carried out the destruction provides the licensed dealer with a dated declaration attesting that the narcotic was completely destroyed and containing\n(i) the municipal address of the place of destruction,\n(ii) the name and quantity of the narcotic and, if applicable, the brand name and quantity of the product containing it or the name and quantity of the compound containing it,\n(iii) the method of destruction,\n(iv) the date of destruction, and\n(v) the names in printed letters and signatures of that person and the other person who was present at the destruction.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.6",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.6.html"
},
{
"id": "C.R.C.,_c._1041-s27.7",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.7",
"marginal_note": "Application for prior approval",
"part": "",
"division": "",
"heading": "Destruction of Narcotics",
"text": "27.7\n(1) A licensed dealer must submit to the Minister an application that contains the following information in order to obtain the Minister’s prior approval to destroy a narcotic:\n(a) their name, municipal address and dealer’s licence number;\n(b) the proposed date of destruction;\n(c) the municipal address of the place of destruction;\n(d) a brief description of the method of destruction;\n(e) if the destruction is to be carried out at the site specified in the dealer’s licence, the names of the persons proposed for the purpose of paragraph 27.5(b) and information establishing that they meet the conditions of that paragraph;\n(f) the name of the narcotic and, if applicable, the brand name of the product containing it or the name of the compound containing it; and\n(g) the form and quantity of the narcotic or the product or compound containing it and, if applicable, the strength per unit of the narcotic in the product or compound, the number of units per package and the number of packages.\n(2) [Signature and attestation] The application must\n(a) be signed and dated by the qualified person in charge or an alternate qualified person in charge; and\n(b) include an attestation by that person that\n(i) the proposed method of destruction complies with all federal, provincial and municipal environmental protection legislation applicable to the place of destruction, and\n(ii) all of the information submitted in support of the application is correct and complete to the best of the signatory’s knowledge.\n(3) [Additional information and documents] The licensed dealer must, not later than the date specified in the Minister’s written request to that effect, provide the Minister with any information or document that the Minister determines is necessary to complete the review of the application.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.7",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.7.html"
},
{
"id": "C.R.C.,_c._1041-s27.8",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "27.8",
"marginal_note": "Approval",
"part": "",
"division": "",
"heading": "Destruction of Narcotics",
"text": "27.8 On completion of the review of the approval application, the Minister must approve the destruction of the narcotic unless\n(a) in the case of a destruction that is to be carried out at the site specified in the dealer’s licence, the persons proposed for the purpose of paragraph 27.5(b) do not meet the conditions of that paragraph;\n(b) the Minister has reasonable grounds to believe that the narcotic would not be destroyed;\n(c) the Minister has reasonable grounds to believe that the licensed dealer has submitted false or misleading information or false or falsified documents in or in support of the approval application;\n(d) the narcotic or a portion of it is required for the purposes of a criminal or administrative investigation or a preliminary inquiry, trial or other proceeding under any Act or its regulations; or\n(e) the Minister has reasonable grounds to believe that the approval would likely create a risk to public health or safety, including the risk of the narcotic being diverted to an illicit market or use.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 27.8",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-27.8.html"
},
{
"id": "C.R.C.,_c._1041-s28",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28",
"marginal_note": "Method of recording information",
"part": "",
"division": "",
"heading": "Documents",
"text": "28 A licensed dealer must record any information that they are required to record under these Regulations using a method that permits an audit of it to be made at any time.",
"history": "SOR/80-547, s. 1; SOR/2004-237, s. 13; SOR/2010-221, s. 13; SOR/2017-18, s. 24; SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.html"
},
{
"id": "C.R.C.,_c._1041-s28.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28.1",
"marginal_note": "Information — general",
"part": "",
"division": "",
"heading": "Documents",
"text": "28.1 A licensed dealer must record the following information:\n(a) the name, form and quantity of any narcotic that the dealer orders, the name of the person who placed the order on the dealer’s behalf and the date of the order;\n(b) the name, form and quantity of any narcotic that the dealer receives, the name and municipal address of the person who sold or provided it and the date on which it was received;\n(c) in the case of a narcotic that the dealer sells or provides,\n(i) the brand name of the product or the name of the compound containing the narcotic and the name of the narcotic,\n(ii) the drug identification number that has been assigned to the product under section C.01.014.2 of the Food and Drug Regulations, if any,\n(iii) the form and quantity of the narcotic and, if applicable, the strength per unit of the narcotic in the product or compound, the number of units per package and the number of packages,\n(iv) the name and municipal address of the person to whom it was sold or provided, and\n(v) the date on which it was sold or provided;\n(d) the name, form and quantity of any narcotic that the dealer manufactures or assembles and the date on which it was placed in stock and, if applicable, the strength per unit of the narcotic in the product or compound, the number of units per package and the number of packages;\n(e) the name and quantity of any narcotic that the dealer uses in the manufacturing or assembling of a product or compound, as well as the brand name and quantity of the product or the name and quantity of the compound, and the date on which the product or compound was placed in stock;\n(f) the name, form and quantity of any narcotic in stock at the end of each month;\n(g) the name, form and quantity of any narcotic that the dealer delivers, transports or sends, the name and municipal address of the consignee and the date on which it was delivered, transported or sent;\n(h) the name, form and quantity of any narcotic that the dealer imports, the date on which it was imported, the name and municipal address of the exporter, the country of exportation and any country of transit or transhipment; and\n(i) the name, form and quantity of any narcotic that the dealer exports, the date on which it was exported, the name and municipal address of the importer, the country of final destination and any country of transit or transhipment.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.1.html"
},
{
"id": "C.R.C.,_c._1041-s28.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28.2",
"marginal_note": "Verbal prescription narcotic",
"part": "",
"division": "",
"heading": "Documents",
"text": "28.2 A licensed dealer that receives a verbal order for a verbal prescription narcotic and sells or provides it to a pharmacist, a practitioner or a hospital employee must immediately record\n(a) the name of the person who placed the order;\n(b) the date on which the order was received; and\n(c) the name of the person recording the order.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.2.html"
},
{
"id": "C.R.C.,_c._1041-s28.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28.3",
"marginal_note": "Explainable loss of narcotic",
"part": "",
"division": "",
"heading": "Documents",
"text": "28.3 A licensed dealer that becomes aware of a loss of a narcotic that can be explained on the basis of normally accepted business activities must record the following information:\n(a) the name of the lost narcotic and, if applicable, the brand name of the product or the name of the compound containing it;\n(b) the form and quantity of the narcotic and, if applicable, the form of the product or compound containing it, the strength per unit of the narcotic in the product or compound, the number of units per package and the number of packages;\n(c) the date on which the dealer became aware of the loss; and\n(d) the explanation for the loss.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.3.html"
},
{
"id": "C.R.C.,_c._1041-s28.4",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28.4",
"marginal_note": "Destruction",
"part": "",
"division": "",
"heading": "Documents",
"text": "28.4 A licensed dealer must record the following information concerning any narcotic that they destroy at the site specified in their licence:\n(a) the municipal address of the place of destruction;\n(b) the name, form and quantity of the narcotic and, if applicable, the brand name and quantity of the product containing the narcotic or the name and quantity of the compound containing the narcotic;\n(c) the method of destruction; and\n(d) the date of destruction.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28.4",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.4.html"
},
{
"id": "C.R.C.,_c._1041-s28.5",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "28.5",
"marginal_note": "Annual report",
"part": "",
"division": "",
"heading": "Documents",
"text": "28.5\n(1) Subject to subsections (2) and (3), a licensed dealer must provide to the Minister, within three months after the end of each calendar year, an annual report that contains\n(a) the name, form and total quantity of each narcotic that they receive, produce, sell, provide, import, export or destroy during the calendar year, as well as the name and total quantity of each narcotic that they use to manufacture or assemble a product or compound;\n(b) the name, form and quantity of each narcotic in physical inventory taken at the site specified in their licence at the end of the calendar year; and\n(c) the name, form and quantity of any narcotic that has been lost or stolen in the course of conducting activities during the calendar year.\n(2) [Non-renewal or revocation within first three months] If a licensed dealer’s licence expires without being renewed or is revoked during the first three months of a calendar year, the dealer must provide to the Minister\n(a) within three months after the end of the preceding calendar year, the annual report in respect of that year; and\n(b) within three months after the expiry or revocation, a report in respect of the portion of the current calendar year during which the licence was valid that contains the information referred to in subsection (1), in which the quantity in physical inventory is to be calculated as of the date of expiry or revocation.\n(3) [Non-renewal or revocation after third month] If a licensed dealer’s licence expires without being renewed or is revoked after the first three months of a calendar year, the dealer must provide to the Minister, within three months after the expiry or revocation, a report in respect of the portion of the calendar year during which the licence was valid that contains the information referred to in subsection (1) for that period, in which the quantity in physical inventory is to be calculated as of the date of expiry or revocation.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 28.5",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-28.5.html"
},
{
"id": "C.R.C.,_c._1041-s29",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "29",
"marginal_note": "Retention period",
"part": "",
"division": "",
"heading": "Documents",
"text": "29 A licensed dealer and a former licensed dealer must keep any document containing the information that they are required to record under these Regulations, including every declaration and a copy of every report, for a period of two years following the day on which the last record is recorded in the document and in a manner that permits an audit of the document to be made at any time.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 29",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-29.html"
},
{
"id": "C.R.C.,_c._1041-s29.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "29.1",
"marginal_note": "Location",
"part": "",
"division": "",
"heading": "Documents",
"text": "29.1 The documents must be kept\n(a) in the case of a licensed dealer, at the site specified in their licence; and\n(b) in the case of a former licensed dealer, at a location in Canada.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 29.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-29.1.html"
},
{
"id": "C.R.C.,_c._1041-s29.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "29.2",
"marginal_note": "Quality of documents",
"part": "",
"division": "",
"heading": "Documents",
"text": "29.2 The documents must be complete and readily retrievable and the information in them must be legible and indelible.",
"history": "SOR/2019-169, s. 3",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 29.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-29.2.html"
},
{
"id": "C.R.C.,_c._1041-s30",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "30",
"marginal_note": "General information",
"part": "",
"division": "",
"heading": "Record of Narcotics Received",
"text": "30 A pharmacist who receives a narcotic from a licensed dealer shall immediately enter the following in a book, register or other record maintained for such purposes:\n(a) the name and quantity of the narcotic received;\n(b) the date the narcotic was received; and\n(c) the name and address of the person from whom the narcotic was received.",
"history": "SOR/85-588, s. 8; SOR/2013-119, s. 211; SOR/2016-230, s. 267; SOR/2018-147, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 30",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-30.html"
},
{
"id": "C.R.C.,_c._1041-s31",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "31",
"marginal_note": "Restriction",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "31\n(1) No pharmacist shall sell or provide narcotics except in accordance with this section and sections 34 to 36 and 45.\n(2) [Exemption or written order or prescription] A pharmacist may sell or provide a narcotic to a person\n(a) if the person is exempted under section 56 of the Act with respect to the possession of that narcotic;\n(b) except in the case of diacetylmorphine (heroin), if the pharmacist has received a written order or prescription for the narcotic that is signed and dated by a practitioner and has verified the signature of the practitioner, if it is not known to them; or\n(c) in the case of diacetylmorphine (heroin), if the pharmacist has received a written order or prescription for the narcotic that is signed and dated by a practitioner of medicine or a nurse practitioner and has verified the signature of the practitioner, if it is not known to them.\n(2.1) [Repealed, SOR/2019-169, s. 6]\n(3) [Methadone] A pharmacist may sell or provide methadone to the following persons, in addition to the persons referred to in subsection (2):\n(a) a licensed dealer;\n(b) another pharmacist;\n(c) a hospital employee; or\n(d) a practitioner.\n(4) [Repealed, SOR/2018-147, s. 12]",
"history": "SOR/81-361, s. 2; SOR/85-588, s. 9; SOR/99-124, s. 4; SOR/2004-237, s. 14; SOR/2012-230, s. 20; SOR/2013-119, s. 212; SOR/2014-51, s. 1; SOR/2016-230, s. 268; SOR/2018-37, s. 4; SOR/2018-147, s. 12; SOR/2019-169, s. 6",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 31",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-31.html"
},
{
"id": "C.R.C.,_c._1041-s32",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "32",
"marginal_note": "Prohibition — pharmacist or practitioner named in notice",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "32 Subject to section 33 and despite subsections 31(2) and (3) and sections 34 to 36, no pharmacist shall\n(a) sell or provide a narcotic, other than a verbal prescription narcotic, to a pharmacist named in a notice issued by the Minister under paragraph 48(1)(a);\n(b) sell or provide a verbal prescription narcotic, other than a preparation mentioned in section 36, to a pharmacist named in a notice issued by the Minister under paragraph 48(1)(b);\n(c) sell or provide a preparation mentioned in section 36 to a pharmacist named in a notice issued by the Minister under paragraph 48(1)(c);\n(d) dispense, sell or provide a narcotic, other than a verbal prescription narcotic, to a practitioner named in a notice issued by the Minister under subsection 59(1) or fill a prescription or order for a narcotic, other than a verbal prescription narcotic, from a practitioner named in such a notice; or\n(e) dispense, sell or provide a verbal prescription narcotic to a practitioner named in a notice issued by the Minister under subsection 59(1) or fill a prescription or order for a verbal prescription narcotic from a practitioner named in such a notice.",
"history": "SOR/85-588, s. 10(E); SOR/2003-134, s. 3; SOR/2019-169, s. 7",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 32",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-32.html"
},
{
"id": "C.R.C.,_c._1041-s33",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "33",
"marginal_note": "Exception — notice of retraction",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "33 Section 32 does not apply to a pharmacist to whom the Minister has issued a notice of retraction of the notice\n(a) under section 49, in respect of a pharmacist named in a notice issued by the Minister under subsection 48(1); or\n(b) under section 60, in respect of a practitioner named in a notice issued by the Minister to under subsection 59(1).",
"history": "SOR/2003-134, s. 3; SOR/2019-169, s. 8(F)",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 33",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-33.html"
},
{
"id": "C.R.C.,_c._1041-s34",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "34",
"marginal_note": "Verbal prescription narcotic",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "34 Subject to section 39, a pharmacist may dispense a verbal prescription narcotic on receipt of a verbal order or prescription given by a person whom the pharmacist has taken reasonable precautions to determine is a practitioner.",
"history": "SOR/85-588, s. 11; SOR/85-930, s. 6; SOR/2019-169, s. 9",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 34",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-34.html"
},
{
"id": "C.R.C.,_c._1041-s35",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "35",
"marginal_note": "Provision to hospital",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "35\n(1) Subject to subsection (2), a pharmacist may provide a narcotic to an employee of a hospital or a practitioner in a hospital if the pharmacist receives a written order for the narcotic signed and dated by\n(a) the pharmacist in charge of the hospital’s pharmacy;\n(b) except in the case of diacetylmorphine (heroin), a practitioner who is authorized by the person in charge of the hospital to sign the order; or\n(c) in the case of diacetylmorphine (heroin), a practitioner of medicine or dentistry or a nurse practitioner who is authorized by the person in charge of the hospital to sign the order.\n(2) [Signature] Before providing a narcotic under subsection (1), the pharmacist receiving the order must know the signature on the order or verify it.",
"history": "SOR/85-588, s. 12; SOR/99-124, s. 5; SOR/2004-237, s. 15; SOR/2018-37, s. 5; SOR/2019-169, s. 10",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 35",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-35.html"
},
{
"id": "C.R.C.,_c._1041-s36",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "36",
"marginal_note": "Low-dose codeine preparation",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "36\n(1) Subject to subsection (2), a pharmacist may, without a prescription, sell or provide a preparation containing not more than 8 mg or its equivalent of codeine phosphate per tablet or per unit in other solid form or not more than 20 mg or its equivalent of codeine phosphate per 30 mL in a liquid preparation if\n(a) the preparation contains\n(i) two additional medicinal ingredients other than a narcotic in a quantity of not less than the regular minimum single dose for one such ingredient or one-half the regular minimum single dose for each such ingredient, or\n(ii) three additional medicinal ingredients other than a narcotic in a quantity of not less than the regular minimum single dose for one such ingredient or one-third the regular minimum single dose for each such ingredient; and\n(b) there is legibly and conspicuously printed on the inner label and the outer label, as those terms are defined in section A.01.010 of the Food and Drug Regulations, a caution to the following effect:\n“This preparation contains codeine and should not be administered to children except on the advice of a physician, dentist or nurse practitioner.”\n(2) [Use other than for recognized medical or dental purpose] No pharmacist shall sell or provide a preparation referred to in subsection (1) if the pharmacist has reasonable grounds to believe that the preparation is to be used for purposes other than recognized medical or dental purposes.",
"history": "SOR/78-154, s. 5; SOR/85-588, s. 13; SOR/2004-237, s. 16; SOR/2012-230, s. 21",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 36",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-36.html"
},
{
"id": "C.R.C.,_c._1041-s37",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "37",
"marginal_note": "Maximum Quantity",
"part": "",
"division": "",
"heading": "Sale of Narcotics",
"text": "37 A pharmacist must not use an order or prescription to dispense a narcotic after the quantity of the narcotic specified in the order or prescription has been dispensed.",
"history": "SOR/81-361, s. 3; SOR/2019-169, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 37",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-37.html"
},
{
"id": "C.R.C.,_c._1041-s38",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "38",
"marginal_note": "Written order or prescription",
"part": "",
"division": "",
"heading": "Records",
"text": "38 If, in accordance with a written order or prescription, a pharmacist dispenses a narcotic, other than dextropropoxyphene, the pharmacist must immediately enter in a book, register or other record maintained for such purposes\n(a) their name or initials;\n(b) the name, initials and municipal address of the practitioner who issued the order or prescription;\n(c) the name and municipal address of the person named in the order or prescription;\n(d) the name, form and quantity of the narcotic;\n(e) the date on which the narcotic was dispensed; and\n(f) the number assigned to the order or prescription.",
"history": "SOR/82-1073, s. 1; SOR/85-588, s. 14(E); SOR/2004-237, s. 17; SOR/2019-169, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 38",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-38.html"
},
{
"id": "C.R.C.,_c._1041-s39",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "39",
"marginal_note": "Verbal order or prescription",
"part": "",
"division": "",
"heading": "Records",
"text": "39 A pharmacist must, before dispensing a verbal prescription narcotic in accordance with a verbal order or prescription, make a written record of it that sets out\n(a) their name or initials;\n(b) the name, initials and municipal address of the practitioner who issued the order or prescription;\n(c) the name and municipal address of the person named in the order or prescription;\n(d) in accordance with the manner in which it is specified in the order or prescription, the name and quantity of the verbal prescription narcotic or the narcotic and the other medicinal ingredients contained in it;\n(e) the directions for use given with the order or prescription;\n(f) the date on which the verbal prescription narcotic was dispensed; and\n(g) the number assigned to the order or prescription.",
"history": "SOR/85-588, s. 15; SOR/2004-237, s. 18; SOR/2019-169, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 39",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-39.html"
},
{
"id": "C.R.C.,_c._1041-s40",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "40",
"marginal_note": "File by date and number",
"part": "",
"division": "",
"heading": "Records",
"text": "40 A pharmacist must maintain a special narcotic prescription file in which are filed, in sequence as to date and number, all written orders and prescriptions for narcotics that they have dispensed and the written record of all verbal prescription narcotics that they have dispensed in accordance with a verbal order or prescription.",
"history": "SOR/85-588, s. 16; SOR/2019-169, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 40",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-40.html"
},
{
"id": "C.R.C.,_c._1041-s40.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "40.1",
"marginal_note": "Retention period",
"part": "",
"division": "",
"heading": "Records",
"text": "40.1 A pharmacist must retain in their possession for a period of at least two years any records which they are required to keep by these Regulations.",
"history": "SOR/2019-169, s. 11",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 40.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-40.1.html"
},
{
"id": "C.R.C.,_c._1041-s41",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "41",
"marginal_note": "Providing information and assisting inspector",
"part": "",
"division": "",
"heading": "General Obligations of Pharmacist",
"text": "41 A pharmacist shall\n(a) furnish such information respecting the dealings of the pharmacist in any narcotic in such form and at such times as the Minister may require;\n(b) make available and produce to an inspector upon request his special narcotic prescription file together with any books, records or documents which he is required to keep;\n(c) permit an inspector to make copies of or to take extracts from such files, books, records or documents; and\n(d) permit an inspector to check all stocks of narcotics on his premises.",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 41",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-41.html"
},
{
"id": "C.R.C.,_c._1041-s42",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "42",
"marginal_note": "Loss or theft — report",
"part": "",
"division": "",
"heading": "General Obligations of Pharmacist",
"text": "42 A pharmacist shall report to the Minister any loss or theft of a narcotic within 10 days of his discovery thereof.",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 42",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-42.html"
},
{
"id": "C.R.C.,_c._1041-s43",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "43",
"marginal_note": "Loss or theft — protective measures",
"part": "",
"division": "",
"heading": "General Obligations of Pharmacist",
"text": "43 A pharmacist shall take all reasonable steps that are necessary to protect narcotics on his premises or under his control against loss or theft.",
"history": "SOR/81-361, s. 4; SOR/85-588, s. 17",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 43",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-43.html"
},
{
"id": "C.R.C.,_c._1041-s44",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "44",
"marginal_note": "Preparing narcotic – approval of formula",
"part": "",
"division": "",
"heading": "General Obligations of Pharmacist",
"text": "44\n(1) No pharmacist shall prepare a narcotic unless the Minister has approved the formula thereof, and if such narcotic is a preparation described in section 36, has approved the label and the size of the container in which it will be sold.\n(2) [Record — preparation] A pharmacist who prepares a narcotic shall, in addition to all other records required to be kept, keep a record of the following:\n(a) the kind and quantity of any narcotic used in the preparation;\n(b) the name and quantity of the narcotic prepared; and\n(c) the date that the prepared narcotic was placed in stock.\n(3) [Definition of prepare] For the purposes of this section, “prepare” does not include the compounding of a narcotic pursuant to a prescription of a practitioner.",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 44",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-44.html"
},
{
"id": "C.R.C.,_c._1041-s45",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "45",
"marginal_note": "Written order",
"part": "",
"division": "",
"heading": "Return or Emergency Sale",
"text": "45\n(1) A pharmacist may, on receiving a written order for a narcotic\n(a) return the narcotic to the licensed dealer who sold or provided it to the pharmacist, if the order is signed and dated by the licensed dealer; or\n(b) sell or provide to another pharmacist the quantity of the narcotic that is specified in the order as being required for emergency purposes, if the order is signed and dated by the other pharmacist.\n(2) [Record] A pharmacist shall, immediately after returning, selling or providing a narcotic under subsection (1) or after receiving a narcotic under paragraph (1)(b) or subsection 65(4), enter the details of the transaction in a book, register or other record maintained for the purpose of recording such transactions.\n(3) [Notice to Minister] A pharmacist shall forthwith after removing, transporting or transferring a narcotic from his place of business to any other place of business operated by him notify the Minister setting out the details thereof.",
"history": "SOR/81-361, s. 5; SOR/85-588, s. 18; SOR/2004-237, s. 19; SOR/2013-119, s. 213(E); SOR/2014-260, s. 24(E)",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 45",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-45.html"
},
{
"id": "C.R.C.,_c._1041-s46",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "46",
"marginal_note": "Contraventions by pharmacist",
"part": "",
"division": "",
"heading": "Communication of Information by Minister to Licensing Authority",
"text": "46 The Minister must provide in writing any factual information about a pharmacist that has been obtained under the Act or these Regulations to the provincial professional licensing authority that is responsible for the authorization of the person to practise their profession\n(a) in the province in which the pharmacist is or was entitled to practise if\n(i) the authority submits to the Minister a written request that sets out the pharmacist’s name and address, a description of the information being requested and a statement that the information is required for the purpose of assisting a lawful investigation by the authority, or\n(ii) the Minister has reasonable grounds to believe that the pharmacist has\n(A) contravened a rule of conduct established by the authority,\n(B) been convicted of a designated substance offence, or\n(C) contravened these Regulations; or\n(b) in a province in which the pharmacist is not entitled to practise, if the authority submits to the Minister\n(i) a written request that sets out the pharmacist’s name and address and a description of the information being requested, and\n(ii) a document that shows that\n(A) the pharmacist has applied to that authority to practise in that province, or\n(B) the authority has reasonable grounds to believe that the pharmacist is practising in that province without being authorized to do so.",
"history": "SOR/86-882, s. 1; SOR/2003-134, s. 4; SOR/2010-221, s. 17; SOR/2013-119, s. 214; SOR/2016-230, s. 278; SOR/2018-147, s. 13; SOR/2019-169, s. 14",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 46",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-46.html"
},
{
"id": "C.R.C.,_c._1041-s47",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "47",
"marginal_note": "Request by pharmacist",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "47 A pharmacist may make a written request to the Minister to send to the persons and authorities specified in subsection 48(3) a notice, issued under section 48, advising them of one or more of the following requirements:\n(a) recipients of the notice must not sell or provide a narcotic, other than a verbal prescription narcotic, to that pharmacist;\n(b) recipients of the notice must not sell or provide a verbal prescription narcotic, other than a preparation mentioned in section 36, to that pharmacist; and\n(c) the recipients of the notice must not sell or provide a preparation mentioned in section 36 to that pharmacist.",
"history": "SOR/2003-134, s. 4",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 47",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-47.html"
},
{
"id": "C.R.C.,_c._1041-s48",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "48",
"marginal_note": "Notice by Minister",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "48\n(1) In the circumstances described in subsection (2), the Minister must send a notice to the persons and authorities specified in subsection (3) advising them that pharmacists practising in the notified pharmacies and licensed dealers must not sell or provide to the pharmacist named in the notice one or more of the following:\n(a) a narcotic, other than a verbal prescription narcotic;\n(b) a verbal prescription narcotic, other than a preparation mentioned in section 36; or\n(c) a preparation mentioned in section 36.\n(2) [Circumstances requiring a notice] The notice must be sent if the pharmacist named in the notice has\n(a) made a request to the Minister in accordance with section 47 to send the notice;\n(b) contravened a rule of conduct established by the provincial professional licensing authority of the province in which the pharmacist is practising and the authority has requested the Minister in writing to send the notice; or\n(c) been convicted of a designated substance offence or of a contravention of these Regulations.\n(3) [Recipients] The notice must be sent to\n(a) all licensed dealers;\n(b) all pharmacies within the province in which the pharmacist named in the notice is entitled to practice and is practising;\n(c) the provincial professional licensing authority of the province in which the pharmacist named in the notice is entitled to practise;\n(d) all pharmacies in an adjacent province in which an order from the pharmacist named in the notice may be filled; and\n(e) any provincial professional licensing authority in another province that has requested the Minister in writing to send the notice.\n(4) [Other circumstances] The Minister may send the notice described in subsection (1) to the persons and authorities specified in subsection (3) if the Minister has taken the measures specified in subsection (5) and has reasonable grounds to believe that the pharmacist named in the notice\n(a) has contravened a provision of the Act or these Regulations;\n(b) has, on more than one occasion, self-administered a narcotic, other than a verbal prescription narcotic, contrary to accepted pharmaceutical practice;\n(c) has, on more than one occasion, self-administered a verbal prescription narcotic, other than a preparation mentioned in section 36, contrary to accepted pharmaceutical practice;\n(d) has, on more than one occasion, provided or administered a narcotic, other than a verbal prescription narcotic, to a person who is a spouse, common-law partner, parent or child of the pharmacist, including a child adopted in fact, contrary to accepted pharmaceutical practice;\n(e) has, on more than one occasion, provided or administered a verbal prescription narcotic, other than a preparation mentioned in section 36, to a person who is a spouse, common-law partner, parent or child of the pharmacist, including a child adopted in fact, contrary to accepted pharmaceutical practice; or\n(f) is unable to account for the quantity of narcotic for which the pharmacist was responsible under these Regulations.\n(5) [Measures before sending notice] The measures that must be taken before sending the notice are that the Minister has\n(a) consulted with the provincial professional licensing authority of the province in which the pharmacist to whom the notice relates is entitled to practise;\n(b) given that pharmacist an opportunity to be heard; and\n(c) considered\n(i) the compliance history of the pharmacist in respect of the Act and its regulations, and\n(ii) whether the actions of the pharmacist pose a risk to public health or safety, including the risk of the narcotic being diverted to an illicit market or use.",
"history": "SOR/2003-134, s. 4; SOR/2010-221, ss. 17, 18(F); SOR/2013-119, s. 215; SOR/2016-230, s. 278; SOR/2018-147, s. 14; SOR/2019-169, s. 15",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 48",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-48.html"
},
{
"id": "C.R.C.,_c._1041-s49",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "49",
"marginal_note": "Notice of retraction",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "49 The Minister must provide the licensed dealers, pharmacies and provincial professional licensing authorities who were sent a notice under subsection 48(1) with a notice of retraction of that notice if\n(a) in the circumstance described in paragraph 48(2)(a), the requirements set out in subparagraphs (b)(i) and (ii) have been met and one year has elapsed since the notice was sent by the Minister; or\n(b) in a circumstance described in any of paragraphs 48(2)(b) and (c) and (4)(a) to (f), the pharmacist named in the notice has\n(i) requested in writing that a retraction of the notice besent, and\n(ii) provided a letter from the provincial professional licensing authority of the province, in which the pharmacist is entitled to practise, in which the authority consents to the retraction of the notice.",
"history": "SOR/2003-134, s. 4; SOR/2010-221, s. 17; SOR/2013-119, s. 216; SOR/2018-147, s. 15; SOR/2019-169, s. 15",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 49",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-49.html"
},
{
"id": "C.R.C.,_c._1041-s50 to 52",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "50 to 52",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "50 to 52 [Repealed, SOR/2003-134, s. 4]",
"history": "",
"last_amended": "2006-03-22",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 50 to 52",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-50 to 52.html"
},
{
"id": "C.R.C.,_c._1041-s53",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "53",
"marginal_note": "Restriction",
"part": "",
"division": "",
"heading": "Administer, Prescribe or Sell Narcotics",
"text": "53\n(1) No practitioner shall administer a narcotic to a person or animal, or prescribe, sell or provide a narcotic for a person or animal, except as authorized under this section.\n(2) [Conditions] Subject to subsection (4), a practitioner may administer a narcotic to a person or animal, or prescribe, sell or provide it for a person or animal, if\n(a) the person or animal is a patient under their professional treatment; and\n(b) the narcotic is required for the condition for which the person or animal is receiving treatment.\n(3) [Repealed, SOR/2018-37, s. 6]\n(4) [Heroin] A practitioner of dentistry or veterinary medicine shall not administer diacetylmorphine (heroin) to an animal or to a person who is not an in-patient or out-patient of a hospital providing care or treatment to persons, and shall not prescribe, sell or provide diacetylmorphine (heroin) for an animal or such a person.\n(5) [Repealed, SOR/2018-147, s. 16]",
"history": "SOR/85-930, s. 7; SOR/99-124, s. 6; SOR/2001-227, s. 71; SOR/2004-237, s. 20; SOR/2012-230, s. 22; SOR/2013-119, s. 217; SOR/2013-172, s. 7; SOR/2016-230, ss. 269, 278; SOR/2016-239, s. 6; SOR/2018-37, s. 6; SOR/2018-147, s. 16",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 53",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-53.html"
},
{
"id": "C.R.C.,_c._1041-s54",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "54",
"marginal_note": "Record of narcotics sold or provided",
"part": "",
"division": "",
"heading": "Administer, Prescribe or Sell Narcotics",
"text": "54\n(1) A practitioner who sells or provides a narcotic to a person for self-administration or for administration to an animal shall, whether or not the practitioner charges for the narcotic, keep a record showing the name and quantity of the narcotic sold or provided, the name and address of the person to whom it was sold or provided and the date on which it was sold or provided, if the quantity of the narcotic exceeds\n(a) three times the maximum daily dosage recommended by the manufacturer or assembler of the narcotic for that narcotic; or\n(b) three times the generally recognized maximum daily therapeutic dosage for the narcotic if the manufacturer or assembler has not recommended a maximum daily dosage.\n(2) [Accessibility of record] The practitioner shall keep the record in a place, form and manner that will permit an inspector readily to examine and obtain information from it.",
"history": "SOR/2004-237, s. 21; SOR/2013-119, s. 218; SOR/2016-230, s. 270; SOR/2018-147, s. 17; SOR/2019-169, s. 17",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 54",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-54.html"
},
{
"id": "C.R.C.,_c._1041-s55",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "55",
"marginal_note": "Requirements",
"part": "",
"division": "",
"heading": "General Obligations of Practitioner",
"text": "55 A practitioner shall\n(a) furnish to the Minister any information that the Minister may require respecting\n(i) the use by the practitioner of narcotics received — including the administering, selling or providing of them to a person,\n(ii) the prescriptions for narcotics issued by the practitioner; and\n(iii) [Repealed, SOR/2018-147, s. 18]\n(b) produce to an inspector on request any records that these Regulations require the practitioner to keep;\n(c) permit an inspector to make copies of such records or to take extracts therefrom;\n(d) permit an inspector to check all stocks of narcotics on the practitioner’s premises;\n(e) retain in his possession for at least two years any record that these Regulations require him to keep;\n(f) take adequate steps to protect narcotics in his possession from loss or theft; and\n(g) report to the Minister any loss or theft of a narcotic within 10 days of the practitioner’s discovery of the loss or theft.",
"history": "SOR/2004-237, s. 22; SOR/2013-119, s. 219; SOR/2016-230, s. 271; SOR/2018-147, s. 18",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 55",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-55.html"
},
{
"id": "C.R.C.,_c._1041-s56",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "56",
"marginal_note": "",
"part": "",
"division": "",
"heading": "General Obligations of Practitioner",
"text": "56 [Repealed, SOR/2010-221, s. 14]",
"history": "",
"last_amended": "2010-10-21",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 56",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-56.html"
},
{
"id": "C.R.C.,_c._1041-s57",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "57",
"marginal_note": "Contraventions by practitioner",
"part": "",
"division": "",
"heading": "Communication of Information by Minister to Licensing Authority",
"text": "57 The Minister must provide in writing any factual information about a practitioner that has been obtained under the Act or these Regulations to the provincial professional licensing authority that is responsible for the registration and authorization of the person to practise their profession\n(a) in the province in which the practitioner is or was registered and entitled to practise if\n(i) the authority submits to the Minister a written request that sets out the practitioner’s name and address, a description of the information being requested and a statement that the information is required for the purpose of assisting a lawful investigation by the authority, or\n(ii) the Minister has reasonable grounds to believe that the practitioner has\n(A) contravened a rule of conduct established by the authority,\n(B) been convicted of a designated substance offence, or\n(C) contravened these Regulations; or\n(b) in a province in which the practitioner is not registered and entitled to practise, if the authority submits to the Minister\n(i) a written request that sets out the practitioner’s name and address and a description of the information being requested, and\n(ii) a document that shows that\n(A) the practitioner has applied to that authority to practise in that province, or\n(B) the authority has reasonable grounds to believe that the practitioner is practising in that province without being authorized to do so.",
"history": "SOR/86-882, s. 2; SOR/2003-134, s. 5; SOR/2010-221, s. 17; SOR/2013-119, s. 220; SOR/2015-132, s. 2; SOR/2016-230, s. 272; SOR/2018-147, s. 19; SOR/2019-169, s. 19",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 57",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-57.html"
},
{
"id": "C.R.C.,_c._1041-s58",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "58",
"marginal_note": "Request by practitioner",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "58 A practitioner may make a written request to the Minister to send to licensed dealers and pharmacies a notice, issued under section 59, advising them of one or more of the following requirements:\n(a) recipients of the notice must not sell or provide a narcotic, other than a verbal prescription narcotic, to that practitioner;\n(b) recipients of the notice must not sell or provide a verbal prescription narcotic to the practitioner;\n(c) pharmacists practising in the notified pharmacies must not fill a prescription or order for a narcotic, other than a verbal prescription narcotic, written by that practitioner; or\n(d) pharmacists practising in the notified pharmacies must not fill a prescription or order for a verbal prescription narcotic from that practitioner.\n(e) [Repealed, SOR/2018-147, s. 20]\n(f) and (g) [Repealed, SOR/2013-119, s. 221]",
"history": "SOR/2003-134, s. 5; SOR/2013-119, s. 221; SOR/2016-230, s. 273; SOR/2018-147, s. 20",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 58",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-58.html"
},
{
"id": "C.R.C.,_c._1041-s59",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "59",
"marginal_note": "Notice by Minister",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "59\n(1) In the circumstances described in subsection (2), the Minister must send a notice to the persons and authorities specified in subsection (3) advising them that\n(a) pharmacists practising in the notified pharmacies and licensed dealers must not sell or provide to the practitioner named in the notice a narcotic other than a verbal prescription narcotic or a verbal prescription narcotic;\n(b) pharmacists practising in the notified pharmacies must not fill a prescription or order from the practitioner named in the notice for a narcotic other than a verbal prescription narcotic or a verbal prescription narcotic; or\n(c) the prohibitions in both paragraphs (a) and (b) apply with respect to the practitioner named in the notice.\n(2) [Circumstances requiring a notice] The notice must be sent if the practitioner named in the notice has\n(a) made a request to the Minister in accordance with section 58 to send the notice;\n(b) contravened a rule of conduct established by the provincial professional licensing authority of the province in which the practitioner is practising and the authority has requested the Minister in writing to send the notice; or\n(c) been convicted of a designated substance offence or of a contravention of these Regulations.\n(3) [Recipients] The notice must be sent to\n(a) all licensed dealers;\n(b) all pharmacies within the province in which the practitioner named in the notice is registered and entitled to practise and is practising;\n(c) the provincial professional licensing authority of the province in which the practitioner named in the notice is registered and entitled to practise;\n(d) all pharmacies in an adjacent province in which a prescription or order from the practitioner named in the notice may be filled; and\n(e) any provincial professional licensing authority in another province that has requested the Minister in writing to send the notice.\n(4) [Other circumstances] The Minister may send the notice described in subsection (1) to the persons and authorities specified in subsection (3) if the Minister has taken the measures specified in subsection (5) and has reasonable grounds to believe that the practitioner named in the notice\n(a) has contravened a provision of the Act or these Regulations;\n(b) has, on more than one occasion, self-administered a narcotic, other than a verbal prescription narcotic, under a self-directed prescription or order or, in the absence of a prescription or order, contrary to accepted professional practice;\n(c) has, on more than one occasion, self-administered a verbal prescription narcotic under a self-directed prescription or order or, in the absence of a prescription or order, contrary to accepted professional practice;\n(d) has, on more than one occasion, prescribed, provided or administered a narcotic, other than a verbal prescription narcotic, to a person who is a spouse, common-law partner, parent or child of the practitioner, including a child adopted in fact, contrary to accepted professional practice;\n(e) has, on more than one occasion, prescribed, provided or administered a verbal prescription narcotic to a person who is a spouse, common-law partner, parent or child of the practitioner, including a child adopted in fact, contrary to accepted professional practice; or\n(f) is unable to account for the quantity of narcotic for which the practitioner was responsible under these Regulations.\n(5) [Measures before sending notice] The measures that must be taken before sending the notice are that the Minister has\n(a) consulted with the provincial professional licensing authority of the province in which the practitioner to whom the notice relates is registered and entitled to practise;\n(b) given that practitioner an opportunity to be heard; and\n(c) considered\n(i) the compliance history of the practitioner in respect of the Act and its regulations, and\n(ii) whether the actions of the practitioner pose a risk to public health or safety, including the risk of the narcotic being diverted to an illicit market or use.",
"history": "SOR/2003-134, s. 5; SOR/2010-221, ss. 17, 18(F); SOR/2013-119, s. 222; SOR/2016-230, ss. 274, 278; SOR/2017-18, s. 25; SOR/2018-147, s. 21; SOR/2019-169, s. 20",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 59",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-59.html"
},
{
"id": "C.R.C.,_c._1041-s60",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "60",
"marginal_note": "Notice of retraction",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "60 The Minister must provide the licensed dealers, pharmacies and provincial professional licensing authorities who were sent a notice under subsection 59(1) with a notice of retraction of that notice if\n(a) in the circumstance described in paragraph 59(2)(a), the requirements set out in subparagraphs (b)(i) and (ii) have been met and one year has elapsed since the notice was sent by the Minister; or\n(b) in a circumstance described in any of paragraphs 59(2)(b) and (c) and (4)(a) to (f), the practitioner named in the notice has\n(i) requested in writing that a retraction of the notice be sent, and\n(ii) provided a letter from the provincial professional licensing authority of the province in which the practitioner is registered and entitled to practise in which the authority consents to the retraction of the notice.",
"history": "SOR/85-588, s. 20(E); SOR/2003-134, s. 5; SOR/2010-221, s. 17; SOR/2013-119, s. 223; SOR/2018-147, s. 22; SOR/2019-169, s. 20",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 60",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-60.html"
},
{
"id": "C.R.C.,_c._1041-s61 and 62",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "61 and 62",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Notice of Prohibition of Sale",
"text": "61 and 62 [Repealed, SOR/2003-134, s. 5]",
"history": "",
"last_amended": "2006-03-22",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 61 and 62",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-61 and 62.html"
},
{
"id": "C.R.C.,_c._1041-s63",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "63",
"marginal_note": "General obligations",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "63 A person who is in charge of a hospital shall\n(a) keep or cause to be kept in a book, register or other record maintained for such purposes,\n(i) the name and quantity of any narcotic received,\n(ii) the name and address of the person from whom any narcotic was received and the date received,\n(iii) the name and quantity of any narcotic used in the making or assembling of a product or compound containing that narcotic,\n(iv) the name and quantity of any product or compound that was made or assembled and that contains that narcotic and the date on which the product or compound was made or assembled,\n(v) the name of the patient for whom a narcotic, other than dextropropoxyphene or a verbal prescription narcotic, was dispensed,\n(vi) the name of the practitioner ordering or prescribing a narcotic, other than dextropropoxyphene or a verbal prescription narcotic, and\n(vii) the date a narcotic, other than dextropropoxyphene or a verbal prescription narcotic was ordered or prescribed and the form and quantity thereof;\n(viii) to (x) [Repealed, SOR/2018-147, s. 23]\n(b) maintain the recorded information in such form as to enable an audit to be made from time to time for a period of not less than two years from the making thereof;\n(c) take all necessary steps to protect narcotics in the hospital against loss or theft, and report to the Minister any loss or theft of narcotics within 10 days of his discovery thereof.",
"history": "SOR/82-1073, s. 2; SOR/85-588, s. 21(E); SOR/2004-237, s. 24; SOR/2013-119, s. 224; SOR/2016-230, s. 275; SOR/2018-147, s. 23; SOR/2019-169, s. 21(F)",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 63",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-63.html"
},
{
"id": "C.R.C.,_c._1041-s64",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "64",
"marginal_note": "Providing information and assisting inspector",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "64 A person who is in charge of a hospital shall\n(a) furnish such information respecting the use of narcotics therein, in such form and at such times as the Minister may require;\n(b) produce to an inspector any books, records or documents required by these Regulations to be kept;\n(c) permit an inspector to make copies thereof or take extracts from such books, records and documents; and\n(d) permit an inspector to check all stocks of narcotics in the hospital.",
"history": "SOR/2019-169, s. 22(F)",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 64",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-64.html"
},
{
"id": "C.R.C.,_c._1041-s65",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "65",
"marginal_note": "Selling, providing or administering narcotic",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "65\n(1) No person in charge of a hospital shall permit a narcotic to be sold, provided or administered except in accordance with this section.\n(2) [Written order or prescription] On receipt of a written order or prescription signed and dated by a practitioner, the person in charge of a hospital may permit a narcotic, other than diacetylmorphine (heroin), to be administered to a person or an animal under treatment as an in-patient or out-patient of the hospital, or to be sold or provided for the person or to the person in charge of the animal.\n(2.1) [Verbal prescription narcotic] On receipt of a verbal prescription given by a practitioner, the person in charge of a hospital may permit a verbal prescription narcotic to be administered to a person or an animal under treatment as an in-patient or out-patient of the hospital, or to be sold or provided for the person or to the person in charge of the animal.\n(3) [Emergency — other hospital] Subject to subsection (5.1), the person in charge of a hospital may permit a narcotic to be provided, for emergency purposes, to a hospital employee or practitioner in another hospital on receipt of a written order signed and dated by a pharmacist in the other hospital or a practitioner authorized by the person in charge of the other hospital to sign the order.\n(3.1) [Repealed, SOR/2018-147, s. 24]\n(4) [Emergency — pharmacist] Subject to subsection (5.1), the person in charge of a hospital may permit a narcotic to be sold or provided, for emergency purposes, to a pharmacist on receipt of a written order signed and dated by the pharmacist.\n(5) [Repealed, SOR/2018-37, s. 7]\n(5.1) [Signature] No person in charge of a hospital shall permit a narcotic to be sold or provided under subsection (3) or (4) unless the signature of the pharmacist in the other hospital or of the practitioner authorized by the person in charge of the other hospital to sign an order is known to the person who sells or provides the narcotic or has been verified.\n(5.2) [Repealed, SOR/2018-147, s. 24]\n(6) [Research purposes] A person in charge of a hospital may permit a narcotic to be provided to a person who is exempted under section 56 of the Act with respect to the possession of the narcotic and who is employed in a research laboratory in the hospital for the purpose of research.\n(7) [Heroin] The person in charge of a hospital may permit diacetylmorphine (heroin) to be sold, provided or administered to a person under treatment as an in-patient or out-patient of the hospital on receipt of a written order or prescription signed and dated by a practitioner of medicine or dentistry or a nurse practitioner.",
"history": "SOR/85-588, s. 22; SOR/85-930, s. 8; SOR/88-279, s. 2(F); SOR/99-124, s. 7; SOR/2004-237, s. 25; SOR/2012-230, s. 23; SOR/2013-119, s. 225; SOR/2013-172, s. 8; SOR/2014-51, s. 2; SOR/2016-230, s. 276; SOR/2016-239, s. 7; SOR/2018-37, s. 7; SOR/2018-147, s. 24; SOR/2019-169, s. 23",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 65",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-65.html"
},
{
"id": "C.R.C.,_c._1041-s65.1",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "65.1",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "65.1 [Repealed, SOR/2018-147, s. 25]",
"history": "",
"last_amended": "2018-10-17",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 65.1",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-65.1.html"
},
{
"id": "C.R.C.,_c._1041-s65.2",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "65.2",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "65.2 [Repealed, SOR/2018-147, s. 25]",
"history": "",
"last_amended": "2018-10-17",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 65.2",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-65.2.html"
},
{
"id": "C.R.C.,_c._1041-s65.3",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "65.3",
"marginal_note": "",
"part": "",
"division": "",
"heading": "Hospitals",
"text": "65.3 [Repealed, SOR/2018-147, s. 25]",
"history": "",
"last_amended": "2018-10-17",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 65.3",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-65.3.html"
},
{
"id": "C.R.C.,_c._1041-s66",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "66",
"marginal_note": "",
"part": "",
"division": "",
"heading": "General",
"text": "66 [Repealed, SOR/97-227, s. 3]",
"history": "",
"last_amended": "2006-03-22",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 66",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-66.html"
},
{
"id": "C.R.C.,_c._1041-s67",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "67",
"marginal_note": "Opium poppy",
"part": "",
"division": "",
"heading": "General",
"text": "67 The Minister may, on application for it, issue a licence to any person who, in the opinion of the Minister, is qualified to produce opium poppy for scientific purposes, on any terms and conditions that the Minister considers necessary.",
"history": "SOR/2013-119, s. 227(E); SOR/2016-123, s. 2(F); SOR/2018-147, s. 26",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 67",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-67.html"
},
{
"id": "C.R.C.,_c._1041-s68",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "68",
"marginal_note": "Identification or analysis of narcotic",
"part": "",
"division": "",
"heading": "General",
"text": "68\n(1) Despite anything in these Regulations, a person may, for the purpose of identification or analysis of a narcotic, provide or deliver it to\n(a) a practitioner of medicine; or\n(b) an agent or mandatary of a practitioner of medicine, if the agent or mandatary is exempted under section 56 of the Act with respect to the possession of that narcotic for that purpose.\n(2) [Agent or mandatary of practitioner of medicine] An agent or mandatary of a practitioner of medicine who receives the narcotic must immediately provide or deliver it to\n(a) the practitioner; or\n(b) the Minister.\n(3) [Practitioner of medicine] A practitioner of medicine who receives the narcotic must immediately provide or deliver it\n(a) for the purpose of its identification or analysis, to a person who is exempted under section 56 of the Act with respect to the possession of that narcotic for that purpose; or\n(b) to the Minister.",
"history": "SOR/85-930, s. 9; SOR/99-124, s. 8; SOR/2004-237, s. 26; SOR/2018-69, ss. 75, 77; SOR/2019-169, s. 24",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 68",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-68.html"
},
{
"id": "C.R.C.,_c._1041-s69",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "69",
"marginal_note": "Records — person who is exempted or who has received a narcotic for the purpose of identification or analysis",
"part": "",
"division": "",
"heading": "General",
"text": "69 Every person who is exempted under section 56 of the Act with respect to the possession of a narcotic — other than a person to whom a narcotic has been administered, sold, delivered or provided by a practitioner of medicine who is exempted under section 56 of the Act from the application of any subsection of section 53 with respect to that narcotic —, every practitioner of medicine who has received a narcotic under subsection 68(1) or (2) and every agent or mandatary of a practitioner of medicine who has received a narcotic under subsection 68(1) must\n(a) keep a record of the following information for a two-year period beginning on the day on which the record is made\n(i) the name and quantity of any narcotic purchased or received by them and the date on which it was purchased or received,\n(ii) the name and address of the person from whom the narcotic was purchased or received, and\n(iii) particulars of the use to which the narcotic was put;\n(b) provide any information respecting the narcotic that the Minister may require; and\n(c) permit access to the records that are required to be kept by these Regulations.",
"history": "SOR/85-588, s. 23; SOR/99-124, s. 9; SOR/2004-237, s. 27; SOR/2010-221, s. 15; SOR/2018-69, s. 75; SOR/2019-169, s. 24",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 69",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-69.html"
},
{
"id": "C.R.C.,_c._1041-s70",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "70",
"marginal_note": "Advertising",
"part": "",
"division": "",
"heading": "General",
"text": "70 It is prohibited to\n(a) advertise a narcotic to the general public;\n(b) advertise a preparation referred to in section 36 in a pharmacy; or\n(c) publish any written advertisement respecting a narcotic unless that advertisement displays the symbol “N” in a clear and conspicuous colour and size in the upper left quarter of its first page.",
"history": "SOR/2019-169, s. 24",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 70",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-70.html"
},
{
"id": "C.R.C.,_c._1041-s71",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "71",
"marginal_note": "",
"part": "",
"division": "",
"heading": "General",
"text": "71 [Repealed, SOR/2019-169, s. 25]",
"history": "",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 71",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-71.html"
},
{
"id": "C.R.C.,_c._1041-s72",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "72",
"marginal_note": "Notification of application for order of restoration",
"part": "",
"division": "",
"heading": "General",
"text": "72\n(1) For the purpose of subsection 24(1) of the Act, notification of an application for an order of restoration must be given in writing to the Attorney General by registered mail and be mailed at least 15 days before the date on which the application is to be made to a justice.\n(2) [Content of notice] The notification must specify\n(a) the name of the justice to whom the application is to be made;\n(b) the time and place at which the application is to be heard;\n(c) details concerning the narcotic or other thing in respect of which the application is to be made; and\n(d) the evidence on which the applicant intends to rely to establish that they are entitled to possession of the narcotic or other thing referred to in paragraph (c).",
"history": "SOR/97-227, s. 4; SOR/2019-169, s. 26",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 72",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-72.html"
},
{
"id": "C.R.C.,_c._1041-s73",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "73",
"marginal_note": "Communication of information by Minister to nursing statutory body",
"part": "",
"division": "",
"heading": "General",
"text": "73\n(1) The Minister may provide to a nursing statutory body any information concerning any member of that body that has been obtained under these Regulations or the Act.\n(2) [Non-application] Subsection (1) does not apply to a nurse practitioner.\n(3) [Definitions] The following definitions apply in this section.\nmember means any person who is authorized by a nursing statutory body to practice nursing. (membre)\nnursing statutory body means any provincial professional licensing authority that, in accordance with the laws of that province, authorizes a person to practise nursing. (organisme régissant la profession d’infirmier)",
"history": "SOR/82-121, s. 1; SOR/2010-221, s. 16; SOR/2012-230, s. 24; SOR/2013-119, s. 228; SOR/2016-230, s. 278; SOR/2018-147, s. 27; SOR/2019-169, s. 27",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 73",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-73.html"
},
{
"id": "C.R.C.,_c._1041-s74",
"act_code": "C.R.C.,_c._1041",
"act_short": "Narcotic Control Regs",
"act_name": "Narcotic Control Regulations",
"section": "74",
"marginal_note": "Exemption — member of police force",
"part": "",
"division": "",
"heading": "General",
"text": "74 A member of a police force or a person acting under their direction and control who, in respect of the conduct of the member or person, is exempt from the application of subsection 4(2) or section 5, 6 or 7 of the Act by virtue of the Controlled Drugs and Substances Act (Police Enforcement) Regulations is, in respect of that conduct, exempt from the application of these Regulations.",
"history": "SOR/97-227, s. 5; SOR/2019-169, s. 27",
"last_amended": "2019-12-09",
"current_to": "2025-12-02",
"citation": "Narcotic Control Regs, s. 74",
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/section-74.html"
}
] |